@kengic/vue 0.26.6-beta.86 → 0.26.6-beta.88
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.css +1 -1
- package/dist/kengic-vue.js +276 -266
- package/dist/project/build/vite/plugin/index.ts +14 -1
- package/package.json +2 -2
- /package/dist/{close-outlined-DMcSQWxQ.fc6da12c.mjs → close-outlined-DMcSQWxQ.b18f3d1b.mjs} +0 -0
- /package/dist/{fullscreen-exit-outlined-X1iYkFc4.b5c2c88d.mjs → fullscreen-exit-outlined-X1iYkFc4.a1577346.mjs} +0 -0
- /package/dist/{fullscreen-outlined-DDBrsRcy.f6ae46eb.mjs → fullscreen-outlined-DDBrsRcy.dca0d65f.mjs} +0 -0
@@ -22,7 +22,20 @@ export function createVitePlugins(viteEnv: ViteEnv, isBuild: boolean) {
|
|
22
22
|
|
23
23
|
const vitePlugins: (PluginOption | PluginOption[])[] = [
|
24
24
|
// have to
|
25
|
-
vue(
|
25
|
+
vue({
|
26
|
+
template: {
|
27
|
+
compilerOptions: {
|
28
|
+
// treat all tags with a dash as custom elements
|
29
|
+
isCustomElement: (tag) => {
|
30
|
+
if (['kg-var-config', 'kg-work-station'].includes(tag)) {
|
31
|
+
return true;
|
32
|
+
}
|
33
|
+
|
34
|
+
return false;
|
35
|
+
},
|
36
|
+
},
|
37
|
+
},
|
38
|
+
}),
|
26
39
|
// have to
|
27
40
|
vueJsx(),
|
28
41
|
// support name
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kengic/vue",
|
3
|
-
"version": "0.26.6-beta.
|
3
|
+
"version": "0.26.6-beta.88",
|
4
4
|
"scripts": {
|
5
5
|
"build": "npm run use-node && rimraf dist && vue-tsc && vite build",
|
6
6
|
"build:dev": "npm run use-node && rimraf dist && vue-tsc && vite build --mode development",
|
@@ -39,7 +39,7 @@
|
|
39
39
|
"@iconify-icons/mdi": "1.2.48",
|
40
40
|
"@iconify-icons/ph": "1.2.5",
|
41
41
|
"@iconify/vue": "4.1.2",
|
42
|
-
"@kengic/core": "6.0.1-beta.
|
42
|
+
"@kengic/core": "6.0.1-beta.98",
|
43
43
|
"@kengic/pont": "1.2.17-beta.1",
|
44
44
|
"@rys-fe/vite-plugin-theme": "0.8.6",
|
45
45
|
"@thymine/xunee": "0.4.9-beta.8",
|
File without changes
|
File without changes
|
File without changes
|