@hoenergy/hoenergy-template-pc 1.1.51 → 1.1.53

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 (37) hide show
  1. package/.i18n_extractor.json +8 -8
  2. package/dist/components/charts/chartCard/FormaxChartCard/index.vue.d.ts +10 -0
  3. package/dist/index.js +17 -17
  4. package/dist/index.mjs +1017 -976
  5. package/dist/style.css +1 -1
  6. package/docs/tailwind.css +4 -4
  7. package/package.json +1 -1
  8. package/src/components/Business/dataEntry/FormaxEleTimePicker/index.ts +55 -55
  9. package/src/components/Business/dataEntry/FormaxEleTimePicker/index.vue +90 -60
  10. package/src/components/Business/dataEntry/FormaxEleTimePicker/preview.vue +17 -16
  11. package/src/components/Business/dataEntry/modalSearchTable/hooks/useModalSearchTable.ts +73 -73
  12. package/src/components/Business/dataEntry/modalSearchTable/index.ts +184 -184
  13. package/src/components/Business/dataEntry/modalSearchTable/index.vue +376 -376
  14. package/src/components/Business/dataEntry/modalSearchTable/preview.vue +81 -81
  15. package/src/components/Business/dataEntry/modalTableSelect/hooks/useModalTableSelect.ts +73 -73
  16. package/src/components/charts/chartCard/FormaxChartCard/index.ts +5 -0
  17. package/src/components/charts/chartCard/FormaxChartCard/index.vue +13 -4
  18. package/src/components/data/form/searchForm/preview.vue +53 -53
  19. package/src/components/data/form/searchForm/src/hooks/helper.ts +21 -21
  20. package/src/components/data/form/searchForm/src/icon.ts +8 -8
  21. package/src/components/data/form/searchForm/src/types/form.ts +1 -1
  22. package/src/components/data/table/FormaxTable/src/BasicTable.ts +12 -12
  23. package/src/components/data/table/FormaxTable/src/const.ts +11 -11
  24. package/src/components/data/table/FormaxTable/src/hooks/useColumns.ts +147 -147
  25. package/src/components/data/table/FormaxTable/src/hooks/usePagination.ts +72 -72
  26. package/src/components/data/table/FormaxTable/src/props.ts +77 -77
  27. package/src/components/data/table/FormaxTable/src/types/tableAction.ts +25 -25
  28. package/src/components/data/table/FormaxTable/src/utils.ts +65 -65
  29. package/src/components/general/icon/FormaxIcon/local-test-icon.svg +7 -7
  30. package/src/components/general/icon/FormaxIcon/preview.vue +19 -19
  31. package/src/components/general/loading/FormaxLoading/preview.vue +4 -2
  32. package/src/components/general/map/MapPoint/index.ts +146 -146
  33. package/src/components/general/map/MapPoint/preview.vue +75 -75
  34. package/src/components/general/modal/FormaxModal/src/hooks/helper.ts +21 -21
  35. package/src/components/general/viewer/FormaxFileViewer/index.ts +92 -92
  36. package/src/components/general/viewer/FormaxFileViewer/preview.vue +39 -39
  37. package/tsup.config.ts +16 -16
@@ -1,8 +1,8 @@
1
- {
2
- "langs": ["en", "vi"],
3
- "scanPath": "src",
4
- "fileType": "vue|ts|js|jsx|tsx",
5
- "localePath": "src/locales",
6
- "keyCount": 10,
7
- "onlyExtract": false
8
- }
1
+ {
2
+ "langs": ["en", "vi"],
3
+ "scanPath": "src",
4
+ "fileType": "vue|ts|js|jsx|tsx",
5
+ "localePath": "src/locales",
6
+ "keyCount": 10,
7
+ "onlyExtract": false
8
+ }
@@ -1,6 +1,7 @@
1
1
  declare function __VLS_template(): {
2
2
  attrs: Partial<{}>;
3
3
  slots: {
4
+ name?(_: {}): any;
4
5
  header?(_: {}): any;
5
6
  action?(_: {}): any;
6
7
  footer?(_: {}): any;
@@ -25,6 +26,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
25
26
  type: StringConstructor;
26
27
  default: string;
27
28
  };
29
+ selectable: {
30
+ type: BooleanConstructor;
31
+ default: boolean;
32
+ };
28
33
  data: {
29
34
  type: ObjectConstructor;
30
35
  required: true;
@@ -49,6 +54,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
49
54
  type: StringConstructor;
50
55
  default: string;
51
56
  };
57
+ selectable: {
58
+ type: BooleanConstructor;
59
+ default: boolean;
60
+ };
52
61
  data: {
53
62
  type: ObjectConstructor;
54
63
  required: true;
@@ -61,6 +70,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
61
70
  data: Record<string, any>;
62
71
  height: string;
63
72
  tooltip: string;
73
+ selectable: boolean;
64
74
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
65
75
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
66
76
  export default _default;