@masterteam/properties 0.0.22 → 0.0.23

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,20 +1,20 @@
1
1
  {
2
2
  "name": "@masterteam/properties",
3
- "version": "0.0.22",
3
+ "version": "0.0.23",
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.0.2",
11
- "@angular/core": "^21.0.2",
12
- "@angular/forms": "^21.0.2",
13
- "@primeuix/themes": "^2.0.1",
10
+ "@angular/common": "^21.0.3",
11
+ "@angular/core": "^21.0.3",
12
+ "@angular/forms": "^21.0.3",
13
+ "@primeuix/themes": "^2.0.2",
14
14
  "@tailwindcss/postcss": "^4.1.17",
15
15
  "@jsverse/transloco": "^8.0.2",
16
16
  "postcss": "^8.5.6",
17
- "primeng": "21.0.0-beta.1",
17
+ "primeng": "21.0.1",
18
18
  "rxjs": "^7.8.2",
19
19
  "tailwindcss": "^4.1.17",
20
20
  "tailwindcss-primeui": "^0.6.1",
@@ -22,9 +22,9 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "tslib": "^2.3.0",
25
- "@masterteam/icons": "^0.0.10",
26
- "@masterteam/components": "^0.0.64",
27
- "@masterteam/forms": "^0.0.29"
25
+ "@masterteam/forms": "^0.0.30",
26
+ "@masterteam/icons": "^0.0.11",
27
+ "@masterteam/components": "^0.0.65"
28
28
  },
29
29
  "sideEffects": false,
30
30
  "exports": {
@@ -284,14 +284,14 @@ declare class PropertiesState {
284
284
  static propertyById(state: PropertiesStateModel): (id: number | string) => PropertyItem | null;
285
285
  getAll(ctx: StateContext<PropertiesStateModel>, action: GetProperties): rxjs.Observable<Response<PropertyItem[]> | null>;
286
286
  getOne(ctx: StateContext<PropertiesStateModel>, action: GetProperty): rxjs.Observable<Response<PropertyItem> | null>;
287
- getLookups(ctx: StateContext<PropertiesStateModel>, _action: GetLookups): rxjs.Observable<LookupDefinition[]> | rxjs.Observable<Response<LookupDefinition[]> | never[]>;
287
+ getLookups(ctx: StateContext<PropertiesStateModel>, _action: GetLookups): rxjs.Observable<LookupDefinition[]> | rxjs.Observable<never[] | Response<LookupDefinition[]>>;
288
288
  getGroups(ctx: StateContext<PropertiesStateModel>, _action: GetGroups): rxjs.Observable<GroupDefinition[]> | rxjs.Observable<never[] | Response<GroupDefinition[]>>;
289
289
  getConfigAsType(ctx: StateContext<PropertiesStateModel>, action: GetConfigAsType): rxjs.Observable<ConfigScope[]> | rxjs.Observable<never[] | Response<ConfigScope[]>>;
290
290
  getCountries(ctx: StateContext<PropertiesStateModel>, _action: GetCountries): rxjs.Observable<CountryDefinition[]>;
291
291
  testApiConfiguration(ctx: StateContext<PropertiesStateModel>, action: TestApiConfiguration): rxjs.Observable<Response<ApiSchema> | null>;
292
292
  resetApiConfiguration(ctx: StateContext<PropertiesStateModel>): void;
293
293
  private mapSchemaToOptions;
294
- getPropertiesForConfigType(ctx: StateContext<PropertiesStateModel>, action: GetPropertiesForConfigType): rxjs.Observable<Response<PropertyItem[]> | never[]>;
294
+ getPropertiesForConfigType(ctx: StateContext<PropertiesStateModel>, action: GetPropertiesForConfigType): rxjs.Observable<never[] | Response<PropertyItem[]>>;
295
295
  resetConfigProperties(ctx: StateContext<PropertiesStateModel>): void;
296
296
  resetConfigScopes(ctx: StateContext<PropertiesStateModel>): void;
297
297
  resetSelectedProperty(ctx: StateContext<PropertiesStateModel>): void;