@hoenergy/hoenergy-template-pc 1.1.13 → 1.1.14
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/dist/index.d.ts +4 -4
- package/dist/index.js +18 -18
- package/dist/index.mjs +2274 -2120
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/general/viewer/FormaxFileViewer/index.vue +9 -5
- package/src/index.ts +7 -0
- package/vite.config.ts +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { FormaxModalComponent as FormaxModal } from './components/general/modal/FormaxModal';
|
|
2
2
|
import { FormaxTableComponent as FormaxTable } from './components/data/table/FormaxTable';
|
|
3
|
-
import { FormaxFormComponent as FormaxForm } from './components/data/form/searchForm';
|
|
3
|
+
import { FormaxFormComponent as FormaxForm, useForm } from './components/data/form/searchForm';
|
|
4
4
|
import { FormaxIconComponent as FormaxIcon } from './components/general/icon/FormaxIcon';
|
|
5
5
|
import { FormaxChartComponent as FormaxChart } from './components/charts/chart/FormaxChart';
|
|
6
6
|
import { FormaxChartCardComponent as FormaxChartCard } from './components/charts/chartCard/FormaxChartCard';
|
|
7
7
|
import { FormaxEleTimePickerComponent as FormaxEleTimePicker } from './components/Business/dataEntry/FormaxEleTimePicker';
|
|
8
|
-
import { FormaxModalTableSelectComponent as FormaxModalTableSelect } from './components/Business/dataEntry/modalTableSelect';
|
|
9
|
-
import { FormaxModalSearchTableComponent as FormaxModalSearchTable } from './components/Business/dataEntry/modalSearchTable';
|
|
8
|
+
import { FormaxModalTableSelectComponent as FormaxModalTableSelect, useModalTableSelect } from './components/Business/dataEntry/modalTableSelect';
|
|
9
|
+
import { FormaxModalSearchTableComponent as FormaxModalSearchTable, useModalSearchTable } from './components/Business/dataEntry/modalSearchTable';
|
|
10
10
|
import { FormaxIconSelectComponent as FormaxIconSelect } from './components/general/iconSelect/FormaxIconSelect/index';
|
|
11
11
|
import { FormaxCalendarComponent as FormaxCalendar } from './components/general/calendar/FormaxCalendar/index';
|
|
12
12
|
import { FormaxConfigProviderComponent as FormaxConfigProvider } from './components/globalConfig/ConfigProvider/FormaxConfigProvider/index';
|
|
@@ -73,7 +73,7 @@ export declare const localesObj: {
|
|
|
73
73
|
};
|
|
74
74
|
export declare function install(app: any): void;
|
|
75
75
|
export declare const componentList: ComponentMeta[];
|
|
76
|
-
export { FormaxModal, FormaxTable, FormaxForm, FormaxIcon, FormaxChart, FormaxChartCard, FormaxEleTimePicker, FormaxModalTableSelect, FormaxModalSearchTable, FormaxConfigProvider, FormaxCalendar, FormaxIconSelect, FormaxTitle, FormaxLoading, formaxLoadingDirective, FormaxInfoCard, };
|
|
76
|
+
export { FormaxModal, FormaxTable, FormaxForm, FormaxIcon, FormaxChart, FormaxChartCard, FormaxEleTimePicker, FormaxModalTableSelect, FormaxModalSearchTable, FormaxConfigProvider, FormaxCalendar, FormaxIconSelect, FormaxTitle, FormaxLoading, formaxLoadingDirective, FormaxInfoCard, useForm, useModalTableSelect, useModalSearchTable, };
|
|
77
77
|
export * from './types';
|
|
78
78
|
export declare const componentGoList: any[];
|
|
79
79
|
export * from './hook/useTheme.hook';
|