matcha-components 20.5.0 → 20.9.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, EventEmitter, AfterContentInit, QueryList, OnDestroy, ElementRef, OnChanges, SimpleChanges, Renderer2, AfterViewInit, TemplateRef, NgZone, ChangeDetectorRef, ApplicationRef, Injector, RendererFactory2, Type, ComponentRef } 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';
3
3
  import * as rxjs from 'rxjs';
4
4
  import { Observable } from 'rxjs';
5
5
  import * as i3 from '@angular/forms';
@@ -298,28 +298,6 @@ 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
-
323
301
  declare class MatchaIconComponent {
324
302
  name: string | undefined | null;
325
303
  size: string | undefined | null;
@@ -470,7 +448,7 @@ declare class MatchaToolbarCustomButtonComponent {
470
448
 
471
449
  declare class MatchaFormFieldComponent {
472
450
  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';
473
- size: string | null | undefined | 'tiny' | 'small' | 'medium' | 'large' | 'huge';
451
+ size: string | null;
474
452
  sizeXs: string | null;
475
453
  sizeSm: string | null;
476
454
  sizeMd: string | null;
@@ -572,14 +550,11 @@ declare class MatchaSpinComponent {
572
550
  declare class MatchaSpinnerComponent {
573
551
  private _elementRef;
574
552
  private _renderer;
575
- private _progressValue;
553
+ private _progress;
576
554
  set progress(value: string | number);
577
555
  get progress(): string | number;
578
- get _progress(): string | number;
579
556
  color: string;
580
- get _color(): string;
581
557
  size: string | null;
582
- get hostSize(): string | null;
583
558
  sizeXs: string | null;
584
559
  sizeSm: string | null;
585
560
  sizeMd: string | null;
@@ -599,8 +574,8 @@ declare class MatchaSpinnerComponent {
599
574
  }
600
575
 
601
576
  declare class MatchaHintTextComponent {
602
- type: string;
603
- size: string;
577
+ type: 'error' | 'warning' | 'info' | 'success';
578
+ size: 'tiny' | 'medium';
604
579
  get iconName(): string;
605
580
  get iconColor(): string;
606
581
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaHintTextComponent, never>;
@@ -619,6 +594,54 @@ declare class MatchaSkeletonComponent {
619
594
  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>;
620
595
  }
621
596
 
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
+
622
645
  declare class MatchaSlideToggleComponent implements ControlValueAccessor, OnChanges, AfterViewInit {
623
646
  private elementRef;
624
647
  color: string;
@@ -921,72 +944,22 @@ declare class MatchaPageLayoutComponent {
921
944
  static ɵcmp: i0.ɵɵComponentDeclaration<MatchaPageLayoutComponent, "matcha-page-layout", never, {}, {}, never, ["*"], false, never>;
922
945
  }
923
946
 
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>;
947
+ declare class MatchaAvatarComponent {
948
+ src: string;
949
+ name: string;
950
+ size: 'tiny' | 'small' | 'medium' | 'large' | 'huge';
951
+ color: string;
952
+ private _disabled;
953
+ set disabled(value: boolean | string);
954
+ get disabled(): boolean;
955
+ get initials(): string;
956
+ get hasImage(): boolean;
957
+ get hasName(): boolean;
958
+ get showDefaultIcon(): boolean;
959
+ get sizeClass(): string;
960
+ get avatarClasses(): string;
961
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAvatarComponent, never>;
962
+ 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>;
990
963
  }
991
964
 
992
965
  declare class MatchaTooltipDirective {
@@ -1125,31 +1098,30 @@ declare class MatchaOverflowDraggableComponent {
1125
1098
  static ɵcmp: i0.ɵɵComponentDeclaration<MatchaOverflowDraggableComponent, "matcha-overflow-draggable", never, { "dragRef": { "alias": "dragRef"; "required": false; }; }, {}, never, ["*"], false, never>;
1126
1099
  }
1127
1100
 
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
-
1144
1101
  declare class MatchaOptionModule {
1145
1102
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaOptionModule, never>;
1146
1103
  static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaOptionModule, [typeof MatchaOptionComponent], [typeof i2.CommonModule], [typeof MatchaOptionComponent]>;
1147
1104
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaOptionModule>;
1148
1105
  }
1149
1106
 
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>;
1120
+ }
1121
+
1150
1122
  declare class MatchaAutocompleteModule {
1151
1123
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAutocompleteModule, never>;
1152
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaAutocompleteModule, [typeof MatchaAutocompleteComponent, typeof MatchaAutocompleteTriggerDirective], [typeof i2.CommonModule, typeof MatchaOptionModule], [typeof MatchaAutocompleteComponent, typeof MatchaAutocompleteTriggerDirective, typeof MatchaOptionModule]>;
1124
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaAutocompleteModule, [typeof MatchaAutocompleteComponent, typeof MatchaAutocompleteDirective], [typeof i2.CommonModule, typeof i3.FormsModule, typeof MatchaOptionModule], [typeof MatchaAutocompleteComponent, typeof MatchaAutocompleteDirective]>;
1153
1125
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaAutocompleteModule>;
1154
1126
  }
1155
1127
 
@@ -1454,15 +1426,15 @@ declare class MatchaPageLayoutModule {
1454
1426
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaPageLayoutModule>;
1455
1427
  }
1456
1428
 
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>;
1429
+ declare class MatchaAvatarModule {
1430
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAvatarModule, never>;
1431
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaAvatarModule, [typeof MatchaAvatarComponent], [typeof i2.CommonModule], [typeof MatchaAvatarComponent]>;
1432
+ static ɵinj: i0.ɵɵInjectorDeclaration<MatchaAvatarModule>;
1461
1433
  }
1462
1434
 
1463
1435
  declare class MatchaComponentsModule {
1464
1436
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaComponentsModule, never>;
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]>;
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]>;
1466
1438
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaComponentsModule>;
1467
1439
  }
1468
1440
 
@@ -1579,5 +1551,5 @@ declare class StepContentDirective {
1579
1551
  static ɵdir: i0.ɵɵDirectiveDeclaration<StepContentDirective, "[step]", never, { "step": { "alias": "step"; "required": false; }; }, {}, never, never, true, never>;
1580
1552
  }
1581
1553
 
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 };
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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matcha-components",
3
- "version": "20.5.0",
3
+ "version": "20.9.0",
4
4
  "peerDependencies": {},
5
5
  "dependencies": {
6
6
  "tslib": "^2.3.0"