@breadstone/mosaik-elements-angular 0.0.212 → 0.0.215
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.
|
@@ -23156,8 +23156,10 @@ const DRAWER_DEFAULT_PROPS = new InjectionToken('MOSAIK_DRAWER_DEFAULT_PROPS');
|
|
|
23156
23156
|
/**
|
|
23157
23157
|
* @public
|
|
23158
23158
|
*
|
|
23159
|
-
* @slot
|
|
23160
|
-
* @slot
|
|
23159
|
+
* @slot header - The header content slot.
|
|
23160
|
+
* @slot - The default content slot.
|
|
23161
|
+
* @slot actions - The actions content slot.
|
|
23162
|
+
* @slot footer - The footer content slot.
|
|
23161
23163
|
*/
|
|
23162
23164
|
let DrawerComponent = class DrawerComponent {
|
|
23163
23165
|
_element;
|
|
@@ -23193,6 +23195,16 @@ let DrawerComponent = class DrawerComponent {
|
|
|
23193
23195
|
this._element.isComposed = value;
|
|
23194
23196
|
});
|
|
23195
23197
|
}
|
|
23198
|
+
get isFullScreen() {
|
|
23199
|
+
// @ts-ignore - temporary fix for the type error
|
|
23200
|
+
return this._element.isFullScreen;
|
|
23201
|
+
}
|
|
23202
|
+
set isFullScreen(value) {
|
|
23203
|
+
this._zone.runOutsideAngular(() => {
|
|
23204
|
+
// @ts-ignore - temporary fix for the type error
|
|
23205
|
+
this._element.isFullScreen = value;
|
|
23206
|
+
});
|
|
23207
|
+
}
|
|
23196
23208
|
get header() {
|
|
23197
23209
|
// @ts-ignore - temporary fix for the type error
|
|
23198
23210
|
return this._element.header;
|
|
@@ -23410,12 +23422,12 @@ let DrawerComponent = class DrawerComponent {
|
|
|
23410
23422
|
}
|
|
23411
23423
|
}
|
|
23412
23424
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: DrawerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
23413
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.6", type: DrawerComponent, isStandalone: true, selector: "mosaik-drawer", inputs: { isComposed: "isComposed", header: "header", subHeader: "subHeader", position: "position", mode: "mode", hasShadow: "hasShadow", themeName: "themeName", animationTarget: "animationTarget", enter: "enter", exit: "exit", width: "width", height: "height", elevation: "elevation", isOpen: "isOpen", hasBackdrop: "hasBackdrop", pressEscapeToClose: "pressEscapeToClose", clickOutsideToClose: "clickOutsideToClose", closeable: "closeable", dir: "dir", lang: "lang" }, outputs: { closed: "closed", opened: "opened", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
23425
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.6", type: DrawerComponent, isStandalone: true, selector: "mosaik-drawer", inputs: { isComposed: "isComposed", isFullScreen: "isFullScreen", header: "header", subHeader: "subHeader", position: "position", mode: "mode", hasShadow: "hasShadow", themeName: "themeName", animationTarget: "animationTarget", enter: "enter", exit: "exit", width: "width", height: "height", elevation: "elevation", isOpen: "isOpen", hasBackdrop: "hasBackdrop", pressEscapeToClose: "pressEscapeToClose", clickOutsideToClose: "clickOutsideToClose", closeable: "closeable", dir: "dir", lang: "lang" }, outputs: { closed: "closed", opened: "opened", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
23414
23426
|
};
|
|
23415
23427
|
DrawerComponent = __decorate$2q([
|
|
23416
23428
|
ProxyCmp({
|
|
23417
23429
|
defineCustomElementFn: () => customElements.define('mosaik-drawer', DrawerElement),
|
|
23418
|
-
inputs: ['isComposed', 'header', 'subHeader', 'position', 'mode', 'hasShadow', 'themeName', 'animationTarget', 'enter', 'exit', 'width', 'height', 'elevation', 'isOpen', 'hasBackdrop', 'pressEscapeToClose', 'clickOutsideToClose', 'closeable', 'dir', 'lang'],
|
|
23430
|
+
inputs: ['isComposed', 'isFullScreen', 'header', 'subHeader', 'position', 'mode', 'hasShadow', 'themeName', 'animationTarget', 'enter', 'exit', 'width', 'height', 'elevation', 'isOpen', 'hasBackdrop', 'pressEscapeToClose', 'clickOutsideToClose', 'closeable', 'dir', 'lang'],
|
|
23419
23431
|
methods: ['open', 'close', 'toggle', 'innerOffsetWidth', 'play', 'onEnterAnimation', 'onExitAnimation', 'assignToSlot', 'getSlotAssignments', 'getSlotAssignmentsOf', 'hasSlotContent', 'hasSlot', 'onSlotChanges', 'adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
|
|
23420
23432
|
}),
|
|
23421
23433
|
__metadata$2q("design:paramtypes", [])
|
|
@@ -23427,11 +23439,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImpor
|
|
|
23427
23439
|
standalone: true,
|
|
23428
23440
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
23429
23441
|
template: '<ng-content></ng-content>',
|
|
23430
|
-
inputs: ['isComposed', 'header', 'subHeader', 'position', 'mode', 'hasShadow', 'themeName', 'animationTarget', 'enter', 'exit', 'width', 'height', 'elevation', 'isOpen', 'hasBackdrop', 'pressEscapeToClose', 'clickOutsideToClose', 'closeable', 'dir', 'lang'],
|
|
23442
|
+
inputs: ['isComposed', 'isFullScreen', 'header', 'subHeader', 'position', 'mode', 'hasShadow', 'themeName', 'animationTarget', 'enter', 'exit', 'width', 'height', 'elevation', 'isOpen', 'hasBackdrop', 'pressEscapeToClose', 'clickOutsideToClose', 'closeable', 'dir', 'lang'],
|
|
23431
23443
|
outputs: ['closed', 'opened', 'connected', 'disconnected', 'changed']
|
|
23432
23444
|
}]
|
|
23433
23445
|
}], ctorParameters: () => [], propDecorators: { isComposed: [{
|
|
23434
23446
|
type: Input
|
|
23447
|
+
}], isFullScreen: [{
|
|
23448
|
+
type: Input
|
|
23435
23449
|
}], header: [{
|
|
23436
23450
|
type: Input
|
|
23437
23451
|
}], subHeader: [{
|
|
@@ -35100,7 +35114,8 @@ const METER_BAR_DEFAULT_PROPS = new InjectionToken('MOSAIK_METER_BAR_DEFAULT_PRO
|
|
|
35100
35114
|
/**
|
|
35101
35115
|
* @public
|
|
35102
35116
|
*
|
|
35103
|
-
*
|
|
35117
|
+
* @slot label - The label slot.
|
|
35118
|
+
* @slot hint - The hint slot.
|
|
35104
35119
|
*/
|
|
35105
35120
|
let MeterBarComponent = class MeterBarComponent {
|
|
35106
35121
|
_element;
|
|
@@ -43022,9 +43037,9 @@ const RESIZE_THUMB_DEFAULT_PROPS = new InjectionToken('MOSAIK_RESIZE_THUMB_DEFAU
|
|
|
43022
43037
|
let ResizeThumbComponent = class ResizeThumbComponent {
|
|
43023
43038
|
_element;
|
|
43024
43039
|
_zone;
|
|
43025
|
-
|
|
43040
|
+
_resizeStart;
|
|
43026
43041
|
_resizing;
|
|
43027
|
-
|
|
43042
|
+
_resizeEnd;
|
|
43028
43043
|
_connected;
|
|
43029
43044
|
_disconnected;
|
|
43030
43045
|
_changed;
|
|
@@ -43032,12 +43047,12 @@ let ResizeThumbComponent = class ResizeThumbComponent {
|
|
|
43032
43047
|
inject(ChangeDetectorRef).detach();
|
|
43033
43048
|
this._element = inject(ElementRef).nativeElement;
|
|
43034
43049
|
this._zone = inject(NgZone);
|
|
43035
|
-
this.
|
|
43036
|
-
this._element.on('
|
|
43050
|
+
this._resizeStart = new EventEmitter();
|
|
43051
|
+
this._element.on('resizeStart', (e) => this.onEmit(this._resizeStart, e));
|
|
43037
43052
|
this._resizing = new EventEmitter();
|
|
43038
43053
|
this._element.on('resizing', (e) => this.onEmit(this._resizing, e));
|
|
43039
|
-
this.
|
|
43040
|
-
this._element.on('
|
|
43054
|
+
this._resizeEnd = new EventEmitter();
|
|
43055
|
+
this._element.on('resizeEnd', (e) => this.onEmit(this._resizeEnd, e));
|
|
43041
43056
|
this._connected = new EventEmitter();
|
|
43042
43057
|
this._element.on('connected', (e) => this.onEmit(this._connected, e));
|
|
43043
43058
|
this._disconnected = new EventEmitter();
|
|
@@ -43056,26 +43071,6 @@ let ResizeThumbComponent = class ResizeThumbComponent {
|
|
|
43056
43071
|
this._element.isResizing = value;
|
|
43057
43072
|
});
|
|
43058
43073
|
}
|
|
43059
|
-
get resizeStart() {
|
|
43060
|
-
// @ts-ignore - temporary fix for the type error
|
|
43061
|
-
return this._element.resizeStart;
|
|
43062
|
-
}
|
|
43063
|
-
set resizeStart(value) {
|
|
43064
|
-
this._zone.runOutsideAngular(() => {
|
|
43065
|
-
// @ts-ignore - temporary fix for the type error
|
|
43066
|
-
this._element.resizeStart = value;
|
|
43067
|
-
});
|
|
43068
|
-
}
|
|
43069
|
-
get resizeEnd() {
|
|
43070
|
-
// @ts-ignore - temporary fix for the type error
|
|
43071
|
-
return this._element.resizeEnd;
|
|
43072
|
-
}
|
|
43073
|
-
set resizeEnd(value) {
|
|
43074
|
-
this._zone.runOutsideAngular(() => {
|
|
43075
|
-
// @ts-ignore - temporary fix for the type error
|
|
43076
|
-
this._element.resizeEnd = value;
|
|
43077
|
-
});
|
|
43078
|
-
}
|
|
43079
43074
|
get direction() {
|
|
43080
43075
|
// @ts-ignore - temporary fix for the type error
|
|
43081
43076
|
return this._element.direction;
|
|
@@ -43206,14 +43201,14 @@ let ResizeThumbComponent = class ResizeThumbComponent {
|
|
|
43206
43201
|
this._element.lang = value;
|
|
43207
43202
|
});
|
|
43208
43203
|
}
|
|
43209
|
-
get
|
|
43210
|
-
return this.
|
|
43204
|
+
get resizeStart() {
|
|
43205
|
+
return this._resizeStart;
|
|
43211
43206
|
}
|
|
43212
43207
|
get resizing() {
|
|
43213
43208
|
return this._resizing;
|
|
43214
43209
|
}
|
|
43215
|
-
get
|
|
43216
|
-
return this.
|
|
43210
|
+
get resizeEnd() {
|
|
43211
|
+
return this._resizeEnd;
|
|
43217
43212
|
}
|
|
43218
43213
|
get connected() {
|
|
43219
43214
|
return this._connected;
|
|
@@ -43236,12 +43231,12 @@ let ResizeThumbComponent = class ResizeThumbComponent {
|
|
|
43236
43231
|
}
|
|
43237
43232
|
}
|
|
43238
43233
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: ResizeThumbComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
43239
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.6", type: ResizeThumbComponent, isStandalone: true, selector: "mosaik-resize-thumb", inputs: { isResizing: "isResizing",
|
|
43234
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.6", type: ResizeThumbComponent, isStandalone: true, selector: "mosaik-resize-thumb", inputs: { isResizing: "isResizing", direction: "direction", allowedDirections: "allowedDirections", minWidth: "minWidth", minHeight: "minHeight", maxWidth: "maxWidth", maxHeight: "maxHeight", autoApply: "autoApply", themeName: "themeName", disabled: "disabled", for: "for", control: "control", dir: "dir", lang: "lang" }, outputs: { resizeStart: "resizeStart", resizing: "resizing", resizeEnd: "resizeEnd", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
43240
43235
|
};
|
|
43241
43236
|
ResizeThumbComponent = __decorate$15([
|
|
43242
43237
|
ProxyCmp({
|
|
43243
43238
|
defineCustomElementFn: () => customElements.define('mosaik-resize-thumb', ResizeThumbElement),
|
|
43244
|
-
inputs: ['isResizing', '
|
|
43239
|
+
inputs: ['isResizing', 'direction', 'allowedDirections', 'minWidth', 'minHeight', 'maxWidth', 'maxHeight', 'autoApply', 'themeName', 'disabled', 'for', 'control', 'dir', 'lang'],
|
|
43245
43240
|
methods: ['attach', 'detach', 'adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
|
|
43246
43241
|
}),
|
|
43247
43242
|
__metadata$15("design:paramtypes", [])
|
|
@@ -43253,15 +43248,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImpor
|
|
|
43253
43248
|
standalone: true,
|
|
43254
43249
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
43255
43250
|
template: '<ng-content></ng-content>',
|
|
43256
|
-
inputs: ['isResizing', '
|
|
43257
|
-
outputs: ['
|
|
43251
|
+
inputs: ['isResizing', 'direction', 'allowedDirections', 'minWidth', 'minHeight', 'maxWidth', 'maxHeight', 'autoApply', 'themeName', 'disabled', 'for', 'control', 'dir', 'lang'],
|
|
43252
|
+
outputs: ['resizeStart', 'resizing', 'resizeEnd', 'connected', 'disconnected', 'changed']
|
|
43258
43253
|
}]
|
|
43259
43254
|
}], ctorParameters: () => [], propDecorators: { isResizing: [{
|
|
43260
43255
|
type: Input
|
|
43261
|
-
}], resizeStart: [{
|
|
43262
|
-
type: Input
|
|
43263
|
-
}], resizeEnd: [{
|
|
43264
|
-
type: Input
|
|
43265
43256
|
}], direction: [{
|
|
43266
43257
|
type: Input
|
|
43267
43258
|
}], allowedDirections: [{
|
|
@@ -43288,11 +43279,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImpor
|
|
|
43288
43279
|
type: Input
|
|
43289
43280
|
}], lang: [{
|
|
43290
43281
|
type: Input
|
|
43291
|
-
}],
|
|
43282
|
+
}], resizeStart: [{
|
|
43292
43283
|
type: Output
|
|
43293
43284
|
}], resizing: [{
|
|
43294
43285
|
type: Output
|
|
43295
|
-
}],
|
|
43286
|
+
}], resizeEnd: [{
|
|
43296
43287
|
type: Output
|
|
43297
43288
|
}], connected: [{
|
|
43298
43289
|
type: Output
|
|
@@ -61326,7 +61317,7 @@ class ToastPortalComponent extends PortalComponent {
|
|
|
61326
61317
|
return this._config;
|
|
61327
61318
|
}
|
|
61328
61319
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: ToastPortalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
61329
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.6", type: ToastPortalComponent, isStandalone: true, selector: "mosaik-toast-portal", host: { classAttribute: "toast-portal" }, viewQueries: [{ propertyName: "_portal", first: true, predicate: CdkPortalOutlet, descendants: true, static: true }, { propertyName: "_component", first: true, predicate: ToastComponent, descendants: true, static: true }], exportAs: ["mosaikToastPortal"], usesInheritance: true, ngImport: i0, template: "<mosaik-toast>\n <ng-template cdkPortalOutlet></ng-template>\n</mosaik-toast>", dependencies: [{ kind: "directive", type: CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }, { kind: "component", type: ToastComponent, selector: "mosaik-toast", inputs: ["intervalTick", "header", "content", "timeout", "position", "showProgress", "themeName", "animationTarget", "enter", "exit", "variant", "formatter", "isBusy", "isOpen", "hasBackdrop", "pressEscapeToClose", "clickOutsideToClose", "closeable", "dir", "lang"], outputs: ["closed", "opened", "connected", "disconnected", "changed"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
61320
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.6", type: ToastPortalComponent, isStandalone: true, selector: "mosaik-toast-portal", host: { classAttribute: "toast-portal" }, viewQueries: [{ propertyName: "_portal", first: true, predicate: CdkPortalOutlet, descendants: true, static: true }, { propertyName: "_component", first: true, predicate: ToastComponent, descendants: true, static: true }], exportAs: ["mosaikToastPortal"], usesInheritance: true, ngImport: i0, template: "<mosaik-toast [variant]=\"this.config?.variant ?? 'default'\"\n [closeable]=\"this.config?.closeable ?? false\"\n [enter]=\"this.config?.enter ?? null\"\n [exit]=\"this.config?.exit ?? null\">\n <ng-template cdkPortalOutlet></ng-template>\n</mosaik-toast>", dependencies: [{ kind: "directive", type: CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }, { kind: "component", type: ToastComponent, selector: "mosaik-toast", inputs: ["intervalTick", "header", "content", "timeout", "position", "showProgress", "themeName", "animationTarget", "enter", "exit", "variant", "formatter", "isBusy", "isOpen", "hasBackdrop", "pressEscapeToClose", "clickOutsideToClose", "closeable", "dir", "lang"], outputs: ["closed", "opened", "connected", "disconnected", "changed"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
61330
61321
|
}
|
|
61331
61322
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: ToastPortalComponent, decorators: [{
|
|
61332
61323
|
type: Component,
|
|
@@ -61335,7 +61326,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImpor
|
|
|
61335
61326
|
}, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, imports: [
|
|
61336
61327
|
CdkPortalOutlet,
|
|
61337
61328
|
ToastComponent
|
|
61338
|
-
], template: "<mosaik-toast>\n <ng-template cdkPortalOutlet></ng-template>\n</mosaik-toast>" }]
|
|
61329
|
+
], template: "<mosaik-toast [variant]=\"this.config?.variant ?? 'default'\"\n [closeable]=\"this.config?.closeable ?? false\"\n [enter]=\"this.config?.enter ?? null\"\n [exit]=\"this.config?.exit ?? null\">\n <ng-template cdkPortalOutlet></ng-template>\n</mosaik-toast>" }]
|
|
61339
61330
|
}], ctorParameters: () => [], propDecorators: { _portal: [{
|
|
61340
61331
|
type: ViewChild,
|
|
61341
61332
|
args: [CdkPortalOutlet, { static: true }]
|
|
@@ -62389,7 +62380,7 @@ class DialogBehavior {
|
|
|
62389
62380
|
// #endregion
|
|
62390
62381
|
// #region Ctor
|
|
62391
62382
|
/**
|
|
62392
|
-
* Constructs a new instance of the `
|
|
62383
|
+
* Constructs a new instance of the `DialogBehavior` class.
|
|
62393
62384
|
*
|
|
62394
62385
|
* @protected
|
|
62395
62386
|
*/
|
|
@@ -62412,8 +62403,6 @@ class DialogBehavior {
|
|
|
62412
62403
|
}
|
|
62413
62404
|
return this._ref;
|
|
62414
62405
|
}
|
|
62415
|
-
// #endregion
|
|
62416
|
-
// #region Properties
|
|
62417
62406
|
/**
|
|
62418
62407
|
* Returns the `config` property.
|
|
62419
62408
|
*
|
|
@@ -62581,47 +62570,60 @@ function each(self, fn) {
|
|
|
62581
62570
|
|
|
62582
62571
|
// #region Imports
|
|
62583
62572
|
/**
|
|
62584
|
-
* Injection token for providing dialog breakpoint
|
|
62573
|
+
* Injection token for providing dialog breakpoint behavior configuration.
|
|
62585
62574
|
*
|
|
62586
62575
|
* @public
|
|
62587
62576
|
*/
|
|
62588
|
-
const
|
|
62577
|
+
const DIALOG_BREAKPOINT_BEHAVIOR_CONFIG = new InjectionToken('DIALOG_BREAKPOINT_OBSERVER_BEHAVIOR_CONFIG');
|
|
62589
62578
|
/**
|
|
62590
62579
|
* Behavior that adjusts dialog size based on viewport breakpoints.
|
|
62591
62580
|
*
|
|
62592
62581
|
* @public
|
|
62593
62582
|
*/
|
|
62594
62583
|
// @Injectable()
|
|
62595
|
-
class
|
|
62584
|
+
class DialogBreakpointBehavior extends DialogBehavior {
|
|
62596
62585
|
// #region Fields
|
|
62597
62586
|
_breakpointObserver;
|
|
62598
62587
|
_breakpointRegistry;
|
|
62599
62588
|
_config;
|
|
62589
|
+
_mediaQueryToAliasMap;
|
|
62600
62590
|
_subscription;
|
|
62601
62591
|
// #endregion
|
|
62602
62592
|
// #region Ctor
|
|
62603
62593
|
/**
|
|
62604
|
-
* Constructs a new instance of the `
|
|
62594
|
+
* Constructs a new instance of the `DialogBreakpointBehavior` class.
|
|
62605
62595
|
*
|
|
62606
62596
|
* @public
|
|
62607
62597
|
*/
|
|
62608
|
-
constructor(config = inject(
|
|
62598
|
+
constructor(config = inject(DIALOG_BREAKPOINT_BEHAVIOR_CONFIG, { optional: true })) {
|
|
62609
62599
|
super();
|
|
62610
62600
|
this._breakpointObserver = inject(BreakpointObserver);
|
|
62611
62601
|
this._breakpointRegistry = inject(BreakpointRegistry);
|
|
62612
62602
|
this._config = config;
|
|
62603
|
+
this._mediaQueryToAliasMap = new Map();
|
|
62613
62604
|
this._subscription = Subscription.EMPTY;
|
|
62614
62605
|
}
|
|
62615
62606
|
// #endregion
|
|
62616
62607
|
// #region Methods
|
|
62617
62608
|
/**
|
|
62609
|
+
* Attaches a specific dialog to the behavior.
|
|
62610
|
+
*
|
|
62618
62611
|
* @public
|
|
62612
|
+
* @override
|
|
62613
|
+
* @param dialogRef - The dialog reference to attach to the behavior.
|
|
62614
|
+
* @param portal - The component portal for the dialog content (unused in this behavior).
|
|
62619
62615
|
*/
|
|
62620
62616
|
attach(dialogRef, _portal) {
|
|
62621
62617
|
if (this._config?.breakpoints.length) {
|
|
62618
|
+
this._mediaQueryToAliasMap.clear();
|
|
62622
62619
|
const breakpoints = this._config.breakpoints
|
|
62623
|
-
.map((x) =>
|
|
62624
|
-
.
|
|
62620
|
+
.map((x) => {
|
|
62621
|
+
const breakpoint = this._breakpointRegistry.findByAlias(x.breakpoint);
|
|
62622
|
+
if (breakpoint?.mediaQuery) {
|
|
62623
|
+
this._mediaQueryToAliasMap.set(breakpoint.mediaQuery, x.breakpoint);
|
|
62624
|
+
}
|
|
62625
|
+
return breakpoint?.mediaQuery;
|
|
62626
|
+
})
|
|
62625
62627
|
.filter((x) => x !== undefined);
|
|
62626
62628
|
this._subscription = this._breakpointObserver.observe(breakpoints)
|
|
62627
62629
|
.subscribe((x) => this.onBreakpoint(x, dialogRef, this.config ?? undefined));
|
|
@@ -62635,21 +62637,29 @@ class DialogBreakpointObserverBehavior extends DialogBehavior {
|
|
|
62635
62637
|
* @override
|
|
62636
62638
|
* @param ref - Optional dialog reference to detach (unused in this behavior).
|
|
62637
62639
|
*/
|
|
62638
|
-
detach(
|
|
62640
|
+
detach(_ref) {
|
|
62639
62641
|
this._subscription.unsubscribe();
|
|
62640
62642
|
}
|
|
62641
62643
|
/**
|
|
62644
|
+
* Handles breakpoint state changes and updates dialog size accordingly.
|
|
62645
|
+
*
|
|
62642
62646
|
* @private
|
|
62647
|
+
* @param state - The current breakpoint state from the observer.
|
|
62648
|
+
* @param dialogRef - Reference to the dialog being managed.
|
|
62649
|
+
* @param config - Optional dialog configuration with default size values.
|
|
62643
62650
|
*/
|
|
62644
|
-
onBreakpoint(state, dialogRef,
|
|
62645
|
-
if (!
|
|
62651
|
+
onBreakpoint(state, dialogRef, config) {
|
|
62652
|
+
if (!config?.isFullScreen) {
|
|
62646
62653
|
if (state.matches) {
|
|
62647
|
-
Object.entries(state.breakpoints).forEach(([
|
|
62654
|
+
Object.entries(state.breakpoints).forEach(([mediaQuery, match]) => {
|
|
62648
62655
|
if (match) {
|
|
62649
|
-
const
|
|
62656
|
+
const alias = this._mediaQueryToAliasMap.get(mediaQuery);
|
|
62657
|
+
const breakpointConfig = alias
|
|
62658
|
+
? this._config?.breakpoints.find((x) => x.breakpoint === alias) ?? null
|
|
62659
|
+
: null;
|
|
62650
62660
|
dialogRef.updateSize({
|
|
62651
|
-
width:
|
|
62652
|
-
height:
|
|
62661
|
+
width: breakpointConfig?.size.width,
|
|
62662
|
+
height: breakpointConfig?.size.height
|
|
62653
62663
|
});
|
|
62654
62664
|
dialogRef.component.isFullScreen = true;
|
|
62655
62665
|
}
|
|
@@ -62657,8 +62667,8 @@ class DialogBreakpointObserverBehavior extends DialogBehavior {
|
|
|
62657
62667
|
}
|
|
62658
62668
|
else {
|
|
62659
62669
|
dialogRef.updateSize({
|
|
62660
|
-
width:
|
|
62661
|
-
height:
|
|
62670
|
+
width: config?.size?.width,
|
|
62671
|
+
height: config?.size?.height
|
|
62662
62672
|
});
|
|
62663
62673
|
dialogRef.component.isFullScreen = false;
|
|
62664
62674
|
}
|
|
@@ -62909,13 +62919,13 @@ function provideDialogs(...withBehaviors) {
|
|
|
62909
62919
|
function withDialogBreakpointBehavior(config) {
|
|
62910
62920
|
return {
|
|
62911
62921
|
id: 'dialogBreakpointBehavior',
|
|
62912
|
-
behaviorType:
|
|
62922
|
+
behaviorType: DialogBreakpointBehavior,
|
|
62913
62923
|
provide: () => [{
|
|
62914
|
-
provide:
|
|
62924
|
+
provide: DIALOG_BREAKPOINT_BEHAVIOR_CONFIG,
|
|
62915
62925
|
useValue: config
|
|
62916
62926
|
}, {
|
|
62917
|
-
provide:
|
|
62918
|
-
useClass:
|
|
62927
|
+
provide: DialogBreakpointBehavior,
|
|
62928
|
+
useClass: DialogBreakpointBehavior
|
|
62919
62929
|
}]
|
|
62920
62930
|
};
|
|
62921
62931
|
}
|
|
@@ -63238,7 +63248,7 @@ class DrawerPortalComponent extends PortalComponent {
|
|
|
63238
63248
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: DrawerPortalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
63239
63249
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.0.6", type: DrawerPortalComponent, isStandalone: true, selector: "mosaik-drawer-portal", host: { classAttribute: "drawer-portal" }, providers: [
|
|
63240
63250
|
provideDrawerSlots()
|
|
63241
|
-
], viewQueries: [{ propertyName: "_portal", first: true, predicate: CdkPortalOutlet, descendants: true, static: true }, { propertyName: "_component", first: true, predicate: DrawerComponent, descendants: true, static: true }], exportAs: ["mosaikDrawerPortal"], usesInheritance: true, ngImport: i0, template: "<mosaik-drawer [closeable]=\"(this.drawerConfig?.closeable | of | async) ?? false\"\n [enter]=\"this.drawerConfig?.enter ?? null\"\n [exit]=\"this.drawerConfig?.exit ?? null\"\n [width]=\"this.drawerConfig?.size?.width ?? 'auto'\"\n [height]=\"this.drawerConfig?.size?.height ?? 'auto'\">\n @if (this.headerTemplate; as template) {\n <ng-container [ngTemplateOutlet]=\"template\" />\n } @else if ((this.drawerConfig?.header | of | async) || (this.drawerConfig?.subheader | of | async) || this.drawerConfig?.closeable) {\n <mosaik-drawer-header>\n <mosaik-drawer-header-text [text]=\"(this.drawerConfig?.header | of | async) ?? ''\" />\n <mosaik-drawer-header-sub-text [text]=\"(this.drawerConfig?.subheader | of | async) ?? ''\" />\n @if (this.drawerConfig?.closeable) {\n <mosaik-dismiss slot=\"suffix\"\n (click)=\"this.drawer.invoke('close')\" />\n }\n </mosaik-drawer-header>\n }\n <mosaik-drawer-content cdkScrollable>\n @if (this.contentTemplate; as template) {\n <ng-container [ngTemplateOutlet]=\"template\" />\n } @else { }\n <ng-template cdkPortalOutlet />\n </mosaik-drawer-content>\n @if (this.actionsTemplate; as template) {\n <mosaik-drawer-actions>\n <ng-container [ngTemplateOutlet]=\"template\" />\n </mosaik-drawer-actions>\n } @else if (this.drawerConfig?.actions) {\n <mosaik-drawer-actions>\n @for (action of this.drawerConfig?.actions; track action.label) {\n @if ((action?.visible | of | async) ?? true) {\n <mosaik-button [appearance]=\"action?.kind === 'primary' ? 'solid' : 'plain'\"\n [label]=\"(action?.label | of | async) ?? ''\"\n [disabled]=\"(action?.disabled | of | async) ?? false\"\n [variant]=\"'primary'\"\n (click)=\"action?.handler()\" />\n }\n }\n </mosaik-drawer-actions>\n }\n @if (this.footerTemplate; as template) {\n <mosaik-drawer-footer>\n <ng-container [ngTemplateOutlet]=\"template\" />\n </mosaik-drawer-footer>\n }\n</mosaik-drawer>", dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: CdkScrollable, selector: "[cdk-scrollable], [cdkScrollable]" }, { kind: "directive", type: CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }, { kind: "component", type: DrawerComponent, selector: "mosaik-drawer", inputs: ["isComposed", "header", "subHeader", "position", "mode", "hasShadow", "themeName", "animationTarget", "enter", "exit", "width", "height", "elevation", "isOpen", "hasBackdrop", "pressEscapeToClose", "clickOutsideToClose", "closeable", "dir", "lang"], outputs: ["closed", "opened", "connected", "disconnected", "changed"] }, { kind: "component", type: DrawerHeaderComponent, selector: "mosaik-drawer-header", inputs: ["text", "subText", "themeName", "formatter", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DrawerHeaderTextComponent, selector: "mosaik-drawer-header-text", inputs: ["text", "themeName", "formatter", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DrawerHeaderSubTextComponent, selector: "mosaik-drawer-header-sub-text", inputs: ["text", "themeName", "formatter", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DrawerContentComponent, selector: "mosaik-drawer-content", inputs: ["opened", "themeName", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DrawerActionsComponent, selector: "mosaik-drawer-actions", inputs: ["themeName", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DismissComponent, selector: "mosaik-dismiss", inputs: ["themeName", "variant", "appearance", "size", "disabled", "isFocused", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: ButtonComponent, selector: "mosaik-button", inputs: ["download", "href", "rel", "target", "themeName", "reverse", "orientation", "horizontalContentAlignment", "verticalContentAlignment", "fit", "isBusy", "label", "icon", "iconPosition", "iconSize", "type", "variant", "appearance", "size", "value", "disabled", "isFocused", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DrawerFooterComponent, selector: "mosaik-drawer-footer", inputs: ["themeName", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "pipe", type: OfPipe, name: "of" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
63251
|
+
], viewQueries: [{ propertyName: "_portal", first: true, predicate: CdkPortalOutlet, descendants: true, static: true }, { propertyName: "_component", first: true, predicate: DrawerComponent, descendants: true, static: true }], exportAs: ["mosaikDrawerPortal"], usesInheritance: true, ngImport: i0, template: "<mosaik-drawer [closeable]=\"(this.drawerConfig?.closeable | of | async) ?? false\"\n [enter]=\"this.drawerConfig?.enter ?? null\"\n [exit]=\"this.drawerConfig?.exit ?? null\"\n [width]=\"this.drawerConfig?.size?.width ?? 'auto'\"\n [height]=\"this.drawerConfig?.size?.height ?? 'auto'\">\n @if (this.headerTemplate; as template) {\n <ng-container [ngTemplateOutlet]=\"template\" />\n } @else if ((this.drawerConfig?.header | of | async) || (this.drawerConfig?.subheader | of | async) || this.drawerConfig?.closeable) {\n <mosaik-drawer-header>\n <mosaik-drawer-header-text [text]=\"(this.drawerConfig?.header | of | async) ?? ''\" />\n <mosaik-drawer-header-sub-text [text]=\"(this.drawerConfig?.subheader | of | async) ?? ''\" />\n @if (this.drawerConfig?.closeable) {\n <mosaik-dismiss slot=\"suffix\"\n (click)=\"this.drawer.invoke('close')\" />\n }\n </mosaik-drawer-header>\n }\n <mosaik-drawer-content cdkScrollable>\n @if (this.contentTemplate; as template) {\n <ng-container [ngTemplateOutlet]=\"template\" />\n } @else { }\n <ng-template cdkPortalOutlet />\n </mosaik-drawer-content>\n @if (this.actionsTemplate; as template) {\n <mosaik-drawer-actions>\n <ng-container [ngTemplateOutlet]=\"template\" />\n </mosaik-drawer-actions>\n } @else if (this.drawerConfig?.actions) {\n <mosaik-drawer-actions>\n @for (action of this.drawerConfig?.actions; track action.label) {\n @if ((action?.visible | of | async) ?? true) {\n <mosaik-button [appearance]=\"action?.kind === 'primary' ? 'solid' : 'plain'\"\n [label]=\"(action?.label | of | async) ?? ''\"\n [disabled]=\"(action?.disabled | of | async) ?? false\"\n [variant]=\"'primary'\"\n (click)=\"action?.handler()\" />\n }\n }\n </mosaik-drawer-actions>\n }\n @if (this.footerTemplate; as template) {\n <mosaik-drawer-footer>\n <ng-container [ngTemplateOutlet]=\"template\" />\n </mosaik-drawer-footer>\n }\n</mosaik-drawer>", dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: CdkScrollable, selector: "[cdk-scrollable], [cdkScrollable]" }, { kind: "directive", type: CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }, { kind: "component", type: DrawerComponent, selector: "mosaik-drawer", inputs: ["isComposed", "isFullScreen", "header", "subHeader", "position", "mode", "hasShadow", "themeName", "animationTarget", "enter", "exit", "width", "height", "elevation", "isOpen", "hasBackdrop", "pressEscapeToClose", "clickOutsideToClose", "closeable", "dir", "lang"], outputs: ["closed", "opened", "connected", "disconnected", "changed"] }, { kind: "component", type: DrawerHeaderComponent, selector: "mosaik-drawer-header", inputs: ["text", "subText", "themeName", "formatter", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DrawerHeaderTextComponent, selector: "mosaik-drawer-header-text", inputs: ["text", "themeName", "formatter", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DrawerHeaderSubTextComponent, selector: "mosaik-drawer-header-sub-text", inputs: ["text", "themeName", "formatter", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DrawerContentComponent, selector: "mosaik-drawer-content", inputs: ["opened", "themeName", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DrawerActionsComponent, selector: "mosaik-drawer-actions", inputs: ["themeName", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DismissComponent, selector: "mosaik-dismiss", inputs: ["themeName", "variant", "appearance", "size", "disabled", "isFocused", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: ButtonComponent, selector: "mosaik-button", inputs: ["download", "href", "rel", "target", "themeName", "reverse", "orientation", "horizontalContentAlignment", "verticalContentAlignment", "fit", "isBusy", "label", "icon", "iconPosition", "iconSize", "type", "variant", "appearance", "size", "value", "disabled", "isFocused", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DrawerFooterComponent, selector: "mosaik-drawer-footer", inputs: ["themeName", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "pipe", type: OfPipe, name: "of" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
63242
63252
|
}
|
|
63243
63253
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: DrawerPortalComponent, decorators: [{
|
|
63244
63254
|
type: Component,
|
|
@@ -63388,6 +63398,7 @@ class DrawerRef extends PortalRef {
|
|
|
63388
63398
|
height: size.height
|
|
63389
63399
|
});
|
|
63390
63400
|
this.overlayRef.updatePosition();
|
|
63401
|
+
// TODO: here is the resizing of the drawer element itself missing!
|
|
63391
63402
|
this._sizeChangedSubject.next(size);
|
|
63392
63403
|
return this;
|
|
63393
63404
|
}
|
|
@@ -63677,6 +63688,112 @@ class DrawerBehavior {
|
|
|
63677
63688
|
}
|
|
63678
63689
|
}
|
|
63679
63690
|
|
|
63691
|
+
// #region Imports
|
|
63692
|
+
/**
|
|
63693
|
+
* Injection token for providing drawer breakpoint behavior configuration.
|
|
63694
|
+
*
|
|
63695
|
+
* @public
|
|
63696
|
+
*/
|
|
63697
|
+
const DRAWER_BREAKPOINT_BEHAVIOR_CONFIG = new InjectionToken('DRAWER_BREAKPOINT_OBSERVER_BEHAVIOR_CONFIG');
|
|
63698
|
+
/**
|
|
63699
|
+
* Behavior that adjusts drawer size based on viewport breakpoints.
|
|
63700
|
+
*
|
|
63701
|
+
* @public
|
|
63702
|
+
*/
|
|
63703
|
+
// @Injectable()
|
|
63704
|
+
class DrawerBreakpointBehavior extends DrawerBehavior {
|
|
63705
|
+
// #region Fields
|
|
63706
|
+
_breakpointObserver;
|
|
63707
|
+
_breakpointRegistry;
|
|
63708
|
+
_config;
|
|
63709
|
+
_mediaQueryToAliasMap;
|
|
63710
|
+
_subscription;
|
|
63711
|
+
// #endregion
|
|
63712
|
+
// #region Ctor
|
|
63713
|
+
/**
|
|
63714
|
+
* Constructs a new instance of the `DrawerBreakpointBehavior` class.
|
|
63715
|
+
*
|
|
63716
|
+
* @public
|
|
63717
|
+
*/
|
|
63718
|
+
constructor(config = inject(DRAWER_BREAKPOINT_BEHAVIOR_CONFIG, { optional: true })) {
|
|
63719
|
+
super();
|
|
63720
|
+
this._breakpointObserver = inject(BreakpointObserver);
|
|
63721
|
+
this._breakpointRegistry = inject(BreakpointRegistry);
|
|
63722
|
+
this._config = config;
|
|
63723
|
+
this._mediaQueryToAliasMap = new Map();
|
|
63724
|
+
this._subscription = Subscription.EMPTY;
|
|
63725
|
+
}
|
|
63726
|
+
// #endregion
|
|
63727
|
+
// #region Methods
|
|
63728
|
+
/**
|
|
63729
|
+
* Attaches a specific drawer to the behavior.
|
|
63730
|
+
*
|
|
63731
|
+
* @public
|
|
63732
|
+
* @Override
|
|
63733
|
+
* @param drawerRef - The drawer reference to attach to the behavior.
|
|
63734
|
+
* @param portal - The component portal for the drawer content (unused in this behavior).
|
|
63735
|
+
*/
|
|
63736
|
+
attach(drawerRef, _portal) {
|
|
63737
|
+
if (this._config?.breakpoints.length) {
|
|
63738
|
+
this._mediaQueryToAliasMap.clear();
|
|
63739
|
+
const breakpoints = this._config.breakpoints
|
|
63740
|
+
.map((x) => {
|
|
63741
|
+
const breakpoint = this._breakpointRegistry.findByAlias(x.breakpoint);
|
|
63742
|
+
if (breakpoint?.mediaQuery) {
|
|
63743
|
+
this._mediaQueryToAliasMap.set(breakpoint.mediaQuery, x.breakpoint);
|
|
63744
|
+
}
|
|
63745
|
+
return breakpoint?.mediaQuery;
|
|
63746
|
+
})
|
|
63747
|
+
.filter((x) => x !== undefined);
|
|
63748
|
+
this._subscription = this._breakpointObserver.observe(breakpoints)
|
|
63749
|
+
.subscribe((x) => this.onBreakpoint(x, drawerRef, this.config ?? undefined));
|
|
63750
|
+
}
|
|
63751
|
+
}
|
|
63752
|
+
/**
|
|
63753
|
+
* Detaches a specific drawer from the behavior.
|
|
63754
|
+
* If ref is not provided, detaches the most recently attached drawer.
|
|
63755
|
+
*
|
|
63756
|
+
* @public
|
|
63757
|
+
* @override
|
|
63758
|
+
* @param ref - Optional drawer reference to detach (unused in this behavior).
|
|
63759
|
+
*/
|
|
63760
|
+
detach(_ref) {
|
|
63761
|
+
this._subscription.unsubscribe();
|
|
63762
|
+
}
|
|
63763
|
+
/**
|
|
63764
|
+
* Handles breakpoint state changes and updates drawer size accordingly.
|
|
63765
|
+
*
|
|
63766
|
+
* @private
|
|
63767
|
+
* @param state - The current breakpoint state from the observer.
|
|
63768
|
+
* @param drawerRef - Reference to the drawer being managed.
|
|
63769
|
+
* @param config - Optional drawer configuration with default size values.
|
|
63770
|
+
*/
|
|
63771
|
+
onBreakpoint(state, drawerRef, config) {
|
|
63772
|
+
if (state.matches) {
|
|
63773
|
+
Object.entries(state.breakpoints).forEach(([mediaQuery, match]) => {
|
|
63774
|
+
if (match) {
|
|
63775
|
+
const alias = this._mediaQueryToAliasMap.get(mediaQuery);
|
|
63776
|
+
const breakpointConfig = alias
|
|
63777
|
+
? this._config?.breakpoints.find((x) => x.breakpoint === alias) ?? null
|
|
63778
|
+
: null;
|
|
63779
|
+
drawerRef.updateSize({
|
|
63780
|
+
width: breakpointConfig?.size.width,
|
|
63781
|
+
height: breakpointConfig?.size.height
|
|
63782
|
+
});
|
|
63783
|
+
drawerRef.component.isFullScreen = true;
|
|
63784
|
+
}
|
|
63785
|
+
});
|
|
63786
|
+
}
|
|
63787
|
+
else {
|
|
63788
|
+
drawerRef.updateSize({
|
|
63789
|
+
width: config?.size?.width,
|
|
63790
|
+
height: config?.size?.height
|
|
63791
|
+
});
|
|
63792
|
+
drawerRef.component.isFullScreen = false;
|
|
63793
|
+
}
|
|
63794
|
+
}
|
|
63795
|
+
}
|
|
63796
|
+
|
|
63680
63797
|
// #region Imports
|
|
63681
63798
|
// #endregion
|
|
63682
63799
|
/**
|
|
@@ -64015,6 +64132,22 @@ function provideDrawers(...withBehaviors) {
|
|
|
64015
64132
|
useClass: DrawerService
|
|
64016
64133
|
}, ...withBehaviors.flatMap((x) => x.provide())]);
|
|
64017
64134
|
}
|
|
64135
|
+
/**
|
|
64136
|
+
* @public
|
|
64137
|
+
*/
|
|
64138
|
+
function withDrawerBreakpointBehavior(config) {
|
|
64139
|
+
return {
|
|
64140
|
+
id: 'drawerBreakpointBehavior',
|
|
64141
|
+
behaviorType: DrawerBreakpointBehavior,
|
|
64142
|
+
provide: () => [{
|
|
64143
|
+
provide: DRAWER_BREAKPOINT_BEHAVIOR_CONFIG,
|
|
64144
|
+
useValue: config
|
|
64145
|
+
}, {
|
|
64146
|
+
provide: DrawerBreakpointBehavior,
|
|
64147
|
+
useClass: DrawerBreakpointBehavior
|
|
64148
|
+
}]
|
|
64149
|
+
};
|
|
64150
|
+
}
|
|
64018
64151
|
/**
|
|
64019
64152
|
* @public
|
|
64020
64153
|
*/
|
|
@@ -68798,5 +68931,5 @@ const CONTROLLER_HOSTS = new WeakMap();
|
|
|
68798
68931
|
* Generated bundle index. Do not edit.
|
|
68799
68932
|
*/
|
|
68800
68933
|
|
|
68801
|
-
export { ABSOLUTE_DEFAULT_PROPS, ABSOLUTE_ITEM_DEFAULT_PROPS, ANCHOR_DEFAULT_PROPS, APP_DEFAULT_PROPS, APP_HEADER_DEFAULT_PROPS, ATTACHMENT_CHAT_TOOL_DEFAULT_PROPS, AUDIO_DEFAULT_PROPS, AUTO_COMPLETE_BOX_DEFAULT_PROPS, AVATAR_DEFAULT_PROPS, AVATAR_GROUP_DEFAULT_PROPS, AbsoluteComponent, AbsoluteItemComponent, AnchorComponent, AnimateDirective, AnimationRegistry, AppComponent, AppHeaderComponent, AttachmentChatToolComponent, AudioComponent, AutoCompleteBoxComponent, AvatarComponent, AvatarGroupComponent, BACKDROP_DEFAULT_PROPS, BADGE_DEFAULT_PROPS, BANNER_DEFAULT_PROPS, BANNER_GROUP_DEFAULT_PROPS, BANNER_HEADER_DEFAULT_PROPS, BANNER_SUB_HEADER_DEFAULT_PROPS, BOX_DEFAULT_PROPS, BREADCRUMB_DEFAULT_PROPS, BREADCRUMB_ITEM_DEFAULT_PROPS, BUSY_STATE_DEFAULT_PROPS, BUTTON_DEFAULT_PROPS, BUTTON_GROUP_DEFAULT_PROPS, BackdropComponent, BadgeComponent, BannerComponent, BannerGroupComponent, BannerHeaderComponent, BannerSubHeaderComponent, BoxComponent, BreadcrumbComponent, BreadcrumbItemComponent, BreakpointDirective, BreakpointRegistry, BusyStateComponent, ButtonComponent, ButtonGroupComponent, CALENDAR_DEFAULT_PROPS, CALENDAR_HEADER_DEFAULT_PROPS, CALENDAR_ITEM_DEFAULT_PROPS, CALENDAR_SUB_HEADER_DEFAULT_PROPS, CAMERA_DEFAULT_PROPS, CARD_ACTIONS_DEFAULT_PROPS, CARD_CONTENT_DEFAULT_PROPS, CARD_DEFAULT_PROPS, CARD_FOOTER_DEFAULT_PROPS, CARD_HEADER_DEFAULT_PROPS, CARD_SUB_TITLE_DEFAULT_PROPS, CARD_TITLE_DEFAULT_PROPS, CAROUSEL2_DEFAULT_PROPS, CAROUSEL_DEFAULT_PROPS, CAROUSEL_ITEM2_DEFAULT_PROPS, CAROUSEL_ITEM_DEFAULT_PROPS, CELL_DEFAULT_PROPS, CELL_GROUP_DEFAULT_PROPS, CHART_DEFAULT_PROPS, CHAT_DEFAULT_PROPS, CHAT_HEADER_DEFAULT_PROPS, CHAT_INPUT_ATTACHMENT_LIST_DEFAULT_PROPS, CHAT_INPUT_DEFAULT_PROPS, CHAT_MARKER_DEFAULT_PROPS, CHAT_MESSAGE_AVATAR_DEFAULT_PROPS, CHAT_MESSAGE_DEFAULT_PROPS, CHAT_MESSAGE_DIVIDER_DEFAULT_PROPS, CHAT_MESSAGE_REACTION_DEFAULT_PROPS, CHECKBOX_DEFAULT_PROPS, CHECKMARK_DEFAULT_PROPS, CHECK_BOX_GROUP_DEFAULT_PROPS, CHIP_BOX_DEFAULT_PROPS, CHIP_DEFAULT_PROPS, CHOICE_DEFAULT_PROPS, CHOICE_GROUP_DEFAULT_PROPS, CHOICE_GROUP_HEADER_DEFAULT_PROPS, CODE_DEFAULT_PROPS, COLOR_AREA_DEFAULT_PROPS, COLOR_BOX_DEFAULT_PROPS, COLOR_PICKER_DEFAULT_PROPS, COLOR_SLIDER_DEFAULT_PROPS, COLOR_SWATCH_DEFAULT_PROPS, COLOR_SWATCH_GROUP_DEFAULT_PROPS, COLOR_THUMB_DEFAULT_PROPS, COMBO_DEFAULT_PROPS, COMBO_ITEM_DEFAULT_PROPS, COMMENT_DEFAULT_PROPS, COMPOUND_BUTTON_DEFAULT_PROPS, COOKIES_CONSENT_DEFAULT_PROPS, CalendarComponent, CalendarHeaderComponent, CalendarItemComponent, CalendarSubHeaderComponent, CameraComponent, Cancel, CardActionsComponent, CardComponent, CardContentComponent, CardFooterComponent, CardHeaderComponent, CardIsBusyDirective, CardSubTitleComponent, CardTitleComponent, Carousel2Component, CarouselComponent, CarouselItem2Component, CarouselItemComponent, CellComponent, CellGroupComponent, ChartComponent, ChatComponent, ChatHeaderComponent, ChatInputAttachmentListComponent, ChatInputComponent, ChatMarkerComponent, ChatMessageAvatarComponent, ChatMessageComponent, ChatMessageDividerComponent, ChatMessageReactionComponent, CheckBoxGroupComponent, CheckboxComponent, CheckmarkComponent, ChipBoxComponent, ChipComponent, ChoiceComponent, ChoiceGroupComponent, ChoiceGroupHeaderComponent, CodeComponent, ColorAreaComponent, ColorBoxComponent, ColorPickerComponent, ColorSliderComponent, ColorSwatchComponent, ColorSwatchGroupComponent, ColorThumbComponent, ComboComponent, ComboItemComponent, CommentComponent, CompoundButtonComponent, CookiesConsentComponent, DATA_LIST_DEFAULT_PROPS, DATA_TABLE_DEFAULT_PROPS, DATE_BOX_DEFAULT_PROPS, DATE_TIME_BOX_DEFAULT_PROPS, DIALOG_ACTIONS_DEFAULT_PROPS, DIALOG_BREAKPOINT_OBSERVER_BEHAVIOR_CONFIG, DIALOG_CONFIG, DIALOG_CONTENT_DEFAULT_PROPS, DIALOG_DEFAULT_PROPS, DIALOG_FOOTER_DEFAULT_PROPS, DIALOG_HEADER_DEFAULT_PROPS, DIALOG_HEADER_SUB_TEXT_DEFAULT_PROPS, DIALOG_HEADER_TEXT_DEFAULT_PROPS, DIALOG_REF, DIALOG_REF_DATA, DIALOG_STACK_BEHAVIOR_CONFIG, DISCLOSURE_DEFAULT_PROPS, DISMISS_DEFAULT_PROPS, DIVIDER_DEFAULT_PROPS, DOCK_PANEL_DEFAULT_PROPS, DOT_DEFAULT_PROPS, DRAWER_ACTIONS_DEFAULT_PROPS, DRAWER_CONFIG, DRAWER_CONTAINER_DEFAULT_PROPS, DRAWER_CONTENT_DEFAULT_PROPS, DRAWER_DEFAULT_PROPS, DRAWER_FOOTER_DEFAULT_PROPS, DRAWER_HEADER_DEFAULT_PROPS, DRAWER_HEADER_SUB_TEXT_DEFAULT_PROPS, DRAWER_HEADER_TEXT_DEFAULT_PROPS, DRAWER_REF, DRAWER_REF_DATA, DRAWER_STACK_BEHAVIOR_CONFIG, DROP_DOWN_BUTTON_DEFAULT_PROPS, DROP_ZONE_DEFAULT_PROPS, DataListComponent, DataTableComponent, DateAgoPipe, DateAgoPipeIntl, DateBoxComponent, DateTimeBoxComponent, DialogActionsComponent, DialogActionsDirective, DialogBreakpointObserverBehavior, DialogComponent, DialogContentComponent, DialogContentDirective, DialogFooterComponent, DialogFooterDirective, DialogHeaderComponent, DialogHeaderDirective, DialogHeaderSubTextComponent, DialogHeaderTextComponent, DialogPortalComponent, DialogRef, DialogService, DialogStackBehavior, DisclosureComponent, DismissComponent, DividerComponent, DockDirective, DockPanelComponent, DotComponent, DrawerActionsComponent, DrawerActionsDirective, DrawerComponent, DrawerContainerComponent, DrawerContentComponent, DrawerContentDirective, DrawerFooterComponent, DrawerFooterDirective, DrawerHeaderComponent, DrawerHeaderDirective, DrawerHeaderSubTextComponent, DrawerHeaderTextComponent, DrawerPortalComponent, DrawerRef, DrawerService, DrawerStackBehavior, DropDownButtonComponent, DropZoneComponent, ELEVATION_DEFAULT_PROPS, EMOJI_DEFAULT_PROPS, EMPTY_STATE_DEFAULT_PROPS, EPG_CHANNEL_DEFAULT_PROPS, EPG_DEFAULT_PROPS, EPG_PROGRAM_DEFAULT_PROPS, ERROR_DEFAULT_PROPS, ERROR_STATE_DEFAULT_PROPS, EXPANDABLE_DEFAULT_PROPS, EXPANDER_DEFAULT_PROPS, EXPANDER_GROUP_DEFAULT_PROPS, EXPANDER_HEADER_DEFAULT_PROPS, EXPANDER_SUB_HEADER_DEFAULT_PROPS, ElevationComponent, EmojiComponent, EmptyStateComponent, EpgChannelComponent, EpgComponent, EpgProgramComponent, ErrorComponent, ErrorGroupDirective, ErrorKindDirective, ErrorStateComponent, ExpandableComponent, ExpanderComponent, ExpanderGroupComponent, ExpanderHeaderComponent, ExpanderSubHeaderComponent, FILE_PICKER_DEFAULT_PROPS, FILE_UPLOAD_DEFAULT_PROPS, FILE_UPLOAD_ITEM_DEFAULT_PROPS, FLIP_DEFAULT_PROPS, FLOATING_ACTION_BUTTON_DEFAULT_PROPS, FLOATING_ACTION_BUTTON_GROUP_DEFAULT_PROPS, FLOATING_DEFAULT_PROPS, FLOATING_TRIGGER_DEFAULT_PROPS, FOCUS_RING_DEFAULT_PROPS, FOOTER_DEFAULT_PROPS, FOOTER_ITEM_DEFAULT_PROPS, FOOTER_ITEM_GROUP_DEFAULT_PROPS, FORM_DEFAULT_PROPS, FORM_FIELD_DEFAULT_PROPS, FORM_STATUS_HOST, FilePickerComponent, FileUploadComponent, FileUploadItemComponent, FilterByPipe, FlexDirective, FlipComponent, FlipToDirective, FloatingActionButtonComponent, FloatingActionButtonGroupComponent, FloatingComponent, FloatingTriggerComponent, FocusRingComponent, FooterComponent, FooterItemComponent, FooterItemGroupComponent, FormComponent, FormFieldComponent, FormFieldDirective, FormFieldStatusDirective, FormStatusDirective, FormatPipe, GRID_DEFAULT_PROPS, GRID_ITEM_DEFAULT_PROPS, GlobalDomRef, GridComponent, GridItemComponent, HELMET_DEFAULT_PROPS, HINT_DEFAULT_PROPS, HelmetComponent, HintComponent, ICON_DEFAULT_PROPS, IMAGE_DEFAULT_PROPS, INDICATOR_DEFAULT_PROPS, IconComponent, IconDirective, IconNameDirective, IconRegistry, ImageComponent, IndicatorComponent, JUMBOTRON_DEFAULT_PROPS, JUMBOTRON_HEADER_DEFAULT_PROPS, JUMBOTRON_SUB_HEADER_DEFAULT_PROPS, JumbotronComponent, JumbotronHeaderComponent, JumbotronSubHeaderComponent, KBD_DEFAULT_PROPS, KBD_SHORTCUT_DEFAULT_PROPS, KbdComponent, KbdShortcutComponent, LIGHT_CHAIN_DEFAULT_PROPS, LIST_DEFAULT_PROPS, LIST_ITEM_DEFAULT_PROPS, LIST_ITEM_GROUP_DEFAULT_PROPS, LightChainComponent, ListComponent, ListItemComponent, ListItemGroupComponent, MAP_DEFAULT_PROPS, MARQUEE_DEFAULT_PROPS, MASONRY_DEFAULT_PROPS, MENU_DEFAULT_PROPS, MENU_ITEM_DEFAULT_PROPS, MENU_ITEM_GROUP_DEFAULT_PROPS, MESSAGE_BOX_BEHAVIORS, MESSAGE_BOX_CONFIG, MESSAGE_BOX_DEFAULT_PROPS, MESSAGE_BOX_REF, MESSAGE_BOX_REF_DATA, METER_BAR_DEFAULT_PROPS, METER_RING_DEFAULT_PROPS, MapComponent, MarqueeComponent, MasonryComponent, MenuComponent, MenuItemComponent, MenuItemGroupComponent, MessageBoxComponent, MessageBoxPortalComponent, MessageBoxRef, MessageBoxService, MeterBarComponent, MeterRingComponent, NUMBER_BOX_DEFAULT_PROPS, NUMBER_COUNTER_DEFAULT_PROPS, NUMBER_DEFAULT_PROPS, NumberBoxComponent, NumberComponent, NumberCounterComponent, OfPipe, OrderByPipe, PAGE_CONTENT_DEFAULT_PROPS, PAGE_DEFAULT_PROPS, PAGE_HEADER_DEFAULT_PROPS, PAGE_MENU_DEFAULT_PROPS, PAGE_PRE_CONTENT_DEFAULT_PROPS, PAGE_PRE_HEADER_DEFAULT_PROPS, PAGINATOR_DEFAULT_PROPS, PASSWORD_BOX_DEFAULT_PROPS, PATTERN_DEFAULT_PROPS, PERSONA_DEFAULT_PROPS, PERSPECTIVE_DEFAULT_PROPS, PIN_BOX_DEFAULT_PROPS, POPUP_DEFAULT_PROPS, PORTAL_DEFAULT_PROPS, PORTAL_HOST_DEFAULT_PROPS, PORTAL_PROJECTION_DEFAULT_PROPS, PROGRESS_BAR_DEFAULT_PROPS, PROGRESS_RING_DEFAULT_PROPS, PageComponent, PageContentComponent, PageHeaderComponent, PageMenuComponent, PagePreContentComponent, PagePreHeaderComponent, PaginatorComponent, PasswordBoxComponent, PatternComponent, PersonaComponent, PerspectiveComponent, PerspectiveDirective, PinBoxComponent, PopupComponent, PortalComponent$1 as PortalComponent, PortalHostComponent, PortalProjectionComponent, ProgressBarComponent, ProgressRingComponent, QRCODE_DEFAULT_PROPS, QRCodeComponent, RADIO_DEFAULT_PROPS, RADIO_GROUP_DEFAULT_PROPS, RATING_DEFAULT_PROPS, REACTION_CHAT_TOOL_DEFAULT_PROPS, REGION_DEFAULT_PROPS, REGION_VIEW_DEFAULT_PROPS, REPEAT_BUTTON_DEFAULT_PROPS, RESIZE_ADORNER_DEFAULT_PROPS, RESIZE_THUMB_DEFAULT_PROPS, RIBBON_DEFAULT_PROPS, RICH_TEXT_BOX_DEFAULT_PROPS, RIPPLE_DEFAULT_PROPS, RadioComponent, RadioGroupComponent, RatingComponent, ReactionChatToolComponent, ReactiveFormValidator, ReactiveValidationSession, RegionComponent, RegionViewComponent, RepeatButtonComponent, ResizeAdornerComponent, ResizeThumbComponent, RibbonComponent, RichTextBoxComponent, RippleComponent, RippleDirective, SCALE_DEFAULT_PROPS, SCROLL_DEFAULT_PROPS, SCRUB_SLIDER_DEFAULT_PROPS, SEARCH_BOX_DEFAULT_PROPS, SEGMENT_DEFAULT_PROPS, SEGMENT_ITEM_DEFAULT_PROPS, SELECT_DEFAULT_PROPS, SELECT_ITEM_DEFAULT_PROPS, SELECT_ITEM_GROUP_DEFAULT_PROPS, SHEET_BEHAVIORS, SHEET_CONFIG, SHEET_DEFAULT_PROPS, SHEET_REF, SHEET_REF_DATA, SIGNATURE_PAD_DEFAULT_PROPS, SKELETON_DEFAULT_PROPS, SLIDER2THUMB_DEFAULT_PROPS, SLIDER2_DEFAULT_PROPS, SLIDER_DEFAULT_PROPS, SPACER_DEFAULT_PROPS, SPLIT_BUTTON_DEFAULT_PROPS, SPLIT_DEFAULT_PROPS, STACK_DEFAULT_PROPS, STEPPER_DEFAULT_PROPS, STEPPER_ITEM_DEFAULT_PROPS, STICKY_DEFAULT_PROPS, SUCCESS_STATE_DEFAULT_PROPS, SUMMARY_DEFAULT_PROPS, SWIPE_DEFAULT_PROPS, ScaleComponent, ScaleDirective, ScrollComponent, ScrubSliderComponent, SearchBoxComponent, SegmentComponent, SegmentItemComponent, SelectComponent, SelectItemComponent, SelectItemGroupComponent, SheetComponent, SheetPortalComponent, SheetRef, SheetService, SignalFormValidator, SignalValidationBuilder, SignaturePadComponent, SkeletonComponent, Slider2Component, Slider2ThumbComponent, SliderComponent, SpacerComponent, SpacerDirective, SplitButtonComponent, SplitComponent, StackComponent, StepperComponent, StepperItemComponent, StepperNextDirective, StepperPrevDirective, StickyComponent, SuccessStateComponent, SummaryComponent, SwipeComponent, TABLE_BODY_DEFAULT_PROPS, TABLE_CELL_DEFAULT_PROPS, TABLE_DEFAULT_PROPS, TABLE_FOOTER_DEFAULT_PROPS, TABLE_HEADER_DEFAULT_PROPS, TABLE_ROW_DEFAULT_PROPS, TAB_DEFAULT_PROPS, TAB_ITEM_DEFAULT_PROPS, TAB_PANEL_DEFAULT_PROPS, TAB_STRIP_DEFAULT_PROPS, TAB_STRIP_ITEM_DEFAULT_PROPS, TEXT_BOX_DEFAULT_PROPS, TEXT_DEFAULT_PROPS, TEXT_FORMAT_DEFAULT_PROPS, THEME, THEME2_DEFAULT_PROPS, THEME_MODE, THUMBNAIL_DEFAULT_PROPS, TICK_BAR_DEFAULT_PROPS, TILE_LIST_DEFAULT_PROPS, TILE_LIST_ITEM_DEFAULT_PROPS, TIMELINE_CONTENT_DEFAULT_PROPS, TIMELINE_DEFAULT_PROPS, TIMELINE_ITEM_DEFAULT_PROPS, TIMELINE_MARKER_DEFAULT_PROPS, TIMELINE_OPPOSITE_DEFAULT_PROPS, TIME_BOX_DEFAULT_PROPS, TOAST_BEHAVIORS, TOAST_CONFIG, TOAST_DEFAULT_PROPS, TOAST_REF, TOAST_REF_DATA, TOGGLE_BUTTON_DEFAULT_PROPS, TOGGLE_BUTTON_GROUP_DEFAULT_PROPS, TOGGLE_SWITCH_DEFAULT_PROPS, TOGGLE_TIP_DEFAULT_PROPS, TOOLBAR_DEFAULT_PROPS, TOOLTIP_DEFAULT_PROPS, TREE_DEFAULT_PROPS, TREE_ITEM_DEFAULT_PROPS, TabComponent, TabItemComponent, TabPanelComponent, TabStripComponent, TabStripItemComponent, TableBodyComponent, TableCellComponent, TableComponent, TableFooterComponent, TableHeaderComponent, TableRowComponent, TextBoxComponent, TextComponent, TextFormatComponent, Theme2Component, ThemeService, ThumbnailComponent, TickBarComponent, TileListComponent, TileListItemComponent, TimeAgoPipe, TimeAgoPipeIntl, TimeBoxComponent, TimeUpdateService, TimelineComponent, TimelineContentComponent, TimelineItemComponent, TimelineMarkerComponent, TimelineOppositeComponent, ToastComponent, ToastPortalComponent, ToastRef, ToastService, ToggleButtonComponent, ToggleButtonGroupComponent, ToggleSwitchComponent, ToggleTipComponent, ToolbarComponent, TooltipComponent, TranslateDirective, TranslatePipe, TranslateService, TreeComponent, TreeItemComponent, TypographyDirective, UP_DOWN_SPINNER_DEFAULT_PROPS, UpDownSpinnerComponent, VIDEO_DEFAULT_PROPS, VIRTUALIZE_DEFAULT_PROPS, VOICE_RECORDER_CHAT_TOOL_DEFAULT_PROPS, Validators, VideoComponent, VirtualizeComponent, VoiceRecorderChatToolComponent, WIZARD_DEFAULT_PROPS, WIZARD_STEP_DEFAULT_PROPS, WRAP_DEFAULT_PROPS, WizardComponent, WizardNextDirective, WizardPrevDirective, WizardStepComponent, WrapComponent, blank, emailEndsWithDomain, equalsTo, numeric, phoneNumber, provideAbsoluteComponent, provideAbsoluteItemComponent, provideAnchorComponent, provideAnimate, provideAppComponent, provideAppHeaderComponent, provideAttachmentChatToolComponent, provideAudioComponent, provideAutoCompleteBoxComponent, provideAvatarComponent, provideAvatarGroupComponent, provideBackdropComponent, provideBadgeComponent, provideBannerComponent, provideBannerGroupComponent, provideBannerHeaderComponent, provideBannerSubHeaderComponent, provideBoxComponent, provideBreadcrumbComponent, provideBreadcrumbItemComponent, provideBreakpoints, provideBusyStateComponent, provideButtonComponent, provideButtonGroupComponent, provideCalendarComponent, provideCalendarHeaderComponent, provideCalendarItemComponent, provideCalendarSubHeaderComponent, provideCameraComponent, provideCardActionsComponent, provideCardComponent, provideCardContentComponent, provideCardFooterComponent, provideCardHeaderComponent, provideCardSubTitleComponent, provideCardTitleComponent, provideCarousel2Component, provideCarouselComponent, provideCarouselItem2Component, provideCarouselItemComponent, provideCellComponent, provideCellGroupComponent, provideChartComponent, provideChatComponent, provideChatHeaderComponent, provideChatInputAttachmentListComponent, provideChatInputComponent, provideChatMarkerComponent, provideChatMessageAvatarComponent, provideChatMessageComponent, provideChatMessageDividerComponent, provideChatMessageReactionComponent, provideCheckBoxGroupComponent, provideCheckboxComponent, provideCheckmarkComponent, provideChipBoxComponent, provideChipComponent, provideChoiceComponent, provideChoiceGroupComponent, provideChoiceGroupHeaderComponent, provideCodeComponent, provideColorAreaComponent, provideColorBoxComponent, provideColorPickerComponent, provideColorSliderComponent, provideColorSwatchComponent, provideColorSwatchGroupComponent, provideColorThumbComponent, provideComboComponent, provideComboItemComponent, provideCommentComponent, provideCompoundButtonComponent, provideCookiesConsentComponent, provideDataListComponent, provideDataTableComponent, provideDateAgoPipe, provideDateBoxComponent, provideDateTimeBoxComponent, provideDialogActionsComponent, provideDialogComponent, provideDialogContentComponent, provideDialogFooterComponent, provideDialogHeaderComponent, provideDialogHeaderSubTextComponent, provideDialogHeaderTextComponent, provideDialogs, provideDisclosureComponent, provideDismissComponent, provideDividerComponent, provideDockPanelComponent, provideDotComponent, provideDrawerActionsComponent, provideDrawerComponent, provideDrawerContainerComponent, provideDrawerContentComponent, provideDrawerFooterComponent, provideDrawerHeaderComponent, provideDrawerHeaderSubTextComponent, provideDrawerHeaderTextComponent, provideDrawers, provideDropDownButtonComponent, provideDropZoneComponent, provideElevationComponent, provideEmojiComponent, provideEmptyStateComponent, provideEpgChannelComponent, provideEpgComponent, provideEpgProgramComponent, provideErrorComponent, provideErrorStateComponent, provideExpandableComponent, provideExpanderComponent, provideExpanderGroupComponent, provideExpanderHeaderComponent, provideExpanderSubHeaderComponent, provideFilePickerComponent, provideFileUploadComponent, provideFileUploadItemComponent, provideFlipComponent, provideFloatingActionButtonComponent, provideFloatingActionButtonGroupComponent, provideFloatingComponent, provideFloatingTriggerComponent, provideFocusRingComponent, provideFooterComponent, provideFooterItemComponent, provideFooterItemGroupComponent, provideFormComponent, provideFormFieldComponent, provideForms, provideGlobalDom, provideGridComponent, provideGridItemComponent, provideHelmetComponent, provideHintComponent, provideIconComponent, provideIconRegistry, provideIcons, provideImageComponent, provideIndicatorComponent, provideJumbotronComponent, provideJumbotronHeaderComponent, provideJumbotronSubHeaderComponent, provideKbdComponent, provideKbdShortcutComponent, provideLightChainComponent, provideListComponent, provideListItemComponent, provideListItemGroupComponent, provideMapComponent, provideMarqueeComponent, provideMasonryComponent, provideMenuComponent, provideMenuItemComponent, provideMenuItemGroupComponent, provideMessageBoxComponent, provideMessageBoxes, provideMeterBarComponent, provideMeterRingComponent, provideNumberBoxComponent, provideNumberComponent, provideNumberCounterComponent, providePageComponent, providePageContentComponent, providePageHeaderComponent, providePageMenuComponent, providePagePreContentComponent, providePagePreHeaderComponent, providePaginatorComponent, providePasswordBoxComponent, providePatternComponent, providePersonaComponent, providePerspectiveComponent, providePinBoxComponent, providePopupComponent, providePortalComponent, providePortalHostComponent, providePortalProjectionComponent, provideProgressBarComponent, provideProgressRingComponent, provideQRCodeComponent, provideRadioComponent, provideRadioGroupComponent, provideRatingComponent, provideReactionChatToolComponent, provideRegionComponent, provideRegionViewComponent, provideRepeatButtonComponent, provideResizeAdornerComponent, provideResizeThumbComponent, provideRibbonComponent, provideRichTextBoxComponent, provideRippleComponent, provideScaleComponent, provideScrollComponent, provideScrubSliderComponent, provideSearchBoxComponent, provideSegmentComponent, provideSegmentItemComponent, provideSelectComponent, provideSelectItemComponent, provideSelectItemGroupComponent, provideSheetComponent, provideSheets, provideSignaturePadComponent, provideSkeletonComponent, provideSlider2Component, provideSlider2ThumbComponent, provideSliderComponent, provideSpacerComponent, provideSplitButtonComponent, provideSplitComponent, provideStackComponent, provideStepperComponent, provideStepperItemComponent, provideStickyComponent, provideSuccessStateComponent, provideSummaryComponent, provideSwipeComponent, provideTabComponent, provideTabItemComponent, provideTabPanelComponent, provideTabStripComponent, provideTabStripItemComponent, provideTableBodyComponent, provideTableCellComponent, provideTableComponent, provideTableFooterComponent, provideTableHeaderComponent, provideTableRowComponent, provideTextBoxComponent, provideTextComponent, provideTextFormatComponent, provideTheme, provideTheme2Component, provideThumbnailComponent, provideTickBarComponent, provideTileListComponent, provideTileListItemComponent, provideTimeAgoPipe, provideTimeBoxComponent, provideTimeUpdates, provideTimelineComponent, provideTimelineContentComponent, provideTimelineItemComponent, provideTimelineMarkerComponent, provideTimelineOppositeComponent, provideToastComponent, provideToasts, provideToggleButtonComponent, provideToggleButtonGroupComponent, provideToggleSwitchComponent, provideToggleTipComponent, provideToolbarComponent, provideTooltipComponent, provideTranslationRegistry, provideTranslations, provideTreeComponent, provideTreeItemComponent, provideUpDownSpinnerComponent, provideVideoComponent, provideVirtualizeComponent, provideVoiceRecorderChatToolComponent, provideWizardComponent, provideWizardStepComponent, provideWrapComponent, useController, withDialogBreakpointBehavior, withDialogStackBehavior, withDrawerStackBehavior };
|
|
68934
|
+
export { ABSOLUTE_DEFAULT_PROPS, ABSOLUTE_ITEM_DEFAULT_PROPS, ANCHOR_DEFAULT_PROPS, APP_DEFAULT_PROPS, APP_HEADER_DEFAULT_PROPS, ATTACHMENT_CHAT_TOOL_DEFAULT_PROPS, AUDIO_DEFAULT_PROPS, AUTO_COMPLETE_BOX_DEFAULT_PROPS, AVATAR_DEFAULT_PROPS, AVATAR_GROUP_DEFAULT_PROPS, AbsoluteComponent, AbsoluteItemComponent, AnchorComponent, AnimateDirective, AnimationRegistry, AppComponent, AppHeaderComponent, AttachmentChatToolComponent, AudioComponent, AutoCompleteBoxComponent, AvatarComponent, AvatarGroupComponent, BACKDROP_DEFAULT_PROPS, BADGE_DEFAULT_PROPS, BANNER_DEFAULT_PROPS, BANNER_GROUP_DEFAULT_PROPS, BANNER_HEADER_DEFAULT_PROPS, BANNER_SUB_HEADER_DEFAULT_PROPS, BOX_DEFAULT_PROPS, BREADCRUMB_DEFAULT_PROPS, BREADCRUMB_ITEM_DEFAULT_PROPS, BUSY_STATE_DEFAULT_PROPS, BUTTON_DEFAULT_PROPS, BUTTON_GROUP_DEFAULT_PROPS, BackdropComponent, BadgeComponent, BannerComponent, BannerGroupComponent, BannerHeaderComponent, BannerSubHeaderComponent, BoxComponent, BreadcrumbComponent, BreadcrumbItemComponent, BreakpointDirective, BreakpointRegistry, BusyStateComponent, ButtonComponent, ButtonGroupComponent, CALENDAR_DEFAULT_PROPS, CALENDAR_HEADER_DEFAULT_PROPS, CALENDAR_ITEM_DEFAULT_PROPS, CALENDAR_SUB_HEADER_DEFAULT_PROPS, CAMERA_DEFAULT_PROPS, CARD_ACTIONS_DEFAULT_PROPS, CARD_CONTENT_DEFAULT_PROPS, CARD_DEFAULT_PROPS, CARD_FOOTER_DEFAULT_PROPS, CARD_HEADER_DEFAULT_PROPS, CARD_SUB_TITLE_DEFAULT_PROPS, CARD_TITLE_DEFAULT_PROPS, CAROUSEL2_DEFAULT_PROPS, CAROUSEL_DEFAULT_PROPS, CAROUSEL_ITEM2_DEFAULT_PROPS, CAROUSEL_ITEM_DEFAULT_PROPS, CELL_DEFAULT_PROPS, CELL_GROUP_DEFAULT_PROPS, CHART_DEFAULT_PROPS, CHAT_DEFAULT_PROPS, CHAT_HEADER_DEFAULT_PROPS, CHAT_INPUT_ATTACHMENT_LIST_DEFAULT_PROPS, CHAT_INPUT_DEFAULT_PROPS, CHAT_MARKER_DEFAULT_PROPS, CHAT_MESSAGE_AVATAR_DEFAULT_PROPS, CHAT_MESSAGE_DEFAULT_PROPS, CHAT_MESSAGE_DIVIDER_DEFAULT_PROPS, CHAT_MESSAGE_REACTION_DEFAULT_PROPS, CHECKBOX_DEFAULT_PROPS, CHECKMARK_DEFAULT_PROPS, CHECK_BOX_GROUP_DEFAULT_PROPS, CHIP_BOX_DEFAULT_PROPS, CHIP_DEFAULT_PROPS, CHOICE_DEFAULT_PROPS, CHOICE_GROUP_DEFAULT_PROPS, CHOICE_GROUP_HEADER_DEFAULT_PROPS, CODE_DEFAULT_PROPS, COLOR_AREA_DEFAULT_PROPS, COLOR_BOX_DEFAULT_PROPS, COLOR_PICKER_DEFAULT_PROPS, COLOR_SLIDER_DEFAULT_PROPS, COLOR_SWATCH_DEFAULT_PROPS, COLOR_SWATCH_GROUP_DEFAULT_PROPS, COLOR_THUMB_DEFAULT_PROPS, COMBO_DEFAULT_PROPS, COMBO_ITEM_DEFAULT_PROPS, COMMENT_DEFAULT_PROPS, COMPOUND_BUTTON_DEFAULT_PROPS, COOKIES_CONSENT_DEFAULT_PROPS, CalendarComponent, CalendarHeaderComponent, CalendarItemComponent, CalendarSubHeaderComponent, CameraComponent, Cancel, CardActionsComponent, CardComponent, CardContentComponent, CardFooterComponent, CardHeaderComponent, CardIsBusyDirective, CardSubTitleComponent, CardTitleComponent, Carousel2Component, CarouselComponent, CarouselItem2Component, CarouselItemComponent, CellComponent, CellGroupComponent, ChartComponent, ChatComponent, ChatHeaderComponent, ChatInputAttachmentListComponent, ChatInputComponent, ChatMarkerComponent, ChatMessageAvatarComponent, ChatMessageComponent, ChatMessageDividerComponent, ChatMessageReactionComponent, CheckBoxGroupComponent, CheckboxComponent, CheckmarkComponent, ChipBoxComponent, ChipComponent, ChoiceComponent, ChoiceGroupComponent, ChoiceGroupHeaderComponent, CodeComponent, ColorAreaComponent, ColorBoxComponent, ColorPickerComponent, ColorSliderComponent, ColorSwatchComponent, ColorSwatchGroupComponent, ColorThumbComponent, ComboComponent, ComboItemComponent, CommentComponent, CompoundButtonComponent, CookiesConsentComponent, DATA_LIST_DEFAULT_PROPS, DATA_TABLE_DEFAULT_PROPS, DATE_BOX_DEFAULT_PROPS, DATE_TIME_BOX_DEFAULT_PROPS, DIALOG_ACTIONS_DEFAULT_PROPS, DIALOG_BREAKPOINT_BEHAVIOR_CONFIG, DIALOG_CONFIG, DIALOG_CONTENT_DEFAULT_PROPS, DIALOG_DEFAULT_PROPS, DIALOG_FOOTER_DEFAULT_PROPS, DIALOG_HEADER_DEFAULT_PROPS, DIALOG_HEADER_SUB_TEXT_DEFAULT_PROPS, DIALOG_HEADER_TEXT_DEFAULT_PROPS, DIALOG_REF, DIALOG_REF_DATA, DIALOG_STACK_BEHAVIOR_CONFIG, DISCLOSURE_DEFAULT_PROPS, DISMISS_DEFAULT_PROPS, DIVIDER_DEFAULT_PROPS, DOCK_PANEL_DEFAULT_PROPS, DOT_DEFAULT_PROPS, DRAWER_ACTIONS_DEFAULT_PROPS, DRAWER_BREAKPOINT_BEHAVIOR_CONFIG, DRAWER_CONFIG, DRAWER_CONTAINER_DEFAULT_PROPS, DRAWER_CONTENT_DEFAULT_PROPS, DRAWER_DEFAULT_PROPS, DRAWER_FOOTER_DEFAULT_PROPS, DRAWER_HEADER_DEFAULT_PROPS, DRAWER_HEADER_SUB_TEXT_DEFAULT_PROPS, DRAWER_HEADER_TEXT_DEFAULT_PROPS, DRAWER_REF, DRAWER_REF_DATA, DRAWER_STACK_BEHAVIOR_CONFIG, DROP_DOWN_BUTTON_DEFAULT_PROPS, DROP_ZONE_DEFAULT_PROPS, DataListComponent, DataTableComponent, DateAgoPipe, DateAgoPipeIntl, DateBoxComponent, DateTimeBoxComponent, DialogActionsComponent, DialogActionsDirective, DialogBreakpointBehavior, DialogComponent, DialogContentComponent, DialogContentDirective, DialogFooterComponent, DialogFooterDirective, DialogHeaderComponent, DialogHeaderDirective, DialogHeaderSubTextComponent, DialogHeaderTextComponent, DialogPortalComponent, DialogRef, DialogService, DialogStackBehavior, DisclosureComponent, DismissComponent, DividerComponent, DockDirective, DockPanelComponent, DotComponent, DrawerActionsComponent, DrawerActionsDirective, DrawerBreakpointBehavior, DrawerComponent, DrawerContainerComponent, DrawerContentComponent, DrawerContentDirective, DrawerFooterComponent, DrawerFooterDirective, DrawerHeaderComponent, DrawerHeaderDirective, DrawerHeaderSubTextComponent, DrawerHeaderTextComponent, DrawerPortalComponent, DrawerRef, DrawerService, DrawerStackBehavior, DropDownButtonComponent, DropZoneComponent, ELEVATION_DEFAULT_PROPS, EMOJI_DEFAULT_PROPS, EMPTY_STATE_DEFAULT_PROPS, EPG_CHANNEL_DEFAULT_PROPS, EPG_DEFAULT_PROPS, EPG_PROGRAM_DEFAULT_PROPS, ERROR_DEFAULT_PROPS, ERROR_STATE_DEFAULT_PROPS, EXPANDABLE_DEFAULT_PROPS, EXPANDER_DEFAULT_PROPS, EXPANDER_GROUP_DEFAULT_PROPS, EXPANDER_HEADER_DEFAULT_PROPS, EXPANDER_SUB_HEADER_DEFAULT_PROPS, ElevationComponent, EmojiComponent, EmptyStateComponent, EpgChannelComponent, EpgComponent, EpgProgramComponent, ErrorComponent, ErrorGroupDirective, ErrorKindDirective, ErrorStateComponent, ExpandableComponent, ExpanderComponent, ExpanderGroupComponent, ExpanderHeaderComponent, ExpanderSubHeaderComponent, FILE_PICKER_DEFAULT_PROPS, FILE_UPLOAD_DEFAULT_PROPS, FILE_UPLOAD_ITEM_DEFAULT_PROPS, FLIP_DEFAULT_PROPS, FLOATING_ACTION_BUTTON_DEFAULT_PROPS, FLOATING_ACTION_BUTTON_GROUP_DEFAULT_PROPS, FLOATING_DEFAULT_PROPS, FLOATING_TRIGGER_DEFAULT_PROPS, FOCUS_RING_DEFAULT_PROPS, FOOTER_DEFAULT_PROPS, FOOTER_ITEM_DEFAULT_PROPS, FOOTER_ITEM_GROUP_DEFAULT_PROPS, FORM_DEFAULT_PROPS, FORM_FIELD_DEFAULT_PROPS, FORM_STATUS_HOST, FilePickerComponent, FileUploadComponent, FileUploadItemComponent, FilterByPipe, FlexDirective, FlipComponent, FlipToDirective, FloatingActionButtonComponent, FloatingActionButtonGroupComponent, FloatingComponent, FloatingTriggerComponent, FocusRingComponent, FooterComponent, FooterItemComponent, FooterItemGroupComponent, FormComponent, FormFieldComponent, FormFieldDirective, FormFieldStatusDirective, FormStatusDirective, FormatPipe, GRID_DEFAULT_PROPS, GRID_ITEM_DEFAULT_PROPS, GlobalDomRef, GridComponent, GridItemComponent, HELMET_DEFAULT_PROPS, HINT_DEFAULT_PROPS, HelmetComponent, HintComponent, ICON_DEFAULT_PROPS, IMAGE_DEFAULT_PROPS, INDICATOR_DEFAULT_PROPS, IconComponent, IconDirective, IconNameDirective, IconRegistry, ImageComponent, IndicatorComponent, JUMBOTRON_DEFAULT_PROPS, JUMBOTRON_HEADER_DEFAULT_PROPS, JUMBOTRON_SUB_HEADER_DEFAULT_PROPS, JumbotronComponent, JumbotronHeaderComponent, JumbotronSubHeaderComponent, KBD_DEFAULT_PROPS, KBD_SHORTCUT_DEFAULT_PROPS, KbdComponent, KbdShortcutComponent, LIGHT_CHAIN_DEFAULT_PROPS, LIST_DEFAULT_PROPS, LIST_ITEM_DEFAULT_PROPS, LIST_ITEM_GROUP_DEFAULT_PROPS, LightChainComponent, ListComponent, ListItemComponent, ListItemGroupComponent, MAP_DEFAULT_PROPS, MARQUEE_DEFAULT_PROPS, MASONRY_DEFAULT_PROPS, MENU_DEFAULT_PROPS, MENU_ITEM_DEFAULT_PROPS, MENU_ITEM_GROUP_DEFAULT_PROPS, MESSAGE_BOX_BEHAVIORS, MESSAGE_BOX_CONFIG, MESSAGE_BOX_DEFAULT_PROPS, MESSAGE_BOX_REF, MESSAGE_BOX_REF_DATA, METER_BAR_DEFAULT_PROPS, METER_RING_DEFAULT_PROPS, MapComponent, MarqueeComponent, MasonryComponent, MenuComponent, MenuItemComponent, MenuItemGroupComponent, MessageBoxComponent, MessageBoxPortalComponent, MessageBoxRef, MessageBoxService, MeterBarComponent, MeterRingComponent, NUMBER_BOX_DEFAULT_PROPS, NUMBER_COUNTER_DEFAULT_PROPS, NUMBER_DEFAULT_PROPS, NumberBoxComponent, NumberComponent, NumberCounterComponent, OfPipe, OrderByPipe, PAGE_CONTENT_DEFAULT_PROPS, PAGE_DEFAULT_PROPS, PAGE_HEADER_DEFAULT_PROPS, PAGE_MENU_DEFAULT_PROPS, PAGE_PRE_CONTENT_DEFAULT_PROPS, PAGE_PRE_HEADER_DEFAULT_PROPS, PAGINATOR_DEFAULT_PROPS, PASSWORD_BOX_DEFAULT_PROPS, PATTERN_DEFAULT_PROPS, PERSONA_DEFAULT_PROPS, PERSPECTIVE_DEFAULT_PROPS, PIN_BOX_DEFAULT_PROPS, POPUP_DEFAULT_PROPS, PORTAL_DEFAULT_PROPS, PORTAL_HOST_DEFAULT_PROPS, PORTAL_PROJECTION_DEFAULT_PROPS, PROGRESS_BAR_DEFAULT_PROPS, PROGRESS_RING_DEFAULT_PROPS, PageComponent, PageContentComponent, PageHeaderComponent, PageMenuComponent, PagePreContentComponent, PagePreHeaderComponent, PaginatorComponent, PasswordBoxComponent, PatternComponent, PersonaComponent, PerspectiveComponent, PerspectiveDirective, PinBoxComponent, PopupComponent, PortalComponent$1 as PortalComponent, PortalHostComponent, PortalProjectionComponent, ProgressBarComponent, ProgressRingComponent, QRCODE_DEFAULT_PROPS, QRCodeComponent, RADIO_DEFAULT_PROPS, RADIO_GROUP_DEFAULT_PROPS, RATING_DEFAULT_PROPS, REACTION_CHAT_TOOL_DEFAULT_PROPS, REGION_DEFAULT_PROPS, REGION_VIEW_DEFAULT_PROPS, REPEAT_BUTTON_DEFAULT_PROPS, RESIZE_ADORNER_DEFAULT_PROPS, RESIZE_THUMB_DEFAULT_PROPS, RIBBON_DEFAULT_PROPS, RICH_TEXT_BOX_DEFAULT_PROPS, RIPPLE_DEFAULT_PROPS, RadioComponent, RadioGroupComponent, RatingComponent, ReactionChatToolComponent, ReactiveFormValidator, ReactiveValidationSession, RegionComponent, RegionViewComponent, RepeatButtonComponent, ResizeAdornerComponent, ResizeThumbComponent, RibbonComponent, RichTextBoxComponent, RippleComponent, RippleDirective, SCALE_DEFAULT_PROPS, SCROLL_DEFAULT_PROPS, SCRUB_SLIDER_DEFAULT_PROPS, SEARCH_BOX_DEFAULT_PROPS, SEGMENT_DEFAULT_PROPS, SEGMENT_ITEM_DEFAULT_PROPS, SELECT_DEFAULT_PROPS, SELECT_ITEM_DEFAULT_PROPS, SELECT_ITEM_GROUP_DEFAULT_PROPS, SHEET_BEHAVIORS, SHEET_CONFIG, SHEET_DEFAULT_PROPS, SHEET_REF, SHEET_REF_DATA, SIGNATURE_PAD_DEFAULT_PROPS, SKELETON_DEFAULT_PROPS, SLIDER2THUMB_DEFAULT_PROPS, SLIDER2_DEFAULT_PROPS, SLIDER_DEFAULT_PROPS, SPACER_DEFAULT_PROPS, SPLIT_BUTTON_DEFAULT_PROPS, SPLIT_DEFAULT_PROPS, STACK_DEFAULT_PROPS, STEPPER_DEFAULT_PROPS, STEPPER_ITEM_DEFAULT_PROPS, STICKY_DEFAULT_PROPS, SUCCESS_STATE_DEFAULT_PROPS, SUMMARY_DEFAULT_PROPS, SWIPE_DEFAULT_PROPS, ScaleComponent, ScaleDirective, ScrollComponent, ScrubSliderComponent, SearchBoxComponent, SegmentComponent, SegmentItemComponent, SelectComponent, SelectItemComponent, SelectItemGroupComponent, SheetComponent, SheetPortalComponent, SheetRef, SheetService, SignalFormValidator, SignalValidationBuilder, SignaturePadComponent, SkeletonComponent, Slider2Component, Slider2ThumbComponent, SliderComponent, SpacerComponent, SpacerDirective, SplitButtonComponent, SplitComponent, StackComponent, StepperComponent, StepperItemComponent, StepperNextDirective, StepperPrevDirective, StickyComponent, SuccessStateComponent, SummaryComponent, SwipeComponent, TABLE_BODY_DEFAULT_PROPS, TABLE_CELL_DEFAULT_PROPS, TABLE_DEFAULT_PROPS, TABLE_FOOTER_DEFAULT_PROPS, TABLE_HEADER_DEFAULT_PROPS, TABLE_ROW_DEFAULT_PROPS, TAB_DEFAULT_PROPS, TAB_ITEM_DEFAULT_PROPS, TAB_PANEL_DEFAULT_PROPS, TAB_STRIP_DEFAULT_PROPS, TAB_STRIP_ITEM_DEFAULT_PROPS, TEXT_BOX_DEFAULT_PROPS, TEXT_DEFAULT_PROPS, TEXT_FORMAT_DEFAULT_PROPS, THEME, THEME2_DEFAULT_PROPS, THEME_MODE, THUMBNAIL_DEFAULT_PROPS, TICK_BAR_DEFAULT_PROPS, TILE_LIST_DEFAULT_PROPS, TILE_LIST_ITEM_DEFAULT_PROPS, TIMELINE_CONTENT_DEFAULT_PROPS, TIMELINE_DEFAULT_PROPS, TIMELINE_ITEM_DEFAULT_PROPS, TIMELINE_MARKER_DEFAULT_PROPS, TIMELINE_OPPOSITE_DEFAULT_PROPS, TIME_BOX_DEFAULT_PROPS, TOAST_BEHAVIORS, TOAST_CONFIG, TOAST_DEFAULT_PROPS, TOAST_REF, TOAST_REF_DATA, TOGGLE_BUTTON_DEFAULT_PROPS, TOGGLE_BUTTON_GROUP_DEFAULT_PROPS, TOGGLE_SWITCH_DEFAULT_PROPS, TOGGLE_TIP_DEFAULT_PROPS, TOOLBAR_DEFAULT_PROPS, TOOLTIP_DEFAULT_PROPS, TREE_DEFAULT_PROPS, TREE_ITEM_DEFAULT_PROPS, TabComponent, TabItemComponent, TabPanelComponent, TabStripComponent, TabStripItemComponent, TableBodyComponent, TableCellComponent, TableComponent, TableFooterComponent, TableHeaderComponent, TableRowComponent, TextBoxComponent, TextComponent, TextFormatComponent, Theme2Component, ThemeService, ThumbnailComponent, TickBarComponent, TileListComponent, TileListItemComponent, TimeAgoPipe, TimeAgoPipeIntl, TimeBoxComponent, TimeUpdateService, TimelineComponent, TimelineContentComponent, TimelineItemComponent, TimelineMarkerComponent, TimelineOppositeComponent, ToastComponent, ToastPortalComponent, ToastRef, ToastService, ToggleButtonComponent, ToggleButtonGroupComponent, ToggleSwitchComponent, ToggleTipComponent, ToolbarComponent, TooltipComponent, TranslateDirective, TranslatePipe, TranslateService, TreeComponent, TreeItemComponent, TypographyDirective, UP_DOWN_SPINNER_DEFAULT_PROPS, UpDownSpinnerComponent, VIDEO_DEFAULT_PROPS, VIRTUALIZE_DEFAULT_PROPS, VOICE_RECORDER_CHAT_TOOL_DEFAULT_PROPS, Validators, VideoComponent, VirtualizeComponent, VoiceRecorderChatToolComponent, WIZARD_DEFAULT_PROPS, WIZARD_STEP_DEFAULT_PROPS, WRAP_DEFAULT_PROPS, WizardComponent, WizardNextDirective, WizardPrevDirective, WizardStepComponent, WrapComponent, blank, emailEndsWithDomain, equalsTo, numeric, phoneNumber, provideAbsoluteComponent, provideAbsoluteItemComponent, provideAnchorComponent, provideAnimate, provideAppComponent, provideAppHeaderComponent, provideAttachmentChatToolComponent, provideAudioComponent, provideAutoCompleteBoxComponent, provideAvatarComponent, provideAvatarGroupComponent, provideBackdropComponent, provideBadgeComponent, provideBannerComponent, provideBannerGroupComponent, provideBannerHeaderComponent, provideBannerSubHeaderComponent, provideBoxComponent, provideBreadcrumbComponent, provideBreadcrumbItemComponent, provideBreakpoints, provideBusyStateComponent, provideButtonComponent, provideButtonGroupComponent, provideCalendarComponent, provideCalendarHeaderComponent, provideCalendarItemComponent, provideCalendarSubHeaderComponent, provideCameraComponent, provideCardActionsComponent, provideCardComponent, provideCardContentComponent, provideCardFooterComponent, provideCardHeaderComponent, provideCardSubTitleComponent, provideCardTitleComponent, provideCarousel2Component, provideCarouselComponent, provideCarouselItem2Component, provideCarouselItemComponent, provideCellComponent, provideCellGroupComponent, provideChartComponent, provideChatComponent, provideChatHeaderComponent, provideChatInputAttachmentListComponent, provideChatInputComponent, provideChatMarkerComponent, provideChatMessageAvatarComponent, provideChatMessageComponent, provideChatMessageDividerComponent, provideChatMessageReactionComponent, provideCheckBoxGroupComponent, provideCheckboxComponent, provideCheckmarkComponent, provideChipBoxComponent, provideChipComponent, provideChoiceComponent, provideChoiceGroupComponent, provideChoiceGroupHeaderComponent, provideCodeComponent, provideColorAreaComponent, provideColorBoxComponent, provideColorPickerComponent, provideColorSliderComponent, provideColorSwatchComponent, provideColorSwatchGroupComponent, provideColorThumbComponent, provideComboComponent, provideComboItemComponent, provideCommentComponent, provideCompoundButtonComponent, provideCookiesConsentComponent, provideDataListComponent, provideDataTableComponent, provideDateAgoPipe, provideDateBoxComponent, provideDateTimeBoxComponent, provideDialogActionsComponent, provideDialogComponent, provideDialogContentComponent, provideDialogFooterComponent, provideDialogHeaderComponent, provideDialogHeaderSubTextComponent, provideDialogHeaderTextComponent, provideDialogs, provideDisclosureComponent, provideDismissComponent, provideDividerComponent, provideDockPanelComponent, provideDotComponent, provideDrawerActionsComponent, provideDrawerComponent, provideDrawerContainerComponent, provideDrawerContentComponent, provideDrawerFooterComponent, provideDrawerHeaderComponent, provideDrawerHeaderSubTextComponent, provideDrawerHeaderTextComponent, provideDrawers, provideDropDownButtonComponent, provideDropZoneComponent, provideElevationComponent, provideEmojiComponent, provideEmptyStateComponent, provideEpgChannelComponent, provideEpgComponent, provideEpgProgramComponent, provideErrorComponent, provideErrorStateComponent, provideExpandableComponent, provideExpanderComponent, provideExpanderGroupComponent, provideExpanderHeaderComponent, provideExpanderSubHeaderComponent, provideFilePickerComponent, provideFileUploadComponent, provideFileUploadItemComponent, provideFlipComponent, provideFloatingActionButtonComponent, provideFloatingActionButtonGroupComponent, provideFloatingComponent, provideFloatingTriggerComponent, provideFocusRingComponent, provideFooterComponent, provideFooterItemComponent, provideFooterItemGroupComponent, provideFormComponent, provideFormFieldComponent, provideForms, provideGlobalDom, provideGridComponent, provideGridItemComponent, provideHelmetComponent, provideHintComponent, provideIconComponent, provideIconRegistry, provideIcons, provideImageComponent, provideIndicatorComponent, provideJumbotronComponent, provideJumbotronHeaderComponent, provideJumbotronSubHeaderComponent, provideKbdComponent, provideKbdShortcutComponent, provideLightChainComponent, provideListComponent, provideListItemComponent, provideListItemGroupComponent, provideMapComponent, provideMarqueeComponent, provideMasonryComponent, provideMenuComponent, provideMenuItemComponent, provideMenuItemGroupComponent, provideMessageBoxComponent, provideMessageBoxes, provideMeterBarComponent, provideMeterRingComponent, provideNumberBoxComponent, provideNumberComponent, provideNumberCounterComponent, providePageComponent, providePageContentComponent, providePageHeaderComponent, providePageMenuComponent, providePagePreContentComponent, providePagePreHeaderComponent, providePaginatorComponent, providePasswordBoxComponent, providePatternComponent, providePersonaComponent, providePerspectiveComponent, providePinBoxComponent, providePopupComponent, providePortalComponent, providePortalHostComponent, providePortalProjectionComponent, provideProgressBarComponent, provideProgressRingComponent, provideQRCodeComponent, provideRadioComponent, provideRadioGroupComponent, provideRatingComponent, provideReactionChatToolComponent, provideRegionComponent, provideRegionViewComponent, provideRepeatButtonComponent, provideResizeAdornerComponent, provideResizeThumbComponent, provideRibbonComponent, provideRichTextBoxComponent, provideRippleComponent, provideScaleComponent, provideScrollComponent, provideScrubSliderComponent, provideSearchBoxComponent, provideSegmentComponent, provideSegmentItemComponent, provideSelectComponent, provideSelectItemComponent, provideSelectItemGroupComponent, provideSheetComponent, provideSheets, provideSignaturePadComponent, provideSkeletonComponent, provideSlider2Component, provideSlider2ThumbComponent, provideSliderComponent, provideSpacerComponent, provideSplitButtonComponent, provideSplitComponent, provideStackComponent, provideStepperComponent, provideStepperItemComponent, provideStickyComponent, provideSuccessStateComponent, provideSummaryComponent, provideSwipeComponent, provideTabComponent, provideTabItemComponent, provideTabPanelComponent, provideTabStripComponent, provideTabStripItemComponent, provideTableBodyComponent, provideTableCellComponent, provideTableComponent, provideTableFooterComponent, provideTableHeaderComponent, provideTableRowComponent, provideTextBoxComponent, provideTextComponent, provideTextFormatComponent, provideTheme, provideTheme2Component, provideThumbnailComponent, provideTickBarComponent, provideTileListComponent, provideTileListItemComponent, provideTimeAgoPipe, provideTimeBoxComponent, provideTimeUpdates, provideTimelineComponent, provideTimelineContentComponent, provideTimelineItemComponent, provideTimelineMarkerComponent, provideTimelineOppositeComponent, provideToastComponent, provideToasts, provideToggleButtonComponent, provideToggleButtonGroupComponent, provideToggleSwitchComponent, provideToggleTipComponent, provideToolbarComponent, provideTooltipComponent, provideTranslationRegistry, provideTranslations, provideTreeComponent, provideTreeItemComponent, provideUpDownSpinnerComponent, provideVideoComponent, provideVirtualizeComponent, provideVoiceRecorderChatToolComponent, provideWizardComponent, provideWizardStepComponent, provideWrapComponent, useController, withDialogBreakpointBehavior, withDialogStackBehavior, withDrawerBreakpointBehavior, withDrawerStackBehavior };
|
|
68802
68935
|
//# sourceMappingURL=mosaik-elements-angular.mjs.map
|