@blueking/ai-blueking 0.3.2 → 0.3.4
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/vue2/index.es.min.js +7 -0
- package/dist/vue2/index.iife.min.js +2 -2
- package/dist/vue2/index.umd.min.js +2 -2
- package/dist/vue2/style.css +1 -1
- package/dist/vue3/index.iife.min.js +1 -1
- package/dist/vue3/index.umd.min.js +4 -4
- package/dist/vue3/style.css +1 -1
- package/package.json +1 -1
|
@@ -21024,6 +21024,9 @@ const E_ = {
|
|
|
21024
21024
|
model: {
|
|
21025
21025
|
default: "",
|
|
21026
21026
|
type: String
|
|
21027
|
+
},
|
|
21028
|
+
isShow: {
|
|
21029
|
+
type: Boolean
|
|
21027
21030
|
}
|
|
21028
21031
|
},
|
|
21029
21032
|
data() {
|
|
@@ -21067,6 +21070,7 @@ const E_ = {
|
|
|
21067
21070
|
alert: n.alert,
|
|
21068
21071
|
models: n.models,
|
|
21069
21072
|
model: n.model,
|
|
21073
|
+
isShow: n.isShow,
|
|
21070
21074
|
onClear() {
|
|
21071
21075
|
e("clear", ...arguments);
|
|
21072
21076
|
},
|
|
@@ -21091,6 +21095,9 @@ const E_ = {
|
|
|
21091
21095
|
"onUpdate:model"() {
|
|
21092
21096
|
e("update:model", ...arguments);
|
|
21093
21097
|
},
|
|
21098
|
+
"onUpdate:isShow"() {
|
|
21099
|
+
e("update:isShow", ...arguments), e("showDialog", ...arguments);
|
|
21100
|
+
},
|
|
21094
21101
|
...n.$attrs
|
|
21095
21102
|
});
|
|
21096
21103
|
}
|