@breadstone/mosaik-elements-angular 0.0.214 → 0.0.216

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.
@@ -23195,6 +23195,16 @@ let DrawerComponent = class DrawerComponent {
23195
23195
  this._element.isComposed = value;
23196
23196
  });
23197
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
+ }
23198
23208
  get header() {
23199
23209
  // @ts-ignore - temporary fix for the type error
23200
23210
  return this._element.header;
@@ -23412,12 +23422,12 @@ let DrawerComponent = class DrawerComponent {
23412
23422
  }
23413
23423
  }
23414
23424
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: DrawerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
23415
- 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 });
23416
23426
  };
23417
23427
  DrawerComponent = __decorate$2q([
23418
23428
  ProxyCmp({
23419
23429
  defineCustomElementFn: () => customElements.define('mosaik-drawer', DrawerElement),
23420
- 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'],
23421
23431
  methods: ['open', 'close', 'toggle', 'innerOffsetWidth', 'play', 'onEnterAnimation', 'onExitAnimation', 'assignToSlot', 'getSlotAssignments', 'getSlotAssignmentsOf', 'hasSlotContent', 'hasSlot', 'onSlotChanges', 'adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
23422
23432
  }),
23423
23433
  __metadata$2q("design:paramtypes", [])
@@ -23429,11 +23439,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImpor
23429
23439
  standalone: true,
23430
23440
  changeDetection: ChangeDetectionStrategy.OnPush,
23431
23441
  template: '<ng-content></ng-content>',
23432
- 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'],
23433
23443
  outputs: ['closed', 'opened', 'connected', 'disconnected', 'changed']
23434
23444
  }]
23435
23445
  }], ctorParameters: () => [], propDecorators: { isComposed: [{
23436
23446
  type: Input
23447
+ }], isFullScreen: [{
23448
+ type: Input
23437
23449
  }], header: [{
23438
23450
  type: Input
23439
23451
  }], subHeader: [{
@@ -43025,9 +43037,9 @@ const RESIZE_THUMB_DEFAULT_PROPS = new InjectionToken('MOSAIK_RESIZE_THUMB_DEFAU
43025
43037
  let ResizeThumbComponent = class ResizeThumbComponent {
43026
43038
  _element;
43027
43039
  _zone;
43028
- _resizestart;
43040
+ _resizeStart;
43029
43041
  _resizing;
43030
- _resizeend;
43042
+ _resizeEnd;
43031
43043
  _connected;
43032
43044
  _disconnected;
43033
43045
  _changed;
@@ -43035,12 +43047,12 @@ let ResizeThumbComponent = class ResizeThumbComponent {
43035
43047
  inject(ChangeDetectorRef).detach();
43036
43048
  this._element = inject(ElementRef).nativeElement;
43037
43049
  this._zone = inject(NgZone);
43038
- this._resizestart = new EventEmitter();
43039
- this._element.on('resizestart', (e) => this.onEmit(this._resizestart, e));
43050
+ this._resizeStart = new EventEmitter();
43051
+ this._element.on('resizeStart', (e) => this.onEmit(this._resizeStart, e));
43040
43052
  this._resizing = new EventEmitter();
43041
43053
  this._element.on('resizing', (e) => this.onEmit(this._resizing, e));
43042
- this._resizeend = new EventEmitter();
43043
- this._element.on('resizeend', (e) => this.onEmit(this._resizeend, e));
43054
+ this._resizeEnd = new EventEmitter();
43055
+ this._element.on('resizeEnd', (e) => this.onEmit(this._resizeEnd, e));
43044
43056
  this._connected = new EventEmitter();
43045
43057
  this._element.on('connected', (e) => this.onEmit(this._connected, e));
43046
43058
  this._disconnected = new EventEmitter();
@@ -43059,26 +43071,6 @@ let ResizeThumbComponent = class ResizeThumbComponent {
43059
43071
  this._element.isResizing = value;
43060
43072
  });
43061
43073
  }
43062
- get resizeStart() {
43063
- // @ts-ignore - temporary fix for the type error
43064
- return this._element.resizeStart;
43065
- }
43066
- set resizeStart(value) {
43067
- this._zone.runOutsideAngular(() => {
43068
- // @ts-ignore - temporary fix for the type error
43069
- this._element.resizeStart = value;
43070
- });
43071
- }
43072
- get resizeEnd() {
43073
- // @ts-ignore - temporary fix for the type error
43074
- return this._element.resizeEnd;
43075
- }
43076
- set resizeEnd(value) {
43077
- this._zone.runOutsideAngular(() => {
43078
- // @ts-ignore - temporary fix for the type error
43079
- this._element.resizeEnd = value;
43080
- });
43081
- }
43082
43074
  get direction() {
43083
43075
  // @ts-ignore - temporary fix for the type error
43084
43076
  return this._element.direction;
@@ -43209,14 +43201,14 @@ let ResizeThumbComponent = class ResizeThumbComponent {
43209
43201
  this._element.lang = value;
43210
43202
  });
43211
43203
  }
43212
- get resizestart() {
43213
- return this._resizestart;
43204
+ get resizeStart() {
43205
+ return this._resizeStart;
43214
43206
  }
43215
43207
  get resizing() {
43216
43208
  return this._resizing;
43217
43209
  }
43218
- get resizeend() {
43219
- return this._resizeend;
43210
+ get resizeEnd() {
43211
+ return this._resizeEnd;
43220
43212
  }
43221
43213
  get connected() {
43222
43214
  return this._connected;
@@ -43239,12 +43231,12 @@ let ResizeThumbComponent = class ResizeThumbComponent {
43239
43231
  }
43240
43232
  }
43241
43233
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: ResizeThumbComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
43242
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.6", type: ResizeThumbComponent, isStandalone: true, selector: "mosaik-resize-thumb", inputs: { isResizing: "isResizing", resizeStart: "resizeStart", resizeEnd: "resizeEnd", 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 });
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 });
43243
43235
  };
43244
43236
  ResizeThumbComponent = __decorate$15([
43245
43237
  ProxyCmp({
43246
43238
  defineCustomElementFn: () => customElements.define('mosaik-resize-thumb', ResizeThumbElement),
43247
- inputs: ['isResizing', 'resizeStart', 'resizeEnd', 'direction', 'allowedDirections', 'minWidth', 'minHeight', 'maxWidth', 'maxHeight', 'autoApply', 'themeName', 'disabled', 'for', 'control', 'dir', 'lang'],
43239
+ inputs: ['isResizing', 'direction', 'allowedDirections', 'minWidth', 'minHeight', 'maxWidth', 'maxHeight', 'autoApply', 'themeName', 'disabled', 'for', 'control', 'dir', 'lang'],
43248
43240
  methods: ['attach', 'detach', 'adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
43249
43241
  }),
43250
43242
  __metadata$15("design:paramtypes", [])
@@ -43256,15 +43248,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImpor
43256
43248
  standalone: true,
43257
43249
  changeDetection: ChangeDetectionStrategy.OnPush,
43258
43250
  template: '<ng-content></ng-content>',
43259
- inputs: ['isResizing', 'resizeStart', 'resizeEnd', 'direction', 'allowedDirections', 'minWidth', 'minHeight', 'maxWidth', 'maxHeight', 'autoApply', 'themeName', 'disabled', 'for', 'control', 'dir', 'lang'],
43260
- outputs: ['resizestart', 'resizing', 'resizeend', 'connected', 'disconnected', 'changed']
43251
+ inputs: ['isResizing', 'direction', 'allowedDirections', 'minWidth', 'minHeight', 'maxWidth', 'maxHeight', 'autoApply', 'themeName', 'disabled', 'for', 'control', 'dir', 'lang'],
43252
+ outputs: ['resizeStart', 'resizing', 'resizeEnd', 'connected', 'disconnected', 'changed']
43261
43253
  }]
43262
43254
  }], ctorParameters: () => [], propDecorators: { isResizing: [{
43263
43255
  type: Input
43264
- }], resizeStart: [{
43265
- type: Input
43266
- }], resizeEnd: [{
43267
- type: Input
43268
43256
  }], direction: [{
43269
43257
  type: Input
43270
43258
  }], allowedDirections: [{
@@ -43291,11 +43279,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImpor
43291
43279
  type: Input
43292
43280
  }], lang: [{
43293
43281
  type: Input
43294
- }], resizestart: [{
43282
+ }], resizeStart: [{
43295
43283
  type: Output
43296
43284
  }], resizing: [{
43297
43285
  type: Output
43298
- }], resizeend: [{
43286
+ }], resizeEnd: [{
43299
43287
  type: Output
43300
43288
  }], connected: [{
43301
43289
  type: Output
@@ -61329,7 +61317,7 @@ class ToastPortalComponent extends PortalComponent {
61329
61317
  return this._config;
61330
61318
  }
61331
61319
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: ToastPortalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
61332
- 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 });
61333
61321
  }
61334
61322
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: ToastPortalComponent, decorators: [{
61335
61323
  type: Component,
@@ -61338,7 +61326,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImpor
61338
61326
  }, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, imports: [
61339
61327
  CdkPortalOutlet,
61340
61328
  ToastComponent
61341
- ], 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>" }]
61342
61330
  }], ctorParameters: () => [], propDecorators: { _portal: [{
61343
61331
  type: ViewChild,
61344
61332
  args: [CdkPortalOutlet, { static: true }]
@@ -62392,7 +62380,7 @@ class DialogBehavior {
62392
62380
  // #endregion
62393
62381
  // #region Ctor
62394
62382
  /**
62395
- * Constructs a new instance of the `DialogService` class.
62383
+ * Constructs a new instance of the `DialogBehavior` class.
62396
62384
  *
62397
62385
  * @protected
62398
62386
  */
@@ -62415,8 +62403,6 @@ class DialogBehavior {
62415
62403
  }
62416
62404
  return this._ref;
62417
62405
  }
62418
- // #endregion
62419
- // #region Properties
62420
62406
  /**
62421
62407
  * Returns the `config` property.
62422
62408
  *
@@ -62584,47 +62570,60 @@ function each(self, fn) {
62584
62570
 
62585
62571
  // #region Imports
62586
62572
  /**
62587
- * Injection token for providing dialog breakpoint observer behavior configuration.
62573
+ * Injection token for providing dialog breakpoint behavior configuration.
62588
62574
  *
62589
62575
  * @public
62590
62576
  */
62591
- const DIALOG_BREAKPOINT_OBSERVER_BEHAVIOR_CONFIG = new InjectionToken('DIALOG_BREAKPOINT_OBSERVER_BEHAVIOR_CONFIG');
62577
+ const DIALOG_BREAKPOINT_BEHAVIOR_CONFIG = new InjectionToken('DIALOG_BREAKPOINT_OBSERVER_BEHAVIOR_CONFIG');
62592
62578
  /**
62593
62579
  * Behavior that adjusts dialog size based on viewport breakpoints.
62594
62580
  *
62595
62581
  * @public
62596
62582
  */
62597
62583
  // @Injectable()
62598
- class DialogBreakpointObserverBehavior extends DialogBehavior {
62584
+ class DialogBreakpointBehavior extends DialogBehavior {
62599
62585
  // #region Fields
62600
62586
  _breakpointObserver;
62601
62587
  _breakpointRegistry;
62602
62588
  _config;
62589
+ _mediaQueryToAliasMap;
62603
62590
  _subscription;
62604
62591
  // #endregion
62605
62592
  // #region Ctor
62606
62593
  /**
62607
- * Constructs a new instance of the `DialogBreakpointObserverBehavior` class.
62594
+ * Constructs a new instance of the `DialogBreakpointBehavior` class.
62608
62595
  *
62609
62596
  * @public
62610
62597
  */
62611
- constructor(config = inject(DIALOG_BREAKPOINT_OBSERVER_BEHAVIOR_CONFIG, { optional: true })) {
62598
+ constructor(config = inject(DIALOG_BREAKPOINT_BEHAVIOR_CONFIG, { optional: true })) {
62612
62599
  super();
62613
62600
  this._breakpointObserver = inject(BreakpointObserver);
62614
62601
  this._breakpointRegistry = inject(BreakpointRegistry);
62615
62602
  this._config = config;
62603
+ this._mediaQueryToAliasMap = new Map();
62616
62604
  this._subscription = Subscription.EMPTY;
62617
62605
  }
62618
62606
  // #endregion
62619
62607
  // #region Methods
62620
62608
  /**
62609
+ * Attaches a specific dialog to the behavior.
62610
+ *
62621
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).
62622
62615
  */
62623
62616
  attach(dialogRef, _portal) {
62624
62617
  if (this._config?.breakpoints.length) {
62618
+ this._mediaQueryToAliasMap.clear();
62625
62619
  const breakpoints = this._config.breakpoints
62626
- .map((x) => this._breakpointRegistry.findByAlias(x.breakpoint))
62627
- .map((x) => x?.mediaQuery)
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
+ })
62628
62627
  .filter((x) => x !== undefined);
62629
62628
  this._subscription = this._breakpointObserver.observe(breakpoints)
62630
62629
  .subscribe((x) => this.onBreakpoint(x, dialogRef, this.config ?? undefined));
@@ -62638,21 +62637,29 @@ class DialogBreakpointObserverBehavior extends DialogBehavior {
62638
62637
  * @override
62639
62638
  * @param ref - Optional dialog reference to detach (unused in this behavior).
62640
62639
  */
62641
- detach(ref) {
62640
+ detach(_ref) {
62642
62641
  this._subscription.unsubscribe();
62643
62642
  }
62644
62643
  /**
62644
+ * Handles breakpoint state changes and updates dialog size accordingly.
62645
+ *
62645
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.
62646
62650
  */
62647
- onBreakpoint(state, dialogRef, properties) {
62648
- if (!properties?.isFullScreen) {
62651
+ onBreakpoint(state, dialogRef, config) {
62652
+ if (!config?.isFullScreen) {
62649
62653
  if (state.matches) {
62650
- Object.entries(state.breakpoints).forEach(([key, match]) => {
62654
+ Object.entries(state.breakpoints).forEach(([mediaQuery, match]) => {
62651
62655
  if (match) {
62652
- const bp = this._config?.breakpoints.find((x) => x.breakpoint === key) ?? null;
62656
+ const alias = this._mediaQueryToAliasMap.get(mediaQuery);
62657
+ const breakpointConfig = alias
62658
+ ? this._config?.breakpoints.find((x) => x.breakpoint === alias) ?? null
62659
+ : null;
62653
62660
  dialogRef.updateSize({
62654
- width: bp?.size.width,
62655
- height: bp?.size.height
62661
+ width: breakpointConfig?.size.width,
62662
+ height: breakpointConfig?.size.height
62656
62663
  });
62657
62664
  dialogRef.component.isFullScreen = true;
62658
62665
  }
@@ -62660,8 +62667,8 @@ class DialogBreakpointObserverBehavior extends DialogBehavior {
62660
62667
  }
62661
62668
  else {
62662
62669
  dialogRef.updateSize({
62663
- width: properties?.size?.width,
62664
- height: properties?.size?.height
62670
+ width: config?.size?.width,
62671
+ height: config?.size?.height
62665
62672
  });
62666
62673
  dialogRef.component.isFullScreen = false;
62667
62674
  }
@@ -62912,13 +62919,13 @@ function provideDialogs(...withBehaviors) {
62912
62919
  function withDialogBreakpointBehavior(config) {
62913
62920
  return {
62914
62921
  id: 'dialogBreakpointBehavior',
62915
- behaviorType: DialogBreakpointObserverBehavior,
62922
+ behaviorType: DialogBreakpointBehavior,
62916
62923
  provide: () => [{
62917
- provide: DIALOG_BREAKPOINT_OBSERVER_BEHAVIOR_CONFIG,
62924
+ provide: DIALOG_BREAKPOINT_BEHAVIOR_CONFIG,
62918
62925
  useValue: config
62919
62926
  }, {
62920
- provide: DialogBreakpointObserverBehavior,
62921
- useClass: DialogBreakpointObserverBehavior
62927
+ provide: DialogBreakpointBehavior,
62928
+ useClass: DialogBreakpointBehavior
62922
62929
  }]
62923
62930
  };
62924
62931
  }
@@ -63241,7 +63248,7 @@ class DrawerPortalComponent extends PortalComponent {
63241
63248
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: DrawerPortalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
63242
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: [
63243
63250
  provideDrawerSlots()
63244
- ], 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 });
63245
63252
  }
63246
63253
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: DrawerPortalComponent, decorators: [{
63247
63254
  type: Component,
@@ -63391,6 +63398,7 @@ class DrawerRef extends PortalRef {
63391
63398
  height: size.height
63392
63399
  });
63393
63400
  this.overlayRef.updatePosition();
63401
+ // TODO: here is the resizing of the drawer element itself missing!
63394
63402
  this._sizeChangedSubject.next(size);
63395
63403
  return this;
63396
63404
  }
@@ -63680,6 +63688,112 @@ class DrawerBehavior {
63680
63688
  }
63681
63689
  }
63682
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
+
63683
63797
  // #region Imports
63684
63798
  // #endregion
63685
63799
  /**
@@ -64018,6 +64132,22 @@ function provideDrawers(...withBehaviors) {
64018
64132
  useClass: DrawerService
64019
64133
  }, ...withBehaviors.flatMap((x) => x.provide())]);
64020
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
+ }
64021
64151
  /**
64022
64152
  * @public
64023
64153
  */
@@ -68801,5 +68931,5 @@ const CONTROLLER_HOSTS = new WeakMap();
68801
68931
  * Generated bundle index. Do not edit.
68802
68932
  */
68803
68933
 
68804
- 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 };
68805
68935
  //# sourceMappingURL=mosaik-elements-angular.mjs.map