@vipl520/dk-ui 1.0.66 → 1.0.68
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +6 -4
- 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 +6 -4
- 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/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/package.json +1 -1
package/dist/index.js
CHANGED
@@ -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
|