le-kit 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/admin/index.d.ts +0 -2
- package/dist/admin/index.js +0 -6
- package/dist/core/components/index.js +0 -2
- package/dist/core/index.d.ts +0 -2
- package/dist/core/index.js +0 -6
- package/dist/docs.json +1 -1
- package/package.json +1 -1
package/dist/admin/index.d.ts
CHANGED
|
@@ -7,13 +7,11 @@ export { setAssetPath } from '../components/index';
|
|
|
7
7
|
|
|
8
8
|
export { LeBox } from '../components/le-box';
|
|
9
9
|
export { LeButton } from '../components/le-button';
|
|
10
|
-
export { LeButton2 } from '../components/le-button2';
|
|
11
10
|
export { LeCard } from '../components/le-card';
|
|
12
11
|
export { LeCheckbox } from '../components/le-checkbox';
|
|
13
12
|
export { LeComponent } from '../components/le-component';
|
|
14
13
|
export { LeNumberInput } from '../components/le-number-input';
|
|
15
14
|
export { LePopover } from '../components/le-popover';
|
|
16
|
-
export { LePopover2 } from '../components/le-popover2';
|
|
17
15
|
export { LePopup } from '../components/le-popup';
|
|
18
16
|
export { LeRoundProgress } from '../components/le-round-progress';
|
|
19
17
|
export { LeSlot } from '../components/le-slot';
|
package/dist/admin/index.js
CHANGED
|
@@ -11,13 +11,11 @@ export { setAssetPath } from '../components/index.js';
|
|
|
11
11
|
// Component imports
|
|
12
12
|
import { LeBox } from '../components/le-box.js';
|
|
13
13
|
import { LeButton } from '../components/le-button.js';
|
|
14
|
-
import { LeButton2 } from '../components/le-button2.js';
|
|
15
14
|
import { LeCard } from '../components/le-card.js';
|
|
16
15
|
import { LeCheckbox } from '../components/le-checkbox.js';
|
|
17
16
|
import { LeComponent } from '../components/le-component.js';
|
|
18
17
|
import { LeNumberInput } from '../components/le-number-input.js';
|
|
19
18
|
import { LePopover } from '../components/le-popover.js';
|
|
20
|
-
import { LePopover2 } from '../components/le-popover2.js';
|
|
21
19
|
import { LePopup } from '../components/le-popup.js';
|
|
22
20
|
import { LeRoundProgress } from '../components/le-round-progress.js';
|
|
23
21
|
import { LeSlot } from '../components/le-slot.js';
|
|
@@ -30,13 +28,11 @@ import { LeTurntable } from '../components/le-turntable.js';
|
|
|
30
28
|
export {
|
|
31
29
|
LeBox,
|
|
32
30
|
LeButton,
|
|
33
|
-
LeButton2,
|
|
34
31
|
LeCard,
|
|
35
32
|
LeCheckbox,
|
|
36
33
|
LeComponent,
|
|
37
34
|
LeNumberInput,
|
|
38
35
|
LePopover,
|
|
39
|
-
LePopover2,
|
|
40
36
|
LePopup,
|
|
41
37
|
LeRoundProgress,
|
|
42
38
|
LeSlot,
|
|
@@ -56,13 +52,11 @@ export function defineCustomElements(win = typeof window !== 'undefined' ? windo
|
|
|
56
52
|
const components = [
|
|
57
53
|
['le-box', LeBox],
|
|
58
54
|
['le-button', LeButton],
|
|
59
|
-
['le-button2', LeButton2],
|
|
60
55
|
['le-card', LeCard],
|
|
61
56
|
['le-checkbox', LeCheckbox],
|
|
62
57
|
['le-component', LeComponent],
|
|
63
58
|
['le-number-input', LeNumberInput],
|
|
64
59
|
['le-popover', LePopover],
|
|
65
|
-
['le-popover2', LePopover2],
|
|
66
60
|
['le-popup', LePopup],
|
|
67
61
|
['le-round-progress', LeRoundProgress],
|
|
68
62
|
['le-slot', LeSlot],
|
|
@@ -5,12 +5,10 @@ export { LeBox, defineCustomElement as defineCustomElementLeBox } from './le-box
|
|
|
5
5
|
export { LeButton, defineCustomElement as defineCustomElementLeButton } from './le-button.js';
|
|
6
6
|
export { LeCard, defineCustomElement as defineCustomElementLeCard } from './le-card.js';
|
|
7
7
|
export { LeCheckbox, defineCustomElement as defineCustomElementLeCheckbox } from './le-checkbox.js';
|
|
8
|
-
export { LeComponent, defineCustomElement as defineCustomElementLeComponent } from './le-component.js';
|
|
9
8
|
export { LeNumberInput, defineCustomElement as defineCustomElementLeNumberInput } from './le-number-input.js';
|
|
10
9
|
export { LePopover, defineCustomElement as defineCustomElementLePopover } from './le-popover.js';
|
|
11
10
|
export { LePopup, defineCustomElement as defineCustomElementLePopup } from './le-popup.js';
|
|
12
11
|
export { LeRoundProgress, defineCustomElement as defineCustomElementLeRoundProgress } from './le-round-progress.js';
|
|
13
|
-
export { LeSlot, defineCustomElement as defineCustomElementLeSlot } from './le-slot.js';
|
|
14
12
|
export { LeStack, defineCustomElement as defineCustomElementLeStack } from './le-stack.js';
|
|
15
13
|
export { LeStringInput, defineCustomElement as defineCustomElementLeStringInput } from './le-string-input.js';
|
|
16
14
|
export { LeText, defineCustomElement as defineCustomElementLeText } from './le-text.js';
|
package/dist/core/index.d.ts
CHANGED
|
@@ -7,12 +7,10 @@ export { setAssetPath } from './stencil-runtime';
|
|
|
7
7
|
|
|
8
8
|
export { LeBox } from './components/le-box';
|
|
9
9
|
export { LeButton } from './components/le-button';
|
|
10
|
-
export { LeButton2 } from './components/le-button2';
|
|
11
10
|
export { LeCard } from './components/le-card';
|
|
12
11
|
export { LeCheckbox } from './components/le-checkbox';
|
|
13
12
|
export { LeNumberInput } from './components/le-number-input';
|
|
14
13
|
export { LePopover } from './components/le-popover';
|
|
15
|
-
export { LePopover2 } from './components/le-popover2';
|
|
16
14
|
export { LePopup } from './components/le-popup';
|
|
17
15
|
export { LeRoundProgress } from './components/le-round-progress';
|
|
18
16
|
export { LeStack } from './components/le-stack';
|
package/dist/core/index.js
CHANGED
|
@@ -11,12 +11,10 @@ export { setAssetPath } from './stencil-runtime.js';
|
|
|
11
11
|
// Component imports
|
|
12
12
|
import { LeBox } from './components/le-box.js';
|
|
13
13
|
import { LeButton } from './components/le-button.js';
|
|
14
|
-
import { LeButton2 } from './components/le-button2.js';
|
|
15
14
|
import { LeCard } from './components/le-card.js';
|
|
16
15
|
import { LeCheckbox } from './components/le-checkbox.js';
|
|
17
16
|
import { LeNumberInput } from './components/le-number-input.js';
|
|
18
17
|
import { LePopover } from './components/le-popover.js';
|
|
19
|
-
import { LePopover2 } from './components/le-popover2.js';
|
|
20
18
|
import { LePopup } from './components/le-popup.js';
|
|
21
19
|
import { LeRoundProgress } from './components/le-round-progress.js';
|
|
22
20
|
import { LeStack } from './components/le-stack.js';
|
|
@@ -28,12 +26,10 @@ import { LeTurntable } from './components/le-turntable.js';
|
|
|
28
26
|
export {
|
|
29
27
|
LeBox,
|
|
30
28
|
LeButton,
|
|
31
|
-
LeButton2,
|
|
32
29
|
LeCard,
|
|
33
30
|
LeCheckbox,
|
|
34
31
|
LeNumberInput,
|
|
35
32
|
LePopover,
|
|
36
|
-
LePopover2,
|
|
37
33
|
LePopup,
|
|
38
34
|
LeRoundProgress,
|
|
39
35
|
LeStack,
|
|
@@ -52,12 +48,10 @@ export function defineCustomElements(win = typeof window !== 'undefined' ? windo
|
|
|
52
48
|
const components = [
|
|
53
49
|
['le-box', LeBox],
|
|
54
50
|
['le-button', LeButton],
|
|
55
|
-
['le-button2', LeButton2],
|
|
56
51
|
['le-card', LeCard],
|
|
57
52
|
['le-checkbox', LeCheckbox],
|
|
58
53
|
['le-number-input', LeNumberInput],
|
|
59
54
|
['le-popover', LePopover],
|
|
60
|
-
['le-popover2', LePopover2],
|
|
61
55
|
['le-popup', LePopup],
|
|
62
56
|
['le-round-progress', LeRoundProgress],
|
|
63
57
|
['le-stack', LeStack],
|
package/dist/docs.json
CHANGED