@masterteam/properties 0.0.10 → 0.0.11

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/index.d.ts CHANGED
@@ -277,14 +277,14 @@ declare class PropertiesState {
277
277
  static propertyById(state: PropertiesStateModel): (id: number | string) => PropertyItem | null;
278
278
  getAll(ctx: StateContext<PropertiesStateModel>, action: GetProperties): rxjs.Observable<Response<PropertyItem[]> | null>;
279
279
  getOne(ctx: StateContext<PropertiesStateModel>, action: GetProperty): rxjs.Observable<Response<PropertyItem> | null>;
280
- getLookups(ctx: StateContext<PropertiesStateModel>, _action: GetLookups): rxjs.Observable<LookupDefinition[]> | rxjs.Observable<Response<LookupDefinition[]> | never[]>;
280
+ getLookups(ctx: StateContext<PropertiesStateModel>, _action: GetLookups): rxjs.Observable<LookupDefinition[]> | rxjs.Observable<never[] | Response<LookupDefinition[]>>;
281
281
  getGroups(ctx: StateContext<PropertiesStateModel>, _action: GetGroups): rxjs.Observable<GroupDefinition[]> | rxjs.Observable<never[] | Response<GroupDefinition[]>>;
282
282
  getConfigAsType(ctx: StateContext<PropertiesStateModel>, action: GetConfigAsType): rxjs.Observable<ConfigScope[]> | rxjs.Observable<never[] | Response<ConfigScope[]>>;
283
283
  getCountries(ctx: StateContext<PropertiesStateModel>, _action: GetCountries): rxjs.Observable<CountryDefinition[]>;
284
284
  testApiConfiguration(ctx: StateContext<PropertiesStateModel>, action: TestApiConfiguration): rxjs.Observable<Response<ApiSchema> | null>;
285
285
  resetApiConfiguration(ctx: StateContext<PropertiesStateModel>): void;
286
286
  private mapSchemaToOptions;
287
- getPropertiesForConfigType(ctx: StateContext<PropertiesStateModel>, action: GetPropertiesForConfigType): rxjs.Observable<Response<PropertyItem[]> | never[]>;
287
+ getPropertiesForConfigType(ctx: StateContext<PropertiesStateModel>, action: GetPropertiesForConfigType): rxjs.Observable<never[] | Response<PropertyItem[]>>;
288
288
  resetConfigProperties(ctx: StateContext<PropertiesStateModel>): void;
289
289
  resetConfigScopes(ctx: StateContext<PropertiesStateModel>): void;
290
290
  resetSelectedProperty(ctx: StateContext<PropertiesStateModel>): void;
@@ -350,7 +350,8 @@ declare class PropertiesList {
350
350
  }[]>;
351
351
  activeTab: _angular_core.WritableSignal<string>;
352
352
  readonly tableColumns: _angular_core.WritableSignal<ColumnDef[]>;
353
- tableActions: _angular_core.WritableSignal<TableAction[]>;
353
+ propertyTypes: _angular_core.WritableSignal<any[]>;
354
+ tableActions: _angular_core.Signal<TableAction[]>;
354
355
  readonly rowActions: _angular_core.WritableSignal<TableAction[]>;
355
356
  readonly loading: _angular_core.Signal<boolean>;
356
357
  readonly tableData: _angular_core.Signal<PropertyItem[]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@masterteam/properties",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "publishConfig": {
5
5
  "directory": ".",
6
6
  "linkDirectory": false,