@hoenergy/hoenergy-template-pc 1.1.17 → 1.1.19

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 (44) hide show
  1. package/.i18n_extractor.json +8 -8
  2. package/dist/components/Business/dataEntry/FormaxEleTimePicker/index.vue.d.ts +2 -0
  3. package/dist/index.js +87 -20
  4. package/dist/index.mjs +601 -537
  5. package/docs/tailwind.css +4 -4
  6. package/docs/tailwind.generated.css +1 -1
  7. package/package.json +3 -2
  8. package/src/components/Business/dataEntry/FormaxEleTimePicker/index.ts +50 -50
  9. package/src/components/Business/dataEntry/FormaxEleTimePicker/index.vue +51 -49
  10. package/src/components/Business/dataEntry/FormaxEleTimePicker/preview.vue +15 -15
  11. package/src/components/Business/dataEntry/modalSearchTable/hooks/useModalSearchTable.ts +73 -73
  12. package/src/components/Business/dataEntry/modalSearchTable/index.ts +185 -185
  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/data/form/searchForm/index.ts +1 -1
  17. package/src/components/data/form/searchForm/preview.vue +49 -49
  18. package/src/components/data/form/searchForm/src/hooks/helper.ts +21 -21
  19. package/src/components/data/form/searchForm/src/icon.ts +8 -8
  20. package/src/components/data/table/FormaxTable/preview.vue +27 -27
  21. package/src/components/data/table/FormaxTable/src/BasicTable.ts +12 -12
  22. package/src/components/data/table/FormaxTable/src/components/TableAction.vue +154 -154
  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 +65 -65
  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/map/MapPoint/index.ts +147 -79
  32. package/src/components/general/map/MapPoint/index.vue +2 -4
  33. package/src/components/general/map/MapPoint/preview.vue +75 -74
  34. package/src/components/general/modal/FormaxModal/src/basicModal.vue +2 -4
  35. package/src/components/general/modal/FormaxModal/src/hooks/helper.ts +21 -21
  36. package/src/components/general/viewer/FormaxFileViewer/index.ts +56 -56
  37. package/src/components/general/viewer/FormaxFileViewer/preview.vue +39 -39
  38. package/src/components/globalConfig/ConfigProvider/FormaxConfigProvider/index.vue +32 -32
  39. package/src/locales/en.json +17 -17
  40. package/src/locales/vi.json +17 -17
  41. package/src/locales/zh-CN.json +17 -17
  42. package/tsup.config.ts +16 -16
  43. package/vite.config.ts.timestamp-1773628755772-71fefeab89185.mjs +83 -83
  44. package/vite.config.ts.timestamp-1773643347641-ea780a802b697.mjs +104 -0
@@ -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
+ }
@@ -2,8 +2,10 @@ type __VLS_Props = {
2
2
  value?: string | null;
3
3
  };
4
4
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
5
+ confirm: (value: string | null) => any;
5
6
  "update:value": (value: string | null) => any;
6
7
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
8
+ onConfirm?: ((value: string | null) => any) | undefined;
7
9
  "onUpdate:value"?: ((value: string | null) => any) | undefined;
8
10
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
9
11
  export default _default;