@wolkabout/commons 0.0.8 → 0.0.10
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
|
@@ -187,21 +187,21 @@ interface Feature {
|
|
|
187
187
|
entryRoute: string;
|
|
188
188
|
translationPrefix: string;
|
|
189
189
|
permission?: string | string[];
|
|
190
|
-
primaryColor
|
|
190
|
+
primaryColor: string;
|
|
191
191
|
secondaryColor?: string;
|
|
192
192
|
tertiaryColor?: string;
|
|
193
193
|
init?: () => void;
|
|
194
194
|
}
|
|
195
195
|
interface ExternalFeature {
|
|
196
196
|
remote: string;
|
|
197
|
-
|
|
197
|
+
feature: string;
|
|
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
|
}
|