@ndwnu/design-system 13.1.1 → 13.2.0

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@ndwnu/design-system",
3
- "version": "13.1.1",
3
+ "version": "13.2.0",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^21.0.0",
6
6
  "@angular/common": "^21.0.0",
@@ -1051,16 +1051,16 @@ declare class LoaderComponent {
1051
1051
 
1052
1052
  declare class MapButtonComponent {
1053
1053
  #private;
1054
- readonly icon: _angular_core.InputSignal<"search" | "polygon" | "direction" | "gps" | "high-res" | "layers" | "zoom-in" | "zoom-out" | "mail" | "add-traffic-sign" | "add-zone" | "download" | "hectometer" | "low-res" | "zoom-to-content">;
1054
+ readonly icon: _angular_core.InputSignal<"search" | "polygon" | "direction" | "gps" | "high-res" | "layers" | "zoom-in" | "zoom-out" | "mail" | "add-traffic-sign" | "add-zone" | "download" | "hectometer" | "low-res" | "zoom-to-content" | undefined>;
1055
1055
  readonly active: _angular_core.InputSignal<boolean>;
1056
1056
  readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
1057
1057
  readonly disabled: _angular_core.InputSignal<boolean>;
1058
1058
  readonly clicked: _angular_core.OutputEmitterRef<void>;
1059
- protected readonly buttonIcon: _angular_core.Signal<string>;
1059
+ protected readonly buttonIcon: _angular_core.Signal<string | undefined>;
1060
1060
  protected readonly svgIcon: _angular_core.Signal<string | undefined>;
1061
1061
  protected readonly iconLabel: _angular_core.Signal<string>;
1062
1062
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MapButtonComponent, never>;
1063
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<MapButtonComponent, "ndw-map-button", never, { "icon": { "alias": "icon"; "required": true; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; }, never, ["*"], true, never>;
1063
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MapButtonComponent, "ndw-map-button", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; }, never, ["*"], true, never>;
1064
1064
  }
1065
1065
 
1066
1066
  declare const fontMapButtonIcons: readonly ["direction", "gps", "high-res", "layers", "polygon", "search", "zoom-in", "zoom-out", "mail"];
@@ -1075,6 +1075,7 @@ interface MapDisplayOption {
1075
1075
  name: string;
1076
1076
  active?: boolean;
1077
1077
  imageLink?: string;
1078
+ icon?: string;
1078
1079
  description?: string;
1079
1080
  [key: string]: unknown;
1080
1081
  }