@voicenter-team/voicenter-ui-plus 3.0.12 → 3.1.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/library/assets/assets/sass/main.css +1 -1
- package/library/assets/components/VcCheckbox/VcCheckbox.css +1 -1
- package/library/assets/components/VcCodeBlock/VcCodeBlock.css +1 -0
- package/library/assets/node_modules/element-plus/theme-chalk/src/checkbox-button.css +1 -0
- package/library/components/VcCheckbox/VcCheckbox.vue.mjs +7 -4
- package/library/components/VcCodeBlock/VcCodeBlock.vue.mjs +243 -0
- package/library/components/VcCodeBlock/VcCodeBlock.vue3.mjs +5 -0
- package/library/components/VcDatePicker/VcDatePicker.vue.mjs +1 -1
- package/library/components/VcDropdown/VcDropdownItem.vue.mjs +1 -1
- package/library/components/VcForm/VcForm.vue.mjs +2 -1
- package/library/components/VcForm/VcFormItem.vue.mjs +2 -1
- package/library/components/VcHtmlEditor/VcHtmlEditorToolbar.vue.mjs +1 -1
- package/library/components/VcInput/VcInput.vue.mjs +2 -1
- package/library/components/VcMdEditor/VcMdEditor.vue.mjs +1 -1
- package/library/components/VcMdEditor/VcMdEditorToolbar.vue.mjs +1 -1
- package/library/components/VcRadio/VcRadio.vue.mjs +2 -1
- package/library/components/VcSelect/VcSelect.vue.mjs +2 -1
- package/library/components/VcSlider/VcSlider.vue.mjs +1 -1
- package/library/entity/components/Table/VcEntityListTable.vue.mjs +61 -43
- package/library/index.mjs +169 -167
- package/library/index.mjs.br +0 -0
- package/library/index.mjs.gz +0 -0
- package/library/plugin.mjs +186 -182
- package/library/plugin.mjs.br +0 -0
- package/library/plugin.mjs.gz +0 -0
- package/library/style.css +11 -7
- package/library/style.css.br +0 -0
- package/library/style.css.gz +0 -0
- package/library/types/components/VcCheckbox/VcCheckbox.vue.d.ts +3 -0
- package/library/types/components/VcCheckboxGroup/VcCheckboxGroup.vue.d.ts +3 -3
- package/library/types/components/VcCodeBlock/VcCodeBlock.vue.d.ts +92 -0
- package/library/types/components/VcTable/VcTable.vue.d.ts +18 -18
- package/library/types/components/exports.d.ts +7 -1
- package/library/types/directives/click-outside.d.ts +7 -0
- package/library/types/directives/input-mask.d.ts +8 -0
- package/library/types/directives/long-press.d.ts +8 -0
- package/library/types/directives/resize.d.ts +10 -0
- package/library/types/index.d.ts +1 -0
- package/library/types/types/Entity.basic.types.d.ts +4 -0
- package/library/types/utils/element-plus-imports.d.ts +1 -1
- package/library/utils/lucideIcon.mjs +4 -1
- package/package.json +156 -153
- /package/library/assets/node_modules/element-plus/theme-chalk/src/{dropdown-item.css → tooltip.css} +0 -0
package/package.json
CHANGED
|
@@ -1,153 +1,156 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@voicenter-team/voicenter-ui-plus",
|
|
3
|
-
"version": "3.0
|
|
4
|
-
"scripts": {
|
|
5
|
-
"dev": "vite",
|
|
6
|
-
"build": "vite build",
|
|
7
|
-
"analyze": "cross-env ANALYZE=true vite build",
|
|
8
|
-
"build:documentation": "npm run build && cross-env TARGET=doc vite build",
|
|
9
|
-
"ts-check": "vue-tsc --noEmit -p tsconfig.prod.json",
|
|
10
|
-
"ts-check-all": "vue-tsc --noEmit",
|
|
11
|
-
"generate-icon-list": "node ./script/generate/generateIconList.js",
|
|
12
|
-
"preview": "vite preview",
|
|
13
|
-
"test": "vitest",
|
|
14
|
-
"test:ui": "vitest --ui",
|
|
15
|
-
"test:coverage": "vitest run --coverage",
|
|
16
|
-
"test:coverage:watch": "vitest --coverage",
|
|
17
|
-
"test:coverage:ui": "vitest --coverage --ui",
|
|
18
|
-
"upload-icons": "node ./script/icons-publish/index.js",
|
|
19
|
-
"scan-for-remote": "npm run build && node ./script/scan-for-remote-sources.js",
|
|
20
|
-
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts --fix --ignore-path .gitignore",
|
|
21
|
-
"mcp:install": "cd mcp-server && npm install",
|
|
22
|
-
"mcp:generate": "cd mcp-server && npm run generate:all",
|
|
23
|
-
"mcp:dev": "cd mcp-server && npm run dev",
|
|
24
|
-
"mcp:build": "cd mcp-server && npm run build",
|
|
25
|
-
"mcp:start": "cd mcp-server && npm start",
|
|
26
|
-
"release": "npm ci && npm run build && npm publish"
|
|
27
|
-
},
|
|
28
|
-
"main": "./library/index.mjs",
|
|
29
|
-
"module": "./library/index.mjs",
|
|
30
|
-
"types": "./library/types/index.d.ts",
|
|
31
|
-
"sideEffects": [
|
|
32
|
-
"**/*.css",
|
|
33
|
-
"./library/plugin.mjs"
|
|
34
|
-
],
|
|
35
|
-
"exports": {
|
|
36
|
-
".": {
|
|
37
|
-
"types": "./library/types/index.d.ts",
|
|
38
|
-
"import": "./library/index.mjs",
|
|
39
|
-
"default": "./library/index.mjs"
|
|
40
|
-
},
|
|
41
|
-
"./plugin": {
|
|
42
|
-
"types": "./library/types/plugin.d.ts",
|
|
43
|
-
"import": "./library/plugin.mjs",
|
|
44
|
-
"default": "./library/plugin.mjs"
|
|
45
|
-
},
|
|
46
|
-
"./services": {
|
|
47
|
-
"types": "./library/types/services/index.d.ts",
|
|
48
|
-
"import": "./library/services/index.mjs",
|
|
49
|
-
"default": "./library/services/index.mjs"
|
|
50
|
-
},
|
|
51
|
-
"./theme": {
|
|
52
|
-
"types": "./library/types/theme/index.d.ts",
|
|
53
|
-
"import": "./library/theme/index.mjs",
|
|
54
|
-
"default": "./library/theme/index.mjs"
|
|
55
|
-
},
|
|
56
|
-
"./style.css": "./library/style.css",
|
|
57
|
-
"./
|
|
58
|
-
"./src/theme
|
|
59
|
-
"./src/theme/
|
|
60
|
-
"./
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
"@codemirror/lang-
|
|
75
|
-
"@
|
|
76
|
-
"@
|
|
77
|
-
"@
|
|
78
|
-
"@milkdown/
|
|
79
|
-
"@milkdown/
|
|
80
|
-
"@
|
|
81
|
-
"@
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
"
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
"@
|
|
100
|
-
"@
|
|
101
|
-
"@
|
|
102
|
-
"@
|
|
103
|
-
"@milkdown/
|
|
104
|
-
"@
|
|
105
|
-
"@
|
|
106
|
-
"@
|
|
107
|
-
"@
|
|
108
|
-
"@types/
|
|
109
|
-
"@types/
|
|
110
|
-
"@
|
|
111
|
-
"@
|
|
112
|
-
"@
|
|
113
|
-
"@
|
|
114
|
-
"@
|
|
115
|
-
"@
|
|
116
|
-
"@
|
|
117
|
-
"@
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
"
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
"
|
|
140
|
-
"vite
|
|
141
|
-
"vite-
|
|
142
|
-
"vite-plugin-
|
|
143
|
-
"vite-plugin-
|
|
144
|
-
"
|
|
145
|
-
"
|
|
146
|
-
"
|
|
147
|
-
"
|
|
148
|
-
"vue-
|
|
149
|
-
"vue-
|
|
150
|
-
"
|
|
151
|
-
"
|
|
152
|
-
|
|
153
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@voicenter-team/voicenter-ui-plus",
|
|
3
|
+
"version": "3.1.0",
|
|
4
|
+
"scripts": {
|
|
5
|
+
"dev": "vite",
|
|
6
|
+
"build": "vite build",
|
|
7
|
+
"analyze": "cross-env ANALYZE=true vite build",
|
|
8
|
+
"build:documentation": "npm run build && cross-env TARGET=doc vite build",
|
|
9
|
+
"ts-check": "vue-tsc --noEmit -p tsconfig.prod.json",
|
|
10
|
+
"ts-check-all": "vue-tsc --noEmit",
|
|
11
|
+
"generate-icon-list": "node ./script/generate/generateIconList.js",
|
|
12
|
+
"preview": "vite preview",
|
|
13
|
+
"test": "vitest",
|
|
14
|
+
"test:ui": "vitest --ui",
|
|
15
|
+
"test:coverage": "vitest run --coverage",
|
|
16
|
+
"test:coverage:watch": "vitest --coverage",
|
|
17
|
+
"test:coverage:ui": "vitest --coverage --ui",
|
|
18
|
+
"upload-icons": "node ./script/icons-publish/index.js",
|
|
19
|
+
"scan-for-remote": "npm run build && node ./script/scan-for-remote-sources.js",
|
|
20
|
+
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts --fix --ignore-path .gitignore",
|
|
21
|
+
"mcp:install": "cd mcp-server && npm install",
|
|
22
|
+
"mcp:generate": "cd mcp-server && npm run generate:all",
|
|
23
|
+
"mcp:dev": "cd mcp-server && npm run dev",
|
|
24
|
+
"mcp:build": "cd mcp-server && npm run build",
|
|
25
|
+
"mcp:start": "cd mcp-server && npm start",
|
|
26
|
+
"release": "npm ci && npm run build && npm publish"
|
|
27
|
+
},
|
|
28
|
+
"main": "./library/index.mjs",
|
|
29
|
+
"module": "./library/index.mjs",
|
|
30
|
+
"types": "./library/types/index.d.ts",
|
|
31
|
+
"sideEffects": [
|
|
32
|
+
"**/*.css",
|
|
33
|
+
"./library/plugin.mjs"
|
|
34
|
+
],
|
|
35
|
+
"exports": {
|
|
36
|
+
".": {
|
|
37
|
+
"types": "./library/types/index.d.ts",
|
|
38
|
+
"import": "./library/index.mjs",
|
|
39
|
+
"default": "./library/index.mjs"
|
|
40
|
+
},
|
|
41
|
+
"./plugin": {
|
|
42
|
+
"types": "./library/types/plugin.d.ts",
|
|
43
|
+
"import": "./library/plugin.mjs",
|
|
44
|
+
"default": "./library/plugin.mjs"
|
|
45
|
+
},
|
|
46
|
+
"./services": {
|
|
47
|
+
"types": "./library/types/services/index.d.ts",
|
|
48
|
+
"import": "./library/services/index.mjs",
|
|
49
|
+
"default": "./library/services/index.mjs"
|
|
50
|
+
},
|
|
51
|
+
"./theme": {
|
|
52
|
+
"types": "./library/types/theme/index.d.ts",
|
|
53
|
+
"import": "./library/theme/index.mjs",
|
|
54
|
+
"default": "./library/theme/index.mjs"
|
|
55
|
+
},
|
|
56
|
+
"./style.css": "./library/style.css",
|
|
57
|
+
"./base.css": "./library/assets/assets/sass/main.css",
|
|
58
|
+
"./src/theme/*": "./src/theme/*",
|
|
59
|
+
"./src/theme/tailwindScheme": "./src/theme/tailwindScheme.js",
|
|
60
|
+
"./src/theme/themes.json": "./src/theme/themes.json",
|
|
61
|
+
"./tailwind.config": "./tailwind.config.js",
|
|
62
|
+
"./library/types/*": "./library/types/*.d.ts"
|
|
63
|
+
},
|
|
64
|
+
"files": [
|
|
65
|
+
"library",
|
|
66
|
+
"src/theme",
|
|
67
|
+
"tailwind.config.js",
|
|
68
|
+
"tailwind.config.d.ts"
|
|
69
|
+
],
|
|
70
|
+
"engines": {
|
|
71
|
+
"node": ">= 20"
|
|
72
|
+
},
|
|
73
|
+
"peerDependencies": {
|
|
74
|
+
"@codemirror/lang-html": "^6.0.0",
|
|
75
|
+
"@codemirror/lang-json": "^6.0.1",
|
|
76
|
+
"@codemirror/lang-markdown": "^6.0.0",
|
|
77
|
+
"@lucide/vue": "^1.16.0",
|
|
78
|
+
"@milkdown/crepe": "^7.15.5",
|
|
79
|
+
"@milkdown/kit": "^7.15.5",
|
|
80
|
+
"@milkdown/utils": "^7.15.5",
|
|
81
|
+
"@milkdown/vue": "^7.15.5",
|
|
82
|
+
"@prosemirror-adapter/vue": "^0.4.1",
|
|
83
|
+
"@vueuse/core": ">=10.7.2",
|
|
84
|
+
"codemirror": "^6.0.1",
|
|
85
|
+
"dayjs": "^1.11.19",
|
|
86
|
+
"element-plus": "^2.11.3",
|
|
87
|
+
"highlight.js": "^11.6.0",
|
|
88
|
+
"libphonenumber-js": "^1.10.13",
|
|
89
|
+
"lodash-es": "^4.17.21",
|
|
90
|
+
"maska": "^3.2.0",
|
|
91
|
+
"pdfjs-dist": "^2.9.359",
|
|
92
|
+
"vue": "^3.5.13",
|
|
93
|
+
"vue-advanced-cropper": "^2.8.3",
|
|
94
|
+
"vue-codemirror6": "^1.3.12",
|
|
95
|
+
"wavesurfer.js": "^7.7.15",
|
|
96
|
+
"xlsx": "^0.18.5"
|
|
97
|
+
},
|
|
98
|
+
"devDependencies": {
|
|
99
|
+
"@codemirror/lang-json": "^6.0.1",
|
|
100
|
+
"@fullhuman/postcss-purgecss": "^7.0.2",
|
|
101
|
+
"@highlightjs/vue-plugin": "^2.1.0",
|
|
102
|
+
"@lucide/vue": "^1.16.0",
|
|
103
|
+
"@milkdown/crepe": "7.15.5",
|
|
104
|
+
"@milkdown/kit": "7.15.5",
|
|
105
|
+
"@milkdown/utils": "7.15.5",
|
|
106
|
+
"@milkdown/vue": "7.15.5",
|
|
107
|
+
"@prosemirror-adapter/vue": "^0.4.1",
|
|
108
|
+
"@types/json-schema": "^7.0.15",
|
|
109
|
+
"@types/lodash-es": "^4.17.12",
|
|
110
|
+
"@types/node": "^18.7.6",
|
|
111
|
+
"@types/wavesurfer.js": "^6.0.3",
|
|
112
|
+
"@types/webfontloader": "^1.6.38",
|
|
113
|
+
"@vitejs/plugin-vue": "5.0.3",
|
|
114
|
+
"@vitest/coverage-v8": "3.2.4",
|
|
115
|
+
"@vitest/ui": "3.2.4",
|
|
116
|
+
"@voicenter-team/aws-uploader": "^1.0.10",
|
|
117
|
+
"@voicenter-team/eslint-config-vue": "^1.0.21",
|
|
118
|
+
"@vue/server-renderer": "^3.5.13",
|
|
119
|
+
"@vue/test-utils": "^2.4.6",
|
|
120
|
+
"@vueuse/core": "10.7.2",
|
|
121
|
+
"autoprefixer": "10.4.17",
|
|
122
|
+
"axios": "^1.6.0",
|
|
123
|
+
"chalk": "4.1.2",
|
|
124
|
+
"codemirror": "^6.0.1",
|
|
125
|
+
"cross-env": "^7.0.3",
|
|
126
|
+
"dotenv": "^16.4.7",
|
|
127
|
+
"eslint": "^8.57.1",
|
|
128
|
+
"eslint-plugin-standard": "^5.0.0",
|
|
129
|
+
"eslint-plugin-vue": "9.21.1",
|
|
130
|
+
"highlight.js": "^11.6.0",
|
|
131
|
+
"jsdom": "^26.1.0",
|
|
132
|
+
"pdfjs-dist": "2.9.359",
|
|
133
|
+
"postcss": "8.4.34",
|
|
134
|
+
"readline-sync": "^1.4.10",
|
|
135
|
+
"sass": "1.93.3",
|
|
136
|
+
"tailwindcss": "^3.1.8",
|
|
137
|
+
"terser": "^5.44.0",
|
|
138
|
+
"typescript": "5.3.3",
|
|
139
|
+
"unplugin-element-plus": "^0.4.1",
|
|
140
|
+
"vite": "^5.4.6",
|
|
141
|
+
"vite-bundle-analyzer": "^0.15.2",
|
|
142
|
+
"vite-plugin-compression": "^0.5.1",
|
|
143
|
+
"vite-plugin-dts": "3.7.2",
|
|
144
|
+
"vite-plugin-inspect": "0.8.1",
|
|
145
|
+
"vite-plugin-lib-inject-css": "^2.2.2",
|
|
146
|
+
"vite-plugin-static-copy": "0.17.1",
|
|
147
|
+
"vitest": "^3.2.4",
|
|
148
|
+
"vue-advanced-cropper": "^2.8.3",
|
|
149
|
+
"vue-codemirror6": "^1.3.12",
|
|
150
|
+
"vue-component-type-helpers": "^1.8.27",
|
|
151
|
+
"vue-router": "4.2.5",
|
|
152
|
+
"vue-tsc": "1.8.27",
|
|
153
|
+
"wavesurfer.js": "^7.7.15",
|
|
154
|
+
"xlsx": "0.18.5"
|
|
155
|
+
}
|
|
156
|
+
}
|
/package/library/assets/node_modules/element-plus/theme-chalk/src/{dropdown-item.css → tooltip.css}
RENAMED
|
File without changes
|