matcha-components 20.9.0 → 20.13.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,32 +1,64 @@
1
1
  import * as i0 from '@angular/core';
2
- import { OnInit, EventEmitter, AfterContentInit, QueryList, OnDestroy, ElementRef, OnChanges, SimpleChanges, Renderer2, ChangeDetectorRef, AfterViewInit, TemplateRef, NgZone, ApplicationRef, Injector, RendererFactory2, Type, ComponentRef } from '@angular/core';
2
+ import { OnInit, OnChanges, EventEmitter, SimpleChanges, AfterContentInit, OnDestroy, QueryList, ElementRef, Renderer2, TemplateRef, ChangeDetectorRef, AfterViewInit, NgZone, ApplicationRef, Injector, RendererFactory2, Type, ComponentRef } from '@angular/core';
3
3
  import * as rxjs from 'rxjs';
4
- import { Observable } from 'rxjs';
4
+ import { Observable, Subject } from 'rxjs';
5
5
  import * as i3 from '@angular/forms';
6
6
  import { FormControlName, ControlValueAccessor, NgControl } from '@angular/forms';
7
7
  import * as i2 from '@angular/common';
8
8
 
9
- declare class MatchaAccordionItemComponent implements OnInit {
9
+ /**
10
+ * Interface que deve ser implementada por componentes que querem usar matcha-option como filho
11
+ *
12
+ * Permite que matcha-option seja usado em diferentes contextos:
13
+ * - matcha-autocomplete
14
+ * - matcha-select
15
+ * - matcha-menu
16
+ * - etc.
17
+ */
18
+ interface MatchaOptionParent {
19
+ /**
20
+ * Método chamado quando uma opção é selecionada
21
+ * @param option - A instância do MatchaOptionComponent selecionado
22
+ */
23
+ selectOption(option: any): void;
24
+ }
25
+ /**
26
+ * Token de injeção para MatchaOptionParent
27
+ * Usado para injetar o componente pai no matcha-option
28
+ */
29
+ declare const MATCHA_OPTION_PARENT: unique symbol;
30
+
31
+ declare class MatchaAccordionItemComponent implements OnInit, OnChanges {
10
32
  private _stretch;
11
33
  private _isOpen;
12
34
  set stretch(value: boolean | string);
13
35
  get stretch(): boolean;
36
+ get stretchClass(): boolean;
37
+ private _clickableHeader;
38
+ set clickableHeader(value: boolean | string);
39
+ get clickableHeader(): boolean;
14
40
  set isOpen(value: boolean | string);
15
41
  get isOpen(): boolean;
42
+ get isOpenClass(): boolean;
16
43
  opened: EventEmitter<boolean>;
44
+ toggleRequested: EventEmitter<void>;
17
45
  ngOnInit(): void;
46
+ ngOnChanges(changes: SimpleChanges): void;
18
47
  toggleAccordion(): void;
19
48
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAccordionItemComponent, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<MatchaAccordionItemComponent, "matcha-accordion-item", never, { "stretch": { "alias": "stretch"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; }, { "opened": "opened"; }, never, ["matcha-accordion-header", "matcha-accordion-content", "*"], false, never>;
49
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatchaAccordionItemComponent, "matcha-accordion-item", never, { "stretch": { "alias": "stretch"; "required": false; }; "clickableHeader": { "alias": "clickableHeader"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; }, { "opened": "opened"; "toggleRequested": "toggleRequested"; }, never, ["matcha-accordion-header", "matcha-accordion-content", "*"], false, never>;
21
50
  }
22
51
 
23
- declare class MatchaAccordionComponent implements AfterContentInit {
52
+ declare class MatchaAccordionComponent implements AfterContentInit, OnDestroy {
24
53
  private _multiple;
25
54
  set multiple(value: boolean | string);
26
55
  get multiple(): boolean;
27
56
  openedChange: EventEmitter<boolean>;
28
57
  items: QueryList<MatchaAccordionItemComponent>;
58
+ private subscriptions;
29
59
  ngAfterContentInit(): void;
60
+ ngOnDestroy(): void;
61
+ private setupItems;
30
62
  toggleItem(selectedItem: MatchaAccordionItemComponent): void;
31
63
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAccordionComponent, never>;
32
64
  static ɵcmp: i0.ɵɵComponentDeclaration<MatchaAccordionComponent, "matcha-accordion", never, { "multiple": { "alias": "multiple"; "required": false; }; }, { "openedChange": "openedChange"; }, ["items"], ["*"], false, never>;
@@ -252,9 +284,11 @@ declare class MatchaCardComponent {
252
284
  private _alpha;
253
285
  get alpha(): boolean | string;
254
286
  set alpha(v: boolean | string);
287
+ get alphaAttr(): string | null;
255
288
  private _tint;
256
289
  get tint(): boolean | string;
257
290
  set tint(v: boolean | string);
291
+ get tintAttr(): string | null;
258
292
  private _loading;
259
293
  get loading(): boolean | string;
260
294
  set loading(v: boolean | string);
@@ -298,6 +332,92 @@ declare class MatchaTitleComponent {
298
332
  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>;
299
333
  }
300
334
 
335
+ interface DrawerItem {
336
+ id: string;
337
+ label: string;
338
+ icon?: string;
339
+ route?: string;
340
+ action?: () => void;
341
+ badge?: string | number;
342
+ disabled?: boolean;
343
+ divider?: boolean;
344
+ }
345
+ interface DrawerSection {
346
+ id: string;
347
+ title?: string;
348
+ items: DrawerItem[];
349
+ position: 'top' | 'bottom';
350
+ divider?: boolean;
351
+ }
352
+ type DrawerMode = 'push' | 'overlay';
353
+ type DrawerPosition = 'left' | 'right';
354
+ declare class MatchaDrawerComponent implements OnInit, OnDestroy {
355
+ private elementRef;
356
+ private renderer;
357
+ private cdr;
358
+ isOpen: boolean;
359
+ mode: DrawerMode;
360
+ position: DrawerPosition;
361
+ width: string;
362
+ hasBackdrop: boolean;
363
+ disableClose: boolean;
364
+ autoCloseOnMobile: boolean;
365
+ breakpoint: number;
366
+ elevation: number;
367
+ hasFooter: boolean;
368
+ isOpenChange: EventEmitter<boolean>;
369
+ drawerToggle: EventEmitter<void>;
370
+ drawerOpened: EventEmitter<void>;
371
+ drawerClosed: EventEmitter<void>;
372
+ drawerContent: TemplateRef<any>;
373
+ get drawerClasses(): string;
374
+ get drawerWidth(): string;
375
+ get drawerHeight(): string;
376
+ private resizeObserver;
377
+ private isMobile;
378
+ private bodyScrollLocked;
379
+ constructor(elementRef: ElementRef, renderer: Renderer2, cdr: ChangeDetectorRef);
380
+ ngOnInit(): void;
381
+ ngOnDestroy(): void;
382
+ private setupResizeObserver;
383
+ private checkScreenSize;
384
+ private setupBodyScrollLock;
385
+ private lockBodyScroll;
386
+ private unlockBodyScroll;
387
+ toggle(): void;
388
+ open(): void;
389
+ close(): void;
390
+ onBackdropClick(): void;
391
+ onKeyDown(event: KeyboardEvent): void;
392
+ getDrawerTransform(): string;
393
+ get animationState(): "open" | "closed";
394
+ get isOverlayMode(): boolean;
395
+ get isPushMode(): boolean;
396
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDrawerComponent, never>;
397
+ 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; }; }, { "isOpenChange": "isOpenChange"; "drawerToggle": "drawerToggle"; "drawerOpened": "drawerOpened"; "drawerClosed": "drawerClosed"; }, never, ["[drawer-header]", "[drawer-content]", "*", "[drawer-footer]"], false, never>;
398
+ }
399
+
400
+ declare class MatchaDrawerContainerComponent implements OnInit, OnDestroy {
401
+ hasBackdrop: boolean;
402
+ autoFocus: boolean;
403
+ drawer: MatchaDrawerComponent;
404
+ ngOnInit(): void;
405
+ ngOnDestroy(): void;
406
+ private setupDrawerEvents;
407
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDrawerContainerComponent, never>;
408
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatchaDrawerContainerComponent, "matcha-drawer-container", never, { "hasBackdrop": { "alias": "hasBackdrop"; "required": false; }; "autoFocus": { "alias": "autoFocus"; "required": false; }; }, {}, ["drawer"], ["*"], false, never>;
409
+ }
410
+
411
+ declare class MatchaDrawerContentComponent {
412
+ padding: string;
413
+ scrollable: boolean;
414
+ maxHeight: string;
415
+ get contentClasses(): string;
416
+ get maxHeightStyle(): string;
417
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDrawerContentComponent, never>;
418
+ 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>;
419
+ }
420
+
301
421
  declare class MatchaIconComponent {
302
422
  name: string | undefined | null;
303
423
  size: string | undefined | null;
@@ -409,7 +529,9 @@ declare class MatchaMenuComponent {
409
529
  }
410
530
 
411
531
  declare class MatchaToolbarComponent implements OnInit, OnDestroy {
532
+ elevation: number;
412
533
  isMobileScreen: boolean;
534
+ get elevationClass(): string;
413
535
  private readonly mobileBreakpoint;
414
536
  private resizeTimeout;
415
537
  ngOnInit(): void;
@@ -417,7 +539,7 @@ declare class MatchaToolbarComponent implements OnInit, OnDestroy {
417
539
  private checkScreenWidth;
418
540
  ngOnDestroy(): void;
419
541
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaToolbarComponent, never>;
420
- static ɵcmp: i0.ɵɵComponentDeclaration<MatchaToolbarComponent, "matcha-toolbar", never, {}, {}, never, ["matcha-toolbar-main-button", "matcha-toolbar-custom-button", "matcha-title", "search-form", "matcha-toolbar-button", "matcha-toolbar-content", "*"], false, never>;
542
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatchaToolbarComponent, "matcha-toolbar", never, { "elevation": { "alias": "elevation"; "required": false; }; }, {}, never, ["matcha-toolbar-main-button", "matcha-toolbar-custom-button", "matcha-title", "search-form", "matcha-toolbar-button", "matcha-toolbar-content", "*"], false, never>;
421
543
  }
422
544
 
423
545
  declare class MatchaToolbarButtonComponent {
@@ -448,7 +570,7 @@ declare class MatchaToolbarCustomButtonComponent {
448
570
 
449
571
  declare class MatchaFormFieldComponent {
450
572
  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';
451
- size: string | null;
573
+ size: string | null | undefined | 'tiny' | 'small' | 'medium' | 'large' | 'huge';
452
574
  sizeXs: string | null;
453
575
  sizeSm: string | null;
454
576
  sizeMd: string | null;
@@ -458,7 +580,7 @@ declare class MatchaFormFieldComponent {
458
580
  get control(): i3.FormControl<any> | undefined;
459
581
  get showError(): boolean;
460
582
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaFormFieldComponent, never>;
461
- static ɵcmp: i0.ɵɵComponentDeclaration<MatchaFormFieldComponent, "matcha-form-field", never, { "color": { "alias": "color"; "required": false; }; "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; }; }, {}, ["controlDir"], ["matcha-label", "*", "matcha-error", "matcha-autocomplete"], false, never>;
583
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatchaFormFieldComponent, "matcha-form-field", never, { "color": { "alias": "color"; "required": false; }; "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; }; }, {}, ["controlDir"], ["matcha-label", "*", "matcha-error", "matcha-autocomplete", "matcha-hint-text"], false, never>;
462
584
  }
463
585
 
464
586
  declare class MatchaLabelComponent {
@@ -476,11 +598,11 @@ declare class MatchaCheckboxComponent implements ControlValueAccessor {
476
598
  color: string;
477
599
  indeterminate: boolean;
478
600
  private _disabled;
479
- set disabled(value: boolean | string);
480
601
  get disabled(): boolean;
481
- get checked(): boolean;
482
- set checked(value: boolean);
602
+ set disabled(value: boolean | string);
483
603
  private _checked;
604
+ get checked(): boolean;
605
+ set checked(value: boolean | string);
484
606
  checkedChange: EventEmitter<{
485
607
  checked: boolean;
486
608
  }>;
@@ -550,11 +672,14 @@ declare class MatchaSpinComponent {
550
672
  declare class MatchaSpinnerComponent {
551
673
  private _elementRef;
552
674
  private _renderer;
553
- private _progress;
675
+ private _progressValue;
554
676
  set progress(value: string | number);
555
677
  get progress(): string | number;
678
+ get _progress(): string | number;
556
679
  color: string;
680
+ get _color(): string;
557
681
  size: string | null;
682
+ get hostSize(): string | null;
558
683
  sizeXs: string | null;
559
684
  sizeSm: string | null;
560
685
  sizeMd: string | null;
@@ -574,8 +699,8 @@ declare class MatchaSpinnerComponent {
574
699
  }
575
700
 
576
701
  declare class MatchaHintTextComponent {
577
- type: 'error' | 'warning' | 'info' | 'success';
578
- size: 'tiny' | 'medium';
702
+ type: string;
703
+ size: string;
579
704
  get iconName(): string;
580
705
  get iconColor(): string;
581
706
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaHintTextComponent, never>;
@@ -594,54 +719,6 @@ declare class MatchaSkeletonComponent {
594
719
  static ɵcmp: i0.ɵɵComponentDeclaration<MatchaSkeletonComponent, "matcha-skeleton", never, { "amount": { "alias": "amount"; "required": false; }; "grid": { "alias": "grid"; "required": false; }; "height": { "alias": "height"; "required": false; }; "model": { "alias": "model"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; }, {}, never, ["*"], false, never>;
595
720
  }
596
721
 
597
- declare class MatchaOptionService {
598
- private _optionsSubject;
599
- options$: rxjs.Observable<MatchaOptionComponent[]>;
600
- private _activeOptionSubject;
601
- activeOption$: rxjs.Observable<number>;
602
- private _canShowOptionsSubject;
603
- canShowOptions$: rxjs.Observable<boolean>;
604
- private _selectedOptionSubject;
605
- selectedOption$: rxjs.Observable<string>;
606
- constructor();
607
- setSelectedOption(selectedOption: string): void;
608
- getCanShowOptions(): boolean;
609
- setCanShowOptions(canShowOptions: boolean): void;
610
- updateOptions(options: MatchaOptionComponent[]): void;
611
- updateActiveOption(activeOption: number): void;
612
- resetActiveOption(): void;
613
- removeActiveOption(): void;
614
- changeActiveOption(stepsToMove: number): void;
615
- selectActiveOption(): void;
616
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaOptionService, never>;
617
- static ɵprov: i0.ɵɵInjectableDeclaration<MatchaOptionService>;
618
- }
619
-
620
- declare class MatchaOptionComponent {
621
- private changeDetectorRef;
622
- private matchaOptionService;
623
- value: any;
624
- isOptionActive: boolean;
625
- constructor(changeDetectorRef: ChangeDetectorRef, matchaOptionService: MatchaOptionService);
626
- selectOption(): void;
627
- setIsOptionActive(isOptionActive: boolean, isMouseEvent: boolean): void;
628
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaOptionComponent, never>;
629
- static ɵcmp: i0.ɵɵComponentDeclaration<MatchaOptionComponent, "matcha-option", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
630
- }
631
-
632
- declare class MatchaAutocompleteComponent implements AfterContentInit {
633
- private changeDetectorRef;
634
- private matchaOptionService;
635
- options: QueryList<MatchaOptionComponent>;
636
- isDisplayAutocomplete: boolean;
637
- activeOption: number;
638
- constructor(changeDetectorRef: ChangeDetectorRef, matchaOptionService: MatchaOptionService);
639
- ngOnInit(): void;
640
- ngAfterContentInit(): void;
641
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAutocompleteComponent, never>;
642
- static ɵcmp: i0.ɵɵComponentDeclaration<MatchaAutocompleteComponent, "matcha-autocomplete", never, {}, {}, ["options"], ["*"], false, never>;
643
- }
644
-
645
722
  declare class MatchaSlideToggleComponent implements ControlValueAccessor, OnChanges, AfterViewInit {
646
723
  private elementRef;
647
724
  color: string;
@@ -962,6 +1039,196 @@ declare class MatchaAvatarComponent {
962
1039
  static ɵcmp: i0.ɵɵComponentDeclaration<MatchaAvatarComponent, "matcha-avatar", never, { "src": { "alias": "src"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, false, never>;
963
1040
  }
964
1041
 
1042
+ declare class MatchaOptionComponent {
1043
+ private parent;
1044
+ private elRef;
1045
+ value: any;
1046
+ disabled: boolean;
1047
+ selected: boolean;
1048
+ optionClick: EventEmitter<any>;
1049
+ optionSelect: EventEmitter<MatchaOptionComponent>;
1050
+ constructor(parent: MatchaOptionParent | null, elRef: ElementRef);
1051
+ onClick(): void;
1052
+ private findParentAndSelect;
1053
+ onKeydown(ev: KeyboardEvent): void;
1054
+ get nativeElement(): HTMLElement;
1055
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaOptionComponent, [{ optional: true; }, null]>;
1056
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatchaOptionComponent, "matcha-option", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "optionClick": "optionClick"; "optionSelect": "optionSelect"; }, never, ["*"], false, never>;
1057
+ }
1058
+
1059
+ interface PanelPosition {
1060
+ top: number;
1061
+ left: number;
1062
+ width: number;
1063
+ maxHeight?: number;
1064
+ }
1065
+ type PanelPlacement = 'bottom' | 'top' | 'auto';
1066
+ declare class MatchaPanelComponent implements OnInit, OnDestroy, OnChanges, AfterViewInit {
1067
+ private elRef;
1068
+ private cdr;
1069
+ placement: PanelPlacement;
1070
+ maxHeight: number;
1071
+ minWidth: number;
1072
+ offset: number;
1073
+ triggerElement?: HTMLElement;
1074
+ open: boolean;
1075
+ opened: EventEmitter<void>;
1076
+ closed: EventEmitter<void>;
1077
+ panelRef?: ElementRef<HTMLElement>;
1078
+ panelStyle: {
1079
+ [key: string]: any;
1080
+ };
1081
+ private destroy$;
1082
+ private scrollListener?;
1083
+ private resizeListener?;
1084
+ constructor(elRef: ElementRef, cdr: ChangeDetectorRef);
1085
+ ngOnInit(): void;
1086
+ ngOnDestroy(): void;
1087
+ /**
1088
+ * Anexa o painel a um elemento trigger
1089
+ */
1090
+ attachTo(trigger: HTMLElement): void;
1091
+ ngAfterViewInit(): void;
1092
+ /**
1093
+ * Lifecycle hook para detectar mudanças no triggerElement
1094
+ */
1095
+ ngOnChanges(): void;
1096
+ /**
1097
+ * Abre o painel
1098
+ */
1099
+ openPanel(): void;
1100
+ /**
1101
+ * Fecha o painel
1102
+ */
1103
+ closePanel(): void;
1104
+ /**
1105
+ * Alterna o estado do painel
1106
+ */
1107
+ togglePanel(): void;
1108
+ /**
1109
+ * Atualiza a posição do painel (simplificado para absolute)
1110
+ */
1111
+ updatePosition(): void;
1112
+ /**
1113
+ * Calcula a posição ideal do painel (simplificado para absolute)
1114
+ */
1115
+ private calculatePosition;
1116
+ /**
1117
+ * Configura listeners para scroll e resize
1118
+ */
1119
+ private setupListeners;
1120
+ /**
1121
+ * Remove listeners
1122
+ */
1123
+ private cleanupListeners;
1124
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaPanelComponent, never>;
1125
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatchaPanelComponent, "matcha-panel", never, { "placement": { "alias": "placement"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "offset": { "alias": "offset"; "required": false; }; "triggerElement": { "alias": "triggerElement"; "required": false; }; "open": { "alias": "open"; "required": false; }; }, { "opened": "opened"; "closed": "closed"; }, never, ["*"], false, never>;
1126
+ }
1127
+
1128
+ declare class MatchaAutocompleteComponent implements AfterContentInit, AfterViewInit, MatchaOptionParent {
1129
+ elRef: ElementRef;
1130
+ private renderer;
1131
+ private cdr;
1132
+ options: QueryList<MatchaOptionComponent>;
1133
+ panel: MatchaPanelComponent;
1134
+ private selectedValue;
1135
+ placement: 'bottom' | 'top' | 'auto';
1136
+ maxHeight: number;
1137
+ minWidth: number;
1138
+ opened: EventEmitter<void>;
1139
+ closed: EventEmitter<void>;
1140
+ open: boolean;
1141
+ triggerElement?: HTMLElement;
1142
+ private activeIndex;
1143
+ constructor(elRef: ElementRef, renderer: Renderer2, cdr: ChangeDetectorRef);
1144
+ ngAfterContentInit(): void;
1145
+ ngAfterViewInit(): void;
1146
+ attachTo(input: HTMLElement): void;
1147
+ openPanel(): void;
1148
+ closePanel(): void;
1149
+ togglePanel(): void;
1150
+ resetActive(): void;
1151
+ private updateSelectedStates;
1152
+ highlightNext(): void;
1153
+ highlightPrevious(): void;
1154
+ private scrollToActive;
1155
+ selectActive(): void;
1156
+ selectOption(option: MatchaOptionComponent): void;
1157
+ getSelectedValue(): any;
1158
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAutocompleteComponent, never>;
1159
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatchaAutocompleteComponent, "matcha-autocomplete", never, { "placement": { "alias": "placement"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; }, { "opened": "opened"; "closed": "closed"; }, ["options"], ["*"], false, never>;
1160
+ }
1161
+
1162
+ interface PageEvent {
1163
+ /** The current page index. */
1164
+ pageIndex: number;
1165
+ /** Index of the page that was selected previously. */
1166
+ previousPageIndex?: number;
1167
+ /** The current page size. */
1168
+ pageSize: number;
1169
+ /** The current total number of items being paged. */
1170
+ length: number;
1171
+ }
1172
+
1173
+ /**
1174
+ * Service to internationalize the paginator component.
1175
+ * Based on Angular Material's MatPaginatorIntl
1176
+ */
1177
+ declare class MatchaPaginatorIntl {
1178
+ /** Stream to emit from when labels are changed. Used by the paginator to update the labels. */
1179
+ readonly changes: Subject<void>;
1180
+ /** A label for the page size selector. */
1181
+ itemsPerPageLabel: string;
1182
+ /** A label for the button that increments the current page. */
1183
+ nextPageLabel: string;
1184
+ /** A label for the button that decrements the current page. */
1185
+ previousPageLabel: string;
1186
+ /** A label for the button that moves to the first page. */
1187
+ firstPageLabel: string;
1188
+ /** A label for the button that moves to the last page. */
1189
+ lastPageLabel: string;
1190
+ /**
1191
+ * A label for the range of items within the current page and the length of the whole list.
1192
+ */
1193
+ getRangeLabel: (page: number, pageSize: number, length: number) => string;
1194
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaPaginatorIntl, never>;
1195
+ static ɵprov: i0.ɵɵInjectableDeclaration<MatchaPaginatorIntl>;
1196
+ }
1197
+
1198
+ declare class MatchaPaginatorComponent implements OnDestroy {
1199
+ _intl: MatchaPaginatorIntl;
1200
+ private _changeDetectorRef;
1201
+ pageIndex: number;
1202
+ length: number;
1203
+ pageSize: number;
1204
+ pageSizeOptions: number[];
1205
+ /** Color theme for active page button. Defaults to 'accent' */
1206
+ color: string;
1207
+ page: EventEmitter<PageEvent>;
1208
+ private _intlChanges;
1209
+ constructor(_intl: MatchaPaginatorIntl, _changeDetectorRef: ChangeDetectorRef);
1210
+ ngOnDestroy(): void;
1211
+ get currentPage(): number;
1212
+ get totalPages(): number;
1213
+ get hasPreviousPage(): boolean;
1214
+ get hasNextPage(): boolean;
1215
+ get displayPages(): (number | string)[];
1216
+ trackByPage(index: number, item: number | string): number | string;
1217
+ /** Check if item is a number (for template use only) */
1218
+ typeof(value: any): string;
1219
+ /** Navigate to previous page */
1220
+ previousPage(): void;
1221
+ /** Navigate to next page */
1222
+ nextPage(): void;
1223
+ /** Navigate to specific page */
1224
+ goToPage(page: number): void;
1225
+ /** Handle page size change */
1226
+ onPageSizeChange(event: Event): void;
1227
+ private changePage;
1228
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaPaginatorComponent, never>;
1229
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatchaPaginatorComponent, "matcha-paginator", never, { "pageIndex": { "alias": "pageIndex"; "required": false; }; "length": { "alias": "length"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, { "page": "page"; }, never, never, false, never>;
1230
+ }
1231
+
965
1232
  declare class MatchaTooltipDirective {
966
1233
  private el;
967
1234
  private renderer;
@@ -1098,30 +1365,38 @@ declare class MatchaOverflowDraggableComponent {
1098
1365
  static ɵcmp: i0.ɵɵComponentDeclaration<MatchaOverflowDraggableComponent, "matcha-overflow-draggable", never, { "dragRef": { "alias": "dragRef"; "required": false; }; }, {}, never, ["*"], false, never>;
1099
1366
  }
1100
1367
 
1368
+ declare class MatchaAutocompleteTriggerDirective implements AfterViewInit, OnDestroy {
1369
+ private el;
1370
+ panel: MatchaAutocompleteComponent;
1371
+ private subs;
1372
+ constructor(el: ElementRef<HTMLInputElement>);
1373
+ ngAfterViewInit(): void;
1374
+ ngOnDestroy(): void;
1375
+ private writeValueToInput;
1376
+ onClick(): void;
1377
+ onFocus(): void;
1378
+ onInput(e: Event): void;
1379
+ onKeydown(ev: KeyboardEvent): void;
1380
+ onDocClick(ev: MouseEvent): void;
1381
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAutocompleteTriggerDirective, never>;
1382
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaAutocompleteTriggerDirective, "[matchaAutocomplete]", never, { "panel": { "alias": "matchaAutocomplete"; "required": false; }; }, {}, never, never, false, never>;
1383
+ }
1384
+
1101
1385
  declare class MatchaOptionModule {
1102
1386
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaOptionModule, never>;
1103
1387
  static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaOptionModule, [typeof MatchaOptionComponent], [typeof i2.CommonModule], [typeof MatchaOptionComponent]>;
1104
1388
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaOptionModule>;
1105
1389
  }
1106
1390
 
1107
- declare class MatchaAutocompleteDirective {
1108
- private ngControl;
1109
- private _elementRef;
1110
- private matchaOptionService;
1111
- matchaAutocomplete: MatchaAutocompleteComponent;
1112
- displayAutocomplete(): void;
1113
- hideAutocomplete(): void;
1114
- onArrowDown(event: KeyboardEvent): void;
1115
- constructor(ngControl: NgControl, _elementRef: ElementRef<HTMLInputElement>, matchaOptionService: MatchaOptionService);
1116
- ngOnInit(): void;
1117
- private _updateInputValue;
1118
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAutocompleteDirective, never>;
1119
- static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaAutocompleteDirective, "[matchaAutocomplete]", never, { "matchaAutocomplete": { "alias": "matchaAutocomplete"; "required": false; }; }, {}, never, never, false, never>;
1391
+ declare class MatchaPanelModule {
1392
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaPanelModule, never>;
1393
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaPanelModule, [typeof MatchaPanelComponent], [typeof i2.CommonModule], [typeof MatchaPanelComponent]>;
1394
+ static ɵinj: i0.ɵɵInjectorDeclaration<MatchaPanelModule>;
1120
1395
  }
1121
1396
 
1122
1397
  declare class MatchaAutocompleteModule {
1123
1398
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAutocompleteModule, never>;
1124
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaAutocompleteModule, [typeof MatchaAutocompleteComponent, typeof MatchaAutocompleteDirective], [typeof i2.CommonModule, typeof i3.FormsModule, typeof MatchaOptionModule], [typeof MatchaAutocompleteComponent, typeof MatchaAutocompleteDirective]>;
1399
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaAutocompleteModule, [typeof MatchaAutocompleteComponent, typeof MatchaAutocompleteTriggerDirective], [typeof i2.CommonModule, typeof MatchaOptionModule, typeof MatchaPanelModule], [typeof MatchaAutocompleteComponent, typeof MatchaAutocompleteTriggerDirective, typeof MatchaOptionModule]>;
1125
1400
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaAutocompleteModule>;
1126
1401
  }
1127
1402
 
@@ -1182,20 +1457,6 @@ declare class MatchaChipsModule {
1182
1457
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaChipsModule>;
1183
1458
  }
1184
1459
 
1185
- declare class MatchaDatepickerDirective {
1186
- private _elementRef;
1187
- private _renderer;
1188
- constructor(_elementRef: ElementRef, _renderer: Renderer2);
1189
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDatepickerDirective, never>;
1190
- static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaDatepickerDirective, "[matcha-datepicker]", never, {}, {}, never, never, false, never>;
1191
- }
1192
-
1193
- declare class MatchaDatepickerModule {
1194
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDatepickerModule, never>;
1195
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaDatepickerModule, [typeof MatchaDatepickerDirective], never, [typeof MatchaDatepickerDirective]>;
1196
- static ɵinj: i0.ɵɵInjectorDeclaration<MatchaDatepickerModule>;
1197
- }
1198
-
1199
1460
  declare class MatchaHintTextModule {
1200
1461
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaHintTextModule, never>;
1201
1462
  static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaHintTextModule, [typeof MatchaHintTextComponent], [typeof i2.CommonModule, typeof MatchaIconModule], [typeof MatchaHintTextComponent]>;
@@ -1234,17 +1495,9 @@ declare class MatchaMenuModule {
1234
1495
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaMenuModule>;
1235
1496
  }
1236
1497
 
1237
- declare class MatchaPaginatorDirective {
1238
- private _elementRef;
1239
- private _renderer;
1240
- constructor(_elementRef: ElementRef, _renderer: Renderer2);
1241
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaPaginatorDirective, never>;
1242
- static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaPaginatorDirective, "[matchaPaginator]", never, {}, {}, never, never, false, never>;
1243
- }
1244
-
1245
1498
  declare class MatchaPaginatorModule {
1246
1499
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaPaginatorModule, never>;
1247
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaPaginatorModule, [typeof MatchaPaginatorDirective], [typeof i2.CommonModule], [typeof MatchaPaginatorDirective]>;
1500
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaPaginatorModule, [typeof MatchaPaginatorComponent], [typeof i2.CommonModule, typeof MatchaIconModule], [typeof MatchaPaginatorComponent]>;
1248
1501
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaPaginatorModule>;
1249
1502
  }
1250
1503
 
@@ -1262,20 +1515,6 @@ declare class MatchaProgressBarModule {
1262
1515
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaProgressBarModule>;
1263
1516
  }
1264
1517
 
1265
- declare class MatchaSelectDirective {
1266
- private _elementRef;
1267
- private _renderer;
1268
- constructor(_elementRef: ElementRef, _renderer: Renderer2);
1269
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSelectDirective, never>;
1270
- static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaSelectDirective, "[matcha-select]", never, {}, {}, never, never, false, never>;
1271
- }
1272
-
1273
- declare class MatchaSelectModule {
1274
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSelectModule, never>;
1275
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaSelectModule, [typeof MatchaSelectDirective], [typeof i2.CommonModule], [typeof MatchaSelectDirective]>;
1276
- static ɵinj: i0.ɵɵInjectorDeclaration<MatchaSelectModule>;
1277
- }
1278
-
1279
1518
  declare class MatchaSidenavDirective {
1280
1519
  private _elementRef;
1281
1520
  private _renderer;
@@ -1426,6 +1665,12 @@ declare class MatchaPageLayoutModule {
1426
1665
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaPageLayoutModule>;
1427
1666
  }
1428
1667
 
1668
+ declare class MatchaDrawerModule {
1669
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDrawerModule, never>;
1670
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaDrawerModule, [typeof MatchaDrawerComponent, typeof MatchaDrawerContainerComponent, typeof MatchaDrawerContentComponent], [typeof i2.CommonModule, typeof MatchaButtonModule], [typeof MatchaDrawerComponent, typeof MatchaDrawerContainerComponent, typeof MatchaDrawerContentComponent]>;
1671
+ static ɵinj: i0.ɵɵInjectorDeclaration<MatchaDrawerModule>;
1672
+ }
1673
+
1429
1674
  declare class MatchaAvatarModule {
1430
1675
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAvatarModule, never>;
1431
1676
  static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaAvatarModule, [typeof MatchaAvatarComponent], [typeof i2.CommonModule], [typeof MatchaAvatarComponent]>;
@@ -1434,7 +1679,7 @@ declare class MatchaAvatarModule {
1434
1679
 
1435
1680
  declare class MatchaComponentsModule {
1436
1681
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaComponentsModule, never>;
1437
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaComponentsModule, [typeof MatchaOverflowDraggableComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof MatchaAccordionModule, typeof MatchaOptionModule, typeof MatchaAutocompleteModule, typeof MatchaBadgeModule, typeof MatchaButtonModule, typeof MatchaButtonToggleModule, typeof MatchaCardModule, typeof MatchaCheckboxModule, typeof MatchaRadioModule, typeof MatchaChipsModule, typeof MatchaDatepickerModule, typeof MatchaDividerModule, typeof MatchaElevationModule, typeof MatchaFormFieldModule, typeof MatchaHintTextModule, typeof MatchaIconModule, typeof MatchaInfiniteScrollModule, typeof MatchaLazyloadModule, typeof MatchaInputModule, typeof MatchaMasonryModule, typeof MatchaMenuModule, typeof MatchaModalModule, typeof MatchaPaginatorModule, typeof MatchaProgressBarModule, typeof MatchaRippleModule, typeof MatchaSelectModule, 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 MatchaDateModule, typeof MatchaTimeModule, typeof MatchaDropListModule, typeof MatchaPageLayoutModule], [typeof MatchaAccordionModule, typeof MatchaAutocompleteModule, typeof MatchaBadgeModule, typeof MatchaButtonModule, typeof MatchaButtonToggleModule, typeof MatchaCardModule, typeof MatchaCheckboxModule, typeof MatchaRadioModule, typeof MatchaChipsModule, typeof MatchaDatepickerModule, typeof MatchaDividerModule, typeof MatchaElevationModule, typeof MatchaFormFieldModule, typeof MatchaHintTextModule, typeof MatchaIconModule, typeof MatchaInfiniteScrollModule, typeof MatchaLazyloadModule, typeof MatchaInputModule, typeof MatchaMasonryModule, typeof MatchaMenuModule, typeof MatchaModalModule, typeof MatchaOptionModule, typeof MatchaPaginatorModule, typeof MatchaProgressBarModule, typeof MatchaRippleModule, typeof MatchaSelectModule, 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 MatchaDateModule, typeof MatchaTimeModule, typeof MatchaDropListModule, typeof MatchaPageLayoutModule, typeof MatchaAvatarModule]>;
1682
+ 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 MatchaBadgeModule, typeof MatchaButtonModule, typeof MatchaButtonToggleModule, typeof MatchaCardModule, typeof MatchaCheckboxModule, typeof MatchaRadioModule, typeof MatchaChipsModule, typeof MatchaDividerModule, typeof MatchaElevationModule, typeof MatchaFormFieldModule, typeof MatchaHintTextModule, typeof MatchaIconModule, typeof MatchaInfiniteScrollModule, typeof MatchaLazyloadModule, typeof MatchaInputModule, 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 MatchaDateModule, typeof MatchaTimeModule, typeof MatchaDropListModule, typeof MatchaPageLayoutModule, typeof MatchaDrawerModule], [typeof MatchaAccordionModule, typeof MatchaAutocompleteModule, typeof MatchaOptionModule, typeof MatchaPanelModule, typeof MatchaBadgeModule, typeof MatchaButtonModule, typeof MatchaButtonToggleModule, typeof MatchaCardModule, typeof MatchaCheckboxModule, typeof MatchaRadioModule, typeof MatchaChipsModule, typeof MatchaDividerModule, typeof MatchaElevationModule, typeof MatchaFormFieldModule, typeof MatchaHintTextModule, typeof MatchaIconModule, typeof MatchaInfiniteScrollModule, typeof MatchaLazyloadModule, typeof MatchaInputModule, 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 MatchaDateModule, typeof MatchaTimeModule, typeof MatchaDropListModule, typeof MatchaPageLayoutModule, typeof MatchaAvatarModule, typeof MatchaDrawerModule]>;
1438
1683
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaComponentsModule>;
1439
1684
  }
1440
1685
 
@@ -1551,5 +1796,5 @@ declare class StepContentDirective {
1551
1796
  static ɵdir: i0.ɵɵDirectiveDeclaration<StepContentDirective, "[step]", never, { "step": { "alias": "step"; "required": false; }; }, {}, never, never, true, never>;
1552
1797
  }
1553
1798
 
1554
- export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaAvatarComponent, MatchaAvatarModule, MatchaBadgeDirective, MatchaBadgeModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDateComponent, MatchaDateModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaDragDirective, MatchaDragHandleDirective, MatchaDropListComponent, MatchaDropListModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputDirective, MatchaInputModule, MatchaLabelComponent, MatchaLazyloadComponent, MatchaLazyloadDataComponent, MatchaLazyloadModule, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaOptionComponent, MatchaOptionModule, MatchaOptionService, MatchaOverlayService, MatchaPageLayoutComponent, MatchaPageLayoutModule, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaRadioComponent, MatchaRadioModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSkeletonComponent, MatchaSkeletonModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderDirective, 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, NextStepDirective, PrevStepDirective, StepComponent, StepContentDirective };
1555
- export type { ILevelClasses, MatchaDropListConnectedToEvent, MatchaDropListDroppedEvent, ModalComponent };
1799
+ export { MATCHA_OPTION_PARENT, MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteModule, MatchaAutocompleteTriggerDirective, MatchaAvatarComponent, MatchaAvatarModule, MatchaBadgeDirective, MatchaBadgeModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDateComponent, MatchaDateModule, MatchaDividerComponent, MatchaDividerModule, MatchaDragDirective, MatchaDragHandleDirective, MatchaDrawerComponent, MatchaDrawerContainerComponent, MatchaDrawerContentComponent, MatchaDrawerModule, MatchaDropListComponent, MatchaDropListModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputDirective, MatchaInputModule, MatchaLabelComponent, MatchaLazyloadComponent, MatchaLazyloadDataComponent, MatchaLazyloadModule, 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, MatchaSidenavDirective, MatchaSidenavModule, MatchaSkeletonComponent, MatchaSkeletonModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderDirective, 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, NextStepDirective, PrevStepDirective, StepComponent, StepContentDirective };
1800
+ export type { DrawerItem, DrawerMode, DrawerPosition, DrawerSection, ILevelClasses, MatchaDropListConnectedToEvent, MatchaDropListDroppedEvent, MatchaOptionParent, ModalComponent, PageEvent, PanelPlacement, PanelPosition };