@vipl520/dk-ui 1.0.67 → 1.0.69
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +7 -5
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/index.min.mjs +1 -1
- package/dist/index.min.mjs.map +1 -1
- package/dist/index.mjs +7 -5
- package/dist/web-types.json +1 -1
- package/es/color-input/index.d.ts +9 -0
- package/es/color-input/src/color-input.vue.d.ts +9 -0
- package/es/color-input/src/color-input.vue2.mjs +2 -2
- package/es/color-input/src/color-input.vue2.mjs.map +1 -1
- package/es/color-input/src/props.d.ts +4 -0
- package/es/color-input/src/props.mjs +2 -1
- package/es/color-input/src/props.mjs.map +1 -1
- package/es/style-shadow-input/src/style-shadow-content.vue2.mjs +2 -1
- package/es/style-shadow-input/src/style-shadow-content.vue2.mjs.map +1 -1
- package/es/tiny-editor/src/config.mjs +1 -1
- package/es/tiny-editor/src/config.mjs.map +1 -1
- package/lib/color-input/index.d.ts +9 -0
- package/lib/color-input/src/color-input.vue.d.ts +9 -0
- package/lib/color-input/src/color-input.vue2.js +2 -2
- package/lib/color-input/src/color-input.vue2.js.map +1 -1
- package/lib/color-input/src/props.d.ts +4 -0
- package/lib/color-input/src/props.js +2 -1
- package/lib/color-input/src/props.js.map +1 -1
- package/lib/style-shadow-input/src/style-shadow-content.vue2.js +2 -1
- package/lib/style-shadow-input/src/style-shadow-content.vue2.js.map +1 -1
- package/lib/tiny-editor/src/config.js +1 -1
- package/lib/tiny-editor/src/config.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -1356,7 +1356,7 @@
|
|
1356
1356
|
editimage_cors_hosts: ["picsum.photos"],
|
1357
1357
|
menubar: "file edit view insert format tools table help",
|
1358
1358
|
toolbar: "showImage bold italic underline strikethrough fontfamily fontsize blocks alignleft aligncenter alignright alignjustify numlist bullist forecolor backcolor removeformat image media link emoticons code preview fullscreen |",
|
1359
|
-
toolbar_sticky:
|
1359
|
+
toolbar_sticky: false,
|
1360
1360
|
// content_css: 'document',
|
1361
1361
|
height: 400,
|
1362
1362
|
quickbars_selection_toolbar: "bold italic | quicklink h2 h3 blockquote showImage",
|
@@ -1760,7 +1760,8 @@
|
|
1760
1760
|
showAlpha: { default: false, type: Boolean },
|
1761
1761
|
placeholder: makeStringProp(""),
|
1762
1762
|
// 'hsl' | 'hsv' | 'hex' | 'rgb' | 'hex' (when show-alpha is false) | 'rgb' (when show-alpha is true)
|
1763
|
-
colorFormat: makeStringProp("hex")
|
1763
|
+
colorFormat: makeStringProp("hex"),
|
1764
|
+
teleported: { default: true, type: Boolean }
|
1764
1765
|
};
|
1765
1766
|
|
1766
1767
|
const _hoisted_1$W = {
|
@@ -1799,10 +1800,10 @@
|
|
1799
1800
|
vue.createVNode(_component_el_color_picker, {
|
1800
1801
|
modelValue: data.value,
|
1801
1802
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => data.value = $event),
|
1802
|
-
teleported:
|
1803
|
+
teleported: _ctx.teleported,
|
1803
1804
|
"show-alpha": _ctx.showAlpha,
|
1804
1805
|
"color-format": _ctx.colorFormat
|
1805
|
-
}, null, 8, ["modelValue", "show-alpha", "color-format"]),
|
1806
|
+
}, null, 8, ["modelValue", "teleported", "show-alpha", "color-format"]),
|
1806
1807
|
vue.createVNode(_component_el_input, {
|
1807
1808
|
modelValue: data.value,
|
1808
1809
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => data.value = $event),
|
@@ -7550,7 +7551,8 @@
|
|
7550
7551
|
vue.createVNode(_component_dk_color_input, {
|
7551
7552
|
modelValue: form.color,
|
7552
7553
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => form.color = $event),
|
7553
|
-
"show-alpha": ""
|
7554
|
+
"show-alpha": "",
|
7555
|
+
teleported: false
|
7554
7556
|
}, null, 8, ["modelValue"])
|
7555
7557
|
]),
|
7556
7558
|
_: 1
|