@fctc/interface-logic 1.0.0 → 1.0.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/base-model-type-DvO53Lwi.d.mts +7 -0
- package/dist/base-model-type-DvO53Lwi.d.ts +7 -0
- package/dist/config.d.mts +16 -0
- package/dist/config.d.ts +16 -0
- package/dist/config.js +2355 -0
- package/dist/config.mjs +2318 -0
- package/dist/constants.d.mts +128 -0
- package/dist/constants.d.ts +128 -0
- package/dist/constants.js +202 -0
- package/dist/constants.mjs +163 -0
- package/dist/context-type-D5XefoL-.d.mts +8 -0
- package/dist/context-type-D5XefoL-.d.ts +8 -0
- package/dist/environment.d.mts +41 -0
- package/dist/environment.d.ts +41 -0
- package/dist/environment.js +3061 -0
- package/dist/environment.mjs +3021 -0
- package/dist/hook.d.mts +292 -0
- package/dist/hook.d.ts +292 -0
- package/dist/hook.js +5683 -0
- package/dist/hook.mjs +5587 -0
- package/dist/index-C_nK1Mii.d.mts +19 -0
- package/dist/index-C_nK1Mii.d.ts +19 -0
- package/dist/index.d.mts +1 -1395
- package/dist/index.d.ts +1 -1395
- package/dist/index.js +0 -6870
- package/dist/index.mjs +0 -6641
- package/dist/model.d.mts +35 -0
- package/dist/model.d.ts +35 -0
- package/dist/model.js +3320 -0
- package/dist/model.mjs +3281 -0
- package/dist/provider.d.mts +15 -0
- package/dist/provider.d.ts +15 -0
- package/dist/provider.js +6566 -0
- package/dist/provider.mjs +6550 -0
- package/dist/services.d.mts +224 -0
- package/dist/services.d.ts +224 -0
- package/dist/services.js +4477 -0
- package/dist/services.mjs +4432 -0
- package/dist/session-storage-CxkkEmQh.d.mts +15 -0
- package/dist/session-storage-CxkkEmQh.d.ts +15 -0
- package/dist/store.d.mts +643 -0
- package/dist/store.d.ts +643 -0
- package/dist/store.js +814 -0
- package/dist/store.mjs +709 -0
- package/dist/types.d.mts +12 -0
- package/dist/types.d.ts +12 -0
- package/dist/types.js +18 -0
- package/dist/types.mjs +0 -0
- package/dist/use-get-selection-QZu1jKqa.d.mts +15 -0
- package/dist/use-get-selection-QZu1jKqa.d.ts +15 -0
- package/dist/utils.d.mts +87 -0
- package/dist/utils.d.ts +87 -0
- package/dist/utils.js +2947 -0
- package/dist/utils.mjs +2881 -0
- package/dist/view-type-y6vtF3wg.d.mts +106 -0
- package/dist/view-type-y6vtF3wg.d.ts +106 -0
- package/package.json +53 -12
@@ -0,0 +1,19 @@
|
|
1
|
+
interface BaseModelInit {
|
2
|
+
name: string;
|
3
|
+
view: Record<string, any>;
|
4
|
+
actContext?: Record<string, any>;
|
5
|
+
fields?: any;
|
6
|
+
}
|
7
|
+
declare class BaseModel {
|
8
|
+
name: string;
|
9
|
+
view: Record<string, any>;
|
10
|
+
actContext?: Record<string, any>;
|
11
|
+
fields?: any;
|
12
|
+
constructor(init: BaseModelInit);
|
13
|
+
private getSpecificationByFields;
|
14
|
+
getTreeProps(): Record<string, any>;
|
15
|
+
getTreeFields(): Record<string, any>[];
|
16
|
+
getSpecification(): Record<string, any>;
|
17
|
+
}
|
18
|
+
|
19
|
+
export { BaseModel as B, type BaseModelInit as a };
|
@@ -0,0 +1,19 @@
|
|
1
|
+
interface BaseModelInit {
|
2
|
+
name: string;
|
3
|
+
view: Record<string, any>;
|
4
|
+
actContext?: Record<string, any>;
|
5
|
+
fields?: any;
|
6
|
+
}
|
7
|
+
declare class BaseModel {
|
8
|
+
name: string;
|
9
|
+
view: Record<string, any>;
|
10
|
+
actContext?: Record<string, any>;
|
11
|
+
fields?: any;
|
12
|
+
constructor(init: BaseModelInit);
|
13
|
+
private getSpecificationByFields;
|
14
|
+
getTreeProps(): Record<string, any>;
|
15
|
+
getTreeFields(): Record<string, any>[];
|
16
|
+
getSpecification(): Record<string, any>;
|
17
|
+
}
|
18
|
+
|
19
|
+
export { BaseModel as B, type BaseModelInit as a };
|