matcha-components 20.3.0 → 20.5.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/fesm2022/matcha-components.mjs +475 -222
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/index.d.ts +124 -72
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { OnInit, EventEmitter, AfterContentInit, QueryList, OnDestroy, ElementRef, OnChanges, SimpleChanges, Renderer2,
|
|
2
|
+
import { OnInit, EventEmitter, AfterContentInit, QueryList, OnDestroy, ElementRef, OnChanges, SimpleChanges, Renderer2, AfterViewInit, TemplateRef, NgZone, ChangeDetectorRef, ApplicationRef, Injector, RendererFactory2, Type, ComponentRef } from '@angular/core';
|
|
3
3
|
import * as rxjs from 'rxjs';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import * as i3 from '@angular/forms';
|
|
@@ -298,6 +298,28 @@ declare class MatchaTitleComponent {
|
|
|
298
298
|
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
299
|
}
|
|
300
300
|
|
|
301
|
+
declare class MatchaDrawerComponent implements OnInit, OnDestroy {
|
|
302
|
+
private elementRef;
|
|
303
|
+
private renderer;
|
|
304
|
+
isOpen: boolean;
|
|
305
|
+
mode: 'push' | 'overlay';
|
|
306
|
+
position: 'left' | 'right';
|
|
307
|
+
width: string;
|
|
308
|
+
isOpenChange: EventEmitter<boolean>;
|
|
309
|
+
openChange: EventEmitter<boolean>;
|
|
310
|
+
get drawerClasses(): string;
|
|
311
|
+
get drawerWidth(): string;
|
|
312
|
+
constructor(elementRef: ElementRef, renderer: Renderer2);
|
|
313
|
+
ngOnInit(): void;
|
|
314
|
+
ngOnDestroy(): void;
|
|
315
|
+
toggle(): void;
|
|
316
|
+
open(): void;
|
|
317
|
+
close(): void;
|
|
318
|
+
get animationState(): "void" | "left" | "right";
|
|
319
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDrawerComponent, never>;
|
|
320
|
+
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; }; }, { "isOpenChange": "isOpenChange"; "openChange": "openChange"; }, never, ["[slot=header]", "*", "[slot=footer]"], false, never>;
|
|
321
|
+
}
|
|
322
|
+
|
|
301
323
|
declare class MatchaIconComponent {
|
|
302
324
|
name: string | undefined | null;
|
|
303
325
|
size: string | undefined | null;
|
|
@@ -448,7 +470,7 @@ declare class MatchaToolbarCustomButtonComponent {
|
|
|
448
470
|
|
|
449
471
|
declare class MatchaFormFieldComponent {
|
|
450
472
|
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;
|
|
473
|
+
size: string | null | undefined | 'tiny' | 'small' | 'medium' | 'large' | 'huge';
|
|
452
474
|
sizeXs: string | null;
|
|
453
475
|
sizeSm: string | null;
|
|
454
476
|
sizeMd: string | null;
|
|
@@ -550,11 +572,14 @@ declare class MatchaSpinComponent {
|
|
|
550
572
|
declare class MatchaSpinnerComponent {
|
|
551
573
|
private _elementRef;
|
|
552
574
|
private _renderer;
|
|
553
|
-
private
|
|
575
|
+
private _progressValue;
|
|
554
576
|
set progress(value: string | number);
|
|
555
577
|
get progress(): string | number;
|
|
578
|
+
get _progress(): string | number;
|
|
556
579
|
color: string;
|
|
580
|
+
get _color(): string;
|
|
557
581
|
size: string | null;
|
|
582
|
+
get hostSize(): string | null;
|
|
558
583
|
sizeXs: string | null;
|
|
559
584
|
sizeSm: string | null;
|
|
560
585
|
sizeMd: string | null;
|
|
@@ -574,8 +599,8 @@ declare class MatchaSpinnerComponent {
|
|
|
574
599
|
}
|
|
575
600
|
|
|
576
601
|
declare class MatchaHintTextComponent {
|
|
577
|
-
type:
|
|
578
|
-
size:
|
|
602
|
+
type: string;
|
|
603
|
+
size: string;
|
|
579
604
|
get iconName(): string;
|
|
580
605
|
get iconColor(): string;
|
|
581
606
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaHintTextComponent, never>;
|
|
@@ -594,54 +619,6 @@ declare class MatchaSkeletonComponent {
|
|
|
594
619
|
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
620
|
}
|
|
596
621
|
|
|
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
622
|
declare class MatchaSlideToggleComponent implements ControlValueAccessor, OnChanges, AfterViewInit {
|
|
646
623
|
private elementRef;
|
|
647
624
|
color: string;
|
|
@@ -944,6 +921,74 @@ declare class MatchaPageLayoutComponent {
|
|
|
944
921
|
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaPageLayoutComponent, "matcha-page-layout", never, {}, {}, never, ["*"], false, never>;
|
|
945
922
|
}
|
|
946
923
|
|
|
924
|
+
/**
|
|
925
|
+
* Interface que deve ser implementada por componentes que querem usar matcha-option como filho
|
|
926
|
+
*
|
|
927
|
+
* Permite que matcha-option seja usado em diferentes contextos:
|
|
928
|
+
* - matcha-autocomplete
|
|
929
|
+
* - matcha-select
|
|
930
|
+
* - matcha-menu
|
|
931
|
+
* - etc.
|
|
932
|
+
*/
|
|
933
|
+
interface MatchaOptionParent {
|
|
934
|
+
/**
|
|
935
|
+
* Método chamado quando uma opção é selecionada
|
|
936
|
+
* @param option - A instância do MatchaOptionComponent selecionado
|
|
937
|
+
*/
|
|
938
|
+
selectOption(option: any): void;
|
|
939
|
+
}
|
|
940
|
+
/**
|
|
941
|
+
* Token de injeção para MatchaOptionParent
|
|
942
|
+
* Usado para injetar o componente pai no matcha-option
|
|
943
|
+
*/
|
|
944
|
+
declare const MATCHA_OPTION_PARENT: unique symbol;
|
|
945
|
+
|
|
946
|
+
declare class MatchaOptionComponent {
|
|
947
|
+
private parent;
|
|
948
|
+
private elRef;
|
|
949
|
+
value: any;
|
|
950
|
+
disabled: boolean;
|
|
951
|
+
selected: boolean;
|
|
952
|
+
optionClick: EventEmitter<any>;
|
|
953
|
+
optionSelect: EventEmitter<MatchaOptionComponent>;
|
|
954
|
+
constructor(parent: MatchaOptionParent | null, elRef: ElementRef);
|
|
955
|
+
onClick(): void;
|
|
956
|
+
onKeydown(ev: KeyboardEvent): void;
|
|
957
|
+
get nativeElement(): HTMLElement;
|
|
958
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaOptionComponent, [{ optional: true; }, null]>;
|
|
959
|
+
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>;
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
declare class MatchaAutocompleteComponent implements AfterContentInit, MatchaOptionParent {
|
|
963
|
+
elRef: ElementRef;
|
|
964
|
+
private renderer;
|
|
965
|
+
private cdr;
|
|
966
|
+
options: QueryList<MatchaOptionComponent>;
|
|
967
|
+
open: boolean;
|
|
968
|
+
panelStyle: {
|
|
969
|
+
[k: string]: any;
|
|
970
|
+
};
|
|
971
|
+
private triggerElement?;
|
|
972
|
+
private activeIndex;
|
|
973
|
+
constructor(elRef: ElementRef, renderer: Renderer2, cdr: ChangeDetectorRef);
|
|
974
|
+
ngAfterContentInit(): void;
|
|
975
|
+
attachTo(input: HTMLElement): void;
|
|
976
|
+
openPanel(): void;
|
|
977
|
+
closePanel(): void;
|
|
978
|
+
togglePanel(): void;
|
|
979
|
+
setPanelPosition(): void;
|
|
980
|
+
resetActive(): void;
|
|
981
|
+
private updateSelectedStates;
|
|
982
|
+
highlightNext(): void;
|
|
983
|
+
highlightPrevious(): void;
|
|
984
|
+
private scrollToActive;
|
|
985
|
+
selectActive(): void;
|
|
986
|
+
selectOption(option: MatchaOptionComponent): void;
|
|
987
|
+
getSelectedValue(): any;
|
|
988
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAutocompleteComponent, never>;
|
|
989
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaAutocompleteComponent, "matcha-autocomplete", never, {}, {}, ["options"], ["*"], false, never>;
|
|
990
|
+
}
|
|
991
|
+
|
|
947
992
|
declare class MatchaTooltipDirective {
|
|
948
993
|
private el;
|
|
949
994
|
private renderer;
|
|
@@ -1080,30 +1125,31 @@ declare class MatchaOverflowDraggableComponent {
|
|
|
1080
1125
|
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaOverflowDraggableComponent, "matcha-overflow-draggable", never, { "dragRef": { "alias": "dragRef"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1081
1126
|
}
|
|
1082
1127
|
|
|
1128
|
+
declare class MatchaAutocompleteTriggerDirective implements AfterViewInit, OnDestroy {
|
|
1129
|
+
private el;
|
|
1130
|
+
panel: MatchaAutocompleteComponent;
|
|
1131
|
+
private subs;
|
|
1132
|
+
constructor(el: ElementRef<HTMLInputElement>);
|
|
1133
|
+
ngAfterViewInit(): void;
|
|
1134
|
+
ngOnDestroy(): void;
|
|
1135
|
+
private writeValueToInput;
|
|
1136
|
+
onFocus(): void;
|
|
1137
|
+
onInput(e: Event): void;
|
|
1138
|
+
onKeydown(ev: KeyboardEvent): void;
|
|
1139
|
+
onDocClick(ev: MouseEvent): void;
|
|
1140
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAutocompleteTriggerDirective, never>;
|
|
1141
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaAutocompleteTriggerDirective, "[matchaAutocomplete]", never, { "panel": { "alias": "matchaAutocomplete"; "required": false; }; }, {}, never, never, false, never>;
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1083
1144
|
declare class MatchaOptionModule {
|
|
1084
1145
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaOptionModule, never>;
|
|
1085
1146
|
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaOptionModule, [typeof MatchaOptionComponent], [typeof i2.CommonModule], [typeof MatchaOptionComponent]>;
|
|
1086
1147
|
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaOptionModule>;
|
|
1087
1148
|
}
|
|
1088
1149
|
|
|
1089
|
-
declare class MatchaAutocompleteDirective {
|
|
1090
|
-
private ngControl;
|
|
1091
|
-
private _elementRef;
|
|
1092
|
-
private matchaOptionService;
|
|
1093
|
-
matchaAutocomplete: MatchaAutocompleteComponent;
|
|
1094
|
-
displayAutocomplete(): void;
|
|
1095
|
-
hideAutocomplete(): void;
|
|
1096
|
-
onArrowDown(event: KeyboardEvent): void;
|
|
1097
|
-
constructor(ngControl: NgControl, _elementRef: ElementRef<HTMLInputElement>, matchaOptionService: MatchaOptionService);
|
|
1098
|
-
ngOnInit(): void;
|
|
1099
|
-
private _updateInputValue;
|
|
1100
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAutocompleteDirective, never>;
|
|
1101
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaAutocompleteDirective, "[matchaAutocomplete]", never, { "matchaAutocomplete": { "alias": "matchaAutocomplete"; "required": false; }; }, {}, never, never, false, never>;
|
|
1102
|
-
}
|
|
1103
|
-
|
|
1104
1150
|
declare class MatchaAutocompleteModule {
|
|
1105
1151
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAutocompleteModule, never>;
|
|
1106
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaAutocompleteModule, [typeof MatchaAutocompleteComponent, typeof
|
|
1152
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaAutocompleteModule, [typeof MatchaAutocompleteComponent, typeof MatchaAutocompleteTriggerDirective], [typeof i2.CommonModule, typeof MatchaOptionModule], [typeof MatchaAutocompleteComponent, typeof MatchaAutocompleteTriggerDirective, typeof MatchaOptionModule]>;
|
|
1107
1153
|
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaAutocompleteModule>;
|
|
1108
1154
|
}
|
|
1109
1155
|
|
|
@@ -1408,9 +1454,15 @@ declare class MatchaPageLayoutModule {
|
|
|
1408
1454
|
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaPageLayoutModule>;
|
|
1409
1455
|
}
|
|
1410
1456
|
|
|
1457
|
+
declare class MatchaDrawerModule {
|
|
1458
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDrawerModule, never>;
|
|
1459
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaDrawerModule, [typeof MatchaDrawerComponent], [typeof i2.CommonModule, typeof MatchaButtonModule], [typeof MatchaDrawerComponent]>;
|
|
1460
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaDrawerModule>;
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1411
1463
|
declare class MatchaComponentsModule {
|
|
1412
1464
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaComponentsModule, never>;
|
|
1413
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaComponentsModule, [typeof MatchaOverflowDraggableComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof MatchaAccordionModule, typeof
|
|
1465
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaComponentsModule, [typeof MatchaOverflowDraggableComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof MatchaAccordionModule, typeof MatchaAutocompleteModule, typeof MatchaOptionModule, 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 MatchaDrawerModule], [typeof MatchaAccordionModule, typeof MatchaAutocompleteModule, typeof MatchaOptionModule, 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 MatchaDrawerModule]>;
|
|
1414
1466
|
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaComponentsModule>;
|
|
1415
1467
|
}
|
|
1416
1468
|
|
|
@@ -1527,5 +1579,5 @@ declare class StepContentDirective {
|
|
|
1527
1579
|
static ɵdir: i0.ɵɵDirectiveDeclaration<StepContentDirective, "[step]", never, { "step": { "alias": "step"; "required": false; }; }, {}, never, never, true, never>;
|
|
1528
1580
|
}
|
|
1529
1581
|
|
|
1530
|
-
export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent,
|
|
1531
|
-
export type { ILevelClasses, MatchaDropListConnectedToEvent, MatchaDropListDroppedEvent, ModalComponent };
|
|
1582
|
+
export { MATCHA_OPTION_PARENT, MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteModule, MatchaAutocompleteTriggerDirective, MatchaBadgeDirective, MatchaBadgeModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDateComponent, MatchaDateModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaDragDirective, MatchaDragHandleDirective, MatchaDrawerComponent, 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, 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 };
|
|
1583
|
+
export type { ILevelClasses, MatchaDropListConnectedToEvent, MatchaDropListDroppedEvent, MatchaOptionParent, ModalComponent };
|