@lumiastream/ui 0.2.8-alpha.9 → 0.2.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/README.md +6 -6
- package/dist/LSButton.d.ts +32 -0
- package/dist/LSButton.js +80 -0
- package/dist/LSCheckbox.d.ts +21 -0
- package/dist/LSCheckbox.js +113 -0
- package/dist/LSColorPicker.d.ts +19 -0
- package/dist/LSColorPicker.js +316 -0
- package/dist/LSDatePicker.d.ts +15 -0
- package/dist/LSDatePicker.js +198 -0
- package/dist/LSFontPicker.d.ts +17 -0
- package/dist/LSFontPicker.js +179 -0
- package/dist/LSInput.d.ts +32 -0
- package/dist/LSInput.js +159 -0
- package/dist/LSMultiSelect.d.ts +16 -0
- package/dist/LSMultiSelect.js +274 -0
- package/dist/LSRadio.d.ts +17 -0
- package/dist/LSRadio.js +52 -0
- package/dist/LSSelect.d.ts +12 -0
- package/dist/LSSelect.js +140 -0
- package/dist/LSSliderInput.d.ts +39 -0
- package/dist/LSSliderInput.js +342 -0
- package/dist/LSTextField.d.ts +9 -0
- package/dist/LSTextField.js +63 -0
- package/dist/LSVariableInputField.d.ts +96 -0
- package/dist/LSVariableInputField.js +1402 -0
- package/dist/components.d.ts +22 -0
- package/dist/components.js +2317 -0
- package/dist/index.d.ts +26 -863
- package/dist/index.js +3068 -1446
- package/dist/se-import.d.ts +444 -0
- package/dist/se-import.js +8094 -0
- package/dist/utils/chatMedia.d.ts +106 -0
- package/dist/utils/chatMedia.js +611 -0
- package/dist/utils.d.ts +111 -0
- package/dist/utils.js +830 -0
- package/package.json +73 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumiastream/ui",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.9",
|
|
4
4
|
"author": "Lumia Stream",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"description": "Lumia UI Kit",
|
|
@@ -16,13 +16,79 @@
|
|
|
16
16
|
".": {
|
|
17
17
|
"types": "./dist/index.d.ts",
|
|
18
18
|
"import": "./dist/index.js"
|
|
19
|
+
},
|
|
20
|
+
"./components": {
|
|
21
|
+
"types": "./dist/components.d.ts",
|
|
22
|
+
"import": "./dist/components.js"
|
|
23
|
+
},
|
|
24
|
+
"./LSButton": {
|
|
25
|
+
"types": "./dist/LSButton.d.ts",
|
|
26
|
+
"import": "./dist/LSButton.js"
|
|
27
|
+
},
|
|
28
|
+
"./LSCheckbox": {
|
|
29
|
+
"types": "./dist/LSCheckbox.d.ts",
|
|
30
|
+
"import": "./dist/LSCheckbox.js"
|
|
31
|
+
},
|
|
32
|
+
"./LSColorPicker": {
|
|
33
|
+
"types": "./dist/LSColorPicker.d.ts",
|
|
34
|
+
"import": "./dist/LSColorPicker.js"
|
|
35
|
+
},
|
|
36
|
+
"./LSDatePicker": {
|
|
37
|
+
"types": "./dist/LSDatePicker.d.ts",
|
|
38
|
+
"import": "./dist/LSDatePicker.js"
|
|
39
|
+
},
|
|
40
|
+
"./LSFontPicker": {
|
|
41
|
+
"types": "./dist/LSFontPicker.d.ts",
|
|
42
|
+
"import": "./dist/LSFontPicker.js"
|
|
43
|
+
},
|
|
44
|
+
"./LSInput": {
|
|
45
|
+
"types": "./dist/LSInput.d.ts",
|
|
46
|
+
"import": "./dist/LSInput.js"
|
|
47
|
+
},
|
|
48
|
+
"./LSMultiSelect": {
|
|
49
|
+
"types": "./dist/LSMultiSelect.d.ts",
|
|
50
|
+
"import": "./dist/LSMultiSelect.js"
|
|
51
|
+
},
|
|
52
|
+
"./LSRadio": {
|
|
53
|
+
"types": "./dist/LSRadio.d.ts",
|
|
54
|
+
"import": "./dist/LSRadio.js"
|
|
55
|
+
},
|
|
56
|
+
"./LSSelect": {
|
|
57
|
+
"types": "./dist/LSSelect.d.ts",
|
|
58
|
+
"import": "./dist/LSSelect.js"
|
|
59
|
+
},
|
|
60
|
+
"./LSSliderInput": {
|
|
61
|
+
"types": "./dist/LSSliderInput.d.ts",
|
|
62
|
+
"import": "./dist/LSSliderInput.js"
|
|
63
|
+
},
|
|
64
|
+
"./LSTextField": {
|
|
65
|
+
"types": "./dist/LSTextField.d.ts",
|
|
66
|
+
"import": "./dist/LSTextField.js"
|
|
67
|
+
},
|
|
68
|
+
"./LSVariableInputField": {
|
|
69
|
+
"types": "./dist/LSVariableInputField.d.ts",
|
|
70
|
+
"import": "./dist/LSVariableInputField.js"
|
|
71
|
+
},
|
|
72
|
+
"./utils": {
|
|
73
|
+
"types": "./dist/utils.d.ts",
|
|
74
|
+
"import": "./dist/utils.js"
|
|
75
|
+
},
|
|
76
|
+
"./utils/chatMedia": {
|
|
77
|
+
"types": "./dist/utils/chatMedia.d.ts",
|
|
78
|
+
"import": "./dist/utils/chatMedia.js"
|
|
79
|
+
},
|
|
80
|
+
"./se-import": {
|
|
81
|
+
"types": "./dist/se-import.d.ts",
|
|
82
|
+
"import": "./dist/se-import.js"
|
|
19
83
|
}
|
|
20
84
|
},
|
|
21
85
|
"scripts": {
|
|
22
86
|
"start": "storybook dev -p 6006",
|
|
23
|
-
"build": "tsup
|
|
87
|
+
"build": "tsup",
|
|
24
88
|
"build-storybook": "storybook build",
|
|
25
|
-
"watch": "tsup
|
|
89
|
+
"watch": "tsup --watch",
|
|
90
|
+
"test": "vitest run",
|
|
91
|
+
"test:watch": "vitest",
|
|
26
92
|
"release": "changeset && changeset tag && npm run build && npm publish",
|
|
27
93
|
"prepublishOnly": "npm run build",
|
|
28
94
|
"postpublish": "npm cache clean --force && node ./scripts/postpublish-install.mjs"
|
|
@@ -48,7 +114,7 @@
|
|
|
48
114
|
"@types/node": "^25.5.0",
|
|
49
115
|
"@types/react": "^19.2.14",
|
|
50
116
|
"@types/react-dom": "19.2.3",
|
|
51
|
-
"postcss": "^8.5.
|
|
117
|
+
"postcss": "^8.5.14",
|
|
52
118
|
"react": "^19.2.0",
|
|
53
119
|
"react-dom": "^19.2.0",
|
|
54
120
|
"react-hook-form": "^7.73.1",
|
|
@@ -56,10 +122,11 @@
|
|
|
56
122
|
"storybook": "^10.2.17",
|
|
57
123
|
"tsup": "^8.5.1",
|
|
58
124
|
"typescript": "^5.9.3",
|
|
59
|
-
"vite": "^8.0.8"
|
|
125
|
+
"vite": "^8.0.8",
|
|
126
|
+
"vitest": "^4.1.6"
|
|
60
127
|
},
|
|
61
128
|
"dependencies": {
|
|
62
|
-
"@lumiastream/lumia-translations": "1.15.
|
|
129
|
+
"@lumiastream/lumia-translations": "1.15.8",
|
|
63
130
|
"@lumiastream/lumia-types": "^3.3.7-alpha.2",
|
|
64
131
|
"classnames": "^2.5.1",
|
|
65
132
|
"globals": "^17.4.0",
|