@amirjalili1374/ui-kit 1.9.2 → 1.10.0
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/LICENSE +21 -0
- package/README.md +62 -24
- package/dist/components/Loading.vue.d.ts +8 -1
- package/dist/components/common/AppStepper.vue.d.ts +11 -0
- package/dist/components/layout/AppCustomizerControls.vue.d.ts +34 -0
- package/dist/components/layout/AppCustomizerSubmit.vue.d.ts +14 -0
- package/dist/components/layout/AppHeader.vue.d.ts +7 -3
- package/dist/components/layout/AppHeaderMenu.vue.d.ts +30 -0
- package/dist/components/shared/BaseIcon.vue.d.ts +24 -6
- package/dist/components/shared/ToggleSwitch.vue.d.ts +2 -0
- package/dist/index.d.ts +4 -0
- package/dist/style.css +1 -1
- package/dist/ui-kit.cjs +2 -2
- package/dist/ui-kit.es.js +2 -2
- package/package.json +13 -5
package/package.json
CHANGED
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amirjalili1374/ui-kit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.0",
|
|
4
4
|
"description": "A reusable UI component library built with Vue 3, Vuetify, and TypeScript",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"./dist/style.css"
|
|
8
|
+
],
|
|
7
9
|
"main": "./dist/ui-kit.cjs",
|
|
8
10
|
"module": "./dist/ui-kit.es.js",
|
|
9
11
|
"types": "./dist/index.d.ts",
|
|
10
12
|
"files": [
|
|
11
13
|
"dist",
|
|
12
|
-
"README.md"
|
|
14
|
+
"README.md",
|
|
15
|
+
"LICENSE"
|
|
13
16
|
],
|
|
14
17
|
"exports": {
|
|
15
18
|
".": {
|
|
@@ -30,6 +33,7 @@
|
|
|
30
33
|
"ui-kit"
|
|
31
34
|
],
|
|
32
35
|
"license": "MIT",
|
|
36
|
+
"packageManager": "npm@11.16.0",
|
|
33
37
|
"engines": {
|
|
34
38
|
"node": "^20.19.0 || >=22.12.0"
|
|
35
39
|
},
|
|
@@ -43,7 +47,7 @@
|
|
|
43
47
|
"build:prelive": "npm run typecheck && vite build --mode prelive",
|
|
44
48
|
"build:live": "npm run typecheck && vite build --mode live",
|
|
45
49
|
"build:demo": "npm run typecheck && vite build --mode demo",
|
|
46
|
-
"build:lib": "cross-env BUILD_LIB=true vite build && npm run build:types",
|
|
50
|
+
"build:lib": "npm run typecheck && cross-env BUILD_LIB=true vite build && npm run build:types",
|
|
47
51
|
"build:types": "vue-tsc --declaration --emitDeclarationOnly --project tsconfig.lib.json --skipLibCheck",
|
|
48
52
|
"preview": "vite preview --port 5050 --host",
|
|
49
53
|
"test": "vitest run",
|
|
@@ -51,11 +55,14 @@
|
|
|
51
55
|
"test:coverage": "vitest run --coverage",
|
|
52
56
|
"typecheck": "vue-tsc --noEmit",
|
|
53
57
|
"typecheck:watch": "vue-tsc --noEmit --watch",
|
|
54
|
-
"lint": "
|
|
58
|
+
"lint": "npm run lint:check",
|
|
55
59
|
"lint:check": "eslint .",
|
|
60
|
+
"lint:fix": "eslint . --fix",
|
|
56
61
|
"format": "prettier --write \"src/**/*.{js,ts,vue,scss,css,json}\"",
|
|
57
62
|
"clean": "rimraf dist node_modules/.vite",
|
|
58
63
|
"analyze": "vite build && npx vite-bundle-analyzer dist/stats.html",
|
|
64
|
+
"test:consumer": "node scripts/verify-packed-package.mjs",
|
|
65
|
+
"validate": "npm run lint:check && npm run typecheck && npm run test:coverage && npm run build:lib && npm run test:consumer",
|
|
59
66
|
"prepublishOnly": "npm run build:lib"
|
|
60
67
|
},
|
|
61
68
|
"dependencies": {
|
|
@@ -95,6 +102,7 @@
|
|
|
95
102
|
"cross-env": "^10.1.0",
|
|
96
103
|
"eslint": "^9.39.0",
|
|
97
104
|
"eslint-plugin-vue": "^10.9.2",
|
|
105
|
+
"globals": "^16.4.0",
|
|
98
106
|
"happy-dom": "^15.11.7",
|
|
99
107
|
"prettier": "^3.9.1",
|
|
100
108
|
"rimraf": "^6.1.3",
|