@vipl520/dk-ui 1.0.14 → 1.0.15
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/index.js +4 -3
- package/dist/index.min.js +2 -2
- package/dist/index.min.js.map +1 -1
- package/dist/index.min.mjs +2 -2
- package/dist/index.min.mjs.map +1 -1
- package/dist/index.mjs +4 -3
- package/dist/web-types.json +1 -1
- package/es/select/src/select.vue2.mjs +1 -1
- package/es/select/src/select.vue2.mjs.map +1 -1
- package/es/style-shadow-input/src/style-shadow-input.vue2.mjs +3 -2
- package/es/style-shadow-input/src/style-shadow-input.vue2.mjs.map +1 -1
- package/lib/select/src/select.vue2.js +1 -1
- package/lib/select/src/select.vue2.js.map +1 -1
- package/lib/style-shadow-input/src/style-shadow-input.vue2.js +3 -2
- package/lib/style-shadow-input/src/style-shadow-input.vue2.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -16029,13 +16029,14 @@
|
|
16029
16029
|
return shadows.value.join(",");
|
16030
16030
|
});
|
16031
16031
|
require$$0.watch(boxShadow, (n, o) => {
|
16032
|
-
emit("update:modelValue", { boxShadow });
|
16032
|
+
emit("update:modelValue", { boxShadow: boxShadow.value });
|
16033
16033
|
});
|
16034
16034
|
require$$0.watch(
|
16035
16035
|
() => props.modelValue,
|
16036
16036
|
() => {
|
16037
16037
|
init();
|
16038
|
-
}
|
16038
|
+
},
|
16039
|
+
{ deep: true }
|
16039
16040
|
);
|
16040
16041
|
require$$0.onMounted(() => {
|
16041
16042
|
init();
|
@@ -30949,7 +30950,7 @@
|
|
30949
30950
|
}, { ...props }, {
|
30950
30951
|
"remote-method": remoteMethod,
|
30951
30952
|
remote: "",
|
30952
|
-
placeholder: "
|
30953
|
+
placeholder: "\u8BF7\u9009\u62E9",
|
30953
30954
|
options: internalOptions.value,
|
30954
30955
|
style: { "width": "100%" },
|
30955
30956
|
onChange: handleChange,
|