@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.
- package/apiitem/index.es.js +1 -1
- package/attachmentitem/index.es.js +1 -1
- package/backgroundimagecropper/index.es.js +2 -2
- package/buttonscan/index.d.ts +3 -1
- package/datatable/index.d.ts +8 -0
- package/datatable/index.es.js +296 -286
- package/imagecompressor/index.es.js +15 -15
- package/inputcurrency/index.es.js +19 -19
- package/inputphonenumber/index.es.js +27 -27
- package/legend/index.es.js +1 -1
- package/menuitem/index.d.ts +5 -77
- package/package.json +1 -1
- package/stats.html +1 -1
- package/style.css +2 -2
- package/tabmenu/index.d.ts +1 -1
- package/utils/exportToExcel.util.es.js +16 -16
- package/utils/xlsx.util.d.ts +5 -0
- package/utils/xlsx.util.es.js +7 -4
- package/wangsvue.system.js +52 -52
package/apiitem/index.es.js
CHANGED
|
@@ -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-
|
|
606
|
+
}), ba = /* @__PURE__ */ Ee(ea, [["__scopeId", "data-v-dd8d3e7e"]]);
|
|
607
607
|
export {
|
|
608
608
|
ba as T,
|
|
609
609
|
Ee as _,
|
|
@@ -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
|
-
}),
|
|
49
|
+
}), S = /* @__PURE__ */ R(B, [["__scopeId", "data-v-5cd98b2d"]]);
|
|
50
50
|
export {
|
|
51
|
-
|
|
51
|
+
S as B
|
|
52
52
|
};
|
package/buttonscan/index.d.ts
CHANGED
|
@@ -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
|
|
158
|
+
size?: 'small' | 'large';
|
|
157
159
|
}
|
|
158
160
|
|
|
159
161
|
export type ButtonScanEmits = {
|
package/datatable/index.d.ts
CHANGED
|
@@ -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
|
*
|