@mozaic-ds/angular 2.0.61 → 2.0.62
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
|
@@ -1998,6 +1998,7 @@ interface MozDrawerConfig<D = unknown> {
|
|
|
1998
1998
|
position?: MozDrawerPosition;
|
|
1999
1999
|
extended?: boolean;
|
|
2000
2000
|
back?: boolean;
|
|
2001
|
+
panelClass?: string;
|
|
2001
2002
|
data?: D;
|
|
2002
2003
|
}
|
|
2003
2004
|
declare const DRAWER_CONFIG: InjectionToken<MozDrawerConfig<unknown>>;
|
|
@@ -2014,6 +2015,7 @@ declare class MozDrawerRef<R = unknown> {
|
|
|
2014
2015
|
readonly position: _angular_core.WritableSignal<MozDrawerPosition>;
|
|
2015
2016
|
readonly extended: _angular_core.WritableSignal<boolean>;
|
|
2016
2017
|
readonly back: _angular_core.WritableSignal<boolean>;
|
|
2018
|
+
readonly panelClass: _angular_core.WritableSignal<string | undefined>;
|
|
2017
2019
|
private animationDuration;
|
|
2018
2020
|
constructor(overlayRef: OverlayRef);
|
|
2019
2021
|
open(): void;
|
|
@@ -2053,6 +2055,7 @@ declare class DrawerContainerComponent {
|
|
|
2053
2055
|
'is-open': boolean;
|
|
2054
2056
|
'mc-drawer--extend': boolean;
|
|
2055
2057
|
}>;
|
|
2058
|
+
readonly dialogClasses: _angular_core.Signal<string>;
|
|
2056
2059
|
readonly ariaModal: _angular_core.Signal<"true" | "false">;
|
|
2057
2060
|
attachComponent<C>(component: Type<C>): ComponentRef<C>;
|
|
2058
2061
|
registerFooter(tpl: TemplateRef<void>): void;
|
|
@@ -2071,6 +2074,7 @@ declare class MozDrawerComponent {
|
|
|
2071
2074
|
readonly back: _angular_core.InputSignal<boolean>;
|
|
2072
2075
|
readonly title: _angular_core.InputSignal<string>;
|
|
2073
2076
|
readonly contentTitle: _angular_core.InputSignal<string | undefined>;
|
|
2077
|
+
readonly panelClass: _angular_core.InputSignal<string | undefined>;
|
|
2074
2078
|
readonly updateOpen: _angular_core.OutputEmitterRef<boolean>;
|
|
2075
2079
|
readonly backEvent: _angular_core.OutputEmitterRef<void>;
|
|
2076
2080
|
readonly footerTpl: _angular_core.Signal<TemplateRef<void> | undefined>;
|
|
@@ -2081,6 +2085,7 @@ declare class MozDrawerComponent {
|
|
|
2081
2085
|
'is-open': boolean;
|
|
2082
2086
|
'mc-drawer--extend': boolean;
|
|
2083
2087
|
}>;
|
|
2088
|
+
readonly dialogClasses: _angular_core.Signal<string>;
|
|
2084
2089
|
readonly ariaModal: _angular_core.Signal<"true" | "false">;
|
|
2085
2090
|
constructor();
|
|
2086
2091
|
close(): void;
|
|
@@ -2089,7 +2094,7 @@ declare class MozDrawerComponent {
|
|
|
2089
2094
|
onEscape(): void;
|
|
2090
2095
|
onBackdropClick(event: MouseEvent): void;
|
|
2091
2096
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MozDrawerComponent, never>;
|
|
2092
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MozDrawerComponent, "moz-drawer", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "extended": { "alias": "extended"; "required": false; "isSignal": true; }; "back": { "alias": "back"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "contentTitle": { "alias": "contentTitle"; "required": false; "isSignal": true; }; }, { "updateOpen": "updateOpen"; "backEvent": "backEvent"; }, ["footerTpl"], ["*"], true, never>;
|
|
2097
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MozDrawerComponent, "moz-drawer", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "extended": { "alias": "extended"; "required": false; "isSignal": true; }; "back": { "alias": "back"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "contentTitle": { "alias": "contentTitle"; "required": false; "isSignal": true; }; "panelClass": { "alias": "panelClass"; "required": false; "isSignal": true; }; }, { "updateOpen": "updateOpen"; "backEvent": "backEvent"; }, ["footerTpl"], ["*"], true, never>;
|
|
2093
2098
|
}
|
|
2094
2099
|
|
|
2095
2100
|
type MozPopoverAppearance = 'default' | 'inverse';
|