@fctc/widget-logic 1.4.1 → 1.4.2
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/config.d.mts +1 -1
- package/dist/config.d.ts +1 -1
- package/dist/index.d.mts +16 -2
- package/dist/index.d.ts +16 -2
- package/dist/index.js +7361 -0
- package/dist/index.mjs +7424 -0
- package/dist/widget.d.mts +325 -0
- package/dist/widget.d.ts +325 -0
- package/dist/widget.js +7079 -0
- package/dist/widget.mjs +7111 -0
- package/package.json +5 -2
package/dist/config.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * from '@fctc/interface-logic/configs';
|
|
2
2
|
import '@fctc/interface-logic/constants';
|
|
3
3
|
import '@fctc/interface-logic/environment';
|
|
4
|
+
import '@fctc/interface-logic/store';
|
|
4
5
|
import '@fctc/interface-logic/provider';
|
|
5
6
|
import '@fctc/interface-logic/services';
|
|
6
|
-
import '@fctc/interface-logic/store';
|
package/dist/config.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * from '@fctc/interface-logic/configs';
|
|
2
2
|
import '@fctc/interface-logic/constants';
|
|
3
3
|
import '@fctc/interface-logic/environment';
|
|
4
|
+
import '@fctc/interface-logic/store';
|
|
4
5
|
import '@fctc/interface-logic/provider';
|
|
5
6
|
import '@fctc/interface-logic/services';
|
|
6
|
-
import '@fctc/interface-logic/store';
|
package/dist/index.d.mts
CHANGED
|
@@ -1,2 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
1
|
+
export { ActionResultType, AppProvider, ContextProfile, Record, ViewResponse, useAppProvider, useAuth, useAuthType, useCallAction, useCallActionType, useClickOutside, useConfig, useConfigType, useDebounce, useDetail, useListData, useListDataType, useMenu, useMenuType, useProfile, useUser, useUserType, useViewV2, useViewV2Type } from './hooks.mjs';
|
|
2
|
+
export * from '@fctc/interface-logic/hooks';
|
|
3
|
+
export * from '@fctc/interface-logic/configs';
|
|
4
|
+
export { CloseIcon, EyeIcon, LoadingIcon } from './icons.mjs';
|
|
5
|
+
export { ISelctionStateProps, ITableBodyProps, ITableHeadProps, ITableProps, binaryFieldController, colorFieldController, copyLinkButtonController, dateFieldController, downLoadBinaryController, downloadFileController, durationController, floatController, floatTimeFiledController, many2manyFieldController, many2manyTagsController, many2oneButtonController, many2oneFieldController, priorityFieldController, statusDropdownController, tableBodyController, tableController, tableGroupController, tableHeadController } from './widget.mjs';
|
|
6
|
+
export { API_APP_URL, API_PRESCHOOL_URL, STORAGES, combineContexts, convertFieldsToArray, countSum, getDateRange, languages, mergeButtons, setStorageItemAsync, useGetRowIds, useStorageState } from './utils.mjs';
|
|
7
|
+
export * from '@fctc/interface-logic/utils';
|
|
8
|
+
export * from '@fctc/interface-logic/store';
|
|
9
|
+
export * from '@fctc/interface-logic/constants';
|
|
10
|
+
export * from '@fctc/interface-logic/environment';
|
|
11
|
+
export * from '@fctc/interface-logic/provider';
|
|
12
|
+
export * from '@fctc/interface-logic/services';
|
|
13
|
+
import '@tanstack/react-query';
|
|
14
|
+
import '@tanstack/query-core';
|
|
15
|
+
import 'react';
|
|
16
|
+
import 'moment';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
1
|
+
export { ActionResultType, AppProvider, ContextProfile, Record, ViewResponse, useAppProvider, useAuth, useAuthType, useCallAction, useCallActionType, useClickOutside, useConfig, useConfigType, useDebounce, useDetail, useListData, useListDataType, useMenu, useMenuType, useProfile, useUser, useUserType, useViewV2, useViewV2Type } from './hooks.js';
|
|
2
|
+
export * from '@fctc/interface-logic/hooks';
|
|
3
|
+
export * from '@fctc/interface-logic/configs';
|
|
4
|
+
export { CloseIcon, EyeIcon, LoadingIcon } from './icons.js';
|
|
5
|
+
export { ISelctionStateProps, ITableBodyProps, ITableHeadProps, ITableProps, binaryFieldController, colorFieldController, copyLinkButtonController, dateFieldController, downLoadBinaryController, downloadFileController, durationController, floatController, floatTimeFiledController, many2manyFieldController, many2manyTagsController, many2oneButtonController, many2oneFieldController, priorityFieldController, statusDropdownController, tableBodyController, tableController, tableGroupController, tableHeadController } from './widget.js';
|
|
6
|
+
export { API_APP_URL, API_PRESCHOOL_URL, STORAGES, combineContexts, convertFieldsToArray, countSum, getDateRange, languages, mergeButtons, setStorageItemAsync, useGetRowIds, useStorageState } from './utils.js';
|
|
7
|
+
export * from '@fctc/interface-logic/utils';
|
|
8
|
+
export * from '@fctc/interface-logic/store';
|
|
9
|
+
export * from '@fctc/interface-logic/constants';
|
|
10
|
+
export * from '@fctc/interface-logic/environment';
|
|
11
|
+
export * from '@fctc/interface-logic/provider';
|
|
12
|
+
export * from '@fctc/interface-logic/services';
|
|
13
|
+
import '@tanstack/react-query';
|
|
14
|
+
import '@tanstack/query-core';
|
|
15
|
+
import 'react';
|
|
16
|
+
import 'moment';
|