@wolkabout/commons 0.0.46 → 0.0.48

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,28 +1,28 @@
1
1
  {
2
2
  "name": "@wolkabout/commons",
3
- "version": "0.0.46",
3
+ "version": "0.0.48",
4
4
  "peerDependencies": {
5
- "@angular/cdk": "^21.2.0",
6
- "@angular/common": "^21.2.0",
7
- "@angular/core": "^21.2.0",
8
- "@angular/forms": "^21.2.0",
9
- "@angular/google-maps": "^21.2.0",
10
- "@angular/material": "^21.2.0",
11
- "@angular/platform-browser": "^21.2.0",
12
- "@angular/router": "^21.2.0",
13
- "@googlemaps/markerclusterer": "^2.6.2",
14
- "@material/material-color-utilities": "^0.4.0",
15
- "@ngx-translate/core": "^17.0.0",
5
+ "@angular/cdk": "21.2.0",
6
+ "@angular/common": "21.2.0",
7
+ "@angular/core": "21.2.0",
8
+ "@angular/forms": "21.2.0",
9
+ "@angular/google-maps": "21.2.0",
10
+ "@angular/material": "21.2.0",
11
+ "@angular/platform-browser": "21.2.0",
12
+ "@angular/router": "21.2.0",
13
+ "@googlemaps/markerclusterer": "2.6.2",
14
+ "@material/material-color-utilities": "0.4.0",
15
+ "@ngx-translate/core": "17.0.0",
16
16
  "echarts": ">=5.0.0",
17
- "jwt-decode": "^4.0.0",
18
- "luxon": "^3.7.2",
19
- "ngx-drag-drop": "^21.0.0",
17
+ "jwt-decode": "4.0.0",
18
+ "luxon": "3.7.2",
19
+ "ngx-drag-drop": "21.0.0",
20
20
  "ngx-echarts": "21.0.0",
21
- "ngx-mat-timepicker": "^21.0.0",
22
- "rxjs": "~7.8.2"
21
+ "ngx-mat-timepicker": "21.0.0",
22
+ "rxjs": "7.8.2"
23
23
  },
24
24
  "dependencies": {
25
- "tslib": "^2.8.1"
25
+ "tslib": "2.8.1"
26
26
  },
27
27
  "sideEffects": false,
28
28
  "module": "fesm2022/wolkabout-commons.mjs",
@@ -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 injector;
188
+ private readonly iconRegistryService;
189
+ private readonly assetManagerService;
189
190
  private readonly loadedFeatures;
190
191
  private readonly _features$;
191
192
  /**