hs-admin-ui 15.9.7 → 15.9.9

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.
Files changed (54) hide show
  1. package/dist/bcIcon-C3xsgM1m.mjs +4 -0
  2. package/dist/{bcIcon-CUgla0Cn.js → bcIcon-Ds0HYWXY.js} +1 -1
  3. package/dist/h5.js +1 -0
  4. package/dist/h5.mjs +20 -0
  5. package/dist/index-BPUxKlAA.mjs +1131 -0
  6. package/dist/index-BivD0NJF.js +344 -0
  7. package/dist/{index-j97hLETL.mjs → index-tRvRPOvb.mjs} +28525 -29562
  8. package/dist/index-uoo-Xs-G.js +6 -0
  9. package/dist/index.css +1 -1
  10. package/dist/index.js +1 -1
  11. package/dist/index.mjs +149 -148
  12. package/dist/index2.css +1 -0
  13. package/dist/types/h5.d.ts +4 -0
  14. package/dist/types/index.d.ts +7 -6
  15. package/dist/types/src/components/base/Anchor/index.d.ts +1 -0
  16. package/dist/types/src/components/base/Anchor/src/Anchor.vue.d.ts +3 -0
  17. package/dist/types/src/components/base/Breadcrumb/index.d.ts +2 -0
  18. package/dist/types/src/components/base/Breadcrumb/src/Breadcrumb.vue.d.ts +3 -0
  19. package/dist/types/src/components/base/Breadcrumb/src/BreadcrumbItem.vue.d.ts +3 -0
  20. package/dist/types/src/components/base/Countdown/index.d.ts +1 -0
  21. package/dist/types/src/components/base/Countdown/src/Countdown.vue.d.ts +3 -0
  22. package/dist/types/src/components/base/DatePicker/src/DatePicker.vue.d.ts +7 -1
  23. package/dist/types/src/components/base/InputNumber/src/InputNumber.vue.d.ts +35 -1
  24. package/dist/types/src/components/base/Link/index.d.ts +1 -0
  25. package/dist/types/src/components/base/Link/src/Link.vue.d.ts +3 -0
  26. package/dist/types/src/components/base/Mention/index.d.ts +1 -0
  27. package/dist/types/src/components/base/Mention/src/Mention.vue.d.ts +3 -0
  28. package/dist/types/src/components/base/Menu/index.d.ts +1 -0
  29. package/dist/types/src/components/base/Menu/src/MenuItemGroup.vue.d.ts +3 -0
  30. package/dist/types/src/components/base/Segmented/index.d.ts +1 -0
  31. package/dist/types/src/components/base/Segmented/src/Segmented.vue.d.ts +3 -0
  32. package/dist/types/src/components/base/Statistic/index.d.ts +1 -0
  33. package/dist/types/src/components/base/Statistic/src/Statistic.vue.d.ts +3 -0
  34. package/dist/types/src/components/base/Timeline/index.d.ts +2 -0
  35. package/dist/types/src/components/base/Timeline/src/Timeline.vue.d.ts +3 -0
  36. package/dist/types/src/components/base/Timeline/src/TimelineItem.vue.d.ts +3 -0
  37. package/dist/types/src/components/base/components.d.ts +8 -0
  38. package/dist/types/src/components/base/index.d.ts +57 -2
  39. package/dist/types/src/components/business/bcSelect/bcSelect.vue.d.ts +2 -0
  40. package/dist/types/src/components/business/bcTable/bcFormTable.vue.d.ts +1 -1
  41. package/dist/types/src/components/business/bcTable/utils/onTableKey.d.ts +1 -1
  42. package/dist/types/src/components/business/bcTable/utils/parseTable.d.ts +3 -3
  43. package/dist/types/src/components/business/bcTable/utils/type.d.ts +9 -0
  44. package/dist/types/src/components/business/bcTable/utils/useBcTable.d.ts +5 -0
  45. package/dist/types/src/components/business/bcTable/utils/useKeydownEvent.d.ts +1 -1
  46. package/dist/types/src/components/business/bcTreeSearch/bcTreeSearch.vue.d.ts +2 -0
  47. package/dist/types/src/components/h5/Radio/Radio.vue.d.ts +18 -0
  48. package/dist/types/src/components/h5/index.d.ts +8 -0
  49. package/dist/types/src/types/customData.d.ts +2 -0
  50. package/dist/types/src/utils/number.d.ts +4 -0
  51. package/dist/types/src/utils/tree.d.ts +1 -0
  52. package/package.json +1 -1
  53. package/dist/bcIcon-4Jzgj3aI.mjs +0 -4
  54. package/dist/index-BvvakkFc.js +0 -349
@@ -0,0 +1,4 @@
1
+ import { App } from "vue";
2
+ import "element-plus/dist/index.css";
3
+ declare function useHsAdminUi(app: App): void;
4
+ export { useHsAdminUi };
@@ -5,16 +5,16 @@ import "vxe-table/lib/style.css";
5
5
  import "./src/utils/cfprint.min.js";
6
6
  import { VxeUI } from "vxe-pc-ui";
7
7
  import { HsMessage, HsMessageBox, HsNotification } from "./src/utils";
8
- import { getLoadData, getFormData, configUnidId, isShowItem } from "./src/components/business";
8
+ import { getLoadData, getFormData, configUnidId, isShowItem, cacheSearchFormData, tableAsyncFun } from "./src/components/business";
9
9
  import { getItemConfig as getConfigData, getBatchConfig, getTableSpecialType as resetColumn } from "./src/components/business/bcBox/utils";
10
10
  import { showPopupCount } from "./src/hooks/onKeyStroke";
11
- import { type TableInstance, type IFormInstance, type TableKeyEventParams as ITableKeyEvent, type TableCurrentRow as ITableCurrentRow, tableAsyncFun } from "./src/components/business";
11
+ import { mathTool } from "./src/utils/number";
12
+ import * as Hooxs from "./src/hooks";
13
+ import * as Utils from "./src/utils";
14
+ import { type TableInstance, type IFormInstance, type TableKeyEventParams as ITableKeyEvent, type TableCurrentRow as ITableCurrentRow } from "./src/components/business";
12
15
  import type { ICustomData as ITable, IFormData as IForm } from "./src/types";
13
16
  import type { IBreadcrumb } from "./src/components/business/bcBreadcrumb";
14
17
  import type { Router } from "vue-router";
15
- import * as Hooxs from "./src/hooks";
16
- import * as Utils from "./src/utils";
17
- import { mathTool } from "./src/utils/number";
18
18
  interface OptionsDef {
19
19
  /** 缓存npm包名 */
20
20
  NEXT_NAME?: string;
@@ -29,4 +29,5 @@ type IFieldChange = ITable.FieldChange;
29
29
  declare function useHsAdminUi(app: App, options?: OptionsDef): void;
30
30
  export * from "./element-plus";
31
31
  export * from "./vxe-table";
32
- export { type ITable, type ITableData, type ISystemParams, type TableInstance, type IForm, type IFormData, type IFormInstance, type IBreadcrumb, type ITableKeyEvent, type ITableCurrentRow, type IFieldChange, isShowItem, tableAsyncFun, showPopupCount, configUnidId, HsMessage, HsMessageBox, HsNotification, Hooxs, Utils, mathTool, VxeUI, useHsAdminUi, getConfigData, getBatchConfig, getLoadData, getFormData, resetColumn };
32
+ export * from "./src/components/base";
33
+ export { type ITable, type ITableData, type ISystemParams, type TableInstance, type IForm, type IFormData, type IFormInstance, type IBreadcrumb, type ITableKeyEvent, type ITableCurrentRow, type IFieldChange, isShowItem, tableAsyncFun, showPopupCount, configUnidId, cacheSearchFormData, HsMessage, HsMessageBox, HsNotification, Hooxs, Utils, mathTool, VxeUI, useHsAdminUi, getConfigData, getBatchConfig, getLoadData, getFormData, resetColumn };
@@ -0,0 +1 @@
1
+ export { default as Anchor } from "./src/Anchor.vue";
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,2 @@
1
+ export { default as Breadcrumb } from "./src/Breadcrumb.vue";
2
+ export { default as BreadcrumbItem } from "./src/BreadcrumbItem.vue";
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as Countdown } from "./src/Countdown.vue";
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -1,3 +1,9 @@
1
- declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1
+ type __VLS_Props = {
2
+ shortcuts?: Array<{
3
+ text: string;
4
+ value: Date | Function;
5
+ }>;
6
+ };
7
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
8
  declare const _default: typeof __VLS_export;
3
9
  export default _default;
@@ -1,3 +1,37 @@
1
- declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ type: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ controls: {
7
+ type: (ObjectConstructor | BooleanConstructor)[];
8
+ default: boolean;
9
+ };
10
+ showSelect: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
13
+ };
14
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
15
+ focus: (...args: any[]) => void;
16
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
17
+ type: {
18
+ type: StringConstructor;
19
+ default: string;
20
+ };
21
+ controls: {
22
+ type: (ObjectConstructor | BooleanConstructor)[];
23
+ default: boolean;
24
+ };
25
+ showSelect: {
26
+ type: BooleanConstructor;
27
+ default: boolean;
28
+ };
29
+ }>> & Readonly<{
30
+ onFocus?: (...args: any[]) => any;
31
+ }>, {
32
+ type: string;
33
+ controls: boolean | Record<string, any>;
34
+ showSelect: boolean;
35
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
36
  declare const _default: typeof __VLS_export;
3
37
  export default _default;
@@ -0,0 +1 @@
1
+ export { default as Link } from "./src/Link.vue";
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as Mention } from "./src/Mention.vue";
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -1,3 +1,4 @@
1
1
  export { default as Menu } from "./src/Menu.vue";
2
2
  export { default as MenuItem } from "./src/MenuItem.vue";
3
+ export { default as MenuItemGroup } from "./src/MenuItemGroup.vue";
3
4
  export { default as SubMenu } from "./src/SubMenu.vue";
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as Segmented } from "./src/Segmented.vue";
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as Statistic } from "./src/Statistic.vue";
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,2 @@
1
+ export { default as Timeline } from "./src/Timeline.vue";
2
+ export { default as TimelineItem } from "./src/TimelineItem.vue";
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -1,9 +1,11 @@
1
1
  export * from "./Affix";
2
2
  export * from "./Alert";
3
+ export * from "./Anchor";
3
4
  export * from "./Aside";
4
5
  export * from "./Autocomplete";
5
6
  export * from "./Backtop";
6
7
  export * from "./Badge";
8
+ export * from "./Breadcrumb";
7
9
  export * from "./Button";
8
10
  export * from "./Calendar";
9
11
  export * from "./Card";
@@ -14,6 +16,7 @@ export * from "./Col";
14
16
  export * from "./Collapse";
15
17
  export * from "./ColorPicker";
16
18
  export * from "./Container";
19
+ export * from "./Countdown";
17
20
  export * from "./DatePicker";
18
21
  export * from "./Descriptions";
19
22
  export * from "./Dialog";
@@ -27,7 +30,9 @@ export * from "./Icon";
27
30
  export * from "./Image";
28
31
  export * from "./Input";
29
32
  export * from "./InputNumber";
33
+ export * from "./Link";
30
34
  export * from "./Main";
35
+ export * from "./Mention";
31
36
  export * from "./Menu";
32
37
  export * from "./Pagination";
33
38
  export * from "./Popconfirm";
@@ -39,15 +44,18 @@ export * from "./Rate";
39
44
  export * from "./Result";
40
45
  export * from "./Row";
41
46
  export * from "./Scrollbar";
47
+ export * from "./Segmented";
42
48
  export * from "./Select";
43
49
  export * from "./SelectV2";
44
50
  export * from "./Slider";
51
+ export * from "./Statistic";
45
52
  export * from "./Steps";
46
53
  export * from "./Switch";
47
54
  export * from "./Table";
48
55
  export * from "./Tabs";
49
56
  export * from "./Tag";
50
57
  export * from "./Text";
58
+ export * from "./Timeline";
51
59
  export * from "./TimePicker";
52
60
  export * from "./TimeSelect";
53
61
  export * from "./Tooltip";
@@ -3,10 +3,13 @@ export * from "./components";
3
3
  export declare const baseComponents: {
4
4
  Affix: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
5
5
  Alert: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
6
+ Anchor: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
6
7
  Aside: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
7
8
  Autocomplete: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
9
  Backtop: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
9
10
  Badge: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
11
+ Breadcrumb: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
12
+ BreadcrumbItem: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
10
13
  Button: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
11
14
  ButtonGroup: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
12
15
  Calendar: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -24,7 +27,18 @@ export declare const baseComponents: {
24
27
  CollapseItem: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
25
28
  ColorPicker: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
26
29
  Container: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
27
- DatePicker: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
30
+ Countdown: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
31
+ DatePicker: import("vue").DefineComponent<{
32
+ shortcuts?: Array<{
33
+ text: string;
34
+ value: Date | Function;
35
+ }>;
36
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
37
+ shortcuts?: Array<{
38
+ text: string;
39
+ value: Date | Function;
40
+ }>;
41
+ }> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
28
42
  Descriptions: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
29
43
  DescriptionsItem: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
30
44
  Dialog: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -67,10 +81,47 @@ export declare const baseComponents: {
67
81
  type: string;
68
82
  disabledNumber: boolean;
69
83
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
70
- InputNumber: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
84
+ InputNumber: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
85
+ type: {
86
+ type: StringConstructor;
87
+ default: string;
88
+ };
89
+ controls: {
90
+ type: (ObjectConstructor | BooleanConstructor)[];
91
+ default: boolean;
92
+ };
93
+ showSelect: {
94
+ type: BooleanConstructor;
95
+ default: boolean;
96
+ };
97
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
98
+ focus: (...args: any[]) => void;
99
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
100
+ type: {
101
+ type: StringConstructor;
102
+ default: string;
103
+ };
104
+ controls: {
105
+ type: (ObjectConstructor | BooleanConstructor)[];
106
+ default: boolean;
107
+ };
108
+ showSelect: {
109
+ type: BooleanConstructor;
110
+ default: boolean;
111
+ };
112
+ }>> & Readonly<{
113
+ onFocus?: (...args: any[]) => any;
114
+ }>, {
115
+ type: string;
116
+ controls: boolean | Record<string, any>;
117
+ showSelect: boolean;
118
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
119
+ Link: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
71
120
  Main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
121
+ Mention: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
72
122
  Menu: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
73
123
  MenuItem: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
124
+ MenuItemGroup: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
74
125
  Pagination: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
75
126
  SubMenu: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
76
127
  Option: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -86,6 +137,7 @@ export declare const baseComponents: {
86
137
  Result: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
87
138
  Row: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
88
139
  Scrollbar: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
140
+ Segmented: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
89
141
  Select: {
90
142
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
91
143
  modelValue: {
@@ -150,6 +202,7 @@ export declare const baseComponents: {
150
202
  });
151
203
  SelectV2: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
152
204
  Slider: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
205
+ Statistic: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
153
206
  Step: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
154
207
  Steps: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
155
208
  Switch: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -159,6 +212,8 @@ export declare const baseComponents: {
159
212
  Tabs: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
160
213
  Tag: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
161
214
  Text: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
215
+ Timeline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
216
+ TimelineItem: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
162
217
  TimePicker: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
163
218
  TimeSelect: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
164
219
  Tooltip: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -18,6 +18,7 @@ interface Props {
18
18
  declare function fetchData(query?: {}): Promise<void>;
19
19
  declare function getOptionList(url: string, query?: {}, callback?: (item: any) => string[]): Promise<void>;
20
20
  declare function setOption(data: ICustomData.Data[]): void;
21
+ declare function getOption(): ICustomData.Data[];
21
22
  declare function focus(): void;
22
23
  declare function blur(): void;
23
24
  declare function activeElement(): any;
@@ -26,6 +27,7 @@ declare const __VLS_export: import("vue").DefineComponent<Props, {
26
27
  blur: typeof blur;
27
28
  activeElement: typeof activeElement;
28
29
  setOption: typeof setOption;
30
+ getOption: typeof getOption;
29
31
  fetchData: typeof fetchData;
30
32
  getOptionList: typeof getOptionList;
31
33
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -98,7 +98,7 @@ declare const __VLS_base: import("vue").DefineComponent<Props, {
98
98
  setActiveTab: (id: string) => void;
99
99
  setQueryFocus: (index: number, delay?: number) => void;
100
100
  setTableCellFocus: (rowIndex: number, field?: number | string) => void;
101
- onCheckboxSelect: () => void;
101
+ onCheckboxSelect: () => Promise<void>;
102
102
  hideMultilineQuery: typeof hideMultilineQuery;
103
103
  tableTab: (params: TableKeyEventParams) => void;
104
104
  tableArrowRight: ({ $event, $api, type }: TableKeyEventParams) => Promise<void>;
@@ -11,5 +11,5 @@ export declare function onTableKey(activeTabs: Ref<string>, props: Record<"data"
11
11
  onCheckboxAll: (params: VxeTableDefines.CheckboxAllParams) => void;
12
12
  onCheckboxChange: (params: VxeTableDefines.CheckboxChangeParams) => void;
13
13
  onResizableChange: (params: VxeTableDefines.ResizableChangeParams, id: string) => Promise<void>;
14
- onCheckboxSelect: () => void;
14
+ onCheckboxSelect: () => Promise<void>;
15
15
  };
@@ -25,13 +25,13 @@ export declare const cacheSearchFormData: Ref<ICustomData.Data, ICustomData.Data
25
25
  /** 隐藏字段数据(查询条件[query]、按钮[btn]、表格列[column]、表单项[form]) */
26
26
  export declare const hideFieldData: Ref<{
27
27
  form: Record<string, string[]>;
28
- column: Record<string, string[]>;
29
28
  query: Record<string, string[]>;
29
+ column: Record<string, string[]>;
30
30
  btn: Record<string, string[]>;
31
- }, Record<"form" | "column" | "query" | "btn", Record<string, string[]>> | {
31
+ }, Record<"form" | "query" | "column" | "btn", Record<string, string[]>> | {
32
32
  form: Record<string, string[]>;
33
- column: Record<string, string[]>;
34
33
  query: Record<string, string[]>;
34
+ column: Record<string, string[]>;
35
35
  btn: Record<string, string[]>;
36
36
  }>;
37
37
  /** 缓存初始化搜索数据 */
@@ -229,6 +229,7 @@ export interface TableCurrentRow {
229
229
  rowIndex: number;
230
230
  code: string;
231
231
  key: string;
232
+ $event: KeyboardEvent;
232
233
  e: KeyboardEvent;
233
234
  }
234
235
  /** 对外导出表格参数实例(含数实例数据) */
@@ -303,6 +304,14 @@ export interface TableInstance extends TableParams {
303
304
  * @param uuid 表格id
304
305
  */
305
306
  setData: (data: ICustomData.Data[], table_id?: string) => Promise<void>;
307
+ /** 表格单元格动态配置合并
308
+ * @param merges.row 行索引位置
309
+ * @param merges.col 列索引位置
310
+ * @param merges.rowspan 跨行数量
311
+ * @param merges.colspan 跨列数量
312
+ * @param tableId 表格id
313
+ */
314
+ setMergeCells: (merges: Record<"row" | "col" | "rowspan" | "colspan", number>[], tableId?: string) => void;
306
315
  /** 表格修改行数据
307
316
  * @param data 表格数据,可谓单对象、数组对象
308
317
  * @param uuid 行唯一识别id,用于数据查询索引,默认 'id'
@@ -2717,6 +2717,7 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
2717
2717
  returnValueType: string;
2718
2718
  el?: ICustomData.ElComponent;
2719
2719
  formatAmount?: boolean;
2720
+ formatFooter?: boolean;
2720
2721
  fieldExport?: boolean;
2721
2722
  parent_field?: string;
2722
2723
  slotTemplateConfig?: Record<string, ICustomData.Data> | {
@@ -5942,6 +5943,7 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
5942
5943
  returnValueType: string;
5943
5944
  el?: ICustomData.ElComponent;
5944
5945
  formatAmount?: boolean;
5946
+ formatFooter?: boolean;
5945
5947
  fieldExport?: boolean;
5946
5948
  parent_field?: string;
5947
5949
  slotTemplateConfig?: Record<string, ICustomData.Data> | {
@@ -9193,6 +9195,7 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
9193
9195
  returnValueType: string;
9194
9196
  el?: ICustomData.ElComponent;
9195
9197
  formatAmount?: boolean;
9198
+ formatFooter?: boolean;
9196
9199
  fieldExport?: boolean;
9197
9200
  parent_field?: string;
9198
9201
  slotTemplateConfig?: Record<string, ICustomData.Data> | {
@@ -10047,6 +10050,7 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
10047
10050
  };
10048
10051
  };
10049
10052
  };
10053
+ setMergeCells: (merges: Record<"row" | "col" | "rowspan" | "colspan", number>[], tableId?: string) => void;
10050
10054
  getQueryData: (hideGroupField?: boolean | string) => any;
10051
10055
  getShowQueryData: (clearEmpty?: string) => Record<string, string>;
10052
10056
  getTableConfig: (tableId?: string) => {
@@ -12370,6 +12374,7 @@ export declare function useBcTable(props: Record<"data", ICustomData.FormTable |
12370
12374
  returnValueType: string;
12371
12375
  el?: ICustomData.ElComponent;
12372
12376
  formatAmount?: boolean;
12377
+ formatFooter?: boolean;
12373
12378
  fieldExport?: boolean;
12374
12379
  parent_field?: string;
12375
12380
  slotTemplateConfig?: Record<string, ICustomData.Data> | {
@@ -20,7 +20,7 @@ type KeydownMap = {
20
20
  emit: EmitEvent;
21
21
  };
22
22
  export declare function useKeydownEvent({ props, formRef, onPageChange, emit }: KeydownMap): {
23
- uid: string;
23
+ uid: import("vue").ComputedRef<string>;
24
24
  query_uid: string;
25
25
  table_uid: string;
26
26
  menuTable: {
@@ -22,6 +22,7 @@ declare function fetchData(query?: {}): Promise<void>;
22
22
  declare function getOptionList(url: string, query?: {}, callback?: (data: ICustomData.Data[]) => ICustomData.Data[]): Promise<void>;
23
23
  declare function clearData(): void;
24
24
  declare function setOption(data: ICustomData.Data[]): void;
25
+ declare function getOption(): ICustomData.Data[];
25
26
  declare function setCheckedKeys(val: any): void;
26
27
  declare function setExpandedKeys(val: any): void;
27
28
  declare function activeElement(): any;
@@ -31,6 +32,7 @@ declare const __VLS_export: import("vue").DefineComponent<Props, {
31
32
  activeElement: typeof activeElement;
32
33
  clearData: typeof clearData;
33
34
  setOption: typeof setOption;
35
+ getOption: typeof getOption;
34
36
  fetchData: typeof fetchData;
35
37
  getOptionList: typeof getOptionList;
36
38
  setCheckedKeys: typeof setCheckedKeys;
@@ -0,0 +1,18 @@
1
+ import { Radio, ICustomData } from "../../../types";
2
+ interface Props {
3
+ groupAttrs: Radio["groupAttrs"];
4
+ field: string;
5
+ uniqueId: string;
6
+ mid: string;
7
+ uid?: string;
8
+ }
9
+ declare function fetchData(query?: {}): Promise<void>;
10
+ declare function getOptionList(url: string, query?: {}, callback?: (item: any) => any[]): Promise<void>;
11
+ declare function setOption(data: ICustomData.Data[]): void;
12
+ declare const __VLS_export: import("vue").DefineComponent<Props, {
13
+ setOption: typeof setOption;
14
+ fetchData: typeof fetchData;
15
+ getOptionList: typeof getOptionList;
16
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
+ declare const _default: typeof __VLS_export;
18
+ export default _default;
@@ -0,0 +1,8 @@
1
+ import { App } from "vue";
2
+ import Radio from "./Radio/Radio.vue";
3
+ type _H5Components = {
4
+ Radio: typeof Radio;
5
+ };
6
+ export declare const H5Components: _H5Components;
7
+ export default function (app: App): void;
8
+ export {};
@@ -168,6 +168,8 @@ export declare namespace ICustomData {
168
168
  el?: ElComponent;
169
169
  /** 是否开启金额格式化 */
170
170
  formatAmount?: boolean;
171
+ /** 是否开启底部金额格式化 */
172
+ formatFooter?: boolean;
171
173
  /** 是否导出该字段 */
172
174
  fieldExport?: boolean;
173
175
  /** 父级字段 */
@@ -55,6 +55,10 @@ export declare const mathTool: {
55
55
  * @example div(0.6, "0.2") = 3 <==> 0.6 / 0.2
56
56
  */
57
57
  div: (...vals: (string | number)[]) => number;
58
+ /**
59
+ * 获取当前系统设置的小数位数
60
+ */
61
+ readonly decimal: number;
58
62
  };
59
63
  /**
60
64
  * 将数字转换为大写金额
@@ -11,6 +11,7 @@ export declare function treeToList<T extends Record<"children", T[]>>(menus: T[]
11
11
  export declare function getMergeData(params: ICustomData.Data[]): ICustomData.Data;
12
12
  /** 获取多表单实例数据
13
13
  * @param Instance 表单实例
14
+ * @return 返回深复制数据,不存在数据引用问题
14
15
  */
15
16
  export declare function getFormInstanceData(Instance: IFormInstance[]): any;
16
17
  /** 数组、对象强制转字符串数据 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hs-admin-ui",
3
- "version": "15.9.7",
3
+ "version": "15.9.9",
4
4
  "private": false,
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -1,4 +0,0 @@
1
- import { _ as f } from "./index-j97hLETL.mjs";
2
- export {
3
- f as default
4
- };