@wx-design/components 1.1.31 → 1.1.33
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/core/Table/index.vue.d.ts +1 -0
- package/es/index.mjs +3 -2
- package/es/style.css +1 -1
- package/lib/core/Table/index.vue.d.ts +1 -0
- package/lib/index.js +1 -1
- package/lib/style.css +1 -1
- package/package.json +1 -1
- package/types/table/table.d.ts +3 -1
|
@@ -122,6 +122,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
122
122
|
autoColumnWidth: boolean;
|
|
123
123
|
rowBackgroundHighlight: boolean;
|
|
124
124
|
tableSetConfig: Partial<import("../../types/table").TableSetProps>;
|
|
125
|
+
reloadWithDestroy: boolean;
|
|
125
126
|
}, {}>;
|
|
126
127
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
127
128
|
export default _default;
|
package/es/index.mjs
CHANGED
|
@@ -42300,7 +42300,8 @@ const EJ = { class: "sab-table-inner" }, Pl = /* @__PURE__ */ st({
|
|
|
42300
42300
|
showToolbar: { type: Boolean },
|
|
42301
42301
|
autoColumnWidth: { type: Boolean },
|
|
42302
42302
|
rowBackgroundHighlight: { type: Boolean },
|
|
42303
|
-
tableSetConfig: {}
|
|
42303
|
+
tableSetConfig: {},
|
|
42304
|
+
reloadWithDestroy: { type: Boolean }
|
|
42304
42305
|
}, Au),
|
|
42305
42306
|
emits: [
|
|
42306
42307
|
...kw,
|
|
@@ -42360,7 +42361,7 @@ const EJ = { class: "sab-table-inner" }, Pl = /* @__PURE__ */ st({
|
|
|
42360
42361
|
},
|
|
42361
42362
|
() => {
|
|
42362
42363
|
var h, g;
|
|
42363
|
-
(h = o.headerFilterConfig) != null && h.enable ? (b.value = !1, fe(() => {
|
|
42364
|
+
(h = o.headerFilterConfig) != null && h.enable || o.reloadWithDestroy ? (b.value = !1, fe(() => {
|
|
42364
42365
|
b.value = !0;
|
|
42365
42366
|
})) : (g = s.value) == null || g.reloadColumn(a.value.columns), u.value = [], d("checkbox-all", { checked: !1, records: [] });
|
|
42366
42367
|
}
|