matcha-components 20.54.0 → 20.57.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { OnInit, OnChanges, EventEmitter, SimpleChanges, AfterContentInit, OnDestroy, QueryList, ElementRef, Renderer2, TemplateRef, ChangeDetectorRef, AfterViewInit, NgZone, InjectionToken, PipeTransform, ApplicationRef, Injector, RendererFactory2, Type, ComponentRef } from '@angular/core';
2
+ import { OnInit, OnChanges, EventEmitter, SimpleChanges, AfterContentInit, OnDestroy, QueryList, ElementRef, Renderer2, ChangeDetectorRef, AfterViewInit, TemplateRef, NgZone, InjectionToken, PipeTransform, ApplicationRef, Injector, RendererFactory2, Type, ComponentRef } from '@angular/core';
3
3
  import * as rxjs from 'rxjs';
4
4
  import { Observable, Subject } from 'rxjs';
5
5
  import * as i3 from '@angular/forms';
@@ -236,6 +236,7 @@ declare class MatchaButtonComponent implements OnChanges, OnInit {
236
236
  sizeMd: string | null;
237
237
  sizeLg: string | null;
238
238
  sizeXl: string | null;
239
+ gap: string | number | null;
239
240
  color: string | null;
240
241
  get colorAttr(): string | null;
241
242
  private _basic;
@@ -263,15 +264,17 @@ declare class MatchaButtonComponent implements OnChanges, OnInit {
263
264
  private clearConfig;
264
265
  private setConfig;
265
266
  private setSize;
267
+ private setGap;
266
268
  private setOutline;
267
269
  private setPill;
268
270
  private setLink;
269
271
  private setBasic;
270
272
  private setIcon;
273
+ private updateDividerStyles;
271
274
  private addRippleEffect;
272
275
  ngOnDestroy(): void;
273
276
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaButtonComponent, never>;
274
- static ɵcmp: i0.ɵɵComponentDeclaration<MatchaButtonComponent, "[matcha-button]", never, { "size": { "alias": "size"; "required": false; }; "sizeXs": { "alias": "size-xs"; "required": false; }; "sizeSm": { "alias": "size-sm"; "required": false; }; "sizeMd": { "alias": "size-md"; "required": false; }; "sizeLg": { "alias": "size-lg"; "required": false; }; "sizeXl": { "alias": "size-xl"; "required": false; }; "color": { "alias": "color"; "required": false; }; "basic": { "alias": "basic"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "alpha": { "alias": "alpha"; "required": false; }; "pill": { "alias": "pill"; "required": false; }; "link": { "alias": "link"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, {}, never, ["*"], false, never>;
277
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatchaButtonComponent, "[matcha-button]", never, { "size": { "alias": "size"; "required": false; }; "sizeXs": { "alias": "size-xs"; "required": false; }; "sizeSm": { "alias": "size-sm"; "required": false; }; "sizeMd": { "alias": "size-md"; "required": false; }; "sizeLg": { "alias": "size-lg"; "required": false; }; "sizeXl": { "alias": "size-xl"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; "color": { "alias": "color"; "required": false; }; "basic": { "alias": "basic"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "alpha": { "alias": "alpha"; "required": false; }; "pill": { "alias": "pill"; "required": false; }; "link": { "alias": "link"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, {}, never, ["*"], false, never>;
275
278
  }
276
279
 
277
280
  declare class MatchaCardComponent {
@@ -305,12 +308,13 @@ declare class MatchaDividerComponent {
305
308
  gapMd: string | number | null;
306
309
  gapLg: string | number | null;
307
310
  gapXl: string | number | null;
308
- private _vertical;
309
- set vertical(value: boolean | string);
310
- get vertical(): boolean;
311
+ private _direction;
312
+ set direction(value: string);
313
+ get direction(): string;
314
+ get directionAttr(): string;
311
315
  get classes(): string;
312
316
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDividerComponent, never>;
313
- static ɵcmp: i0.ɵɵComponentDeclaration<MatchaDividerComponent, "matcha-divider", never, { "gap": { "alias": "gap"; "required": false; }; "gapSm": { "alias": "gap-sm"; "required": false; }; "gapMd": { "alias": "gap-md"; "required": false; }; "gapLg": { "alias": "gap-lg"; "required": false; }; "gapXl": { "alias": "gap-xl"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, {}, never, never, false, never>;
317
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatchaDividerComponent, "matcha-divider", never, { "gap": { "alias": "gap"; "required": false; }; "gapSm": { "alias": "gap-sm"; "required": false; }; "gapMd": { "alias": "gap-md"; "required": false; }; "gapLg": { "alias": "gap-lg"; "required": false; }; "gapXl": { "alias": "gap-xl"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; }, {}, never, never, false, never>;
314
318
  }
315
319
 
316
320
  interface ILevelClasses {
@@ -319,9 +323,18 @@ interface ILevelClasses {
319
323
  declare class MatchaTitleComponent {
320
324
  color: null | string;
321
325
  size: number | string;
322
- loading: boolean;
323
- type: 'pill' | 'bullet' | 'icon' | 'none';
324
- icon: string;
326
+ private _loading;
327
+ get loading(): boolean | string;
328
+ set loading(v: boolean | string);
329
+ get loadingAttr(): string | null;
330
+ private _type;
331
+ get type(): "pill" | "bullet" | "icon" | "none" | string;
332
+ set type(v: 'pill' | 'bullet' | 'icon' | 'none' | string);
333
+ get typeAttr(): string;
334
+ private _icon;
335
+ get icon(): string;
336
+ set icon(v: string);
337
+ get iconAttr(): string | null;
325
338
  iconClick: EventEmitter<object>;
326
339
  sizeClasses: ILevelClasses;
327
340
  getTypes(): string;
@@ -333,171 +346,112 @@ declare class MatchaTitleComponent {
333
346
  static ɵcmp: i0.ɵɵComponentDeclaration<MatchaTitleComponent, "matcha-title", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "type": { "alias": "type"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, { "iconClick": "iconClick"; }, never, ["*"], false, never>;
334
347
  }
335
348
 
336
- interface BreakpointState {
337
- matches: boolean;
338
- breakpoint: string;
339
- }
340
- /**
341
- * Serviço singleton para observação de breakpoints CSS
342
- * Funciona tanto no browser quanto no servidor (SSR)
343
- */
344
- declare class MatchaBreakpointObserver implements OnDestroy {
345
- private platformId;
346
- private breakpointSubject;
347
- private resizeSubscription;
348
- private isBrowser;
349
- private currentBreakpoints;
350
- constructor(platformId: Object);
349
+ type DrawerMode = 'over' | 'push' | 'side';
350
+ type DrawerPosition = 'start' | 'end';
351
+ declare class MatchaDrawerComponent implements OnInit, OnDestroy {
352
+ private _elementRef;
353
+ private _cdr;
354
+ position: DrawerPosition;
355
+ private _mode;
356
+ get mode(): DrawerMode;
357
+ set mode(value: DrawerMode);
358
+ disableClose: boolean;
359
+ autoFocus: boolean;
360
+ fixedInViewport: boolean;
361
+ fixedTopGap: number;
362
+ fixedBottomGap: number;
363
+ width: string;
364
+ get drawerWidth(): string;
365
+ private _opened;
366
+ get opened(): boolean;
367
+ set opened(value: boolean);
368
+ openedChange: EventEmitter<boolean>;
369
+ openedStart: EventEmitter<void>;
370
+ closedStart: EventEmitter<void>;
371
+ modeChange: EventEmitter<DrawerMode>;
372
+ private _animationSubject;
373
+ private _animating;
374
+ constructor(_elementRef: ElementRef, _cdr: ChangeDetectorRef);
375
+ ngOnInit(): void;
351
376
  ngOnDestroy(): void;
377
+ private _setupAnimationDebounce;
352
378
  /**
353
- * Observa um breakpoint específico
354
- * @param breakpoint - String no formato CSS media query (ex: '(max-width: 768px)')
355
- * @returns Observable<BreakpointState>
379
+ * Toggle o estado do drawer
356
380
  */
357
- observe(breakpoint: string): Observable<BreakpointState>;
381
+ toggle(isOpen?: boolean): Promise<void>;
358
382
  /**
359
- * Verifica se um breakpoint específico está ativo
360
- * @param breakpoint - String no formato CSS media query
361
- * @returns boolean
383
+ * Abre o drawer
362
384
  */
363
- isMatched(breakpoint: string): boolean;
385
+ open(): Promise<void>;
364
386
  /**
365
- * Obtém o estado atual do breakpoint
366
- * @param breakpoint - String no formato CSS media query
367
- * @returns BreakpointState
368
- */
369
- getState(breakpoint: string): BreakpointState;
370
- /**
371
- * Observa múltiplos breakpoints simultaneamente
372
- * @param breakpoints - Array de strings de breakpoints
373
- * @returns Observable<Map<string, boolean>>
387
+ * Fecha o drawer
374
388
  */
375
- observeMultiple(breakpoints: string[]): Observable<Map<string, boolean>>;
376
- private setupResizeListener;
377
- private checkBreakpoint;
389
+ close(): Promise<void>;
378
390
  /**
379
- * Método utilitário para criar breakpoints comuns
391
+ * Getter para saber se está animando
380
392
  */
381
- static createBreakpoint(width: number, condition?: 'max' | 'min'): string;
393
+ get animating(): boolean;
382
394
  /**
383
- * Breakpoints pré-definidos para facilitar o uso
395
+ * Getter para a largura/altura do drawer
384
396
  */
385
- static readonly BREAKPOINTS: {
386
- readonly XS: "(max-width: 480px)";
387
- readonly SM: "(max-width: 768px)";
388
- readonly MD: "(max-width: 1024px)";
389
- readonly LG: "(max-width: 1200px)";
390
- readonly XL: "(max-width: 1440px)";
391
- readonly MOBILE: "(max-width: 768px)";
392
- readonly TABLET: "(min-width: 769px) and (max-width: 1024px)";
393
- readonly DESKTOP: "(min-width: 1025px)";
394
- };
395
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaBreakpointObserver, never>;
396
- static ɵprov: i0.ɵɵInjectableDeclaration<MatchaBreakpointObserver>;
397
- }
398
-
399
- interface DrawerItem {
400
- id: string;
401
- label: string;
402
- icon?: string;
403
- route?: string;
404
- action?: () => void;
405
- badge?: string | number;
406
- disabled?: boolean;
407
- divider?: boolean;
408
- }
409
- interface DrawerSection {
410
- id: string;
411
- title?: string;
412
- items: DrawerItem[];
413
- position: 'top' | 'bottom';
414
- divider?: boolean;
415
- }
416
- type DrawerMode = 'push' | 'overlay';
417
- type DrawerPosition = 'left' | 'right';
418
- declare class MatchaDrawerComponent implements OnInit, OnDestroy {
419
- private elementRef;
420
- private renderer;
421
- private cdr;
422
- private breakpointObserver;
423
- isOpen: boolean;
424
- mode: DrawerMode;
425
- position: DrawerPosition;
426
- width: string;
427
- hasBackdrop: boolean;
428
- disableClose: boolean;
429
- autoCloseOnMobile: boolean;
430
- breakpoint: number;
431
- elevation: number;
432
- hasFooter: boolean;
433
- responsiveMode: boolean;
434
- mobileMode: DrawerMode;
435
- desktopMode: DrawerMode;
436
- mobileBreakpoint: number;
437
- autoResponsive: boolean;
438
- isOpenChange: EventEmitter<boolean>;
439
- drawerToggle: EventEmitter<void>;
440
- drawerOpened: EventEmitter<void>;
441
- drawerClosed: EventEmitter<void>;
442
- drawerContent: TemplateRef<any>;
443
- get drawerClasses(): string;
444
- get drawerWidth(): string;
445
- get drawerHeight(): string;
446
- private resizeObserver;
447
- private isMobile;
448
- private bodyScrollLocked;
449
- private breakpointSubscription?;
450
- private currentResponsiveMode;
451
- private resizeSubject;
452
- constructor(elementRef: ElementRef, renderer: Renderer2, cdr: ChangeDetectorRef, breakpointObserver: MatchaBreakpointObserver);
453
- ngOnInit(): void;
454
- ngOnDestroy(): void;
455
- private setupResizeObserver;
456
- private setupResizeDebounce;
457
- private checkScreenSize;
458
- private setupResponsiveMode;
459
- private updateModeBasedOnScreen;
460
- private updateDrawerStateOnResize;
461
- private setupSmartInitialState;
462
- private setupBodyScrollLock;
463
- private lockBodyScroll;
464
- private unlockBodyScroll;
465
- toggle(): void;
466
- open(): void;
467
- close(): void;
468
- onBackdropClick(): void;
469
- onKeyDown(event: KeyboardEvent): void;
470
- getDrawerTransform(): string;
471
- get animationState(): "open" | "closed";
472
- get isOverlayMode(): boolean;
473
- get isPushMode(): boolean;
474
- get currentMode(): DrawerMode;
475
- get isMobileView(): boolean;
476
- get isResponsiveActive(): boolean;
477
- get isAutoResponsiveActive(): boolean;
397
+ get visibility(): string;
478
398
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDrawerComponent, never>;
479
- static ɵcmp: i0.ɵɵComponentDeclaration<MatchaDrawerComponent, "matcha-drawer", never, { "isOpen": { "alias": "isOpen"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "position": { "alias": "position"; "required": false; }; "width": { "alias": "width"; "required": false; }; "hasBackdrop": { "alias": "hasBackdrop"; "required": false; }; "disableClose": { "alias": "disableClose"; "required": false; }; "autoCloseOnMobile": { "alias": "autoCloseOnMobile"; "required": false; }; "breakpoint": { "alias": "breakpoint"; "required": false; }; "elevation": { "alias": "elevation"; "required": false; }; "hasFooter": { "alias": "hasFooter"; "required": false; }; "responsiveMode": { "alias": "responsiveMode"; "required": false; }; "mobileMode": { "alias": "mobileMode"; "required": false; }; "desktopMode": { "alias": "desktopMode"; "required": false; }; "mobileBreakpoint": { "alias": "mobileBreakpoint"; "required": false; }; "autoResponsive": { "alias": "autoResponsive"; "required": false; }; }, { "isOpenChange": "isOpenChange"; "drawerToggle": "drawerToggle"; "drawerOpened": "drawerOpened"; "drawerClosed": "drawerClosed"; }, never, ["[drawer-header]", "[drawer-content]", "*", "[drawer-footer]"], false, never>;
480
- }
481
-
482
- declare class MatchaDrawerContainerComponent implements OnInit, OnDestroy {
483
- hasBackdrop: boolean;
484
- autoFocus: boolean;
485
- drawer: MatchaDrawerComponent;
486
- ngOnInit(): void;
487
- ngOnDestroy(): void;
488
- private setupDrawerEvents;
489
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDrawerContainerComponent, never>;
490
- static ɵcmp: i0.ɵɵComponentDeclaration<MatchaDrawerContainerComponent, "matcha-drawer-container", never, { "hasBackdrop": { "alias": "hasBackdrop"; "required": false; }; "autoFocus": { "alias": "autoFocus"; "required": false; }; }, {}, ["drawer"], ["*"], false, never>;
399
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatchaDrawerComponent, "matcha-drawer", never, { "position": { "alias": "position"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "disableClose": { "alias": "disableClose"; "required": false; }; "autoFocus": { "alias": "autoFocus"; "required": false; }; "fixedInViewport": { "alias": "fixedInViewport"; "required": false; }; "fixedTopGap": { "alias": "fixedTopGap"; "required": false; }; "fixedBottomGap": { "alias": "fixedBottomGap"; "required": false; }; "width": { "alias": "width"; "required": false; }; "opened": { "alias": "opened"; "required": false; }; }, { "openedChange": "openedChange"; "openedStart": "openedStart"; "closedStart": "closedStart"; "modeChange": "modeChange"; }, never, ["*"], false, never>;
491
400
  }
492
401
 
493
402
  declare class MatchaDrawerContentComponent {
494
- padding: string;
495
- scrollable: boolean;
496
- maxHeight: string;
497
- get contentClasses(): string;
498
- get maxHeightStyle(): string;
403
+ _elementRef: ElementRef<HTMLElement>;
404
+ constructor(_elementRef: ElementRef<HTMLElement>);
499
405
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDrawerContentComponent, never>;
500
- static ɵcmp: i0.ɵɵComponentDeclaration<MatchaDrawerContentComponent, "matcha-drawer-content", never, { "padding": { "alias": "padding"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; }, {}, never, ["*"], false, never>;
406
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatchaDrawerContentComponent, "matcha-drawer-content", never, {}, {}, never, ["*"], false, never>;
407
+ }
408
+
409
+ declare class MatchaDrawerContainerComponent implements AfterContentInit, OnDestroy {
410
+ private _cdr;
411
+ _drawers: QueryList<MatchaDrawerComponent>;
412
+ _content: MatchaDrawerContentComponent;
413
+ get hasOpenDrawer(): boolean;
414
+ /** Backdrop override */
415
+ _backdropOverride: boolean | null;
416
+ private _destroyed;
417
+ private _doCheck;
418
+ constructor(_cdr: ChangeDetectorRef);
419
+ ngAfterContentInit(): void;
420
+ /**
421
+ * Inscreve nos eventos de cada drawer
422
+ */
423
+ private _subscribeToDrawerChanges;
424
+ ngOnDestroy(): void;
425
+ /**
426
+ * Fecha todos os drawers que não têm disableClose
427
+ */
428
+ onEscape(): void;
429
+ /**
430
+ * Valida que não há múltiplos drawers na mesma posição
431
+ */
432
+ private _validateDrawers;
433
+ /**
434
+ * Atualiza as margens do conteúdo baseado nos drawers abertos
435
+ */
436
+ private _updateContentMargins;
437
+ /**
438
+ * Obtém a largura do drawer de forma segura
439
+ */
440
+ private _getDrawerWidth;
441
+ /**
442
+ * Define as margens do conteúdo
443
+ */
444
+ private _setContentMargins;
445
+ /**
446
+ * Retorna se há um backdrop visível
447
+ */
448
+ get _hasBackdrop(): boolean;
449
+ /**
450
+ * Fecha o drawer quando o backdrop é clicado
451
+ */
452
+ _onBackdropClick(): void;
453
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDrawerContainerComponent, never>;
454
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatchaDrawerContainerComponent, "matcha-drawer-container", never, {}, {}, ["_content", "_drawers"], ["matcha-drawer", "matcha-drawer-content"], false, never>;
501
455
  }
502
456
 
503
457
  declare class MatchaIconComponent {
@@ -595,21 +549,6 @@ declare class MatchaModalComponent {
595
549
  static ɵcmp: i0.ɵɵComponentDeclaration<MatchaModalComponent, "matcha-modal", never, { "size": { "alias": "size"; "required": false; }; "sizeXs": { "alias": "size-xs"; "required": false; }; "sizeSm": { "alias": "size-sm"; "required": false; }; "sizeMd": { "alias": "size-md"; "required": false; }; "sizeLg": { "alias": "size-lg"; "required": false; }; "sizeXl": { "alias": "size-xl"; "required": false; }; "class": { "alias": "class"; "required": false; }; "hasBackdrop": { "alias": "hasBackdrop"; "required": false; }; "backdropClass": { "alias": "backdropClass"; "required": false; }; }, {}, never, ["*"], false, never>;
596
550
  }
597
551
 
598
- declare class MatchaMenuComponent {
599
- private _elementRef;
600
- private _renderer;
601
- isParentMenu: boolean;
602
- isOpen: boolean;
603
- constructor(_elementRef: ElementRef, _renderer: Renderer2);
604
- handleOutsideClick(event: Event): void;
605
- handleMouseLeave(event: MouseEvent): void;
606
- openMenu(): void;
607
- closeMenu(): void;
608
- toggleMenu(): void;
609
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaMenuComponent, never>;
610
- static ɵcmp: i0.ɵɵComponentDeclaration<MatchaMenuComponent, "matcha-menu", ["matchaMenu"], { "isParentMenu": { "alias": "isParentMenu"; "required": false; }; }, {}, never, ["*"], false, never>;
611
- }
612
-
613
552
  declare class MatchaToolbarComponent implements OnInit, OnDestroy {
614
553
  elevation: number;
615
554
  isMobileScreen: boolean;
@@ -650,7 +589,8 @@ declare class MatchaToolbarCustomButtonComponent {
650
589
  static ɵcmp: i0.ɵɵComponentDeclaration<MatchaToolbarCustomButtonComponent, "matcha-toolbar-custom-button", never, {}, {}, never, ["*"], false, never>;
651
590
  }
652
591
 
653
- declare class MatchaFormFieldComponent {
592
+ declare class MatchaFormFieldComponent implements AfterViewInit {
593
+ private elementRef;
654
594
  color: 'red' | 'pink' | 'purple' | 'deep-purple' | 'indigo' | 'blue' | 'light-blue' | 'cyan' | 'teal' | 'green' | 'light-green' | 'lime' | 'yellow' | 'amber' | 'orange' | 'deep-orange' | 'primary' | 'accent' | 'warn' | 'brown' | 'grey' | 'blue-grey' | 'primary' | 'accent' | 'warn';
655
595
  size: string | null | undefined | 'tiny' | 'small' | 'medium' | 'large' | 'huge';
656
596
  sizeXs: string | null;
@@ -659,6 +599,10 @@ declare class MatchaFormFieldComponent {
659
599
  sizeLg: string | null;
660
600
  sizeXl: string | null;
661
601
  controlDir?: FormControlName;
602
+ constructor(elementRef: ElementRef);
603
+ ngAfterViewInit(): void;
604
+ private generateDataCy;
605
+ private convertToKebabCase;
662
606
  get control(): i3.FormControl<any> | undefined;
663
607
  get showError(): boolean;
664
608
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaFormFieldComponent, never>;
@@ -1842,20 +1786,6 @@ declare class MatchaSelectModule {
1842
1786
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaSelectModule>;
1843
1787
  }
1844
1788
 
1845
- declare class MatchaBadgeDirective {
1846
- private _elementRef;
1847
- private _renderer;
1848
- constructor(_elementRef: ElementRef, _renderer: Renderer2);
1849
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaBadgeDirective, never>;
1850
- static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaBadgeDirective, "[matcha-badge]", never, {}, {}, never, never, false, never>;
1851
- }
1852
-
1853
- declare class MatchaBadgeModule {
1854
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaBadgeModule, never>;
1855
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaBadgeModule, [typeof MatchaBadgeDirective], never, [typeof MatchaBadgeDirective]>;
1856
- static ɵinj: i0.ɵɵInjectorDeclaration<MatchaBadgeModule>;
1857
- }
1858
-
1859
1789
  declare class MatchaRippleDirective implements OnDestroy {
1860
1790
  private el;
1861
1791
  rippleColor: string;
@@ -1891,20 +1821,6 @@ declare class MatchaHintTextModule {
1891
1821
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaHintTextModule>;
1892
1822
  }
1893
1823
 
1894
- declare class MatchaInputDirective {
1895
- private _elementRef;
1896
- private _renderer;
1897
- constructor(_elementRef: ElementRef, _renderer: Renderer2);
1898
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaInputDirective, never>;
1899
- static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaInputDirective, "[matcha-input]", never, {}, {}, never, never, false, never>;
1900
- }
1901
-
1902
- declare class MatchaInputModule {
1903
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaInputModule, never>;
1904
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaInputModule, [typeof MatchaInputDirective], never, [typeof MatchaInputDirective]>;
1905
- static ɵinj: i0.ɵɵInjectorDeclaration<MatchaInputModule>;
1906
- }
1907
-
1908
1824
  type InputTransformFn = (value: unknown) => string | number;
1909
1825
  type OutputTransformFn = (value: string | number | undefined | null) => unknown;
1910
1826
  type MatchaMaskConfig = {
@@ -2151,58 +2067,12 @@ declare class MatchaInputPhoneModule {
2151
2067
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaInputPhoneModule>;
2152
2068
  }
2153
2069
 
2154
- declare class MatchaMenuTriggerForDirective {
2155
- private _elementRef;
2156
- private _renderer;
2157
- menu: MatchaMenuComponent;
2158
- constructor(_elementRef: ElementRef, _renderer: Renderer2);
2159
- onClick(event: Event): void;
2160
- onMouseEnter(): void;
2161
- onMouseLeave(): void;
2162
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaMenuTriggerForDirective, never>;
2163
- static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaMenuTriggerForDirective, "[matchaMenuTriggerFor]", ["matchaMenuTriggerFor"], { "menu": { "alias": "matchaMenuTriggerFor"; "required": false; }; }, {}, never, never, false, never>;
2164
- }
2165
-
2166
- declare class MatchaMenuModule {
2167
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaMenuModule, never>;
2168
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaMenuModule, [typeof MatchaMenuComponent, typeof MatchaMenuTriggerForDirective], [typeof i2.CommonModule], [typeof MatchaMenuComponent, typeof MatchaMenuTriggerForDirective]>;
2169
- static ɵinj: i0.ɵɵInjectorDeclaration<MatchaMenuModule>;
2170
- }
2171
-
2172
2070
  declare class MatchaPaginatorModule {
2173
2071
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaPaginatorModule, never>;
2174
2072
  static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaPaginatorModule, [typeof MatchaPaginatorComponent], [typeof i2.CommonModule, typeof MatchaIconModule], [typeof MatchaPaginatorComponent]>;
2175
2073
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaPaginatorModule>;
2176
2074
  }
2177
2075
 
2178
- declare class MatchaProgressBarDirective {
2179
- private _elementRef;
2180
- private _renderer;
2181
- constructor(_elementRef: ElementRef, _renderer: Renderer2);
2182
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaProgressBarDirective, never>;
2183
- static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaProgressBarDirective, "[matcha-progress-bar]", never, {}, {}, never, never, false, never>;
2184
- }
2185
-
2186
- declare class MatchaProgressBarModule {
2187
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaProgressBarModule, never>;
2188
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaProgressBarModule, [typeof MatchaProgressBarDirective], [typeof i2.CommonModule], [typeof MatchaProgressBarDirective]>;
2189
- static ɵinj: i0.ɵɵInjectorDeclaration<MatchaProgressBarModule>;
2190
- }
2191
-
2192
- declare class MatchaSidenavDirective {
2193
- private _elementRef;
2194
- private _renderer;
2195
- constructor(_elementRef: ElementRef, _renderer: Renderer2);
2196
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSidenavDirective, never>;
2197
- static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaSidenavDirective, "[matcha-sidenav]", never, {}, {}, never, never, false, never>;
2198
- }
2199
-
2200
- declare class MatchaSidenavModule {
2201
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSidenavModule, never>;
2202
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaSidenavModule, [typeof MatchaSidenavDirective], [typeof i2.CommonModule], [typeof MatchaSidenavDirective]>;
2203
- static ɵinj: i0.ɵɵInjectorDeclaration<MatchaSidenavModule>;
2204
- }
2205
-
2206
2076
  declare class MatchaSlideToggleModule {
2207
2077
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSlideToggleModule, never>;
2208
2078
  static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaSlideToggleModule, [typeof MatchaSlideToggleComponent], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof MatchaSlideToggleComponent]>;
@@ -2215,34 +2085,6 @@ declare class MatchaSliderModule {
2215
2085
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaSliderModule>;
2216
2086
  }
2217
2087
 
2218
- declare class MatchaSnackBarDirective {
2219
- private _elementRef;
2220
- private _renderer;
2221
- constructor(_elementRef: ElementRef, _renderer: Renderer2);
2222
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSnackBarDirective, never>;
2223
- static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaSnackBarDirective, "[matchaSnackBar]", never, {}, {}, never, never, false, never>;
2224
- }
2225
-
2226
- declare class MatchaSnackBarModule {
2227
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSnackBarModule, never>;
2228
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaSnackBarModule, [typeof MatchaSnackBarDirective], [typeof i2.CommonModule], [typeof MatchaSnackBarDirective]>;
2229
- static ɵinj: i0.ɵɵInjectorDeclaration<MatchaSnackBarModule>;
2230
- }
2231
-
2232
- declare class MatchaSortHeaderDirective {
2233
- private _elementRef;
2234
- private _renderer;
2235
- constructor(_elementRef: ElementRef, _renderer: Renderer2);
2236
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSortHeaderDirective, never>;
2237
- static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaSortHeaderDirective, "[matchaSortHeader]", never, {}, {}, never, never, false, never>;
2238
- }
2239
-
2240
- declare class MatchaSortHeaderModule {
2241
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSortHeaderModule, never>;
2242
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaSortHeaderModule, [typeof MatchaSortHeaderDirective], [typeof i2.CommonModule], [typeof MatchaSortHeaderDirective]>;
2243
- static ɵinj: i0.ɵɵInjectorDeclaration<MatchaSortHeaderModule>;
2244
- }
2245
-
2246
2088
  declare class MatchaSpinModule {
2247
2089
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSpinModule, never>;
2248
2090
  static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaSpinModule, [typeof MatchaSpinComponent], [typeof i2.CommonModule], [typeof MatchaSpinComponent]>;
@@ -2277,20 +2119,6 @@ declare class MatchaStepperModule {
2277
2119
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaStepperModule>;
2278
2120
  }
2279
2121
 
2280
- declare class MatchaTableDirective {
2281
- private _elementRef;
2282
- private _renderer;
2283
- constructor(_elementRef: ElementRef, _renderer: Renderer2);
2284
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaTableDirective, never>;
2285
- static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaTableDirective, "[matchaTable]", never, {}, {}, never, never, false, never>;
2286
- }
2287
-
2288
- declare class MatchaTableModule {
2289
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaTableModule, never>;
2290
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaTableModule, [typeof MatchaTableDirective], [typeof i2.CommonModule], [typeof MatchaTableDirective]>;
2291
- static ɵinj: i0.ɵɵInjectorDeclaration<MatchaTableModule>;
2292
- }
2293
-
2294
2122
  declare class MatchaTabsModule {
2295
2123
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaTabsModule, never>;
2296
2124
  static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaTabsModule, [typeof MatchaTabsComponent, typeof MatchaTabItemComponent], [typeof i2.CommonModule, typeof MatchaIconModule], [typeof MatchaTabsComponent, typeof MatchaTabItemComponent]>;
@@ -2351,7 +2179,7 @@ declare class MatchaAvatarModule {
2351
2179
 
2352
2180
  declare class MatchaComponentsModule {
2353
2181
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaComponentsModule, never>;
2354
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaComponentsModule, [typeof MatchaOverflowDraggableComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof MatchaAccordionModule, typeof MatchaAutocompleteModule, typeof MatchaOptionModule, typeof MatchaPanelModule, typeof MatchaSelectModule, typeof MatchaBadgeModule, typeof MatchaButtonModule, typeof MatchaButtonToggleModule, typeof MatchaCardModule, typeof MatchaCheckboxModule, typeof MatchaRadioModule, typeof MatchaDividerModule, typeof MatchaElevationModule, typeof MatchaFormFieldModule, typeof MatchaHintTextModule, typeof MatchaIconModule, typeof MatchaInfiniteScrollModule, typeof MatchaLazyloadModule, typeof MatchaInputModule, typeof MatchaInputPhoneModule, typeof MatchaMasonryModule, typeof MatchaMenuModule, typeof MatchaModalModule, typeof MatchaPaginatorModule, typeof MatchaProgressBarModule, typeof MatchaRippleModule, typeof MatchaSidenavModule, typeof MatchaSlideToggleModule, typeof MatchaSliderModule, typeof MatchaSnackBarModule, typeof MatchaSortHeaderModule, typeof MatchaSpinModule, typeof MatchaSpinnerModule, typeof MatchaStepperModule, typeof MatchaTableModule, typeof MatchaTabsModule, typeof MatchaTitleModule, typeof MatchaTooltipModule, typeof MatchaDateRangeModule, typeof MatchaTimeModule, typeof MatchaDropListModule, typeof MatchaPageLayoutModule, typeof MatchaDrawerModule, typeof MatchaHighlightModule, typeof MatchaMaskModule], [typeof MatchaAccordionModule, typeof MatchaAutocompleteModule, typeof MatchaOptionModule, typeof MatchaPanelModule, typeof MatchaSelectModule, typeof MatchaBadgeModule, typeof MatchaButtonModule, typeof MatchaButtonToggleModule, typeof MatchaCardModule, typeof MatchaCheckboxModule, typeof MatchaRadioModule, typeof MatchaDividerModule, typeof MatchaElevationModule, typeof MatchaFormFieldModule, typeof MatchaHintTextModule, typeof MatchaIconModule, typeof MatchaInfiniteScrollModule, typeof MatchaLazyloadModule, typeof MatchaInputModule, typeof MatchaInputPhoneModule, typeof MatchaMasonryModule, typeof MatchaMenuModule, typeof MatchaModalModule, typeof MatchaPaginatorModule, typeof MatchaProgressBarModule, typeof MatchaRippleModule, typeof MatchaSidenavModule, typeof MatchaSlideToggleModule, typeof MatchaSliderModule, typeof MatchaSnackBarModule, typeof MatchaSortHeaderModule, typeof MatchaSpinModule, typeof MatchaSpinnerModule, typeof MatchaStepperModule, typeof MatchaTableModule, typeof MatchaTabsModule, typeof MatchaTitleModule, typeof MatchaTooltipModule, typeof MatchaDateRangeModule, typeof MatchaTimeModule, typeof MatchaDropListModule, typeof MatchaPageLayoutModule, typeof MatchaAvatarModule, typeof MatchaDrawerModule, typeof MatchaHighlightModule, typeof MatchaMaskModule]>;
2182
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaComponentsModule, [typeof MatchaOverflowDraggableComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof MatchaAccordionModule, typeof MatchaAutocompleteModule, typeof MatchaOptionModule, typeof MatchaPanelModule, typeof MatchaSelectModule, typeof MatchaButtonModule, typeof MatchaButtonToggleModule, typeof MatchaCardModule, typeof MatchaCheckboxModule, typeof MatchaRadioModule, typeof MatchaDividerModule, typeof MatchaElevationModule, typeof MatchaFormFieldModule, typeof MatchaHintTextModule, typeof MatchaIconModule, typeof MatchaInfiniteScrollModule, typeof MatchaLazyloadModule, typeof MatchaInputPhoneModule, typeof MatchaMasonryModule, typeof MatchaModalModule, typeof MatchaPaginatorModule, typeof MatchaRippleModule, typeof MatchaSlideToggleModule, typeof MatchaSliderModule, typeof MatchaSpinModule, typeof MatchaSpinnerModule, typeof MatchaStepperModule, typeof MatchaTabsModule, typeof MatchaTitleModule, typeof MatchaTooltipModule, typeof MatchaDateRangeModule, typeof MatchaTimeModule, typeof MatchaDropListModule, typeof MatchaPageLayoutModule, typeof MatchaDrawerModule, typeof MatchaHighlightModule, typeof MatchaMaskModule], [typeof MatchaAccordionModule, typeof MatchaAutocompleteModule, typeof MatchaOptionModule, typeof MatchaPanelModule, typeof MatchaSelectModule, typeof MatchaButtonModule, typeof MatchaButtonToggleModule, typeof MatchaCardModule, typeof MatchaCheckboxModule, typeof MatchaRadioModule, typeof MatchaDividerModule, typeof MatchaElevationModule, typeof MatchaFormFieldModule, typeof MatchaHintTextModule, typeof MatchaIconModule, typeof MatchaInfiniteScrollModule, typeof MatchaLazyloadModule, typeof MatchaInputPhoneModule, typeof MatchaMasonryModule, typeof MatchaModalModule, typeof MatchaPaginatorModule, typeof MatchaRippleModule, typeof MatchaSlideToggleModule, typeof MatchaSliderModule, typeof MatchaSpinModule, typeof MatchaSpinnerModule, typeof MatchaStepperModule, typeof MatchaTabsModule, typeof MatchaTitleModule, typeof MatchaTooltipModule, typeof MatchaDateRangeModule, typeof MatchaTimeModule, typeof MatchaDropListModule, typeof MatchaPageLayoutModule, typeof MatchaAvatarModule, typeof MatchaDrawerModule, typeof MatchaHighlightModule, typeof MatchaMaskModule]>;
2355
2183
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaComponentsModule>;
2356
2184
  }
2357
2185
 
@@ -2530,6 +2358,69 @@ declare class MatchaModalService {
2530
2358
  static ɵprov: i0.ɵɵInjectableDeclaration<MatchaModalService>;
2531
2359
  }
2532
2360
 
2361
+ interface BreakpointState {
2362
+ matches: boolean;
2363
+ breakpoint: string;
2364
+ }
2365
+ /**
2366
+ * Serviço singleton para observação de breakpoints CSS
2367
+ * Funciona tanto no browser quanto no servidor (SSR)
2368
+ */
2369
+ declare class MatchaBreakpointObserver implements OnDestroy {
2370
+ private platformId;
2371
+ private breakpointSubject;
2372
+ private resizeSubscription;
2373
+ private isBrowser;
2374
+ private currentBreakpoints;
2375
+ constructor(platformId: Object);
2376
+ ngOnDestroy(): void;
2377
+ /**
2378
+ * Observa um breakpoint específico
2379
+ * @param breakpoint - String no formato CSS media query (ex: '(max-width: 768px)')
2380
+ * @returns Observable<BreakpointState>
2381
+ */
2382
+ observe(breakpoint: string): Observable<BreakpointState>;
2383
+ /**
2384
+ * Verifica se um breakpoint específico está ativo
2385
+ * @param breakpoint - String no formato CSS media query
2386
+ * @returns boolean
2387
+ */
2388
+ isMatched(breakpoint: string): boolean;
2389
+ /**
2390
+ * Obtém o estado atual do breakpoint
2391
+ * @param breakpoint - String no formato CSS media query
2392
+ * @returns BreakpointState
2393
+ */
2394
+ getState(breakpoint: string): BreakpointState;
2395
+ /**
2396
+ * Observa múltiplos breakpoints simultaneamente
2397
+ * @param breakpoints - Array de strings de breakpoints
2398
+ * @returns Observable<Map<string, boolean>>
2399
+ */
2400
+ observeMultiple(breakpoints: string[]): Observable<Map<string, boolean>>;
2401
+ private setupResizeListener;
2402
+ private checkBreakpoint;
2403
+ /**
2404
+ * Método utilitário para criar breakpoints comuns
2405
+ */
2406
+ static createBreakpoint(width: number, condition?: 'max' | 'min'): string;
2407
+ /**
2408
+ * Breakpoints pré-definidos para facilitar o uso
2409
+ */
2410
+ static readonly BREAKPOINTS: {
2411
+ readonly XS: "(max-width: 480px)";
2412
+ readonly SM: "(max-width: 768px)";
2413
+ readonly MD: "(max-width: 1024px)";
2414
+ readonly LG: "(max-width: 1200px)";
2415
+ readonly XL: "(max-width: 1440px)";
2416
+ readonly MOBILE: "(max-width: 768px)";
2417
+ readonly TABLET: "(min-width: 769px) and (max-width: 1024px)";
2418
+ readonly DESKTOP: "(min-width: 1025px)";
2419
+ };
2420
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaBreakpointObserver, never>;
2421
+ static ɵprov: i0.ɵɵInjectableDeclaration<MatchaBreakpointObserver>;
2422
+ }
2423
+
2533
2424
  declare class StepContentDirective {
2534
2425
  template: TemplateRef<any>;
2535
2426
  step: string;
@@ -2538,5 +2429,5 @@ declare class StepContentDirective {
2538
2429
  static ɵdir: i0.ɵɵDirectiveDeclaration<StepContentDirective, "[step]", never, { "step": { "alias": "step"; "required": false; }; }, {}, never, never, true, never>;
2539
2430
  }
2540
2431
 
2541
- export { CopyButtonComponent, INITIAL_CONFIG, MATCHA_MASK_CONFIG, MATCHA_OPTION_PARENT, MaskExpression, MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteModule, MatchaAutocompleteTriggerDirective, MatchaAvatarComponent, MatchaAvatarModule, MatchaBadgeDirective, MatchaBadgeModule, MatchaBreakpointObservableModule, MatchaBreakpointObserver, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaComponentsModule, MatchaDateRangeComponent, MatchaDateRangeModule, MatchaDividerComponent, MatchaDividerModule, MatchaDragDirective, MatchaDragHandleDirective, MatchaDrawerComponent, MatchaDrawerContainerComponent, MatchaDrawerContentComponent, MatchaDrawerModule, MatchaDropListComponent, MatchaDropListModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHighlightComponent, MatchaHighlightModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputDirective, MatchaInputModule, MatchaInputPhoneComponent, MatchaInputPhoneModule, MatchaLabelComponent, MatchaLazyloadComponent, MatchaLazyloadDataComponent, MatchaLazyloadModule, MatchaMaskApplierService, MatchaMaskCompatibleDirective, MatchaMaskModule, MatchaMaskPipe, MatchaMaskService, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaOptionComponent, MatchaOptionModule, MatchaOverlayService, MatchaPageLayoutComponent, MatchaPageLayoutModule, MatchaPaginatorComponent, MatchaPaginatorIntl, MatchaPaginatorModule, MatchaPanelComponent, MatchaPanelModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaRadioComponent, MatchaRadioModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectComponent, MatchaSelectModule, MatchaSelectTriggerDirective, MatchaSidenavDirective, MatchaSidenavModule, MatchaSkeletonComponent, MatchaSkeletonModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderComponent, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaSpinComponent, MatchaSpinModule, MatchaSpinnerComponent, MatchaSpinnerModule, MatchaStepperComponent, MatchaStepperContentComponent, MatchaStepperControllerComponent, MatchaStepperModule, MatchaStepperStateService, MatchaTabItemComponent, MatchaTableDirective, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTimeComponent, MatchaTimeModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarCustomButtonComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, NEW_CONFIG, NextStepDirective, PrevStepDirective, StepComponent, StepContentDirective, compatibleOptions, initialConfig, timeMasks, withoutValidation };
2542
- export type { BreakpointState, DrawerItem, DrawerMode, DrawerPosition, DrawerSection, ILevelClasses, InputTransformFn, MatchaDropListConnectedToEvent, MatchaDropListDroppedEvent, MatchaMaskConfig, MatchaMaskOptions, MatchaOptionParent, ModalComponent, OutputTransformFn, PageEvent, PanelPlacement, PanelPosition, SliderOptions, TabChangeEvent };
2432
+ export { CopyButtonComponent, INITIAL_CONFIG, MATCHA_MASK_CONFIG, MATCHA_OPTION_PARENT, MaskExpression, MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteModule, MatchaAutocompleteTriggerDirective, MatchaAvatarComponent, MatchaAvatarModule, MatchaBreakpointObservableModule, MatchaBreakpointObserver, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaComponentsModule, MatchaDateRangeComponent, MatchaDateRangeModule, MatchaDividerComponent, MatchaDividerModule, MatchaDragDirective, MatchaDragHandleDirective, MatchaDrawerComponent, MatchaDrawerContainerComponent, MatchaDrawerContentComponent, MatchaDrawerModule, MatchaDropListComponent, MatchaDropListModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHighlightComponent, MatchaHighlightModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputPhoneComponent, MatchaInputPhoneModule, MatchaLabelComponent, MatchaLazyloadComponent, MatchaLazyloadDataComponent, MatchaLazyloadModule, MatchaMaskApplierService, MatchaMaskCompatibleDirective, MatchaMaskModule, MatchaMaskPipe, MatchaMaskService, MatchaMasonryComponent, MatchaMasonryModule, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaOptionComponent, MatchaOptionModule, MatchaOverlayService, MatchaPageLayoutComponent, MatchaPageLayoutModule, MatchaPaginatorComponent, MatchaPaginatorIntl, MatchaPaginatorModule, MatchaPanelComponent, MatchaPanelModule, MatchaRadioComponent, MatchaRadioModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectComponent, MatchaSelectModule, MatchaSelectTriggerDirective, MatchaSkeletonComponent, MatchaSkeletonModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderComponent, MatchaSliderModule, MatchaSpinComponent, MatchaSpinModule, MatchaSpinnerComponent, MatchaSpinnerModule, MatchaStepperComponent, MatchaStepperContentComponent, MatchaStepperControllerComponent, MatchaStepperModule, MatchaStepperStateService, MatchaTabItemComponent, MatchaTabsComponent, MatchaTabsModule, MatchaTimeComponent, MatchaTimeModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarCustomButtonComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, NEW_CONFIG, NextStepDirective, PrevStepDirective, StepComponent, StepContentDirective, compatibleOptions, initialConfig, timeMasks, withoutValidation };
2433
+ export type { BreakpointState, DrawerMode, DrawerPosition, ILevelClasses, InputTransformFn, MatchaDropListConnectedToEvent, MatchaDropListDroppedEvent, MatchaMaskConfig, MatchaMaskOptions, MatchaOptionParent, ModalComponent, OutputTransformFn, PageEvent, PanelPlacement, PanelPosition, SliderOptions, TabChangeEvent };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matcha-components",
3
- "version": "20.54.0",
3
+ "version": "20.57.0",
4
4
  "peerDependencies": {},
5
5
  "dependencies": {
6
6
  "tslib": "^2.3.0"