@masterteam/properties 0.0.72 → 0.0.74

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.72",
3
+ "version": "0.0.74",
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/icons": "^0.0.17",
22
+ "@masterteam/components": "^0.0.246",
23
23
  "@masterteam/formula-builder": "^0.0.27",
24
- "@masterteam/forms": "^0.0.127",
25
- "@masterteam/components": "^0.0.239"
24
+ "@masterteam/forms": "^0.0.131",
25
+ "@masterteam/icons": "^0.0.17"
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
+ }
@@ -448,8 +448,8 @@ declare class PropertiesState extends CrudStateBase<PropertyItem, PropertiesStat
448
448
  SetPropertyTypes(ctx: StateContext<PropertiesStateModel>, action: SetPropertyTypes): void;
449
449
  setBreadcrumb(ctx: StateContext<PropertiesStateModel>, action: SetBreadcrumb): void;
450
450
  setDefaultViewType(ctx: StateContext<PropertiesStateModel>, action: SetDefaultViewType): void;
451
- createProperty(ctx: StateContext<PropertiesStateModel>, action: CreateProperty): rxjs.Observable<Response<PropertyItem>> | rxjs.Observable<null>;
452
- updateProperty(ctx: StateContext<PropertiesStateModel>, action: UpdateProperty): rxjs.Observable<Response<PropertyItem>> | rxjs.Observable<null>;
451
+ createProperty(ctx: StateContext<PropertiesStateModel>, action: CreateProperty): rxjs.Observable<null> | rxjs.Observable<Response<PropertyItem>>;
452
+ updateProperty(ctx: StateContext<PropertiesStateModel>, action: UpdateProperty): rxjs.Observable<null> | rxjs.Observable<Response<PropertyItem>>;
453
453
  deleteProperty(ctx: StateContext<PropertiesStateModel>, action: DeleteProperty): rxjs.Observable<void>;
454
454
  private mapSchemaToOptions;
455
455
  private buildSchemaFromRecord;