@masterteam/properties 0.0.66 → 0.0.68
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@masterteam/properties",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.68",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"directory": "../../../dist/masterteam/properties",
|
|
6
6
|
"linkDirectory": false,
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"tailwindcss": "^4.2.2",
|
|
20
20
|
"tailwindcss-primeui": "^0.6.1",
|
|
21
21
|
"@ngxs/store": "^20.1.0",
|
|
22
|
-
"@masterteam/
|
|
23
|
-
"@masterteam/
|
|
24
|
-
"@masterteam/formula-builder": "^0.0.
|
|
22
|
+
"@masterteam/components": "^0.0.221",
|
|
23
|
+
"@masterteam/forms": "^0.0.111",
|
|
24
|
+
"@masterteam/formula-builder": "^0.0.23",
|
|
25
25
|
"@masterteam/icons": "^0.0.17"
|
|
26
26
|
},
|
|
27
27
|
"sideEffects": false,
|
|
@@ -400,6 +400,8 @@ declare class PropertiesState extends CrudStateBase<PropertyItem, PropertiesStat
|
|
|
400
400
|
static propertyById(state: PropertiesStateModel): (id: number | string) => PropertyItem | null;
|
|
401
401
|
getAll(ctx: StateContext<PropertiesStateModel>, action: GetProperties): rxjs.Observable<Response<PropertyCatalogResponseDto>>;
|
|
402
402
|
getOne(ctx: StateContext<PropertiesStateModel>, action: GetProperty): rxjs.Observable<Response<PropertyItem>>;
|
|
403
|
+
private getScopedEditParams;
|
|
404
|
+
private toQueryId;
|
|
403
405
|
getLookups(ctx: StateContext<PropertiesStateModel>, _action: GetLookups): rxjs.Observable<LookupDefinition[]> | rxjs.Observable<Response<LookupDefinition[]>>;
|
|
404
406
|
getGroups(ctx: StateContext<PropertiesStateModel>, _action: GetGroups): rxjs.Observable<GroupDefinition[]> | rxjs.Observable<Response<GroupDefinition[]>>;
|
|
405
407
|
getConfigAsType(ctx: StateContext<PropertiesStateModel>, action: GetConfigAsType): rxjs.Observable<ConfigScope[]> | rxjs.Observable<Response<ConfigScope[]>>;
|