@masterteam/properties 0.0.65 → 0.0.67

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,28 +1,28 @@
1
1
  {
2
2
  "name": "@masterteam/properties",
3
- "version": "0.0.65",
3
+ "version": "0.0.67",
4
4
  "publishConfig": {
5
5
  "directory": "../../../dist/masterteam/properties",
6
6
  "linkDirectory": false,
7
7
  "access": "public"
8
8
  },
9
9
  "peerDependencies": {
10
- "@angular/common": "^21.2.8",
11
- "@angular/core": "^21.2.8",
12
- "@angular/forms": "^21.2.8",
13
- "@primeuix/themes": "^2.0.3",
14
- "@tailwindcss/postcss": "^4.2.2",
15
- "@jsverse/transloco": "^8.3.0",
16
- "postcss": "^8.5.9",
17
- "primeng": "21.1.5",
18
- "rxjs": "^7.8.2",
19
- "tailwindcss": "^4.2.2",
20
- "tailwindcss-primeui": "^0.6.1",
10
+ "@angular/common": "catalog:angular21",
11
+ "@angular/core": "catalog:angular21",
12
+ "@angular/forms": "catalog:angular21",
13
+ "@primeuix/themes": "catalog:",
14
+ "@tailwindcss/postcss": "catalog:",
15
+ "@jsverse/transloco": "catalog:i18n",
16
+ "postcss": "catalog:",
17
+ "primeng": "catalog:",
18
+ "rxjs": "catalog:angular21",
19
+ "tailwindcss": "catalog:",
20
+ "tailwindcss-primeui": "catalog:",
21
21
  "@ngxs/store": "^20.1.0",
22
- "@masterteam/forms": "^0.0.107",
23
- "@masterteam/formula-builder": "^0.0.20",
24
- "@masterteam/components": "^0.0.211",
25
- "@masterteam/icons": "^0.0.17"
22
+ "@masterteam/components": "workspace:^",
23
+ "@masterteam/formula-builder": "workspace:^",
24
+ "@masterteam/forms": "workspace:^",
25
+ "@masterteam/icons": "workspace:^"
26
26
  },
27
27
  "sideEffects": false,
28
28
  "exports": {
@@ -44,6 +44,6 @@
44
44
  "typings": "types/masterteam-properties.d.ts",
45
45
  "type": "module",
46
46
  "dependencies": {
47
- "tslib": "^2.8.1"
47
+ "tslib": "catalog:angular21"
48
48
  }
49
49
  }
@@ -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[]>>;