@mozaic-ds/web-components 1.0.0-alpha.7 → 1.0.0-alpha.9
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/bundle.js +19 -31
- package/package.json +10 -2
package/dist/bundle.js
CHANGED
|
@@ -1,31 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
|
|
10
|
-
import
|
|
11
|
-
|
|
12
|
-
import
|
|
13
|
-
|
|
14
|
-
import
|
|
15
|
-
|
|
16
|
-
import
|
|
17
|
-
|
|
18
|
-
import
|
|
19
|
-
|
|
20
|
-
import Overlay from './components/overlay/Overlay.js';
|
|
21
|
-
import OverlayLoader from './components/overlay/OverlayLoader.js';
|
|
22
|
-
|
|
23
|
-
import Radio from './components/radio/Radio.js';
|
|
24
|
-
import RadioGroup from './components/radiogroup/RadioGroup.js';
|
|
25
|
-
|
|
26
|
-
import QuantitySelector from './components/quantityselector/QuantitySelector.js';
|
|
27
|
-
|
|
28
|
-
import Badge from './components/badge/Badge.js';
|
|
29
|
-
import StatusBadge from './components/statusbadge/StatusBadge.js';
|
|
30
|
-
import StatusDot from './components/statusbadge/StatusDot.js';
|
|
31
|
-
|
|
1
|
+
import './components/button/Button.js';
|
|
2
|
+
import './components/button/IconButton.js';
|
|
3
|
+
import './components/checkbox/Checkbox.js';
|
|
4
|
+
import './components/checkboxgroup/checkboxGroup.js';
|
|
5
|
+
import './components/textarea/Textarea.js';
|
|
6
|
+
import './components/select/Select.js';
|
|
7
|
+
import './components/toggle/Toggle.js';
|
|
8
|
+
import './components/field/Field.js';
|
|
9
|
+
import './components/link/Link.js';
|
|
10
|
+
import './components/loader/Loader.js';
|
|
11
|
+
import './components/textinput/Textinput.js';
|
|
12
|
+
import './components/overlay/Overlay.js';
|
|
13
|
+
import './components/overlay/OverlayLoader.js';
|
|
14
|
+
import './components/radio/Radio.js';
|
|
15
|
+
import './components/radiogroup/RadioGroup.js';
|
|
16
|
+
import './components/quantityselector/QuantitySelector.js';
|
|
17
|
+
import './components/badge/Badge.js';
|
|
18
|
+
import './components/statusbadge/StatusBadge.js';
|
|
19
|
+
import './components/statusbadge/StatusDot.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mozaic-ds/web-components",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.9",
|
|
4
4
|
"description": "Web component Mozaic DS implementation",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -19,7 +19,15 @@
|
|
|
19
19
|
".": {
|
|
20
20
|
"types": "./dist/main.d.ts",
|
|
21
21
|
"svelte": "./dist/main.js"
|
|
22
|
-
}
|
|
22
|
+
},
|
|
23
|
+
"./svelte": {
|
|
24
|
+
"types": "./dist/main.d.ts",
|
|
25
|
+
"svelte": "./dist/main.js"
|
|
26
|
+
},
|
|
27
|
+
"./svelte/*.svelte": "./dist/components/*.svelte",
|
|
28
|
+
"./lib/*.js": "./dist/components/*.js",
|
|
29
|
+
"./package.json": "./dist/package.json",
|
|
30
|
+
"./lib": "./dist/bundle.js"
|
|
23
31
|
},
|
|
24
32
|
"scripts": {
|
|
25
33
|
"build": "vite build",
|