@hoenergy/hoenergy-template-pc 1.1.28 → 1.1.30
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/.i18n_extractor.json +8 -8
- package/dist/index.js +17 -17
- package/dist/index.mjs +691 -672
- package/dist/style.css +1 -1
- package/docs/tailwind.css +4 -4
- package/package.json +1 -1
- package/src/components/Business/dataEntry/FormaxEleTimePicker/index.ts +55 -55
- package/src/components/Business/dataEntry/FormaxEleTimePicker/index.vue +51 -51
- package/src/components/Business/dataEntry/FormaxEleTimePicker/preview.vue +14 -15
- package/src/components/Business/dataEntry/modalSearchTable/hooks/useModalSearchTable.ts +73 -73
- package/src/components/Business/dataEntry/modalSearchTable/index.ts +184 -184
- package/src/components/Business/dataEntry/modalSearchTable/index.vue +376 -376
- package/src/components/Business/dataEntry/modalSearchTable/preview.vue +81 -81
- package/src/components/Business/dataEntry/modalTableSelect/hooks/useModalTableSelect.ts +73 -73
- package/src/components/charts/chart/FormaxChart/index.vue +2 -2
- package/src/components/data/form/searchForm/preview.vue +51 -51
- package/src/components/data/form/searchForm/src/hooks/helper.ts +21 -21
- package/src/components/data/form/searchForm/src/icon.ts +8 -8
- package/src/components/data/table/FormaxTable/preview.vue +27 -27
- package/src/components/data/table/FormaxTable/src/BasicTable.ts +12 -12
- package/src/components/data/table/FormaxTable/src/components/TableAction.vue +154 -154
- package/src/components/data/table/FormaxTable/src/const.ts +11 -11
- package/src/components/data/table/FormaxTable/src/hooks/useColumns.ts +147 -147
- package/src/components/data/table/FormaxTable/src/hooks/usePagination.ts +72 -65
- package/src/components/data/table/FormaxTable/src/props.ts +77 -77
- package/src/components/data/table/FormaxTable/src/types/tableAction.ts +25 -25
- package/src/components/data/table/FormaxTable/src/utils.ts +65 -65
- package/src/components/general/icon/FormaxIcon/local-test-icon.svg +7 -7
- package/src/components/general/icon/FormaxIcon/preview.vue +19 -19
- package/src/components/general/map/MapPoint/index.ts +146 -146
- package/src/components/general/map/MapPoint/index.vue +31 -6
- package/src/components/general/map/MapPoint/preview.vue +75 -75
- package/src/components/general/modal/FormaxModal/src/basicModal.vue +1 -1
- package/src/components/general/modal/FormaxModal/src/hooks/helper.ts +21 -21
- package/src/components/general/modal/FormaxModal/src/props.ts +2 -1
- package/src/components/general/viewer/FormaxFileViewer/index.ts +92 -92
- package/src/components/general/viewer/FormaxFileViewer/preview.vue +39 -39
- package/src/components/globalConfig/ConfigProvider/FormaxConfigProvider/index.vue +7 -0
- package/tsup.config.ts +16 -16
- package/vite.config.ts.timestamp-1773628755772-71fefeab89185.mjs +0 -83
- package/vite.config.ts.timestamp-1773643347641-ea780a802b697.mjs +0 -104
package/.i18n_extractor.json
CHANGED
|
@@ -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
|
+
}
|