@anzusystems/common-admin 1.47.0-beta.36 → 1.47.0-beta.361
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-BNyX-8Ah.mjs +7442 -0
- package/dist/AFormRemoteAutocomplete.vue_vue_type_script_setup_true_lang-BNyX-8Ah.mjs.map +1 -0
- package/dist/common-admin.css +1 -0
- package/dist/common-admin.d.ts +26064 -0
- package/dist/common-admin.js +24103 -0
- package/dist/common-admin.js.map +1 -0
- package/dist/index-CGpu1VTe.mjs +21504 -0
- package/dist/index-CGpu1VTe.mjs.map +1 -0
- package/dist/labs.d.ts +1912 -0
- package/dist/labs.js +5219 -0
- package/dist/labs.js.map +1 -0
- package/dist/webfontloader-CHE2rJZS.mjs +454 -0
- package/dist/webfontloader-CHE2rJZS.mjs.map +1 -0
- package/package.json +101 -69
- package/src/eslint/plugin.mjs +574 -0
- package/dist/common-admin.es.d.ts +0 -11188
- package/dist/common-admin.es.js +0 -327
- package/dist/common-admin.es.js.map +0 -1
- package/dist/lib-C41x-F5b.js +0 -24211
- package/dist/lib-C41x-F5b.js.map +0 -1
- package/dist/style.css +0 -13
- package/dist/webfontloader-B64MebV6.js +0 -452
- package/dist/webfontloader-B64MebV6.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,22 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anzusystems/common-admin",
|
|
3
|
-
"packageManager": "yarn@4.
|
|
3
|
+
"packageManager": "yarn@4.14.1",
|
|
4
4
|
"files": [
|
|
5
|
-
"dist"
|
|
5
|
+
"dist",
|
|
6
|
+
"src/eslint"
|
|
6
7
|
],
|
|
7
8
|
"module": "./dist/common-admin.es.js",
|
|
8
|
-
"types": "./dist/common-admin.
|
|
9
|
+
"types": "./dist/common-admin.d.ts",
|
|
9
10
|
"exports": {
|
|
10
11
|
".": {
|
|
11
|
-
"import": "./dist/common-admin.
|
|
12
|
+
"import": "./dist/common-admin.js",
|
|
13
|
+
"types": "./dist/common-admin.d.ts"
|
|
12
14
|
},
|
|
13
|
-
"./styles": "./dist/
|
|
15
|
+
"./styles": "./dist/common-admin.css",
|
|
16
|
+
"./labs": {
|
|
17
|
+
"import": "./dist/labs.js",
|
|
18
|
+
"types": "./dist/labs.d.ts"
|
|
19
|
+
},
|
|
20
|
+
"./eslint": "./src/eslint/plugin.mjs",
|
|
14
21
|
"./*": "./*"
|
|
15
22
|
},
|
|
16
|
-
"version": "1.47.0-beta.
|
|
17
|
-
"type": "module",
|
|
23
|
+
"version": "1.47.0-beta.361",
|
|
18
24
|
"license": "Apache-2.0",
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "git+https://github.com/anzusystems/common-admin.git"
|
|
28
|
+
},
|
|
19
29
|
"scripts": {
|
|
30
|
+
"prepare": "node -e \"if (process.env.SKIP_PLAYWRIGHT_INSTALL !== 'true') { require('child_process').execSync('playwright install chromium --with-deps', { stdio: 'inherit' }) }\"",
|
|
20
31
|
"docs:dev": "vitepress dev docs",
|
|
21
32
|
"docs:build-only": "vitepress build docs",
|
|
22
33
|
"docs:build": "yarn build ; yarn docs:build-only",
|
|
@@ -27,85 +38,106 @@
|
|
|
27
38
|
"build": "vite build --config vite.config.lib.ts",
|
|
28
39
|
"build:dev": "vite build --minify false --sourcemap true --config vite.config.lib.ts",
|
|
29
40
|
"lib:build": "vite build --config vite.config.lib.ts",
|
|
30
|
-
"ci": "run-s --print-name lint:tsc lint:eslint lint:stylelint",
|
|
31
|
-
"lint": "yarn ci",
|
|
32
|
-
"lint:
|
|
33
|
-
"lint:
|
|
34
|
-
"lint:
|
|
41
|
+
"ci": "run-s --print-name lint:tsc lint:oxlint lint:eslint lint:stylelint",
|
|
42
|
+
"lint": "[ \"$*\" = \"--fix\" ] && yarn lint:fix || yarn ci",
|
|
43
|
+
"lint:fix": "run-s --print-name lint:tsc format lint:oxlint:fix lint:eslint:fix lint:stylelint:fix",
|
|
44
|
+
"lint:tsc": "NODE_OPTIONS=--max-old-space-size=4096 vue-tsc --build",
|
|
45
|
+
"lint:tsc:test": "NODE_OPTIONS=--max-old-space-size=4096 tsc --build tsconfig.test.json",
|
|
46
|
+
"lint:eslint": "eslint",
|
|
47
|
+
"lint:eslint:fix": "eslint --fix",
|
|
48
|
+
"lint:oxlint": "oxlint .",
|
|
49
|
+
"lint:oxlint:fix": "oxlint . --fix",
|
|
35
50
|
"lint:stylelint": "stylelint src/**/*.{scss,vue}",
|
|
36
51
|
"lint:stylelint:fix": "stylelint src/**/*.{scss,vue} --fix",
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"test": "
|
|
52
|
+
"format": "oxfmt src/",
|
|
53
|
+
"format:check": "oxfmt src/ --check",
|
|
54
|
+
"test": "vitest",
|
|
55
|
+
"test:run": "vitest run",
|
|
56
|
+
"test:ui": "vitest --ui"
|
|
40
57
|
},
|
|
41
58
|
"devDependencies": {
|
|
42
59
|
"@anzusystems/common-admin": "workspace:*",
|
|
43
|
-
"@intlify/unplugin-vue-i18n": "^
|
|
44
|
-
"@kyvg/vue3-notification": "^3.2
|
|
60
|
+
"@intlify/unplugin-vue-i18n": "^11.1.2",
|
|
61
|
+
"@kyvg/vue3-notification": "^3.4.2",
|
|
45
62
|
"@mdi/font": "^7.4.47",
|
|
46
|
-
"@
|
|
47
|
-
"@shikijs/vitepress-twoslash": "^
|
|
48
|
-
"@stylistic/eslint-plugin": "^
|
|
49
|
-
"@tsconfig/
|
|
50
|
-
"@types/node": "^
|
|
63
|
+
"@sentry/vue": "^10.50.0",
|
|
64
|
+
"@shikijs/vitepress-twoslash": "^4.0.2",
|
|
65
|
+
"@stylistic/eslint-plugin": "^5.10.0",
|
|
66
|
+
"@tsconfig/node22": "^22.0.5",
|
|
67
|
+
"@types/node": "^24.12.2",
|
|
51
68
|
"@types/rusha": "^0.8.3",
|
|
52
|
-
"@types/sortablejs": "^1.15.
|
|
69
|
+
"@types/sortablejs": "^1.15.9",
|
|
53
70
|
"@types/webfontloader": "^1.6.38",
|
|
54
|
-
"@
|
|
55
|
-
"@
|
|
56
|
-
"@
|
|
57
|
-
"@
|
|
58
|
-
"@vue/
|
|
71
|
+
"@vitejs/plugin-vue": "^6.0.6",
|
|
72
|
+
"@vitest/browser": "^4.1.5",
|
|
73
|
+
"@vitest/browser-playwright": "^4.1.5",
|
|
74
|
+
"@vitest/ui": "^4.1.5",
|
|
75
|
+
"@vue/eslint-config-typescript": "^14.7.0",
|
|
76
|
+
"@vue/language-server": "3.2.7",
|
|
77
|
+
"@vue/test-utils": "^2.4.9",
|
|
78
|
+
"@vue/tsconfig": "0.9.1",
|
|
59
79
|
"@vuelidate/core": "^2.0.3",
|
|
60
80
|
"@vuelidate/validators": "^2.0.4",
|
|
61
|
-
"@vueuse/core": "^
|
|
62
|
-
"@vueuse/integrations": "^
|
|
63
|
-
"axios": "1.
|
|
81
|
+
"@vueuse/core": "^14.2.1",
|
|
82
|
+
"@vueuse/integrations": "^14.2.1",
|
|
83
|
+
"axios": "1.15.2",
|
|
64
84
|
"cropperjs": "^1.6.2",
|
|
65
|
-
"dayjs": "1.11.
|
|
66
|
-
"eslint": "
|
|
67
|
-
"eslint-plugin-
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
85
|
+
"dayjs": "1.11.20",
|
|
86
|
+
"eslint": "^10.2.1",
|
|
87
|
+
"eslint-plugin-oxlint": "1.62.0",
|
|
88
|
+
"eslint-plugin-vue": "10.9.0",
|
|
89
|
+
"eslint-plugin-vuetify": "^2.7.2",
|
|
90
|
+
"npm-run-all2": "^8.0.4",
|
|
91
|
+
"oxfmt": "^0.47.0",
|
|
92
|
+
"oxlint": "1.62.0",
|
|
93
|
+
"pinia": "3.0.4",
|
|
94
|
+
"playwright": "^1.59.1",
|
|
95
|
+
"postcss": "^8.5.12",
|
|
96
|
+
"postcss-html": "^1.8.1",
|
|
97
|
+
"postcss-prefix-selector": "^2.1.1",
|
|
74
98
|
"rusha": "^0.8.14",
|
|
75
|
-
"sass": "
|
|
76
|
-
"socket.io-client": "4.
|
|
77
|
-
"sortablejs": "^1.15.
|
|
78
|
-
"stylelint": "
|
|
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
|
-
"
|
|
99
|
+
"sass": "1.99.0",
|
|
100
|
+
"socket.io-client": "4.8.3",
|
|
101
|
+
"sortablejs": "^1.15.7",
|
|
102
|
+
"stylelint": "17.9.1",
|
|
103
|
+
"stylelint-config-recommended-vue": "^1.6.1",
|
|
104
|
+
"stylelint-config-standard-scss": "^17.0.0",
|
|
105
|
+
"typescript": "5.9.3",
|
|
106
|
+
"unplugin": "3.0.0",
|
|
107
|
+
"uuid": "^14.0.0",
|
|
108
|
+
"vite": "7.3.2",
|
|
109
|
+
"vite-plugin-dts": "4.5.4",
|
|
110
|
+
"vite-plugin-vuetify": "^2.1.3",
|
|
111
|
+
"vitepress": "1.6.4",
|
|
112
|
+
"vitest": "^4.1.5",
|
|
113
|
+
"vue": "3.5.33",
|
|
114
|
+
"vue-eslint-parser": "^10.4.0",
|
|
115
|
+
"vue-i18n": "11.4.0",
|
|
116
|
+
"vue-router": "5.0.6",
|
|
117
|
+
"vue-tsc": "3.2.7",
|
|
118
|
+
"vuetify": "4.0.6",
|
|
92
119
|
"webfontloader": "^1.6.28"
|
|
93
120
|
},
|
|
94
121
|
"peerDependencies": {
|
|
95
|
-
"@
|
|
96
|
-
"@vuelidate/
|
|
97
|
-
"@
|
|
98
|
-
"@vueuse/
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"vue
|
|
106
|
-
"
|
|
122
|
+
"@sentry/vue": "^10.0.0",
|
|
123
|
+
"@vuelidate/core": "^2.0.3",
|
|
124
|
+
"@vuelidate/validators": "^2.0.4",
|
|
125
|
+
"@vueuse/core": "^14.1.0",
|
|
126
|
+
"@vueuse/integrations": "^14.1.0",
|
|
127
|
+
"axios": "^1.13.4",
|
|
128
|
+
"dayjs": "^1.11.19",
|
|
129
|
+
"pinia": "^3.0.4",
|
|
130
|
+
"socket.io-client": "^4.8.3",
|
|
131
|
+
"unplugin": "^3.0.0",
|
|
132
|
+
"vue": "^3.5.27",
|
|
133
|
+
"vue-i18n": "^11.2.8",
|
|
134
|
+
"vue-router": "^5.0.1",
|
|
135
|
+
"vuetify": "^4.0.0"
|
|
107
136
|
},
|
|
108
137
|
"peerDependenciesMeta": {
|
|
138
|
+
"@sentry/vue": {
|
|
139
|
+
"optional": true
|
|
140
|
+
},
|
|
109
141
|
"@vueuse/core": {
|
|
110
142
|
"optional": true
|
|
111
143
|
},
|