3h1-ui 1.0.124 → 1.0.125
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/es/index.js +6 -6
- package/es/style.css +3 -3
- package/lib/index.js +6 -6
- package/package.json +1 -1
package/es/index.js
CHANGED
|
@@ -6641,7 +6641,7 @@ const basicProps$3 = Object.assign({}, modalProps, {
|
|
|
6641
6641
|
footer: Object,
|
|
6642
6642
|
getContainer: Function,
|
|
6643
6643
|
mask: { type: Boolean, default: true },
|
|
6644
|
-
maskClosable: { type: Boolean, default:
|
|
6644
|
+
maskClosable: { type: Boolean, default: false },
|
|
6645
6645
|
keyboard: { type: Boolean, default: true },
|
|
6646
6646
|
maskStyle: Object,
|
|
6647
6647
|
okType: { type: String, default: "primary" },
|
|
@@ -7556,7 +7556,6 @@ const _sfc_main$z = defineComponent({
|
|
|
7556
7556
|
});
|
|
7557
7557
|
const getBindValue = computed(() => {
|
|
7558
7558
|
const attr = {
|
|
7559
|
-
maskClosable: false,
|
|
7560
7559
|
...attrs,
|
|
7561
7560
|
...unref(getMergeProps),
|
|
7562
7561
|
visible: unref(visibleRef),
|
|
@@ -13452,10 +13451,11 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
13452
13451
|
const getTableProps = inject("getTableProps");
|
|
13453
13452
|
const tableRef = ref();
|
|
13454
13453
|
const treeRef = ref();
|
|
13455
|
-
const handleSelect = (key2) => {
|
|
13456
|
-
tableRef.value.setProps({
|
|
13454
|
+
const handleSelect = async (key2) => {
|
|
13455
|
+
await tableRef.value.setProps({
|
|
13457
13456
|
searchInfo: { [unref(getTableProps).searchKey]: key2 }
|
|
13458
13457
|
});
|
|
13458
|
+
console.log("unref(getTableProps).searchKey", unref(getTableProps).searchKey);
|
|
13459
13459
|
tableRef.value.reload();
|
|
13460
13460
|
};
|
|
13461
13461
|
const handleComfirm = () => {
|
|
@@ -13491,8 +13491,8 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
13491
13491
|
};
|
|
13492
13492
|
}
|
|
13493
13493
|
});
|
|
13494
|
-
const
|
|
13495
|
-
const Modal = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-
|
|
13494
|
+
const Modal_vue_vue_type_style_index_0_scoped_3a86ddfa_lang = "";
|
|
13495
|
+
const Modal = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-3a86ddfa"]]);
|
|
13496
13496
|
const _hoisted_1$4 = { class: "api-modal-select" };
|
|
13497
13497
|
const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
13498
13498
|
__name: "ApiModalSelect",
|
package/es/style.css
CHANGED
|
@@ -1047,13 +1047,13 @@ span.iconify {
|
|
|
1047
1047
|
/* stylelint-disable no-duplicate-selectors */
|
|
1048
1048
|
/* stylelint-disable */
|
|
1049
1049
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
1050
|
-
.wrapper[data-v-
|
|
1050
|
+
.wrapper[data-v-3a86ddfa] {
|
|
1051
1051
|
display: flex;
|
|
1052
1052
|
}
|
|
1053
|
-
.tree[data-v-
|
|
1053
|
+
.tree[data-v-3a86ddfa] {
|
|
1054
1054
|
flex: none;
|
|
1055
1055
|
}
|
|
1056
|
-
.table-wrapper[data-v-
|
|
1056
|
+
.table-wrapper[data-v-3a86ddfa] {
|
|
1057
1057
|
flex: 1 1 0%;
|
|
1058
1058
|
overflow: hidden;
|
|
1059
1059
|
}
|
package/lib/index.js
CHANGED
|
@@ -6646,7 +6646,7 @@ const basicProps$3 = Object.assign({}, modalProps, {
|
|
|
6646
6646
|
footer: Object,
|
|
6647
6647
|
getContainer: Function,
|
|
6648
6648
|
mask: { type: Boolean, default: true },
|
|
6649
|
-
maskClosable: { type: Boolean, default:
|
|
6649
|
+
maskClosable: { type: Boolean, default: false },
|
|
6650
6650
|
keyboard: { type: Boolean, default: true },
|
|
6651
6651
|
maskStyle: Object,
|
|
6652
6652
|
okType: { type: String, default: "primary" },
|
|
@@ -7561,7 +7561,6 @@ const _sfc_main$z = vue.defineComponent({
|
|
|
7561
7561
|
});
|
|
7562
7562
|
const getBindValue = vue.computed(() => {
|
|
7563
7563
|
const attr = {
|
|
7564
|
-
maskClosable: false,
|
|
7565
7564
|
...attrs,
|
|
7566
7565
|
...vue.unref(getMergeProps),
|
|
7567
7566
|
visible: vue.unref(visibleRef),
|
|
@@ -13457,10 +13456,11 @@ const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
|
|
|
13457
13456
|
const getTableProps = vue.inject("getTableProps");
|
|
13458
13457
|
const tableRef = vue.ref();
|
|
13459
13458
|
const treeRef = vue.ref();
|
|
13460
|
-
const handleSelect = (key2) => {
|
|
13461
|
-
tableRef.value.setProps({
|
|
13459
|
+
const handleSelect = async (key2) => {
|
|
13460
|
+
await tableRef.value.setProps({
|
|
13462
13461
|
searchInfo: { [vue.unref(getTableProps).searchKey]: key2 }
|
|
13463
13462
|
});
|
|
13463
|
+
console.log("unref(getTableProps).searchKey", vue.unref(getTableProps).searchKey);
|
|
13464
13464
|
tableRef.value.reload();
|
|
13465
13465
|
};
|
|
13466
13466
|
const handleComfirm = () => {
|
|
@@ -13496,8 +13496,8 @@ const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
|
|
|
13496
13496
|
};
|
|
13497
13497
|
}
|
|
13498
13498
|
});
|
|
13499
|
-
const
|
|
13500
|
-
const Modal = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-
|
|
13499
|
+
const Modal_vue_vue_type_style_index_0_scoped_3a86ddfa_lang = "";
|
|
13500
|
+
const Modal = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-3a86ddfa"]]);
|
|
13501
13501
|
const _hoisted_1$4 = { class: "api-modal-select" };
|
|
13502
13502
|
const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
13503
13503
|
__name: "ApiModalSelect",
|