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