@fctc/edu-logic-lib 1.1.8 → 1.1.9

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 (59) hide show
  1. package/dist/chunk-4K3QAEZ6.js +90 -0
  2. package/dist/chunk-6BLY7NZ6.mjs +120 -0
  3. package/dist/chunk-6QXB3XX7.mjs +256 -0
  4. package/dist/chunk-7JD5GMIZ.js +2 -0
  5. package/dist/chunk-AYUH66EE.mjs +62 -0
  6. package/dist/chunk-CZHZLKNA.mjs +585 -0
  7. package/dist/chunk-EK43MEN4.js +635 -0
  8. package/dist/chunk-ELARQVCE.mjs +2344 -0
  9. package/dist/chunk-FVGPSTJ7.js +122 -0
  10. package/dist/chunk-GGOFXFSX.js +2362 -0
  11. package/dist/chunk-IXDDYGKE.js +61 -0
  12. package/dist/chunk-MLJQPO4Q.mjs +57 -0
  13. package/dist/chunk-OADBRQ4A.js +32 -0
  14. package/dist/chunk-OBR6UTC5.mjs +1 -0
  15. package/dist/chunk-OFUXC2LA.mjs +86 -0
  16. package/dist/chunk-P2IGWJDZ.js +1068 -0
  17. package/dist/chunk-QLUONJPQ.mjs +519 -0
  18. package/dist/chunk-RWRHCIQI.mjs +1059 -0
  19. package/dist/chunk-RZBHZYXG.js +582 -0
  20. package/dist/chunk-S7B3VKMJ.mjs +85 -0
  21. package/dist/chunk-S7YF2I23.js +95 -0
  22. package/dist/chunk-UY6GNZNB.js +262 -0
  23. package/dist/chunk-XYVK476U.mjs +29 -0
  24. package/dist/chunk-YOV6KAT2.js +66 -0
  25. package/dist/config.js +6 -257
  26. package/dist/config.mjs +2 -256
  27. package/dist/constants.js +53 -152
  28. package/dist/constants.mjs +2 -141
  29. package/dist/environment.js +16 -840
  30. package/dist/environment.mjs +4 -841
  31. package/dist/hooks.d.mts +207 -2
  32. package/dist/hooks.d.ts +207 -2
  33. package/dist/hooks.js +180 -3040
  34. package/dist/hooks.mjs +9 -3048
  35. package/dist/index-C_nK1Mii.d.mts +19 -0
  36. package/dist/index-C_nK1Mii.d.ts +19 -0
  37. package/dist/index.d.mts +8 -6
  38. package/dist/index.d.ts +8 -6
  39. package/dist/index.js +626 -4711
  40. package/dist/index.mjs +12 -4601
  41. package/dist/models.d.mts +4 -21
  42. package/dist/models.d.ts +4 -21
  43. package/dist/models.js +18 -3217
  44. package/dist/models.mjs +9 -3217
  45. package/dist/provider.js +17 -3224
  46. package/dist/provider.mjs +8 -3224
  47. package/dist/services.d.mts +2 -13
  48. package/dist/services.d.ts +2 -13
  49. package/dist/services.js +31 -4032
  50. package/dist/services.mjs +7 -4032
  51. package/dist/store.js +248 -576
  52. package/dist/store.mjs +1 -519
  53. package/dist/types.js +2 -0
  54. package/dist/types.mjs +1 -1
  55. package/dist/use-get-selection-DFh6sc49.d.mts +26 -0
  56. package/dist/use-get-selection-DFh6sc49.d.ts +26 -0
  57. package/dist/utils.js +61 -2355
  58. package/dist/utils.mjs +1 -2344
  59. package/package.json +1 -1
package/dist/models.d.mts CHANGED
@@ -1,22 +1,5 @@
1
- import { B as BaseModelInit$1 } from './base-model-type-DvO53Lwi.mjs';
2
-
3
- interface BaseModelInit {
4
- name: string;
5
- view: Record<string, any>;
6
- actContext?: Record<string, any>;
7
- fields?: any;
8
- }
9
- declare class BaseModel {
10
- name: string;
11
- view: Record<string, any>;
12
- actContext?: Record<string, any>;
13
- fields?: any;
14
- constructor(init: BaseModelInit);
15
- private getSpecificationByFields;
16
- getTreeProps(): Record<string, any>;
17
- getTreeFields(): Record<string, any>[];
18
- getSpecification(): Record<string, any>;
19
- }
1
+ import { B as BaseModel } from './index-C_nK1Mii.mjs';
2
+ import { B as BaseModelInit } from './base-model-type-DvO53Lwi.mjs';
20
3
 
21
4
  interface CompanyData {
22
5
  id?: number;
@@ -29,7 +12,7 @@ interface CompanyResponse {
29
12
  [key: string]: any;
30
13
  }
31
14
  declare class CompanyModel extends BaseModel {
32
- constructor(init: BaseModelInit$1);
15
+ constructor(init: BaseModelInit);
33
16
  getCurrentCompany(): Promise<CompanyResponse>;
34
17
  getUserCompany(id: number): Promise<CompanyResponse>;
35
18
  }
@@ -45,7 +28,7 @@ interface UserResponse {
45
28
  [key: string]: any;
46
29
  }
47
30
  declare class UserModel extends BaseModel {
48
- constructor(init: BaseModelInit$1);
31
+ constructor(init: BaseModelInit);
49
32
  getProfile(): Promise<UserResponse>;
50
33
  }
51
34
 
package/dist/models.d.ts CHANGED
@@ -1,22 +1,5 @@
1
- import { B as BaseModelInit$1 } from './base-model-type-DvO53Lwi.js';
2
-
3
- interface BaseModelInit {
4
- name: string;
5
- view: Record<string, any>;
6
- actContext?: Record<string, any>;
7
- fields?: any;
8
- }
9
- declare class BaseModel {
10
- name: string;
11
- view: Record<string, any>;
12
- actContext?: Record<string, any>;
13
- fields?: any;
14
- constructor(init: BaseModelInit);
15
- private getSpecificationByFields;
16
- getTreeProps(): Record<string, any>;
17
- getTreeFields(): Record<string, any>[];
18
- getSpecification(): Record<string, any>;
19
- }
1
+ import { B as BaseModel } from './index-C_nK1Mii.js';
2
+ import { B as BaseModelInit } from './base-model-type-DvO53Lwi.js';
20
3
 
21
4
  interface CompanyData {
22
5
  id?: number;
@@ -29,7 +12,7 @@ interface CompanyResponse {
29
12
  [key: string]: any;
30
13
  }
31
14
  declare class CompanyModel extends BaseModel {
32
- constructor(init: BaseModelInit$1);
15
+ constructor(init: BaseModelInit);
33
16
  getCurrentCompany(): Promise<CompanyResponse>;
34
17
  getUserCompany(id: number): Promise<CompanyResponse>;
35
18
  }
@@ -45,7 +28,7 @@ interface UserResponse {
45
28
  [key: string]: any;
46
29
  }
47
30
  declare class UserModel extends BaseModel {
48
- constructor(init: BaseModelInit$1);
31
+ constructor(init: BaseModelInit);
49
32
  getProfile(): Promise<UserResponse>;
50
33
  }
51
34