@mozaic-ds/angular 2.0.0-beta.34 → 2.0.0-beta.35
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,7 +1,7 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { TemplateRef, OnInit, ElementRef, OnDestroy, Type, AfterViewInit, Renderer2, WritableSignal, AfterContentInit, QueryList, EventEmitter } from '@angular/core';
|
|
2
|
+
import { TemplateRef, OnInit, ElementRef, OnDestroy, Type, AfterViewInit, Renderer2, WritableSignal, Signal, AfterContentInit, QueryList, EventEmitter } from '@angular/core';
|
|
3
3
|
import { ControlValueAccessor } from '@angular/forms';
|
|
4
|
-
import { CheckCircle32, Uploading32, WarningCircle32
|
|
4
|
+
import { CheckCircle32, Uploading32, WarningCircle32 } from '@mozaic-ds/icons-angular';
|
|
5
5
|
import { RouterLink } from '@angular/router';
|
|
6
6
|
import { DialogRef } from '@angular/cdk/dialog';
|
|
7
7
|
import { Observable } from 'rxjs';
|
|
@@ -698,20 +698,21 @@ declare class MozStatusDotComponent {
|
|
|
698
698
|
|
|
699
699
|
type MozStatusNotificationStatus = 'info' | 'success' | 'warning' | 'error';
|
|
700
700
|
declare class MozStatusNotificationComponent {
|
|
701
|
+
id: _angular_core.InputSignal<string>;
|
|
701
702
|
title: _angular_core.InputSignal<string | undefined>;
|
|
702
703
|
status: _angular_core.InputSignal<MozStatusNotificationStatus>;
|
|
703
704
|
closable: _angular_core.InputSignal<boolean>;
|
|
704
705
|
closed: _angular_core.OutputEmitterRef<void>;
|
|
705
|
-
descriptionTpl:
|
|
706
|
-
footerTpl:
|
|
707
|
-
readonly classes:
|
|
706
|
+
descriptionTpl: Signal<TemplateRef<void> | undefined>;
|
|
707
|
+
footerTpl: Signal<TemplateRef<void> | undefined>;
|
|
708
|
+
readonly classes: Signal<{
|
|
708
709
|
[x: string]: boolean | MozStatusNotificationStatus;
|
|
709
710
|
'mc-status-notification': boolean;
|
|
710
711
|
}>;
|
|
711
|
-
readonly iconComponent:
|
|
712
|
+
readonly iconComponent: Signal<Type<unknown>>;
|
|
712
713
|
onCloseClick(): void;
|
|
713
714
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MozStatusNotificationComponent, never>;
|
|
714
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MozStatusNotificationComponent, "moz-status-notification", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "closable": { "alias": "closable"; "required": false; "isSignal": true; }; }, { "closed": "closed"; }, ["descriptionTpl", "footerTpl"], never, true, never>;
|
|
715
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MozStatusNotificationComponent, "moz-status-notification", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "closable": { "alias": "closable"; "required": false; "isSignal": true; }; }, { "closed": "closed"; }, ["descriptionTpl", "footerTpl"], never, true, never>;
|
|
715
716
|
}
|
|
716
717
|
|
|
717
718
|
declare class MozTabComponent {
|
|
@@ -1363,13 +1364,14 @@ type MozStatusMessageStatus = 'info' | 'success' | 'warning' | 'error' | 'neutra
|
|
|
1363
1364
|
declare class MozStatusMessageComponent {
|
|
1364
1365
|
status: _angular_core.InputSignal<MozStatusMessageStatus>;
|
|
1365
1366
|
description: _angular_core.InputSignal<string | null>;
|
|
1366
|
-
|
|
1367
|
+
id: _angular_core.InputSignal<string>;
|
|
1368
|
+
readonly classes: Signal<{
|
|
1367
1369
|
[x: string]: boolean | MozStatusMessageStatus;
|
|
1368
1370
|
'mc-status-message': boolean;
|
|
1369
1371
|
}>;
|
|
1370
|
-
readonly iconComponent:
|
|
1372
|
+
readonly iconComponent: Signal<Type<unknown>>;
|
|
1371
1373
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MozStatusMessageComponent, never>;
|
|
1372
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MozStatusMessageComponent, "moz-status-message", never, { "status": { "alias": "status"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1374
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MozStatusMessageComponent, "moz-status-message", never, { "status": { "alias": "status"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1373
1375
|
}
|
|
1374
1376
|
|
|
1375
1377
|
type MozKpiTrend = 'increasing' | 'decreasing' | 'stable';
|
|
@@ -1653,6 +1655,10 @@ type MozStepperBottomBarStep = 'start' | 'middle' | 'end';
|
|
|
1653
1655
|
* with cancel, previous, next, and validate buttons that adapt based on the current step.
|
|
1654
1656
|
*/
|
|
1655
1657
|
declare class MozStepperBottomBarComponent {
|
|
1658
|
+
/**
|
|
1659
|
+
* Base ID for the stepper component.
|
|
1660
|
+
*/
|
|
1661
|
+
id: _angular_core.InputSignal<string>;
|
|
1656
1662
|
/**
|
|
1657
1663
|
* Step of the process.
|
|
1658
1664
|
*/
|
|
@@ -1701,8 +1707,19 @@ declare class MozStepperBottomBarComponent {
|
|
|
1701
1707
|
handlePrevious(): void;
|
|
1702
1708
|
handleNext(): void;
|
|
1703
1709
|
handleValidate(): void;
|
|
1710
|
+
/**
|
|
1711
|
+
* Computed IDs for buttons
|
|
1712
|
+
*/
|
|
1713
|
+
cancelButtonId: _angular_core.Signal<string>;
|
|
1714
|
+
cancelButtonIconId: _angular_core.Signal<string>;
|
|
1715
|
+
previousButtonId: _angular_core.Signal<string>;
|
|
1716
|
+
previousButtonIconId: _angular_core.Signal<string>;
|
|
1717
|
+
nextButtonId: _angular_core.Signal<string>;
|
|
1718
|
+
nextButtonIconId: _angular_core.Signal<string>;
|
|
1719
|
+
validateButtonId: _angular_core.Signal<string>;
|
|
1720
|
+
validateButtonIconId: _angular_core.Signal<string>;
|
|
1704
1721
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MozStepperBottomBarComponent, never>;
|
|
1705
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MozStepperBottomBarComponent, "moz-stepper-bottom-bar", never, { "step": { "alias": "step"; "required": false; "isSignal": true; }; "hasCancel": { "alias": "hasCancel"; "required": false; "isSignal": true; }; "cancelText": { "alias": "cancelText"; "required": false; "isSignal": true; }; "previousText": { "alias": "previousText"; "required": false; "isSignal": true; }; "nextText": { "alias": "nextText"; "required": false; "isSignal": true; }; "validateText": { "alias": "validateText"; "required": false; "isSignal": true; }; "disabledNext": { "alias": "disabledNext"; "required": false; "isSignal": true; }; }, { "cancel": "cancel"; "previous": "previous"; "next": "next"; "validate": "validate"; }, never, never, true, never>;
|
|
1722
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MozStepperBottomBarComponent, "moz-stepper-bottom-bar", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "hasCancel": { "alias": "hasCancel"; "required": false; "isSignal": true; }; "cancelText": { "alias": "cancelText"; "required": false; "isSignal": true; }; "previousText": { "alias": "previousText"; "required": false; "isSignal": true; }; "nextText": { "alias": "nextText"; "required": false; "isSignal": true; }; "validateText": { "alias": "validateText"; "required": false; "isSignal": true; }; "disabledNext": { "alias": "disabledNext"; "required": false; "isSignal": true; }; }, { "cancel": "cancel"; "previous": "previous"; "next": "next"; "validate": "validate"; }, never, never, true, never>;
|
|
1706
1723
|
}
|
|
1707
1724
|
|
|
1708
1725
|
interface MozPageHeaderScope {
|