@fctc/edu-logic-lib 1.1.2 → 1.1.3
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/hooks.d.mts +2 -0
- package/dist/hooks.d.ts +2 -0
- package/dist/index.d.mts +23 -0
- package/dist/index.d.ts +23 -0
- package/dist/index.js +5323 -0
- package/dist/index.mjs +5165 -0
- package/package.json +89 -128
package/dist/hooks.d.mts
CHANGED
|
@@ -2,6 +2,8 @@ import * as _tanstack_react_query from '@tanstack/react-query';
|
|
|
2
2
|
import { L as LoginCredentialBody, c as SocialTokenBody, F as ForgotPasswordBody, u as updatePasswordBody, V as ViewData, C as ContextApi, e as GetViewParams } from './view-type-BTzRpkT7.mjs';
|
|
3
3
|
export { u as useGetFormView, a as useGetSelection } from './use-get-selection-DFh6sc49.mjs';
|
|
4
4
|
import { a as BaseModelInit, B as BaseModel } from './index-C_nK1Mii.mjs';
|
|
5
|
+
import './environment.mjs';
|
|
6
|
+
import '@reduxjs/toolkit';
|
|
5
7
|
|
|
6
8
|
declare const useForgotPassword: () => _tanstack_react_query.UseMutationResult<any, Error, string, unknown>;
|
|
7
9
|
|
package/dist/hooks.d.ts
CHANGED
|
@@ -2,6 +2,8 @@ import * as _tanstack_react_query from '@tanstack/react-query';
|
|
|
2
2
|
import { L as LoginCredentialBody, c as SocialTokenBody, F as ForgotPasswordBody, u as updatePasswordBody, V as ViewData, C as ContextApi, e as GetViewParams } from './view-type-BTzRpkT7.js';
|
|
3
3
|
export { u as useGetFormView, a as useGetSelection } from './use-get-selection-DFh6sc49.js';
|
|
4
4
|
import { a as BaseModelInit, B as BaseModel } from './index-C_nK1Mii.js';
|
|
5
|
+
import './environment.js';
|
|
6
|
+
import '@reduxjs/toolkit';
|
|
5
7
|
|
|
6
8
|
declare const useForgotPassword: () => _tanstack_react_query.UseMutationResult<any, Error, string, unknown>;
|
|
7
9
|
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export { ComponentType, FieldTypeConstants, KeyConstants, MethodConstants, MethodType, ModelConstants, SearchType, UriConstants, WIDGETAVATAR, WIDGETCOLOR, WIDGETNOSTRING, WIDGETSTATUS } from './constants.mjs';
|
|
2
|
+
export { EnvStore, env, getEnv, initEnv } from './environment.mjs';
|
|
3
|
+
export { useButton, useChangeStatus, useDelete, useDeleteComment, useDuplicateRecord, useExecuteImport, useExportExcel, useField, useForgotPassword, useGetAll, useGetComment, useGetCompanyInfo, useGetCurrentCompany, useGetDetail, useGetFieldExport, useGetFieldOnChange, useGetFileExcel, useGetImage, useGetListData, useGetMenu, useGetProfile, useGetProvider, useGetUser, useGetView, useIsValidToken, useLoadAction, useLoginCredential, useLoginSocial, useModel, useOdooDataTransform, useOnChangeForm, useParsePreview, usePrint, useRemoveRow, useResetPassword, useRunAction, useSave, useSendComment, useSwitchLocale, useUpdatePassword, useUploadFile, useUploadIdFile, useUploadImage } from './hooks.mjs';
|
|
4
|
+
export { u as useGetFormView, a as useGetSelection } from './use-get-selection-DFh6sc49.mjs';
|
|
5
|
+
export { MainProvider, ReactQueryProvider, VersionGate } from './provider.mjs';
|
|
6
|
+
export { ActionService, AuthService, CompanyService, ExcelService, FormService, ModelService, UserService, ViewService } from './services.mjs';
|
|
7
|
+
export { AppDispatch, RootState, clearSearchMap, envSlice, envStore, excelSlice, formSlice, listSlice, navbarSlice, profileSlice, removeKeyFromSearchMap, searchSlice, selectEnv, selectExcel, selectForm, selectList, selectNavbar, selectProfile, selectSearch, selectSearchMap, setAllowCompanies, setCompanies, setDataParse, setDataUser, setDefaultCompany, setDomainTable, setEnv, setEnvFile, setErrorData, setFieldTranslate, setFields, setFilterBy, setFirstDomain, setFormSubmitComponent, setGroupBy, setGroupByDomain, setHoveredIndexSearchList, setIdFile, setIndexRowTableModal, setIsFileLoaded, setIsShowModalTranslate, setIsShowingModalDetail, setLang, setListSubject, setLoadingImport, setMenuList, setModelSearch, setOrder, setPage, setPageLimit, setProfile, setSearchMap, setSearchString, setSelectedFile, setSelectedRowKeys, setSelectedTags, setTableHead, setTypeFieldsSearch, setUid, setUser, setViewDataStore, updateSearchMap, useAppDispatch, useAppSelector } from './store.mjs';
|
|
8
|
+
export { checkIsImageLink, domainHelper, evalJSONContext, evalJSONDomain, formatFileSize, formatSortingString, formatUrlPath, getFieldsOnChange, getSubdomain, isBase64File, isBase64Image, removeUndefinedFields, stringToColor, toQueryString, useTabModel } from './utils.mjs';
|
|
9
|
+
export { C as ContextApi, D as DeleteParams, F as ForgotPasswordBody, G as GetAllParams, a as GetDetailParams, b as GetListParams, e as GetViewParams, L as LoginCredentialBody, O as OnChangeParams, R as ResetPasswordRequest, S as SaveParams, c as SocialTokenBody, d as Specification, U as UpdatePasswordRequest, f as View, V as ViewData, u as updatePasswordBody } from './view-type-BTzRpkT7.mjs';
|
|
10
|
+
export { B as BaseModelInit } from './base-model-type-DvO53Lwi.mjs';
|
|
11
|
+
export { Config } from './types.mjs';
|
|
12
|
+
export { C as Context } from './context-type-D5XefoL-.mjs';
|
|
13
|
+
export { B as BaseModel } from './index-C_nK1Mii.mjs';
|
|
14
|
+
export { CompanyModel, UserModel } from './models.mjs';
|
|
15
|
+
export { axiosClient } from './config.mjs';
|
|
16
|
+
import '@reduxjs/toolkit';
|
|
17
|
+
import '@tanstack/react-query';
|
|
18
|
+
import 'react/jsx-runtime';
|
|
19
|
+
import 'react';
|
|
20
|
+
import 'react-redux';
|
|
21
|
+
import 'redux-thunk';
|
|
22
|
+
import 'redux';
|
|
23
|
+
import 'immer';
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export { ComponentType, FieldTypeConstants, KeyConstants, MethodConstants, MethodType, ModelConstants, SearchType, UriConstants, WIDGETAVATAR, WIDGETCOLOR, WIDGETNOSTRING, WIDGETSTATUS } from './constants.js';
|
|
2
|
+
export { EnvStore, env, getEnv, initEnv } from './environment.js';
|
|
3
|
+
export { useButton, useChangeStatus, useDelete, useDeleteComment, useDuplicateRecord, useExecuteImport, useExportExcel, useField, useForgotPassword, useGetAll, useGetComment, useGetCompanyInfo, useGetCurrentCompany, useGetDetail, useGetFieldExport, useGetFieldOnChange, useGetFileExcel, useGetImage, useGetListData, useGetMenu, useGetProfile, useGetProvider, useGetUser, useGetView, useIsValidToken, useLoadAction, useLoginCredential, useLoginSocial, useModel, useOdooDataTransform, useOnChangeForm, useParsePreview, usePrint, useRemoveRow, useResetPassword, useRunAction, useSave, useSendComment, useSwitchLocale, useUpdatePassword, useUploadFile, useUploadIdFile, useUploadImage } from './hooks.js';
|
|
4
|
+
export { u as useGetFormView, a as useGetSelection } from './use-get-selection-DFh6sc49.js';
|
|
5
|
+
export { MainProvider, ReactQueryProvider, VersionGate } from './provider.js';
|
|
6
|
+
export { ActionService, AuthService, CompanyService, ExcelService, FormService, ModelService, UserService, ViewService } from './services.js';
|
|
7
|
+
export { AppDispatch, RootState, clearSearchMap, envSlice, envStore, excelSlice, formSlice, listSlice, navbarSlice, profileSlice, removeKeyFromSearchMap, searchSlice, selectEnv, selectExcel, selectForm, selectList, selectNavbar, selectProfile, selectSearch, selectSearchMap, setAllowCompanies, setCompanies, setDataParse, setDataUser, setDefaultCompany, setDomainTable, setEnv, setEnvFile, setErrorData, setFieldTranslate, setFields, setFilterBy, setFirstDomain, setFormSubmitComponent, setGroupBy, setGroupByDomain, setHoveredIndexSearchList, setIdFile, setIndexRowTableModal, setIsFileLoaded, setIsShowModalTranslate, setIsShowingModalDetail, setLang, setListSubject, setLoadingImport, setMenuList, setModelSearch, setOrder, setPage, setPageLimit, setProfile, setSearchMap, setSearchString, setSelectedFile, setSelectedRowKeys, setSelectedTags, setTableHead, setTypeFieldsSearch, setUid, setUser, setViewDataStore, updateSearchMap, useAppDispatch, useAppSelector } from './store.js';
|
|
8
|
+
export { checkIsImageLink, domainHelper, evalJSONContext, evalJSONDomain, formatFileSize, formatSortingString, formatUrlPath, getFieldsOnChange, getSubdomain, isBase64File, isBase64Image, removeUndefinedFields, stringToColor, toQueryString, useTabModel } from './utils.js';
|
|
9
|
+
export { C as ContextApi, D as DeleteParams, F as ForgotPasswordBody, G as GetAllParams, a as GetDetailParams, b as GetListParams, e as GetViewParams, L as LoginCredentialBody, O as OnChangeParams, R as ResetPasswordRequest, S as SaveParams, c as SocialTokenBody, d as Specification, U as UpdatePasswordRequest, f as View, V as ViewData, u as updatePasswordBody } from './view-type-BTzRpkT7.js';
|
|
10
|
+
export { B as BaseModelInit } from './base-model-type-DvO53Lwi.js';
|
|
11
|
+
export { Config } from './types.js';
|
|
12
|
+
export { C as Context } from './context-type-D5XefoL-.js';
|
|
13
|
+
export { B as BaseModel } from './index-C_nK1Mii.js';
|
|
14
|
+
export { CompanyModel, UserModel } from './models.js';
|
|
15
|
+
export { axiosClient } from './config.js';
|
|
16
|
+
import '@reduxjs/toolkit';
|
|
17
|
+
import '@tanstack/react-query';
|
|
18
|
+
import 'react/jsx-runtime';
|
|
19
|
+
import 'react';
|
|
20
|
+
import 'react-redux';
|
|
21
|
+
import 'redux-thunk';
|
|
22
|
+
import 'redux';
|
|
23
|
+
import 'immer';
|