z-crud-table 0.0.45 → 0.0.47

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.
@@ -57,6 +57,24 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
57
57
  type: BooleanConstructor;
58
58
  default: boolean;
59
59
  };
60
+ /**
61
+ * @description [✨ 新增] 单独控制“搜索”按钮的显示
62
+ * 必须在 showSearchActionButtons = true 时才生效
63
+ * @type {Boolean}
64
+ */
65
+ showSearchButton: {
66
+ type: BooleanConstructor;
67
+ default: boolean;
68
+ };
69
+ /**
70
+ * @description [✨ 新增] 单独控制“清空”按钮的显示
71
+ * 必须在 showSearchActionButtons = true 时才生效
72
+ * @type {Boolean}
73
+ */
74
+ showClearButton: {
75
+ type: BooleanConstructor;
76
+ default: boolean;
77
+ };
60
78
  showNewBtn: {
61
79
  type: BooleanConstructor;
62
80
  default: boolean;
@@ -248,6 +266,24 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
248
266
  type: BooleanConstructor;
249
267
  default: boolean;
250
268
  };
269
+ /**
270
+ * @description [✨ 新增] 单独控制“搜索”按钮的显示
271
+ * 必须在 showSearchActionButtons = true 时才生效
272
+ * @type {Boolean}
273
+ */
274
+ showSearchButton: {
275
+ type: BooleanConstructor;
276
+ default: boolean;
277
+ };
278
+ /**
279
+ * @description [✨ 新增] 单独控制“清空”按钮的显示
280
+ * 必须在 showSearchActionButtons = true 时才生效
281
+ * @type {Boolean}
282
+ */
283
+ showClearButton: {
284
+ type: BooleanConstructor;
285
+ default: boolean;
286
+ };
251
287
  showNewBtn: {
252
288
  type: BooleanConstructor;
253
289
  default: boolean;
@@ -383,6 +419,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
383
419
  loadingBackground: string;
384
420
  showSearchSection: boolean;
385
421
  showSearchActionButtons: boolean;
422
+ showSearchButton: boolean;
423
+ showClearButton: boolean;
386
424
  showNewBtn: boolean;
387
425
  columns: any[];
388
426
  showSelectionColumn: boolean;