Skip to content

Commit

Permalink
adds exporting for withLoading
Browse files Browse the repository at this point in the history
  • Loading branch information
loureirov committed Oct 4, 2018
1 parent 312ab8a commit ddb14e4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 18 deletions.
13 changes: 4 additions & 9 deletions packages/sling-framework/src/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
import { html } from './lib/lit-element.bundle.js';
import { SlingElement } from './framework/SlingElement.js';
import { SlingBusinessElement } from './framework/SlingBusinessElement.js';

export {
SlingElement,
SlingBusinessElement,
html,
};
export { html } from './lib/lit-element.bundle.js';
export { SlingElement } from './framework/SlingElement.js';
export { SlingBusinessElement } from './framework/SlingBusinessElement.js';
export { withLoading } from './v1/src/business/withLoading.js';
13 changes: 4 additions & 9 deletions packages/sling-framework/src/v1/src/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
import { html } from '../../lib/lit-element.bundle.js';
import { SlingElement } from './basic/SlingElement.js';
import { SlingBusinessElement } from './business/SlingBusinessElement.js';

export {
SlingElement,
SlingBusinessElement,
html,
};
export { html } from '../../lib/lit-element.bundle.js';
export { SlingElement } from './basic/SlingElement.js';
export { SlingBusinessElement } from './business/SlingBusinessElement.js';
export { withLoading } from './business/withLoading.js';

0 comments on commit ddb14e4

Please sign in to comment.