@mozaic-ds/angular 2.0.27 → 2.0.29

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": "@mozaic-ds/angular",
3
- "version": "2.0.27",
3
+ "version": "2.0.29",
4
4
  "type": "module",
5
5
  "peerDependencies": {
6
6
  "@angular/common": ">=20.3.15",
@@ -269,6 +269,7 @@ declare class MozIconButtonComponent {
269
269
  readonly outlined: _angular_core.InputSignal<boolean | undefined>;
270
270
  readonly type: _angular_core.InputSignal<MozIconButtonType>;
271
271
  readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
272
+ readonly activated: _angular_core.OutputEmitterRef<MouseEvent>;
272
273
  readonly classes: _angular_core.Signal<{
273
274
  [x: string]: boolean | MozIconButtonAppearance | MozIconButtonSize;
274
275
  'mc-button': boolean;
@@ -276,8 +277,9 @@ declare class MozIconButtonComponent {
276
277
  'mc-button--ghost': boolean;
277
278
  'mc-button--outlined': boolean;
278
279
  }>;
280
+ onActivated(event: MouseEvent): void;
279
281
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MozIconButtonComponent, never>;
280
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<MozIconButtonComponent, "moz-icon-button", never, { "id": { "alias": "id"; "required": true; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ghost": { "alias": "ghost"; "required": false; "isSignal": true; }; "outlined": { "alias": "outlined"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, ["[icon]"], true, never>;
282
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MozIconButtonComponent, "moz-icon-button", never, { "id": { "alias": "id"; "required": true; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ghost": { "alias": "ghost"; "required": false; "isSignal": true; }; "outlined": { "alias": "outlined"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, { "activated": "activated"; }, never, ["[icon]"], true, never>;
281
283
  }
282
284
 
283
285
  type MozLinkAppearance = 'secondary' | 'accent' | 'inverse' | 'standard';