@anzusystems/common-admin 1.47.0-beta.34 → 1.47.0-beta.340
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/dist/AFormRemoteAutocomplete.vue_vue_type_script_setup_true_lang-Cc4fwgQq.mjs +6756 -0
- package/dist/AFormRemoteAutocomplete.vue_vue_type_script_setup_true_lang-Cc4fwgQq.mjs.map +1 -0
- package/dist/common-admin.css +1 -0
- package/dist/common-admin.d.ts +19582 -0
- package/dist/common-admin.js +22424 -0
- package/dist/common-admin.js.map +1 -0
- package/dist/index-Bk8A-WJh.mjs +20614 -0
- package/dist/index-Bk8A-WJh.mjs.map +1 -0
- package/dist/labs.d.ts +929 -0
- package/dist/labs.js +1186 -0
- package/dist/labs.js.map +1 -0
- package/dist/webfontloader-DeB77L0f.mjs +452 -0
- package/dist/webfontloader-DeB77L0f.mjs.map +1 -0
- package/package.json +86 -61
- package/dist/common-admin.es.d.ts +0 -11186
- package/dist/common-admin.es.js +0 -326
- package/dist/common-admin.es.js.map +0 -1
- package/dist/lib-hAtZsU89.js +0 -24214
- package/dist/lib-hAtZsU89.js.map +0 -1
- package/dist/style.css +0 -13
- package/dist/webfontloader-DmiWvmlF.js +0 -452
- package/dist/webfontloader-DmiWvmlF.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,22 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anzusystems/common-admin",
|
|
3
|
-
"packageManager": "yarn@4.
|
|
3
|
+
"packageManager": "yarn@4.12.0",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
7
7
|
"module": "./dist/common-admin.es.js",
|
|
8
|
-
"types": "./dist/common-admin.
|
|
8
|
+
"types": "./dist/common-admin.d.ts",
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
|
-
"import": "./dist/common-admin.
|
|
11
|
+
"import": "./dist/common-admin.js",
|
|
12
|
+
"types": "./dist/common-admin.d.ts"
|
|
13
|
+
},
|
|
14
|
+
"./styles": "./dist/common-admin.css",
|
|
15
|
+
"./labs": {
|
|
16
|
+
"import": "./dist/labs.js",
|
|
17
|
+
"types": "./dist/labs.d.ts"
|
|
12
18
|
},
|
|
13
|
-
"./styles": "./dist/style.css",
|
|
14
19
|
"./*": "./*"
|
|
15
20
|
},
|
|
16
|
-
"version": "1.47.0-beta.
|
|
17
|
-
"type": "module",
|
|
21
|
+
"version": "1.47.0-beta.340",
|
|
18
22
|
"license": "Apache-2.0",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/anzusystems/common-admin"
|
|
26
|
+
},
|
|
19
27
|
"scripts": {
|
|
28
|
+
"prepare": "node -e \"if (process.env.SKIP_PLAYWRIGHT_INSTALL !== 'true') { require('child_process').execSync('playwright install chromium --with-deps', { stdio: 'inherit' }) }\"",
|
|
20
29
|
"docs:dev": "vitepress dev docs",
|
|
21
30
|
"docs:build-only": "vitepress build docs",
|
|
22
31
|
"docs:build": "yarn build ; yarn docs:build-only",
|
|
@@ -29,83 +38,99 @@
|
|
|
29
38
|
"lib:build": "vite build --config vite.config.lib.ts",
|
|
30
39
|
"ci": "run-s --print-name lint:tsc lint:eslint lint:stylelint",
|
|
31
40
|
"lint": "yarn ci",
|
|
32
|
-
"lint:tsc": "vue-tsc --
|
|
33
|
-
"lint:
|
|
34
|
-
"lint:eslint
|
|
41
|
+
"lint:tsc": "NODE_OPTIONS=--max-old-space-size=4096 vue-tsc --build",
|
|
42
|
+
"lint:tsc:test": "NODE_OPTIONS=--max-old-space-size=4096 tsc --build tsconfig.test.json",
|
|
43
|
+
"lint:eslint": "eslint",
|
|
44
|
+
"lint:eslint:fix": "eslint --fix",
|
|
35
45
|
"lint:stylelint": "stylelint src/**/*.{scss,vue}",
|
|
36
46
|
"lint:stylelint:fix": "stylelint src/**/*.{scss,vue} --fix",
|
|
37
47
|
"lint:prettier": "prettier -c \"src/**/*.{ts,vue}\"",
|
|
38
48
|
"lint:prettier:fix": "prettier -w \"src/**/*.{ts,vue}\"",
|
|
39
|
-
"test": "
|
|
49
|
+
"test": "vitest",
|
|
50
|
+
"test:run": "vitest run",
|
|
51
|
+
"test:ui": "vitest --ui"
|
|
40
52
|
},
|
|
41
53
|
"devDependencies": {
|
|
42
54
|
"@anzusystems/common-admin": "workspace:*",
|
|
43
|
-
"@intlify/unplugin-vue-i18n": "^
|
|
44
|
-
"@kyvg/vue3-notification": "^3.2
|
|
55
|
+
"@intlify/unplugin-vue-i18n": "^11.0.3",
|
|
56
|
+
"@kyvg/vue3-notification": "^3.4.2",
|
|
45
57
|
"@mdi/font": "^7.4.47",
|
|
46
|
-
"@
|
|
47
|
-
"@shikijs/vitepress-twoslash": "^
|
|
48
|
-
"@stylistic/eslint-plugin": "^
|
|
49
|
-
"@tsconfig/
|
|
50
|
-
"@types/node": "^
|
|
58
|
+
"@sentry/vue": "^10.30.0",
|
|
59
|
+
"@shikijs/vitepress-twoslash": "^3.20.0",
|
|
60
|
+
"@stylistic/eslint-plugin": "^5.6.1",
|
|
61
|
+
"@tsconfig/node22": "^22.0.5",
|
|
62
|
+
"@types/node": "^24.10.3",
|
|
51
63
|
"@types/rusha": "^0.8.3",
|
|
52
|
-
"@types/sortablejs": "^1.15.
|
|
64
|
+
"@types/sortablejs": "^1.15.9",
|
|
53
65
|
"@types/webfontloader": "^1.6.38",
|
|
54
|
-
"@
|
|
55
|
-
"@
|
|
56
|
-
"@
|
|
57
|
-
"@
|
|
58
|
-
"@vue/
|
|
66
|
+
"@vitejs/plugin-vue": "^6.0.3",
|
|
67
|
+
"@vitest/browser": "^4.0.15",
|
|
68
|
+
"@vitest/browser-playwright": "^4.0.15",
|
|
69
|
+
"@vitest/ui": "^4.0.15",
|
|
70
|
+
"@vue/eslint-config-prettier": "^10.2.0",
|
|
71
|
+
"@vue/eslint-config-typescript": "^14.6.0",
|
|
72
|
+
"@vue/language-server": "3.1.5",
|
|
73
|
+
"@vue/test-utils": "^2.4.6",
|
|
74
|
+
"@vue/tsconfig": "0.8.1",
|
|
59
75
|
"@vuelidate/core": "^2.0.3",
|
|
60
76
|
"@vuelidate/validators": "^2.0.4",
|
|
61
|
-
"@vueuse/core": "^
|
|
62
|
-
"@vueuse/integrations": "^
|
|
63
|
-
"axios": "1.
|
|
77
|
+
"@vueuse/core": "^14.1.0",
|
|
78
|
+
"@vueuse/integrations": "^14.1.0",
|
|
79
|
+
"axios": "1.13.2",
|
|
64
80
|
"cropperjs": "^1.6.2",
|
|
65
|
-
"dayjs": "1.11.
|
|
66
|
-
"eslint": "
|
|
67
|
-
"eslint-plugin-vue": "
|
|
81
|
+
"dayjs": "1.11.19",
|
|
82
|
+
"eslint": "9.39.1",
|
|
83
|
+
"eslint-plugin-vue": "10.6.2",
|
|
68
84
|
"npm-run-all": "^4.1.5",
|
|
69
|
-
"pinia": "
|
|
70
|
-
"
|
|
71
|
-
"postcss
|
|
72
|
-
"postcss-
|
|
73
|
-
"
|
|
85
|
+
"pinia": "3.0.4",
|
|
86
|
+
"playwright": "^1.57.0",
|
|
87
|
+
"postcss": "^8.5.6",
|
|
88
|
+
"postcss-html": "^1.8.0",
|
|
89
|
+
"postcss-prefix-selector": "^2.1.1",
|
|
90
|
+
"prettier": "^3.7.4",
|
|
74
91
|
"rusha": "^0.8.14",
|
|
75
|
-
"sass": "
|
|
76
|
-
"socket.io-client": "4.
|
|
77
|
-
"sortablejs": "^1.15.
|
|
78
|
-
"stylelint": "16.
|
|
79
|
-
"stylelint-config-recommended-vue": "^1.
|
|
80
|
-
"stylelint-config-standard-scss": "^
|
|
81
|
-
"typescript": "5.
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"vite
|
|
85
|
-
"vite-plugin-
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"vue
|
|
90
|
-
"vue-
|
|
91
|
-
"
|
|
92
|
+
"sass": "1.94.2",
|
|
93
|
+
"socket.io-client": "4.8.1",
|
|
94
|
+
"sortablejs": "^1.15.6",
|
|
95
|
+
"stylelint": "16.26.1",
|
|
96
|
+
"stylelint-config-recommended-vue": "^1.6.1",
|
|
97
|
+
"stylelint-config-standard-scss": "^16.0.0",
|
|
98
|
+
"typescript": "5.9.3",
|
|
99
|
+
"unplugin": "2.3.11",
|
|
100
|
+
"uuid": "^13.0.0",
|
|
101
|
+
"vite": "7.2.7",
|
|
102
|
+
"vite-plugin-dts": "4.5.4",
|
|
103
|
+
"vite-plugin-vuetify": "^2.1.2",
|
|
104
|
+
"vitepress": "1.6.4",
|
|
105
|
+
"vitest": "^4.0.15",
|
|
106
|
+
"vue": "3.5.25",
|
|
107
|
+
"vue-eslint-parser": "^10.2.0",
|
|
108
|
+
"vue-i18n": "11.2.2",
|
|
109
|
+
"vue-router": "4.6.4",
|
|
110
|
+
"vue-tsc": "3.1.5",
|
|
111
|
+
"vuetify": "3.11.3",
|
|
92
112
|
"webfontloader": "^1.6.28"
|
|
93
113
|
},
|
|
94
114
|
"peerDependencies": {
|
|
115
|
+
"@sentry/vue": "^10.0.0",
|
|
95
116
|
"@vuelidate/core": "2.0.3",
|
|
96
117
|
"@vuelidate/validators": "2.0.4",
|
|
97
|
-
"@vueuse/core": "
|
|
98
|
-
"@vueuse/integrations": "
|
|
99
|
-
"axios": "1.
|
|
100
|
-
"dayjs": "1.11.
|
|
101
|
-
"pinia": "
|
|
102
|
-
"socket.io-client": "4.
|
|
103
|
-
"
|
|
104
|
-
"vue
|
|
105
|
-
"vue-
|
|
106
|
-
"
|
|
118
|
+
"@vueuse/core": "14.1.0",
|
|
119
|
+
"@vueuse/integrations": "14.1.0",
|
|
120
|
+
"axios": "1.13.2",
|
|
121
|
+
"dayjs": "1.11.19",
|
|
122
|
+
"pinia": "3.0.4",
|
|
123
|
+
"socket.io-client": "4.8.1",
|
|
124
|
+
"unplugin": "2.3.11",
|
|
125
|
+
"vue": "3.5.25",
|
|
126
|
+
"vue-i18n": "11.2.2",
|
|
127
|
+
"vue-router": "4.6.4",
|
|
128
|
+
"vuetify": "3.11.3"
|
|
107
129
|
},
|
|
108
130
|
"peerDependenciesMeta": {
|
|
131
|
+
"@sentry/vue": {
|
|
132
|
+
"optional": true
|
|
133
|
+
},
|
|
109
134
|
"@vueuse/core": {
|
|
110
135
|
"optional": true
|
|
111
136
|
},
|