@fewangsit/wangsvue 1.5.218 → 1.5.219-alpha.1

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.
@@ -603,7 +603,7 @@ const Y = v(!1), W = ye(), Ue = () => ({
603
603
  }, null, 8, ["visible", "task-api"])
604
604
  ], 64));
605
605
  }
606
- }), ba = /* @__PURE__ */ Ee(ea, [["__scopeId", "data-v-2df22051"]]);
606
+ }), ba = /* @__PURE__ */ Ee(ea, [["__scopeId", "data-v-dd8d3e7e"]]);
607
607
  export {
608
608
  ba as T,
609
609
  Ee as _,
@@ -225,7 +225,7 @@ const z = {
225
225
  ], 64);
226
226
  };
227
227
  }
228
- }), he = /* @__PURE__ */ q(re, [["__scopeId", "data-v-9cbe46f4"]]);
228
+ }), he = /* @__PURE__ */ q(re, [["__scopeId", "data-v-ea421674"]]);
229
229
  export {
230
230
  he as A
231
231
  };
@@ -46,7 +46,7 @@ const B = /* @__PURE__ */ n({
46
46
  _: 3
47
47
  }, 8, ["mouse-move", "touch-move", "touch-resize", "wheel-resize"]));
48
48
  }
49
- }), T = /* @__PURE__ */ R(B, [["__scopeId", "data-v-9031c32d"]]);
49
+ }), S = /* @__PURE__ */ R(B, [["__scopeId", "data-v-5cd98b2d"]]);
50
50
  export {
51
- T as B
51
+ S as B
52
52
  };
@@ -152,8 +152,10 @@ export interface ButtonScanProps extends Omit<ButtonProps, 'type'> {
152
152
  | undefined;
153
153
  /**
154
154
  * Defines the size of the button.
155
+ *
156
+ * @default to large
155
157
  */
156
- size: 'small' | 'large';
158
+ size?: 'small' | 'large';
157
159
  }
158
160
 
159
161
  export type ButtonScanEmits = {
@@ -325,6 +325,14 @@ export interface TableColumn {
325
325
  * Convert boolean into text Yes/No
326
326
  */
327
327
  booleanValue?: boolean;
328
+ /**
329
+ * The text to display in the Excel cell when the value is true. (should be used with booleanValue)
330
+ */
331
+ trueText?: string;
332
+ /**
333
+ * The text to display in the Excel cell when the value is false. (should be used with booleanValue)
334
+ */
335
+ falseText?: string;
328
336
  /**
329
337
  * Specify the options for formatting date values using the formatDate utility.
330
338
  *