@mriqbox/ui-kit 3.5.0 → 3.5.1
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/bin/cli.js +1 -1
- package/dist/components/molecules/MriVitalAdjustModal.d.ts +3 -1
- package/dist/index.es.js +1459 -1453
- package/dist/index.umd.js +28 -28
- package/package.json +89 -81
package/package.json
CHANGED
|
@@ -1,83 +1,91 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
},
|
|
6
|
-
"version": "3.5.0",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"main": "./dist/index.umd.js",
|
|
9
|
-
"module": "./dist/index.es.js",
|
|
10
|
-
"types": "./dist/index.d.ts",
|
|
11
|
-
"exports": {
|
|
12
|
-
".": {
|
|
13
|
-
"import": "./dist/index.es.js",
|
|
14
|
-
"require": "./dist/index.umd.js",
|
|
15
|
-
"types": "./dist/index.d.ts"
|
|
2
|
+
"name": "@mriqbox/ui-kit",
|
|
3
|
+
"publishConfig": {
|
|
4
|
+
"access": "public"
|
|
16
5
|
},
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"dist",
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
"
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
"
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
6
|
+
"version": "3.5.1",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "./dist/index.umd.js",
|
|
9
|
+
"module": "./dist/index.es.js",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/index.es.js",
|
|
14
|
+
"require": "./dist/index.umd.js",
|
|
15
|
+
"types": "./dist/index.d.ts"
|
|
16
|
+
},
|
|
17
|
+
"./dist/style.css": "./dist/style.css"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"bin"
|
|
22
|
+
],
|
|
23
|
+
"bin": {
|
|
24
|
+
"mri-ui": "./bin/cli.js"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"dev": "vite",
|
|
28
|
+
"build": "tsc && vite build",
|
|
29
|
+
"lint": "eslint . --report-unused-disable-directives --max-warnings 10",
|
|
30
|
+
"preview": "vite preview",
|
|
31
|
+
"storybook": "storybook dev -p 6006",
|
|
32
|
+
"build-storybook": "storybook build",
|
|
33
|
+
"version": "node scripts/update-cli-version.js && git add bin/cli.js"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@radix-ui/react-dialog": "^1.0.5",
|
|
37
|
+
"@radix-ui/react-popover": "^1.0.7",
|
|
38
|
+
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
39
|
+
"@radix-ui/react-slot": "^1.0.2",
|
|
40
|
+
"chalk": "^5.6.2",
|
|
41
|
+
"class-variance-authority": "^0.7.0",
|
|
42
|
+
"clsx": "^2.1.0",
|
|
43
|
+
"cmdk": "^1.0.0",
|
|
44
|
+
"colord": "^2.9.3",
|
|
45
|
+
"commander": "^14.0.2",
|
|
46
|
+
"date-fns": "^4.1.0",
|
|
47
|
+
"lucide-react": "^0.344.0",
|
|
48
|
+
"next-themes": "^0.4.6",
|
|
49
|
+
"prompts": "^2.4.2",
|
|
50
|
+
"react": "^18.2.0",
|
|
51
|
+
"react-colorful": "^5.6.1",
|
|
52
|
+
"react-day-picker": "^8.10.1",
|
|
53
|
+
"react-dom": "^18.2.0",
|
|
54
|
+
"tailwind-merge": "^2.2.1"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@eslint/js": "^9.39.2",
|
|
58
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
59
|
+
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
60
|
+
"@semantic-release/exec": "^7.1.0",
|
|
61
|
+
"@semantic-release/git": "^10.0.1",
|
|
62
|
+
"@semantic-release/github": "^12.0.6",
|
|
63
|
+
"@semantic-release/npm": "^13.1.5",
|
|
64
|
+
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
65
|
+
"@storybook/addon-essentials": "^8.6.14",
|
|
66
|
+
"@storybook/addon-interactions": "^8.6.14",
|
|
67
|
+
"@storybook/addon-links": "^8.6.14",
|
|
68
|
+
"@storybook/blocks": "^8.6.14",
|
|
69
|
+
"@storybook/manager-api": "^8.6.14",
|
|
70
|
+
"@storybook/react": "^8.6.14",
|
|
71
|
+
"@storybook/react-vite": "^8.6.14",
|
|
72
|
+
"@storybook/theming": "^8.6.14",
|
|
73
|
+
"@types/react": "^18.2.64",
|
|
74
|
+
"@types/react-dom": "^18.2.21",
|
|
75
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
76
|
+
"autoprefixer": "^10.4.18",
|
|
77
|
+
"eslint": "^9.39.2",
|
|
78
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
79
|
+
"eslint-plugin-react-refresh": "^0.4.26",
|
|
80
|
+
"globals": "^17.0.0",
|
|
81
|
+
"postcss": "^8.4.35",
|
|
82
|
+
"semantic-release": "^25.0.3",
|
|
83
|
+
"storybook": "^8.6.14",
|
|
84
|
+
"tailwindcss": "^3.4.1",
|
|
85
|
+
"tailwindcss-animate": "^1.0.7",
|
|
86
|
+
"typescript": "^5.2.2",
|
|
87
|
+
"typescript-eslint": "^8.53.0",
|
|
88
|
+
"vite": "^5.1.6",
|
|
89
|
+
"vite-plugin-dts": "^3.7.3"
|
|
90
|
+
}
|
|
91
|
+
}
|