@mozaic-ds/angular 2.0.0-beta.30 → 2.0.0-beta.32
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
|
@@ -251,6 +251,7 @@ type MozIconButtonAppearance = 'standard' | 'accent' | 'danger' | 'inverse';
|
|
|
251
251
|
type MozIconButtonSize = 's' | 'm' | 'l';
|
|
252
252
|
type MozIconButtonType = 'button' | 'reset' | 'submit';
|
|
253
253
|
declare class MozIconButtonComponent {
|
|
254
|
+
id: _angular_core.InputSignal<string>;
|
|
254
255
|
appearance: _angular_core.InputSignal<MozIconButtonAppearance>;
|
|
255
256
|
size: _angular_core.InputSignal<MozIconButtonSize>;
|
|
256
257
|
disabled: _angular_core.InputSignal<boolean | undefined>;
|
|
@@ -266,7 +267,7 @@ declare class MozIconButtonComponent {
|
|
|
266
267
|
'mc-button--outlined': boolean;
|
|
267
268
|
}>;
|
|
268
269
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MozIconButtonComponent, never>;
|
|
269
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MozIconButtonComponent, "moz-icon-button", never, { "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>;
|
|
270
|
+
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>;
|
|
270
271
|
}
|
|
271
272
|
|
|
272
273
|
type MozLinkAppearance = 'secondary' | 'accent' | 'inverse' | 'standard';
|
|
@@ -714,15 +715,17 @@ declare class MozStatusNotificationComponent {
|
|
|
714
715
|
}
|
|
715
716
|
|
|
716
717
|
declare class MozTabComponent {
|
|
718
|
+
id: _angular_core.InputSignal<string>;
|
|
717
719
|
label: _angular_core.InputSignal<string>;
|
|
718
720
|
icon: _angular_core.InputSignal<Type<unknown> | undefined>;
|
|
719
721
|
disabled: _angular_core.InputSignal<boolean>;
|
|
720
722
|
routerLink: _angular_core.InputSignal<string | undefined>;
|
|
721
723
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MozTabComponent, never>;
|
|
722
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MozTabComponent, "moz-tab", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "routerLink": { "alias": "routerLink"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
724
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MozTabComponent, "moz-tab", never, { "id": { "alias": "id"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "routerLink": { "alias": "routerLink"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
723
725
|
}
|
|
724
726
|
|
|
725
727
|
interface MozTabItem {
|
|
728
|
+
id: string;
|
|
726
729
|
label: string;
|
|
727
730
|
icon?: Type<unknown>;
|
|
728
731
|
disabled?: boolean;
|