@wolkabout/commons 0.0.46 → 0.0.47
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
|
@@ -172,20 +172,21 @@ interface Feature {
|
|
|
172
172
|
app: string;
|
|
173
173
|
name: string;
|
|
174
174
|
icon: SvgIcon;
|
|
175
|
+
iconPath?: string;
|
|
175
176
|
entryRoute: string;
|
|
176
177
|
translations: string[];
|
|
177
178
|
permission?: string | string[];
|
|
178
179
|
primaryColor: string;
|
|
179
180
|
secondaryColor?: string;
|
|
180
181
|
tertiaryColor?: string;
|
|
181
|
-
init?: () => void;
|
|
182
182
|
}
|
|
183
183
|
interface ExternalFeature {
|
|
184
184
|
remote: string;
|
|
185
185
|
feature: string;
|
|
186
186
|
}
|
|
187
187
|
declare class FeatureRegistry {
|
|
188
|
-
private readonly
|
|
188
|
+
private readonly iconRegistryService;
|
|
189
|
+
private readonly assetManagerService;
|
|
189
190
|
private readonly loadedFeatures;
|
|
190
191
|
private readonly _features$;
|
|
191
192
|
/**
|