@fastkit/vui 0.7.67 → 0.8.1
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/vui.cjs.js +7 -5
- package/dist/vui.cjs.prod.js +7 -5
- package/dist/vui.css +2 -2
- package/dist/vui.d.ts +7179 -67
- package/dist/vui.min.css.map +1 -1
- package/dist/vui.mjs +7 -5
- package/package.json +7 -7
- package/src/components/VWysiwygEditor/VWysiwygEditor.tsx +6 -2
package/dist/vui.cjs.js
CHANGED
|
@@ -3238,13 +3238,15 @@ const VWysiwygEditor = vue.defineComponent({
|
|
|
3238
3238
|
|
|
3239
3239
|
return vue.createVNode("div", {
|
|
3240
3240
|
"class": "v-wysiwyg-editor__body"
|
|
3241
|
-
}, [vue.createVNode(vue3.EditorContent, {
|
|
3242
|
-
|
|
3241
|
+
}, [vue.createVNode(vue3.EditorContent, vue.mergeProps({
|
|
3242
|
+
class: 'v-wysiwyg-editor__input__element wysiwyg'
|
|
3243
|
+
}, {
|
|
3243
3244
|
"editor": editor
|
|
3244
|
-
}, null), !this.floatingToolbar && !!editor && !this.isReadonly && vue.createVNode(vue3.BubbleMenu, {
|
|
3245
|
-
|
|
3245
|
+
}), null), !this.floatingToolbar && !!editor && !this.isReadonly && vue.createVNode(vue3.BubbleMenu, vue.mergeProps({
|
|
3246
|
+
class: 'v-wysiwyg-editor__bubble-menu'
|
|
3247
|
+
}, {
|
|
3246
3248
|
"editor": editor
|
|
3247
|
-
}, _isSlot$7(_slot2 = this.createTools(true)) ? _slot2 : {
|
|
3249
|
+
}), _isSlot$7(_slot2 = this.createTools(true)) ? _slot2 : {
|
|
3248
3250
|
default: () => [_slot2]
|
|
3249
3251
|
})]);
|
|
3250
3252
|
}
|
package/dist/vui.cjs.prod.js
CHANGED
|
@@ -3238,13 +3238,15 @@ const VWysiwygEditor = vue.defineComponent({
|
|
|
3238
3238
|
|
|
3239
3239
|
return vue.createVNode("div", {
|
|
3240
3240
|
"class": "v-wysiwyg-editor__body"
|
|
3241
|
-
}, [vue.createVNode(vue3.EditorContent, {
|
|
3242
|
-
|
|
3241
|
+
}, [vue.createVNode(vue3.EditorContent, vue.mergeProps({
|
|
3242
|
+
class: 'v-wysiwyg-editor__input__element wysiwyg'
|
|
3243
|
+
}, {
|
|
3243
3244
|
"editor": editor
|
|
3244
|
-
}, null), !this.floatingToolbar && !!editor && !this.isReadonly && vue.createVNode(vue3.BubbleMenu, {
|
|
3245
|
-
|
|
3245
|
+
}), null), !this.floatingToolbar && !!editor && !this.isReadonly && vue.createVNode(vue3.BubbleMenu, vue.mergeProps({
|
|
3246
|
+
class: 'v-wysiwyg-editor__bubble-menu'
|
|
3247
|
+
}, {
|
|
3246
3248
|
"editor": editor
|
|
3247
|
-
}, _isSlot$7(_slot2 = this.createTools(true)) ? _slot2 : {
|
|
3249
|
+
}), _isSlot$7(_slot2 = this.createTools(true)) ? _slot2 : {
|
|
3248
3250
|
default: () => [_slot2]
|
|
3249
3251
|
})]);
|
|
3250
3252
|
}
|
package/dist/vui.css
CHANGED
|
@@ -974,7 +974,7 @@ thead th {
|
|
|
974
974
|
z-index: 1;
|
|
975
975
|
height: 100%;
|
|
976
976
|
content: "";
|
|
977
|
-
background: linear-gradient(90deg,
|
|
977
|
+
background: linear-gradient(90deg, hsla(0deg, 0%, 100%, 0), hsla(0deg, 0%, 100%, 0.3), hsla(0deg, 0%, 100%, 0));
|
|
978
978
|
transform: translateX(-100%);
|
|
979
979
|
animation: v-skelton-loader-bone-loading 1.5s infinite;
|
|
980
980
|
}
|
|
@@ -1824,7 +1824,7 @@ thead th {
|
|
|
1824
1824
|
opacity: 0.12;
|
|
1825
1825
|
}
|
|
1826
1826
|
.v-switch--disabled .v-switch__faux__pin::after {
|
|
1827
|
-
background-color:
|
|
1827
|
+
background-color: rgb(245, 245, 245);
|
|
1828
1828
|
}
|
|
1829
1829
|
.v-switch__faux:hover .v-switch__faux__pin::before {
|
|
1830
1830
|
opacity: 0.1;
|