@open-xamu-co/ui-components-vue 2.0.0 → 3.0.0-next.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/CHANGELOG.md +27 -0
- package/dist/components/Table.vue.d.ts +27 -25
- package/dist/components/form/InputOptions.vue.d.ts +1 -1
- package/dist/components/pagination/Content.vue.d.ts +3 -3
- package/dist/components/pagination/Simple.vue.d.ts +3 -3
- package/dist/components/value/Complex.vue.d.ts +55 -37
- package/dist/components/value/Simple.vue.d.ts +46 -26
- package/dist/composables/theme.d.ts +2 -3
- package/dist/index-FPvL0ftc.js +3737 -0
- package/dist/index-GTt9JdP0.cjs +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +13 -11
- package/dist/plugin.cjs +1 -1
- package/dist/plugin.js +6 -3
- package/dist/theme-88fuR5WZ.cjs +1 -0
- package/dist/theme-sIbn2pce.js +39 -0
- package/dist/theme.cjs +1 -0
- package/dist/theme.js +7 -0
- package/dist/types/props.d.ts +3 -3
- package/package.json +81 -74
- package/dist/index-CggmbSr7.js +0 -3753
- package/dist/index-GmX4yRLn.cjs +0 -1
package/package.json
CHANGED
|
@@ -1,76 +1,83 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
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
|
-
|
|
2
|
+
"name": "@open-xamu-co/ui-components-vue",
|
|
3
|
+
"version": "3.0.0-next.1",
|
|
4
|
+
"description": "Vue component system for the xamu project",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"i": "yarn --frozen-lockfile",
|
|
7
|
+
"build:entries": "rimraf dist && vite build",
|
|
8
|
+
"build:types": "vue-tsc --declaration --emitDeclarationOnly",
|
|
9
|
+
"build": "yarn build:entries && yarn build:types",
|
|
10
|
+
"dev": "vite dev"
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/xamu-co/ui.git"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"vue",
|
|
18
|
+
"component",
|
|
19
|
+
"system"
|
|
20
|
+
],
|
|
21
|
+
"author": "@xamu-co",
|
|
22
|
+
"publishConfig": {
|
|
23
|
+
"access": "public"
|
|
24
|
+
},
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/xamu-co/ui/issues"
|
|
28
|
+
},
|
|
29
|
+
"homepage": "https://github.com/xamu-co/ui/packages/vue#readme",
|
|
30
|
+
"type": "module",
|
|
31
|
+
"main": "dist/index.js",
|
|
32
|
+
"types": "dist/index.d.ts",
|
|
33
|
+
"typings": "dist/index.d.ts",
|
|
34
|
+
"module": "dist/index.js",
|
|
35
|
+
"files": [
|
|
36
|
+
"CHANGELOG.md",
|
|
37
|
+
"README.md",
|
|
38
|
+
"dist"
|
|
39
|
+
],
|
|
40
|
+
"exports": {
|
|
41
|
+
".": {
|
|
42
|
+
"types": "./dist/index.d.ts",
|
|
43
|
+
"import": "./dist/index.js",
|
|
44
|
+
"require": "./dist/index.cjs"
|
|
45
|
+
},
|
|
46
|
+
"./plugin": {
|
|
47
|
+
"types": "./dist/plugin.d.ts",
|
|
48
|
+
"import": "./dist/plugin.js",
|
|
49
|
+
"require": "./dist/plugin.cjs"
|
|
50
|
+
},
|
|
51
|
+
"./theme": {
|
|
52
|
+
"types": "./dist/composables/theme.d.ts",
|
|
53
|
+
"import": "./dist/theme.js",
|
|
54
|
+
"require": "./dist/theme.cjs"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"@fortawesome/fontawesome-common-types": "^6.4.0",
|
|
59
|
+
"@open-xamu-co/ui-common-enums": "^2.0.0",
|
|
60
|
+
"@open-xamu-co/ui-common-helpers": "^2.0.0",
|
|
61
|
+
"@open-xamu-co/ui-common-types": "^2.1.0",
|
|
62
|
+
"@types/lodash": "^4.14.192",
|
|
63
|
+
"@types/validator": "^13.11.1",
|
|
64
|
+
"lodash": "^4.17.21",
|
|
65
|
+
"nanoid": "^4.0.2",
|
|
66
|
+
"sweetalert2": "^11.7.5",
|
|
67
|
+
"validator": "^13.11.0"
|
|
68
|
+
},
|
|
69
|
+
"devDependencies": {
|
|
70
|
+
"@open-xamu-co/ui-styles": "^2.0.1",
|
|
71
|
+
"@types/lodash": "^4.14.192",
|
|
72
|
+
"@types/node": "^18.17.17",
|
|
73
|
+
"@vitejs/plugin-vue": "^4.2.1",
|
|
74
|
+
"vite": "^5.0.10",
|
|
75
|
+
"vue": "^3.3.12",
|
|
76
|
+
"vue-router": "4",
|
|
77
|
+
"vue-tsc": "^1.6.4"
|
|
78
|
+
},
|
|
79
|
+
"engines": {
|
|
80
|
+
"node": ">=18",
|
|
81
|
+
"yarn": ">=1.22.4"
|
|
82
|
+
}
|
|
76
83
|
}
|