@fctc/interface-logic 4.9.1 → 4.9.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/constants.d.mts +1 -0
- package/dist/constants.d.ts +1 -0
- package/dist/constants.js +1 -0
- package/dist/constants.mjs +1 -0
- package/dist/hooks.d.mts +2 -18
- package/dist/hooks.d.ts +2 -18
- package/dist/hooks.js +19 -13
- package/dist/hooks.mjs +19 -13
- package/dist/index.d.mts +22 -0
- package/dist/index.d.ts +22 -0
- package/dist/index.js +11929 -0
- package/dist/index.mjs +11600 -0
- package/dist/provider.d.mts +0 -1
- package/dist/provider.d.ts +0 -1
- package/dist/provider.js +19 -13
- package/dist/provider.mjs +19 -13
- package/dist/services.d.mts +2 -18
- package/dist/services.d.ts +2 -18
- package/dist/services.js +17 -12
- package/dist/services.mjs +17 -12
- package/package.json +1 -1
package/dist/constants.d.mts
CHANGED
package/dist/constants.d.ts
CHANGED
package/dist/constants.js
CHANGED
|
@@ -109,6 +109,7 @@ var UriConstants = /* @__PURE__ */ ((UriConstants2) => {
|
|
|
109
109
|
UriConstants2["GRANT_ACCESS"] = "/grant-access";
|
|
110
110
|
UriConstants2["TOKEN_BY_CODE"] = "/token";
|
|
111
111
|
UriConstants2["LOGOUT"] = "/logout";
|
|
112
|
+
UriConstants2["LOGIN_PATH"] = "/login";
|
|
112
113
|
UriConstants2["CREATE_UPDATE"] = "/create_update";
|
|
113
114
|
UriConstants2["SEARCH_READ"] = "/search_read";
|
|
114
115
|
UriConstants2["CREATE_PATH"] = "/create";
|
package/dist/constants.mjs
CHANGED
|
@@ -68,6 +68,7 @@ var UriConstants = /* @__PURE__ */ ((UriConstants2) => {
|
|
|
68
68
|
UriConstants2["GRANT_ACCESS"] = "/grant-access";
|
|
69
69
|
UriConstants2["TOKEN_BY_CODE"] = "/token";
|
|
70
70
|
UriConstants2["LOGOUT"] = "/logout";
|
|
71
|
+
UriConstants2["LOGIN_PATH"] = "/login";
|
|
71
72
|
UriConstants2["CREATE_UPDATE"] = "/create_update";
|
|
72
73
|
UriConstants2["SEARCH_READ"] = "/search_read";
|
|
73
74
|
UriConstants2["CREATE_PATH"] = "/create";
|
package/dist/hooks.d.mts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
2
2
|
import { L as LoginCredentialBody, d as SocialTokenBody, F as ForgotPasswordBody, u as updatePasswordBody, T as TThreadData, C as ContextApi, V as ViewData, c as GetSelectionType, f as GetViewParams } from './view-type-CfcWWR0w.mjs';
|
|
3
|
-
import * as _supabase_auth_js from '@supabase/auth-js';
|
|
4
3
|
import { B as BaseModelInit } from './base-model-type-DD8uZnDP.mjs';
|
|
5
4
|
import { BaseModel } from './models.mjs';
|
|
6
5
|
|
|
@@ -26,24 +25,9 @@ declare const useLoginSocial: () => _tanstack_react_query.UseMutationResult<any,
|
|
|
26
25
|
type LoginTenantUserBody = {
|
|
27
26
|
email: string;
|
|
28
27
|
password: string;
|
|
28
|
+
tenantId: string;
|
|
29
29
|
};
|
|
30
|
-
declare const useLoginTenantUser: () => _tanstack_react_query.UseMutationResult<
|
|
31
|
-
data: null;
|
|
32
|
-
error: {
|
|
33
|
-
message: string;
|
|
34
|
-
};
|
|
35
|
-
} | {
|
|
36
|
-
data: {
|
|
37
|
-
user: _supabase_auth_js.User;
|
|
38
|
-
session: _supabase_auth_js.Session;
|
|
39
|
-
weakPassword?: _supabase_auth_js.WeakPassword;
|
|
40
|
-
} | {
|
|
41
|
-
user: null;
|
|
42
|
-
session: null;
|
|
43
|
-
weakPassword?: null | undefined;
|
|
44
|
-
};
|
|
45
|
-
error: _supabase_auth_js.AuthError | null;
|
|
46
|
-
}, Error, LoginTenantUserBody, unknown>;
|
|
30
|
+
declare const useLoginTenantUser: () => _tanstack_react_query.UseMutationResult<any, Error, LoginTenantUserBody, unknown>;
|
|
47
31
|
|
|
48
32
|
declare const useResetPassword: () => _tanstack_react_query.UseMutationResult<any, Error, ForgotPasswordBody, unknown>;
|
|
49
33
|
|
package/dist/hooks.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
2
2
|
import { L as LoginCredentialBody, d as SocialTokenBody, F as ForgotPasswordBody, u as updatePasswordBody, T as TThreadData, C as ContextApi, V as ViewData, c as GetSelectionType, f as GetViewParams } from './view-type-CfcWWR0w.js';
|
|
3
|
-
import * as _supabase_auth_js from '@supabase/auth-js';
|
|
4
3
|
import { B as BaseModelInit } from './base-model-type-DD8uZnDP.js';
|
|
5
4
|
import { BaseModel } from './models.js';
|
|
6
5
|
|
|
@@ -26,24 +25,9 @@ declare const useLoginSocial: () => _tanstack_react_query.UseMutationResult<any,
|
|
|
26
25
|
type LoginTenantUserBody = {
|
|
27
26
|
email: string;
|
|
28
27
|
password: string;
|
|
28
|
+
tenantId: string;
|
|
29
29
|
};
|
|
30
|
-
declare const useLoginTenantUser: () => _tanstack_react_query.UseMutationResult<
|
|
31
|
-
data: null;
|
|
32
|
-
error: {
|
|
33
|
-
message: string;
|
|
34
|
-
};
|
|
35
|
-
} | {
|
|
36
|
-
data: {
|
|
37
|
-
user: _supabase_auth_js.User;
|
|
38
|
-
session: _supabase_auth_js.Session;
|
|
39
|
-
weakPassword?: _supabase_auth_js.WeakPassword;
|
|
40
|
-
} | {
|
|
41
|
-
user: null;
|
|
42
|
-
session: null;
|
|
43
|
-
weakPassword?: null | undefined;
|
|
44
|
-
};
|
|
45
|
-
error: _supabase_auth_js.AuthError | null;
|
|
46
|
-
}, Error, LoginTenantUserBody, unknown>;
|
|
30
|
+
declare const useLoginTenantUser: () => _tanstack_react_query.UseMutationResult<any, Error, LoginTenantUserBody, unknown>;
|
|
47
31
|
|
|
48
32
|
declare const useResetPassword: () => _tanstack_react_query.UseMutationResult<any, Error, ForgotPasswordBody, unknown>;
|
|
49
33
|
|
package/dist/hooks.js
CHANGED
|
@@ -208,6 +208,7 @@ var UriConstants = /* @__PURE__ */ ((UriConstants2) => {
|
|
|
208
208
|
UriConstants2["GRANT_ACCESS"] = "/grant-access";
|
|
209
209
|
UriConstants2["TOKEN_BY_CODE"] = "/token";
|
|
210
210
|
UriConstants2["LOGOUT"] = "/logout";
|
|
211
|
+
UriConstants2["LOGIN_PATH"] = "/login";
|
|
211
212
|
UriConstants2["CREATE_UPDATE"] = "/create_update";
|
|
212
213
|
UriConstants2["SEARCH_READ"] = "/search_read";
|
|
213
214
|
UriConstants2["CREATE_PATH"] = "/create";
|
|
@@ -3375,19 +3376,23 @@ function useAuthService() {
|
|
|
3375
3376
|
);
|
|
3376
3377
|
const loginTenantUser = (0, import_react9.useCallback)(
|
|
3377
3378
|
async (body) => {
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
|
|
3386
|
-
|
|
3387
|
-
|
|
3388
|
-
|
|
3379
|
+
const payload = {
|
|
3380
|
+
username: body.email,
|
|
3381
|
+
password: body.password,
|
|
3382
|
+
tenantId: body.tenantId
|
|
3383
|
+
};
|
|
3384
|
+
return env?.requests?.post(
|
|
3385
|
+
"/login" /* LOGIN_PATH */,
|
|
3386
|
+
payload,
|
|
3387
|
+
{
|
|
3388
|
+
headers: {
|
|
3389
|
+
"Content-Type": "application/json"
|
|
3390
|
+
}
|
|
3391
|
+
},
|
|
3392
|
+
"id"
|
|
3393
|
+
);
|
|
3389
3394
|
},
|
|
3390
|
-
[
|
|
3395
|
+
[env]
|
|
3391
3396
|
);
|
|
3392
3397
|
const forgotPassword = (0, import_react9.useCallback)(
|
|
3393
3398
|
async (email) => {
|
|
@@ -7410,7 +7415,8 @@ var useLoginTenantUser = () => {
|
|
|
7410
7415
|
mutationFn: (data) => {
|
|
7411
7416
|
return loginTenantUser({
|
|
7412
7417
|
email: data.email,
|
|
7413
|
-
password: data.password
|
|
7418
|
+
password: data.password,
|
|
7419
|
+
tenantId: data.tenantId
|
|
7414
7420
|
});
|
|
7415
7421
|
}
|
|
7416
7422
|
});
|
package/dist/hooks.mjs
CHANGED
|
@@ -35,6 +35,7 @@ var UriConstants = /* @__PURE__ */ ((UriConstants2) => {
|
|
|
35
35
|
UriConstants2["GRANT_ACCESS"] = "/grant-access";
|
|
36
36
|
UriConstants2["TOKEN_BY_CODE"] = "/token";
|
|
37
37
|
UriConstants2["LOGOUT"] = "/logout";
|
|
38
|
+
UriConstants2["LOGIN_PATH"] = "/login";
|
|
38
39
|
UriConstants2["CREATE_UPDATE"] = "/create_update";
|
|
39
40
|
UriConstants2["SEARCH_READ"] = "/search_read";
|
|
40
41
|
UriConstants2["CREATE_PATH"] = "/create";
|
|
@@ -3202,19 +3203,23 @@ function useAuthService() {
|
|
|
3202
3203
|
);
|
|
3203
3204
|
const loginTenantUser = useCallback3(
|
|
3204
3205
|
async (body) => {
|
|
3205
|
-
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
|
-
|
|
3212
|
-
|
|
3213
|
-
|
|
3214
|
-
|
|
3215
|
-
|
|
3206
|
+
const payload = {
|
|
3207
|
+
username: body.email,
|
|
3208
|
+
password: body.password,
|
|
3209
|
+
tenantId: body.tenantId
|
|
3210
|
+
};
|
|
3211
|
+
return env?.requests?.post(
|
|
3212
|
+
"/login" /* LOGIN_PATH */,
|
|
3213
|
+
payload,
|
|
3214
|
+
{
|
|
3215
|
+
headers: {
|
|
3216
|
+
"Content-Type": "application/json"
|
|
3217
|
+
}
|
|
3218
|
+
},
|
|
3219
|
+
"id"
|
|
3220
|
+
);
|
|
3216
3221
|
},
|
|
3217
|
-
[
|
|
3222
|
+
[env]
|
|
3218
3223
|
);
|
|
3219
3224
|
const forgotPassword = useCallback3(
|
|
3220
3225
|
async (email) => {
|
|
@@ -7237,7 +7242,8 @@ var useLoginTenantUser = () => {
|
|
|
7237
7242
|
mutationFn: (data) => {
|
|
7238
7243
|
return loginTenantUser({
|
|
7239
7244
|
email: data.email,
|
|
7240
|
-
password: data.password
|
|
7245
|
+
password: data.password,
|
|
7246
|
+
tenantId: data.tenantId
|
|
7241
7247
|
});
|
|
7242
7248
|
}
|
|
7243
7249
|
});
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export { axiosClient } from './configs.mjs';
|
|
2
|
+
export { ComponentType, FieldTypeConstants, KeyConstants, LoadDataModel, LoadDataModelSupa, MODEL_TO_TABLE, MethodConstants, MethodType, ModelConstants, SearchType, UriConstants, WIDGETAVATAR, WIDGETCOLOR, WIDGETCURRENCY, WIDGETNOSTRING, WIDGETSTATUS } from './constants.mjs';
|
|
3
|
+
export { EnvStore, getEnv, initEnv } from './environment.mjs';
|
|
4
|
+
export { useActionServerHome, useAddCategory, useAddEntity, useAddFloor, useAddPaymentMethod, useAddProduct, useAddProductToOrder, useAddTable, useButton, useChangeOrderPreparationState, useChangeStatus, useCheckPayment, useCompleteCurrentStage, useCreateCustomer, useCreateEInvoice, useCreateEntity, useCreateOrder, useCreatePayment, useCreatePosConfig, useCreateSession, useDelete, useDeleteComment, useDeleteCustomer, useDeleteEntity, useDeleteFloor, useDeleteOrder, useDeleteOrderLine, useDeleteTable, useDuplicateRecord, useExecuteImport, useExportExcel, useForgotPassword, useForgotPasswordSSO, useGenSerialNumber, useGeneratePaymentQrInfo, useGet2FAMethods, useGetASession, useGetAccessByCode, useGetActionDetail, useGetAll, useGetCalendar, useGetCity, useGetComment, useGetCompanyInfo, useGetConversionRate, useGetCountry, useGetCurrency, useGetCurrentCompany, useGetCurrentUser, useGetDataChart, useGetDetail, useGetExternalTabs, useGetFieldExport, useGetFieldOnChange, useGetFileExcel, useGetFormView, useGetFunctionalModules, useGetGroups, useGetImage, useGetList, useGetListCompany, useGetListData, useGetListMyBankAccount, useGetMenu, useGetNotifications, useGetOrderLine, useGetPartnerTitle, useGetPinCode, useGetPos, useGetPreparationDisplayData, useGetPrintReport, useGetProGressBar, useGetProductImage, useGetProfile, useGetProvider, useGetResequence, useGetSelection, useGetTenantMapping, useGetThreadData, useGetThreadMessages, useGetToken, useGetUser, useGetVersion, useGetView, useGetWard, useGrantAccess, useHandleCloseSession, useHandleClosingDetailSession, useHandleClosingSession, useIsValidToken, useLoadAction, useLoadDataPosSession, useLoadMessage, useLoginCredential, useLoginSocial, useLoginTenantUser, useLogout, useManageOnChange, useManageSession, useModel, useOdooDataTransform, useOnChangeForm, useParsePreview, usePrint, useProcessOrder, useReadGroup, useRemoveRow, useRemoveTotpSetup, useRequestSetupTotp, useResetPassword, useResetPasswordSSO, useRunAction, useSave, useSavePinCode, useSearchJournal, useSendComment, useSettingsWebRead2fa, useSignInSSO, useSupaUploadImage, useSwitchLocale, useUpdateClosedSession, useUpdateCustomer, useUpdateEntity, useUpdateFloor, useUpdateOrder, useUpdateOrderLine, useUpdateOrderStatus, useUpdateOrderTotalAmount, useUpdatePassword, useUpdateSessionPaymentMethods, useUpdateTable, useUploadFile, useUploadFileExcel, useUploadIdFile, useUploadImage, useValidateActionToken, useVerify2FA, useVerifyTotp } from './hooks.mjs';
|
|
5
|
+
export { EnvProvider, MainProvider, MetaProvider, ReactQueryProvider, ServiceProvider, SupabaseProvider, VersionGate, useEnv, useService, useSupabase } from './provider.mjs';
|
|
6
|
+
export { useActionService, useAuthService, useCompanyService, useDashboardService, useExcelService, useFormService, useKanbanService, useModelService, usePosService, useUserService, useViewService } from './services.mjs';
|
|
7
|
+
export { AppDispatch, BreadcrumbsState, ExcelState, FormState, ListState, LoginStateType, NavbarStateType, ProfileStateType, RootState, SearchState, UserInfor, ViewDataStore, breadcrumbsSlice, clearSearchMap, envSlice, envStore, excelSlice, formSlice, headerSlice, listSlice, loginSlice, navbarSlice, profileSlice, removeKeyFromSearchMap, searchSlice, selectBreadCrumbs, selectEnv, selectExcel, selectForm, selectHeader, selectList, selectLogin, selectNavbar, selectProfile, selectSearch, selectSearchMap, setAllowCompanies, setAllowedCompanyIds, setBaseUrl, setBreadCrumbs, setCompanies, setConfig, setDataParse, setDataUser, setDb, setDefaultCompany, setDomainTable, setEnv, setEnvFile, setErrorData, setFieldTranslate, setFields, setFilterBy, setFirstDomain, setForgotPasswordUrl, setFormSubmitComponent, setGroupBy, setGroupByDomain, setHeader, setHoveredIndexSearchList, setIdFile, setIndexRowTableModal, setIsFileLoaded, setIsShowModalTranslate, setIsShowingModalDetail, setIsUpdateTableModal, setLang, setListSubject, setLoadingImport, setMenuFocus, setMenuFocusAction, setMenuList, setNavbarWidth, setOrder, setPage, setPageLimit, setProfile, setRedirectTo, setSearchBy, setSearchMap, setSearchString, setSelectedFile, setSelectedRadioKey, setSelectedRowKeys, setSelectedTags, setTransferDetail, setUid, setUser, setViewDataStore, updateSearchMap, useAppDispatch, useAppSelector } from './store.mjs';
|
|
8
|
+
export { WesapError, checkIsImageLink, convertFloatToTime, convertTimeToFloat, copyTextToClipboard, domainHelper, downloadFile, evalJSONContext, evalJSONDomain, extractIdFromDomain, filterFieldDirty, formatCurrency, formatDate, formatFileSize, formatSortingString, formatUrlPath, getFieldsOnChange, getOffSet, getSubdomain, handleError, isBase64File, isBase64Image, isObjectEmpty, mergeObjects, removeUndefinedFields, resequence, sessionStorageUtils, stringToColor, toQueryString, updateTokenParamInOriginalRequest, useField, useTabModel, validateAndParseDate } from './utils.mjs';
|
|
9
|
+
export { C as ContextApi, D as DeleteParams, F as ForgotPasswordBody, G as GetAllParams, a as GetDetailParams, b as GetListParams, c as GetSelectionType, f as GetViewParams, L as LoginCredentialBody, O as OnChangeParams, R as ResetPasswordRequest, S as SaveParams, d as SocialTokenBody, e as Specification, U as UpdatePasswordRequest, g as View, V as ViewData, u as updatePasswordBody } from './view-type-CfcWWR0w.mjs';
|
|
10
|
+
export { Config, Context } from './types.mjs';
|
|
11
|
+
export { B as BaseModelInit } from './base-model-type-DD8uZnDP.mjs';
|
|
12
|
+
export { BaseModel } from './models.mjs';
|
|
13
|
+
import './local-storage-BPvoMGYJ.mjs';
|
|
14
|
+
import '@tanstack/react-query';
|
|
15
|
+
import 'react/jsx-runtime';
|
|
16
|
+
import 'react';
|
|
17
|
+
import '@supabase/supabase-js';
|
|
18
|
+
import 'react-redux';
|
|
19
|
+
import '@reduxjs/toolkit';
|
|
20
|
+
import 'redux-thunk';
|
|
21
|
+
import 'redux';
|
|
22
|
+
import 'immer';
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export { axiosClient } from './configs.js';
|
|
2
|
+
export { ComponentType, FieldTypeConstants, KeyConstants, LoadDataModel, LoadDataModelSupa, MODEL_TO_TABLE, MethodConstants, MethodType, ModelConstants, SearchType, UriConstants, WIDGETAVATAR, WIDGETCOLOR, WIDGETCURRENCY, WIDGETNOSTRING, WIDGETSTATUS } from './constants.js';
|
|
3
|
+
export { EnvStore, getEnv, initEnv } from './environment.js';
|
|
4
|
+
export { useActionServerHome, useAddCategory, useAddEntity, useAddFloor, useAddPaymentMethod, useAddProduct, useAddProductToOrder, useAddTable, useButton, useChangeOrderPreparationState, useChangeStatus, useCheckPayment, useCompleteCurrentStage, useCreateCustomer, useCreateEInvoice, useCreateEntity, useCreateOrder, useCreatePayment, useCreatePosConfig, useCreateSession, useDelete, useDeleteComment, useDeleteCustomer, useDeleteEntity, useDeleteFloor, useDeleteOrder, useDeleteOrderLine, useDeleteTable, useDuplicateRecord, useExecuteImport, useExportExcel, useForgotPassword, useForgotPasswordSSO, useGenSerialNumber, useGeneratePaymentQrInfo, useGet2FAMethods, useGetASession, useGetAccessByCode, useGetActionDetail, useGetAll, useGetCalendar, useGetCity, useGetComment, useGetCompanyInfo, useGetConversionRate, useGetCountry, useGetCurrency, useGetCurrentCompany, useGetCurrentUser, useGetDataChart, useGetDetail, useGetExternalTabs, useGetFieldExport, useGetFieldOnChange, useGetFileExcel, useGetFormView, useGetFunctionalModules, useGetGroups, useGetImage, useGetList, useGetListCompany, useGetListData, useGetListMyBankAccount, useGetMenu, useGetNotifications, useGetOrderLine, useGetPartnerTitle, useGetPinCode, useGetPos, useGetPreparationDisplayData, useGetPrintReport, useGetProGressBar, useGetProductImage, useGetProfile, useGetProvider, useGetResequence, useGetSelection, useGetTenantMapping, useGetThreadData, useGetThreadMessages, useGetToken, useGetUser, useGetVersion, useGetView, useGetWard, useGrantAccess, useHandleCloseSession, useHandleClosingDetailSession, useHandleClosingSession, useIsValidToken, useLoadAction, useLoadDataPosSession, useLoadMessage, useLoginCredential, useLoginSocial, useLoginTenantUser, useLogout, useManageOnChange, useManageSession, useModel, useOdooDataTransform, useOnChangeForm, useParsePreview, usePrint, useProcessOrder, useReadGroup, useRemoveRow, useRemoveTotpSetup, useRequestSetupTotp, useResetPassword, useResetPasswordSSO, useRunAction, useSave, useSavePinCode, useSearchJournal, useSendComment, useSettingsWebRead2fa, useSignInSSO, useSupaUploadImage, useSwitchLocale, useUpdateClosedSession, useUpdateCustomer, useUpdateEntity, useUpdateFloor, useUpdateOrder, useUpdateOrderLine, useUpdateOrderStatus, useUpdateOrderTotalAmount, useUpdatePassword, useUpdateSessionPaymentMethods, useUpdateTable, useUploadFile, useUploadFileExcel, useUploadIdFile, useUploadImage, useValidateActionToken, useVerify2FA, useVerifyTotp } from './hooks.js';
|
|
5
|
+
export { EnvProvider, MainProvider, MetaProvider, ReactQueryProvider, ServiceProvider, SupabaseProvider, VersionGate, useEnv, useService, useSupabase } from './provider.js';
|
|
6
|
+
export { useActionService, useAuthService, useCompanyService, useDashboardService, useExcelService, useFormService, useKanbanService, useModelService, usePosService, useUserService, useViewService } from './services.js';
|
|
7
|
+
export { AppDispatch, BreadcrumbsState, ExcelState, FormState, ListState, LoginStateType, NavbarStateType, ProfileStateType, RootState, SearchState, UserInfor, ViewDataStore, breadcrumbsSlice, clearSearchMap, envSlice, envStore, excelSlice, formSlice, headerSlice, listSlice, loginSlice, navbarSlice, profileSlice, removeKeyFromSearchMap, searchSlice, selectBreadCrumbs, selectEnv, selectExcel, selectForm, selectHeader, selectList, selectLogin, selectNavbar, selectProfile, selectSearch, selectSearchMap, setAllowCompanies, setAllowedCompanyIds, setBaseUrl, setBreadCrumbs, setCompanies, setConfig, setDataParse, setDataUser, setDb, setDefaultCompany, setDomainTable, setEnv, setEnvFile, setErrorData, setFieldTranslate, setFields, setFilterBy, setFirstDomain, setForgotPasswordUrl, setFormSubmitComponent, setGroupBy, setGroupByDomain, setHeader, setHoveredIndexSearchList, setIdFile, setIndexRowTableModal, setIsFileLoaded, setIsShowModalTranslate, setIsShowingModalDetail, setIsUpdateTableModal, setLang, setListSubject, setLoadingImport, setMenuFocus, setMenuFocusAction, setMenuList, setNavbarWidth, setOrder, setPage, setPageLimit, setProfile, setRedirectTo, setSearchBy, setSearchMap, setSearchString, setSelectedFile, setSelectedRadioKey, setSelectedRowKeys, setSelectedTags, setTransferDetail, setUid, setUser, setViewDataStore, updateSearchMap, useAppDispatch, useAppSelector } from './store.js';
|
|
8
|
+
export { WesapError, checkIsImageLink, convertFloatToTime, convertTimeToFloat, copyTextToClipboard, domainHelper, downloadFile, evalJSONContext, evalJSONDomain, extractIdFromDomain, filterFieldDirty, formatCurrency, formatDate, formatFileSize, formatSortingString, formatUrlPath, getFieldsOnChange, getOffSet, getSubdomain, handleError, isBase64File, isBase64Image, isObjectEmpty, mergeObjects, removeUndefinedFields, resequence, sessionStorageUtils, stringToColor, toQueryString, updateTokenParamInOriginalRequest, useField, useTabModel, validateAndParseDate } from './utils.js';
|
|
9
|
+
export { C as ContextApi, D as DeleteParams, F as ForgotPasswordBody, G as GetAllParams, a as GetDetailParams, b as GetListParams, c as GetSelectionType, f as GetViewParams, L as LoginCredentialBody, O as OnChangeParams, R as ResetPasswordRequest, S as SaveParams, d as SocialTokenBody, e as Specification, U as UpdatePasswordRequest, g as View, V as ViewData, u as updatePasswordBody } from './view-type-CfcWWR0w.js';
|
|
10
|
+
export { Config, Context } from './types.js';
|
|
11
|
+
export { B as BaseModelInit } from './base-model-type-DD8uZnDP.js';
|
|
12
|
+
export { BaseModel } from './models.js';
|
|
13
|
+
import './local-storage-BPvoMGYJ.js';
|
|
14
|
+
import '@tanstack/react-query';
|
|
15
|
+
import 'react/jsx-runtime';
|
|
16
|
+
import 'react';
|
|
17
|
+
import '@supabase/supabase-js';
|
|
18
|
+
import 'react-redux';
|
|
19
|
+
import '@reduxjs/toolkit';
|
|
20
|
+
import 'redux-thunk';
|
|
21
|
+
import 'redux';
|
|
22
|
+
import 'immer';
|