@fctc/edu-logic-lib 1.0.9 → 1.1.0

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.
Files changed (61) hide show
  1. package/dist/config.js +257 -6
  2. package/dist/config.mjs +256 -2
  3. package/dist/constants.js +152 -53
  4. package/dist/constants.mjs +141 -2
  5. package/dist/environment.js +840 -16
  6. package/dist/environment.mjs +841 -4
  7. package/dist/hooks.d.mts +1 -1
  8. package/dist/hooks.d.ts +1 -1
  9. package/dist/hooks.js +4851 -180
  10. package/dist/hooks.mjs +4814 -9
  11. package/dist/index.d.mts +2 -2
  12. package/dist/index.d.ts +2 -2
  13. package/dist/index.js +5320 -626
  14. package/dist/index.mjs +5165 -12
  15. package/dist/models.js +3217 -18
  16. package/dist/models.mjs +3217 -9
  17. package/dist/provider.js +3224 -17
  18. package/dist/provider.mjs +3224 -8
  19. package/dist/services.d.mts +1 -1
  20. package/dist/services.d.ts +1 -1
  21. package/dist/services.js +4032 -31
  22. package/dist/services.mjs +4032 -7
  23. package/dist/store-tC7LKtbY.d.mts +505 -0
  24. package/dist/store-tC7LKtbY.d.ts +505 -0
  25. package/dist/store.d.mts +6 -505
  26. package/dist/store.d.ts +6 -505
  27. package/dist/store.js +576 -248
  28. package/dist/store.mjs +519 -1
  29. package/dist/types.d.mts +1 -1
  30. package/dist/types.d.ts +1 -1
  31. package/dist/types.js +0 -2
  32. package/dist/types.mjs +1 -1
  33. package/dist/utils.js +2355 -61
  34. package/dist/utils.mjs +2344 -1
  35. package/dist/{view-type-BTzRpkT7.d.mts → view-type-DCixhUzb.d.mts} +1 -1
  36. package/dist/{view-type-BTzRpkT7.d.ts → view-type-DCixhUzb.d.ts} +1 -1
  37. package/package.json +1 -1
  38. package/dist/chunk-4K3QAEZ6.js +0 -90
  39. package/dist/chunk-6BLY7NZ6.mjs +0 -120
  40. package/dist/chunk-6QXB3XX7.mjs +0 -256
  41. package/dist/chunk-7JD5GMIZ.js +0 -2
  42. package/dist/chunk-AYUH66EE.mjs +0 -62
  43. package/dist/chunk-CZHZLKNA.mjs +0 -585
  44. package/dist/chunk-EK43MEN4.js +0 -635
  45. package/dist/chunk-ELARQVCE.mjs +0 -2344
  46. package/dist/chunk-FVGPSTJ7.js +0 -122
  47. package/dist/chunk-GGOFXFSX.js +0 -2362
  48. package/dist/chunk-IXDDYGKE.js +0 -61
  49. package/dist/chunk-MLJQPO4Q.mjs +0 -57
  50. package/dist/chunk-OADBRQ4A.js +0 -32
  51. package/dist/chunk-OBR6UTC5.mjs +0 -1
  52. package/dist/chunk-OFUXC2LA.mjs +0 -86
  53. package/dist/chunk-P2IGWJDZ.js +0 -1068
  54. package/dist/chunk-QLUONJPQ.mjs +0 -519
  55. package/dist/chunk-RWRHCIQI.mjs +0 -1059
  56. package/dist/chunk-RZBHZYXG.js +0 -582
  57. package/dist/chunk-S7B3VKMJ.mjs +0 -85
  58. package/dist/chunk-S7YF2I23.js +0 -95
  59. package/dist/chunk-UY6GNZNB.js +0 -262
  60. package/dist/chunk-XYVK476U.mjs +0 -29
  61. package/dist/chunk-YOV6KAT2.js +0 -66
@@ -0,0 +1,505 @@
1
+ import { TypedUseSelectorHook } from 'react-redux';
2
+ import * as _reduxjs_toolkit from '@reduxjs/toolkit';
3
+ import { PayloadAction } from '@reduxjs/toolkit';
4
+ import * as redux_thunk from 'redux-thunk';
5
+ import * as redux from 'redux';
6
+ import * as immer from 'immer';
7
+
8
+ interface UserInfor {
9
+ address?: {
10
+ country?: boolean;
11
+ formatted?: string;
12
+ locality?: boolean;
13
+ postal_code?: boolean;
14
+ region?: boolean;
15
+ street_address?: boolean;
16
+ };
17
+ email?: string;
18
+ locale?: string;
19
+ name?: string;
20
+ partner_id?: {
21
+ id?: number;
22
+ stud_id?: boolean;
23
+ };
24
+ phone_number?: boolean;
25
+ sub?: number;
26
+ updated_at?: string;
27
+ username?: string;
28
+ website?: boolean;
29
+ zoneinfo?: string;
30
+ image?: string;
31
+ }
32
+ interface ProfileStateType {
33
+ profile: UserInfor;
34
+ }
35
+ declare const profileSlice: _reduxjs_toolkit.Slice<ProfileStateType, {
36
+ setProfile: (state: immer.WritableDraft<ProfileStateType>, action: {
37
+ payload: any;
38
+ type: string;
39
+ }) => void;
40
+ }, "profile", "profile", _reduxjs_toolkit.SliceSelectors<ProfileStateType>>;
41
+ declare const setProfile: _reduxjs_toolkit.ActionCreatorWithPayload<any, "profile/setProfile">;
42
+ declare const selectProfile: (state: RootState) => ProfileStateType;
43
+
44
+ interface ExcelState {
45
+ dataParse: any | null;
46
+ idFile: any | null;
47
+ isFileLoaded: boolean;
48
+ loadingImport: any;
49
+ selectedFile: any;
50
+ errorData: any;
51
+ }
52
+ declare const excelSlice: _reduxjs_toolkit.Slice<ExcelState, {
53
+ setDataParse: (state: immer.WritableDraft<ExcelState>, action: PayloadAction<any>) => void;
54
+ setIdFile: (state: immer.WritableDraft<ExcelState>, action: PayloadAction<any>) => void;
55
+ setIsFileLoaded: (state: immer.WritableDraft<ExcelState>, action: PayloadAction<any>) => void;
56
+ setLoadingImport: (state: immer.WritableDraft<ExcelState>, action: PayloadAction<any>) => void;
57
+ setSelectedFile: (state: immer.WritableDraft<ExcelState>, action: PayloadAction<any>) => void;
58
+ setErrorData: (state: immer.WritableDraft<ExcelState>, action: PayloadAction<any>) => void;
59
+ }, "excel", "excel", _reduxjs_toolkit.SliceSelectors<ExcelState>>;
60
+ declare const setDataParse: _reduxjs_toolkit.ActionCreatorWithPayload<any, "excel/setDataParse">;
61
+ declare const setIdFile: _reduxjs_toolkit.ActionCreatorWithPayload<any, "excel/setIdFile">;
62
+ declare const setIsFileLoaded: _reduxjs_toolkit.ActionCreatorWithPayload<any, "excel/setIsFileLoaded">;
63
+ declare const setLoadingImport: _reduxjs_toolkit.ActionCreatorWithPayload<any, "excel/setLoadingImport">;
64
+ declare const setSelectedFile: _reduxjs_toolkit.ActionCreatorWithPayload<any, "excel/setSelectedFile">;
65
+ declare const setErrorData: _reduxjs_toolkit.ActionCreatorWithPayload<any, "excel/setErrorData">;
66
+ declare const selectExcel: (state: RootState) => ExcelState;
67
+
68
+ interface ViewDataStore {
69
+ [key: string]: any;
70
+ }
71
+ interface FormState {
72
+ viewDataStore: ViewDataStore;
73
+ isShowingModalDetail: boolean;
74
+ isShowModalTranslate: boolean;
75
+ formSubmitComponent: Record<string, React.ReactNode>;
76
+ fieldTranslation: any;
77
+ listSubject: any;
78
+ dataUser: any;
79
+ }
80
+ declare const formSlice: _reduxjs_toolkit.Slice<FormState, {
81
+ setViewDataStore: (state: FormState, action: PayloadAction<ViewDataStore>) => void;
82
+ setIsShowingModalDetail: (state: FormState, action: PayloadAction<boolean>) => void;
83
+ setIsShowModalTranslate: (state: FormState, action: PayloadAction<boolean>) => void;
84
+ setFormSubmitComponent: (state: immer.WritableDraft<FormState>, action: PayloadAction<{
85
+ key: string;
86
+ component: any;
87
+ }>) => void;
88
+ setFieldTranslate: (state: FormState, action: PayloadAction<any>) => void;
89
+ setListSubject: (state: FormState, action: PayloadAction<any>) => void;
90
+ setDataUser: (state: FormState, action: PayloadAction<any>) => void;
91
+ }, "form", "form", _reduxjs_toolkit.SliceSelectors<FormState>>;
92
+ declare const setViewDataStore: _reduxjs_toolkit.ActionCreatorWithPayload<ViewDataStore, "form/setViewDataStore">;
93
+ declare const setIsShowingModalDetail: _reduxjs_toolkit.ActionCreatorWithPayload<boolean, "form/setIsShowingModalDetail">;
94
+ declare const setIsShowModalTranslate: _reduxjs_toolkit.ActionCreatorWithPayload<boolean, "form/setIsShowModalTranslate">;
95
+ declare const setFormSubmitComponent: _reduxjs_toolkit.ActionCreatorWithPayload<{
96
+ key: string;
97
+ component: any;
98
+ }, "form/setFormSubmitComponent">;
99
+ declare const setFieldTranslate: _reduxjs_toolkit.ActionCreatorWithPayload<any, "form/setFieldTranslate">;
100
+ declare const setListSubject: _reduxjs_toolkit.ActionCreatorWithPayload<any, "form/setListSubject">;
101
+ declare const setDataUser: _reduxjs_toolkit.ActionCreatorWithPayload<any, "form/setDataUser">;
102
+ declare const selectForm: (state: RootState) => FormState;
103
+
104
+ interface SearchState {
105
+ groupByDomain: any;
106
+ tableHead: any;
107
+ searchString: string;
108
+ hoveredIndexSearchList: any;
109
+ selectedTags: [];
110
+ firstDomain: any;
111
+ searchMap: Record<string, any[]>;
112
+ typeFieldsSearch: string;
113
+ modelSearch: string;
114
+ filterBy: any;
115
+ groupBy: any;
116
+ }
117
+ declare const searchSlice: _reduxjs_toolkit.Slice<SearchState, {
118
+ setGroupByDomain: (state: immer.WritableDraft<SearchState>, action: PayloadAction<string | null>) => void;
119
+ setTableHead: (state: immer.WritableDraft<SearchState>, action: any) => void;
120
+ setSearchString: (state: immer.WritableDraft<SearchState>, action: PayloadAction<string>) => void;
121
+ setHoveredIndexSearchList: (state: immer.WritableDraft<SearchState>, action: PayloadAction<number | null>) => void;
122
+ setSelectedTags: (state: immer.WritableDraft<SearchState>, action: PayloadAction<any>) => void;
123
+ setFirstDomain: (state: immer.WritableDraft<SearchState>, action: PayloadAction<any>) => void;
124
+ setTypeFieldsSearch: (state: immer.WritableDraft<SearchState>, action: PayloadAction<any>) => void;
125
+ setModelSearch: (state: immer.WritableDraft<SearchState>, action: PayloadAction<string>) => void;
126
+ setFilterBy: (state: immer.WritableDraft<SearchState>, action: PayloadAction<any>) => void;
127
+ setGroupBy: (state: immer.WritableDraft<SearchState>, action: PayloadAction<any>) => void;
128
+ setSearchMap: (state: immer.WritableDraft<SearchState>, action: PayloadAction<Record<string, any>>) => void;
129
+ updateSearchMap: (state: immer.WritableDraft<SearchState>, action: PayloadAction<{
130
+ key: string;
131
+ value: any;
132
+ }>) => void;
133
+ removeKeyFromSearchMap: (state: immer.WritableDraft<SearchState>, action: PayloadAction<{
134
+ key: string;
135
+ item?: any;
136
+ }>) => void;
137
+ clearSearchMap: (state: immer.WritableDraft<SearchState>) => void;
138
+ }, "search", "search", _reduxjs_toolkit.SliceSelectors<SearchState>>;
139
+ declare const setGroupByDomain: _reduxjs_toolkit.ActionCreatorWithPayload<string | null, "search/setGroupByDomain">;
140
+ declare const setSelectedTags: _reduxjs_toolkit.ActionCreatorWithPayload<any, "search/setSelectedTags">;
141
+ declare const setSearchString: _reduxjs_toolkit.ActionCreatorWithPayload<string, "search/setSearchString">;
142
+ declare const setHoveredIndexSearchList: _reduxjs_toolkit.ActionCreatorWithPayload<number | null, "search/setHoveredIndexSearchList">;
143
+ declare const setFirstDomain: _reduxjs_toolkit.ActionCreatorWithPayload<any, "search/setFirstDomain">;
144
+ declare const setTableHead: _reduxjs_toolkit.ActionCreatorWithNonInferrablePayload<"search/setTableHead"> | _reduxjs_toolkit.ActionCreatorWithoutPayload<"search/setTableHead">;
145
+ declare const setFilterBy: _reduxjs_toolkit.ActionCreatorWithPayload<any, "search/setFilterBy">;
146
+ declare const setTypeFieldsSearch: _reduxjs_toolkit.ActionCreatorWithPayload<any, "search/setTypeFieldsSearch">;
147
+ declare const setModelSearch: _reduxjs_toolkit.ActionCreatorWithPayload<string, "search/setModelSearch">;
148
+ declare const setSearchMap: _reduxjs_toolkit.ActionCreatorWithPayload<Record<string, any>, "search/setSearchMap">;
149
+ declare const updateSearchMap: _reduxjs_toolkit.ActionCreatorWithPayload<{
150
+ key: string;
151
+ value: any;
152
+ }, "search/updateSearchMap">;
153
+ declare const removeKeyFromSearchMap: _reduxjs_toolkit.ActionCreatorWithPayload<{
154
+ key: string;
155
+ item?: any;
156
+ }, "search/removeKeyFromSearchMap">;
157
+ declare const setGroupBy: _reduxjs_toolkit.ActionCreatorWithPayload<any, "search/setGroupBy">;
158
+ declare const clearSearchMap: _reduxjs_toolkit.ActionCreatorWithoutPayload<"search/clearSearchMap">;
159
+ declare const selectSearch: (state: RootState) => SearchState;
160
+ declare const selectSearchMap: (state: RootState) => Record<string, any[]>;
161
+
162
+ interface ListState {
163
+ pageLimit: number;
164
+ fields: Record<string, any>;
165
+ order: string | null;
166
+ selectedRowKeys: number[];
167
+ indexRowTableModal: number;
168
+ footerGroupTable: Record<string, any>;
169
+ page: number;
170
+ domainTable?: any;
171
+ }
172
+ declare const listSlice: _reduxjs_toolkit.Slice<ListState, {
173
+ setPageLimit: (state: immer.WritableDraft<ListState>, action: PayloadAction<number>) => void;
174
+ setFields: (state: immer.WritableDraft<ListState>, action: PayloadAction<Record<string, any>>) => void;
175
+ setOrder: (state: immer.WritableDraft<ListState>, action: PayloadAction<string | null>) => void;
176
+ setSelectedRowKeys: (state: immer.WritableDraft<ListState>, action: PayloadAction<number[]>) => void;
177
+ setIndexRowTableModal: (state: immer.WritableDraft<ListState>, action: PayloadAction<number>) => void;
178
+ setPage: (state: immer.WritableDraft<ListState>, action: PayloadAction<number>) => void;
179
+ setDomainTable: (state: immer.WritableDraft<ListState>, action: PayloadAction<any[]>) => void;
180
+ }, "list", "list", _reduxjs_toolkit.SliceSelectors<ListState>>;
181
+ declare const setPageLimit: _reduxjs_toolkit.ActionCreatorWithPayload<number, "list/setPageLimit">;
182
+ declare const setFields: _reduxjs_toolkit.ActionCreatorWithPayload<Record<string, any>, "list/setFields">;
183
+ declare const setOrder: _reduxjs_toolkit.ActionCreatorWithPayload<string | null, "list/setOrder">;
184
+ declare const setSelectedRowKeys: _reduxjs_toolkit.ActionCreatorWithPayload<number[], "list/setSelectedRowKeys">;
185
+ declare const setIndexRowTableModal: _reduxjs_toolkit.ActionCreatorWithPayload<number, "list/setIndexRowTableModal">;
186
+ declare const setPage: _reduxjs_toolkit.ActionCreatorWithPayload<number, "list/setPage">;
187
+ declare const setDomainTable: _reduxjs_toolkit.ActionCreatorWithPayload<any[], "list/setDomainTable">;
188
+ declare const selectList: (state: RootState) => ListState;
189
+
190
+ interface NavbarStateType {
191
+ menuList: any;
192
+ }
193
+ declare const navbarSlice: _reduxjs_toolkit.Slice<NavbarStateType, {
194
+ setMenuList: (state: immer.WritableDraft<NavbarStateType>, action: {
195
+ payload: any;
196
+ type: string;
197
+ }) => void;
198
+ }, "navbar", "navbar", _reduxjs_toolkit.SliceSelectors<NavbarStateType>>;
199
+ declare const setMenuList: _reduxjs_toolkit.ActionCreatorWithPayload<any, "navbar/setMenuList">;
200
+ declare const selectNavbar: (state: RootState) => NavbarStateType;
201
+
202
+ declare const envStore: _reduxjs_toolkit.EnhancedStore<{
203
+ env: {
204
+ baseUrl: string;
205
+ requests: null;
206
+ companies: never[];
207
+ user: {};
208
+ envFile: null;
209
+ defaultCompany: {
210
+ id: null;
211
+ logo: string;
212
+ secondary_color: string;
213
+ primary_color: string;
214
+ };
215
+ context: {
216
+ uid: null;
217
+ allowed_company_ids: never[];
218
+ lang: string;
219
+ tz: string;
220
+ };
221
+ };
222
+ navbar: NavbarStateType;
223
+ list: ListState;
224
+ search: SearchState;
225
+ form: FormState;
226
+ excel: ExcelState;
227
+ profile: ProfileStateType;
228
+ }, redux.UnknownAction, _reduxjs_toolkit.Tuple<[redux.StoreEnhancer<{
229
+ dispatch: redux_thunk.ThunkDispatch<{
230
+ env: {
231
+ baseUrl: string;
232
+ requests: null;
233
+ companies: never[];
234
+ user: {};
235
+ envFile: null;
236
+ defaultCompany: {
237
+ id: null;
238
+ logo: string;
239
+ secondary_color: string;
240
+ primary_color: string;
241
+ };
242
+ context: {
243
+ uid: null;
244
+ allowed_company_ids: never[];
245
+ lang: string;
246
+ tz: string;
247
+ };
248
+ };
249
+ navbar: NavbarStateType;
250
+ list: ListState;
251
+ search: SearchState;
252
+ form: FormState;
253
+ excel: ExcelState;
254
+ profile: ProfileStateType;
255
+ }, undefined, redux.UnknownAction>;
256
+ }>, redux.StoreEnhancer]>>;
257
+
258
+ declare const envSlice: _reduxjs_toolkit.Slice<{
259
+ baseUrl: string;
260
+ requests: null;
261
+ companies: never[];
262
+ user: {};
263
+ envFile: null;
264
+ defaultCompany: {
265
+ id: null;
266
+ logo: string;
267
+ secondary_color: string;
268
+ primary_color: string;
269
+ };
270
+ context: {
271
+ uid: null;
272
+ allowed_company_ids: never[];
273
+ lang: string;
274
+ tz: string;
275
+ };
276
+ }, {
277
+ setEnv: (state: immer.WritableDraft<{
278
+ baseUrl: string;
279
+ requests: null;
280
+ companies: never[];
281
+ user: {};
282
+ envFile: null;
283
+ defaultCompany: {
284
+ id: null;
285
+ logo: string;
286
+ secondary_color: string;
287
+ primary_color: string;
288
+ };
289
+ context: {
290
+ uid: null;
291
+ allowed_company_ids: never[];
292
+ lang: string;
293
+ tz: string;
294
+ };
295
+ }>, action: {
296
+ payload: any;
297
+ type: string;
298
+ }) => void;
299
+ setUid: (state: immer.WritableDraft<{
300
+ baseUrl: string;
301
+ requests: null;
302
+ companies: never[];
303
+ user: {};
304
+ envFile: null;
305
+ defaultCompany: {
306
+ id: null;
307
+ logo: string;
308
+ secondary_color: string;
309
+ primary_color: string;
310
+ };
311
+ context: {
312
+ uid: null;
313
+ allowed_company_ids: never[];
314
+ lang: string;
315
+ tz: string;
316
+ };
317
+ }>, action: {
318
+ payload: any;
319
+ type: string;
320
+ }) => void;
321
+ setAllowCompanies: (state: immer.WritableDraft<{
322
+ baseUrl: string;
323
+ requests: null;
324
+ companies: never[];
325
+ user: {};
326
+ envFile: null;
327
+ defaultCompany: {
328
+ id: null;
329
+ logo: string;
330
+ secondary_color: string;
331
+ primary_color: string;
332
+ };
333
+ context: {
334
+ uid: null;
335
+ allowed_company_ids: never[];
336
+ lang: string;
337
+ tz: string;
338
+ };
339
+ }>, action: {
340
+ payload: any;
341
+ type: string;
342
+ }) => void;
343
+ setCompanies: (state: immer.WritableDraft<{
344
+ baseUrl: string;
345
+ requests: null;
346
+ companies: never[];
347
+ user: {};
348
+ envFile: null;
349
+ defaultCompany: {
350
+ id: null;
351
+ logo: string;
352
+ secondary_color: string;
353
+ primary_color: string;
354
+ };
355
+ context: {
356
+ uid: null;
357
+ allowed_company_ids: never[];
358
+ lang: string;
359
+ tz: string;
360
+ };
361
+ }>, action: {
362
+ payload: any;
363
+ type: string;
364
+ }) => void;
365
+ setDefaultCompany: (state: immer.WritableDraft<{
366
+ baseUrl: string;
367
+ requests: null;
368
+ companies: never[];
369
+ user: {};
370
+ envFile: null;
371
+ defaultCompany: {
372
+ id: null;
373
+ logo: string;
374
+ secondary_color: string;
375
+ primary_color: string;
376
+ };
377
+ context: {
378
+ uid: null;
379
+ allowed_company_ids: never[];
380
+ lang: string;
381
+ tz: string;
382
+ };
383
+ }>, action: {
384
+ payload: any;
385
+ type: string;
386
+ }) => void;
387
+ setLang: (state: immer.WritableDraft<{
388
+ baseUrl: string;
389
+ requests: null;
390
+ companies: never[];
391
+ user: {};
392
+ envFile: null;
393
+ defaultCompany: {
394
+ id: null;
395
+ logo: string;
396
+ secondary_color: string;
397
+ primary_color: string;
398
+ };
399
+ context: {
400
+ uid: null;
401
+ allowed_company_ids: never[];
402
+ lang: string;
403
+ tz: string;
404
+ };
405
+ }>, action: {
406
+ payload: any;
407
+ type: string;
408
+ }) => void;
409
+ setUser: (state: immer.WritableDraft<{
410
+ baseUrl: string;
411
+ requests: null;
412
+ companies: never[];
413
+ user: {};
414
+ envFile: null;
415
+ defaultCompany: {
416
+ id: null;
417
+ logo: string;
418
+ secondary_color: string;
419
+ primary_color: string;
420
+ };
421
+ context: {
422
+ uid: null;
423
+ allowed_company_ids: never[];
424
+ lang: string;
425
+ tz: string;
426
+ };
427
+ }>, action: {
428
+ payload: any;
429
+ type: string;
430
+ }) => void;
431
+ setEnvFile: (state: immer.WritableDraft<{
432
+ baseUrl: string;
433
+ requests: null;
434
+ companies: never[];
435
+ user: {};
436
+ envFile: null;
437
+ defaultCompany: {
438
+ id: null;
439
+ logo: string;
440
+ secondary_color: string;
441
+ primary_color: string;
442
+ };
443
+ context: {
444
+ uid: null;
445
+ allowed_company_ids: never[];
446
+ lang: string;
447
+ tz: string;
448
+ };
449
+ }>, action: {
450
+ payload: any;
451
+ type: string;
452
+ }) => void;
453
+ }, "env", "env", _reduxjs_toolkit.SliceSelectors<{
454
+ baseUrl: string;
455
+ requests: null;
456
+ companies: never[];
457
+ user: {};
458
+ envFile: null;
459
+ defaultCompany: {
460
+ id: null;
461
+ logo: string;
462
+ secondary_color: string;
463
+ primary_color: string;
464
+ };
465
+ context: {
466
+ uid: null;
467
+ allowed_company_ids: never[];
468
+ lang: string;
469
+ tz: string;
470
+ };
471
+ }>>;
472
+ declare const setEnv: _reduxjs_toolkit.ActionCreatorWithPayload<any, "env/setEnv">;
473
+ declare const setUid: _reduxjs_toolkit.ActionCreatorWithPayload<any, "env/setUid">;
474
+ declare const setLang: _reduxjs_toolkit.ActionCreatorWithPayload<any, "env/setLang">;
475
+ declare const setAllowCompanies: _reduxjs_toolkit.ActionCreatorWithPayload<any, "env/setAllowCompanies">;
476
+ declare const setCompanies: _reduxjs_toolkit.ActionCreatorWithPayload<any, "env/setCompanies">;
477
+ declare const setDefaultCompany: _reduxjs_toolkit.ActionCreatorWithPayload<any, "env/setDefaultCompany">;
478
+ declare const setUser: _reduxjs_toolkit.ActionCreatorWithPayload<any, "env/setUser">;
479
+ declare const setEnvFile: _reduxjs_toolkit.ActionCreatorWithPayload<any, "env/setEnvFile">;
480
+ declare const selectEnv: (state: RootState) => {
481
+ baseUrl: string;
482
+ requests: null;
483
+ companies: never[];
484
+ user: {};
485
+ envFile: null;
486
+ defaultCompany: {
487
+ id: null;
488
+ logo: string;
489
+ secondary_color: string;
490
+ primary_color: string;
491
+ };
492
+ context: {
493
+ uid: null;
494
+ allowed_company_ids: never[];
495
+ lang: string;
496
+ tz: string;
497
+ };
498
+ };
499
+
500
+ type RootState = ReturnType<typeof envStore.getState>;
501
+ type AppDispatch = typeof envStore.dispatch;
502
+ declare const useAppDispatch: () => AppDispatch;
503
+ declare const useAppSelector: TypedUseSelectorHook<RootState>;
504
+
505
+ export { type SearchState as $, type AppDispatch as A, setListSubject as B, setDataUser as C, selectForm as D, type ExcelState as E, type FormState as F, listSlice as G, setPageLimit as H, setFields as I, setOrder as J, setSelectedRowKeys as K, type ListState as L, setIndexRowTableModal as M, setPage as N, setDomainTable as O, selectList as P, type NavbarStateType as Q, type RootState as R, navbarSlice as S, setMenuList as T, selectNavbar as U, type ViewDataStore as V, type UserInfor as W, type ProfileStateType as X, profileSlice as Y, setProfile as Z, selectProfile as _, useAppSelector as a, searchSlice as a0, setGroupByDomain as a1, setSelectedTags as a2, setSearchString as a3, setHoveredIndexSearchList as a4, setFirstDomain as a5, setTableHead as a6, setFilterBy as a7, setTypeFieldsSearch as a8, setModelSearch as a9, setSearchMap as aa, updateSearchMap as ab, removeKeyFromSearchMap as ac, setGroupBy as ad, clearSearchMap as ae, selectSearch as af, selectSearchMap as ag, envStore as ah, setUid as b, setLang as c, setAllowCompanies as d, envSlice as e, setCompanies as f, setDefaultCompany as g, setUser as h, setEnvFile as i, selectEnv as j, excelSlice as k, setDataParse as l, setIdFile as m, setIsFileLoaded as n, setLoadingImport as o, setSelectedFile as p, setErrorData as q, selectExcel as r, setEnv as s, formSlice as t, useAppDispatch as u, setViewDataStore as v, setIsShowingModalDetail as w, setIsShowModalTranslate as x, setFormSubmitComponent as y, setFieldTranslate as z };