@xola/ui-kit 2.1.23 → 2.1.25
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/build/ui-kit.mjs +2916 -2622
- package/build/ui-kit.umd.js +11 -11
- package/index.d.ts +6 -0
- package/package.json +10 -11
- package/tailwind.config.js +3 -1
package/index.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export {
|
|
|
23
23
|
BarGraphIcon,
|
|
24
24
|
BaseInput,
|
|
25
25
|
BellIcon,
|
|
26
|
+
BookIcon,
|
|
26
27
|
BookmarkIcon,
|
|
27
28
|
BoxIcon,
|
|
28
29
|
Breadcrumb,
|
|
@@ -89,6 +90,7 @@ export {
|
|
|
89
90
|
DisabledIcon,
|
|
90
91
|
DisputeIcon,
|
|
91
92
|
Dot,
|
|
93
|
+
DotProgress,
|
|
92
94
|
DotCircleIcon,
|
|
93
95
|
DoubleCheckIcon,
|
|
94
96
|
DownArrowIcon,
|
|
@@ -183,6 +185,7 @@ export {
|
|
|
183
185
|
PiggyBankIcon,
|
|
184
186
|
PinIcon,
|
|
185
187
|
PipeIcon,
|
|
188
|
+
PlayIcon,
|
|
186
189
|
PlusIcon,
|
|
187
190
|
PolicyIcon,
|
|
188
191
|
Popover,
|
|
@@ -242,6 +245,9 @@ export {
|
|
|
242
245
|
Tooltip,
|
|
243
246
|
TransferArrowIcon,
|
|
244
247
|
TrashIcon,
|
|
248
|
+
TutorialsBadgeIcon,
|
|
249
|
+
TutorialsButtonIcon,
|
|
250
|
+
TutorialsSquareIcon,
|
|
245
251
|
UnlinkIcon,
|
|
246
252
|
useId,
|
|
247
253
|
useIsClient,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xola/ui-kit",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.25",
|
|
4
4
|
"description": "Xola UI Kit",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"files": [
|
|
@@ -15,18 +15,17 @@
|
|
|
15
15
|
"types": "index.d.ts",
|
|
16
16
|
"scripts": {
|
|
17
17
|
"prepare": "node scripts/prepare && vite build",
|
|
18
|
-
"start": "
|
|
19
|
-
"dev": "
|
|
20
|
-
"storybook": "
|
|
21
|
-
"build": "
|
|
22
|
-
"watch": "npm run build -- --watch",
|
|
18
|
+
"start": "npm run storybook -s public --no-open",
|
|
19
|
+
"dev": "npm run storybook -s public --no-manager-cache --no-open",
|
|
20
|
+
"storybook": "npm run prepare && start-storybook -p 6006 -s public --no-open",
|
|
21
|
+
"build": "npm run prepare && vite build",
|
|
23
22
|
"clean": "rm -rf node_modules/.vite",
|
|
24
|
-
"build:storybook": "
|
|
25
|
-
"lint": "xola-lint --ignore src/stories
|
|
26
|
-
"lint:fix": "xola-lint --ignore src/stories
|
|
27
|
-
"lint:report": "xola-lint --ignore src/stories
|
|
23
|
+
"build:storybook": "npm run prepare && build-storybook -s public",
|
|
24
|
+
"lint": "xola-lint src --ignore src/stories",
|
|
25
|
+
"lint:fix": "xola-lint src --fix --ignore src/stories",
|
|
26
|
+
"lint:report": "xola-lint src --ignore src/stories --reporter=json src > eslint_report.json",
|
|
28
27
|
"format": "prettier --write src",
|
|
29
|
-
"test": "
|
|
28
|
+
"test": "jest",
|
|
30
29
|
"chromatic": "chromatic --exit-zero-on-changes --build-script-name build:storybook"
|
|
31
30
|
},
|
|
32
31
|
"dependencies": {
|
package/tailwind.config.js
CHANGED
|
@@ -103,6 +103,7 @@ const spacing = {
|
|
|
103
103
|
48: "192px",
|
|
104
104
|
50: "200px",
|
|
105
105
|
52: "208px",
|
|
106
|
+
54: "216px",
|
|
106
107
|
56: "224px",
|
|
107
108
|
60: "240px",
|
|
108
109
|
64: "256px",
|
|
@@ -110,10 +111,11 @@ const spacing = {
|
|
|
110
111
|
72: "288px",
|
|
111
112
|
75: "300px",
|
|
112
113
|
80: "320px",
|
|
113
|
-
|
|
114
|
+
85: "340px",
|
|
114
115
|
96: "384px",
|
|
115
116
|
100: "400px",
|
|
116
117
|
105: "420px",
|
|
118
|
+
110: "440px",
|
|
117
119
|
125: "500px",
|
|
118
120
|
150: "600px",
|
|
119
121
|
140: "560px",
|