@wolkabout/commons 0.0.9 → 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
@@ -185,9 +185,9 @@ interface Feature {
185
185
  icon: SvgIcon;
186
186
  order: number;
187
187
  entryRoute: string;
188
- translationPrefix: string;
188
+ translations: string[];
189
189
  permission?: string | string[];
190
- primaryColor?: string;
190
+ primaryColor: string;
191
191
  secondaryColor?: string;
192
192
  tertiaryColor?: string;
193
193
  init?: () => void;
@@ -198,10 +198,10 @@ interface ExternalFeature {
198
198
  }
199
199
  declare class FeatureRegistry {
200
200
  private readonly injector;
201
- private readonly _features;
201
+ private readonly _features$;
202
202
  registerFeature(feature: Feature): void;
203
203
  loadExternalFeatures(features: ExternalFeature[]): void;
204
- get features(): Observable<Feature[]>;
204
+ get features$(): Observable<Feature[]>;
205
205
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FeatureRegistry, never>;
206
206
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<FeatureRegistry>;
207
207
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wolkabout/commons",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^20.2.11",
6
6
  "@angular/common": "^20.3.9",