matcha-components 19.70.0 → 19.73.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.
@@ -1963,138 +1963,93 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImpo
1963
1963
  }] } });
1964
1964
 
1965
1965
  class MatchaTabItemComponent {
1966
- constructor(_render) {
1967
- this._render = _render;
1968
- this.active = false;
1969
- this.selected = new EventEmitter();
1970
- }
1971
- ngAfterContentInit() {
1972
- if (!this.innerButton) {
1973
- return;
1974
- }
1975
- /* considera <button … active-item> como ativo */
1976
- if (this.innerButton.nativeElement.hasAttribute('active-item')) {
1977
- this.active = true;
1978
- }
1979
- this._render.listen(this.innerButton.nativeElement, 'click', () => this.onClick());
1966
+ constructor() {
1967
+ this.title = '';
1968
+ this.icon = '';
1969
+ this._active = false;
1980
1970
  }
1981
- onClick() {
1982
- this.selected.emit();
1971
+ set active(value) {
1972
+ this._active = value === '' || value === true || value === 'true';
1983
1973
  }
1984
- setActiveState(isActive, inactiveColor, inactiveType) {
1985
- this.active = isActive;
1986
- if (this.innerButton) {
1987
- /* liga/desliga atributo visual */
1988
- if (isActive) {
1989
- this._render.setAttribute(this.innerButton.nativeElement, 'active-item', 'true');
1990
- }
1991
- else {
1992
- this._render.removeAttribute(this.innerButton.nativeElement, 'active-item');
1993
- }
1994
- }
1974
+ get active() {
1975
+ return this._active;
1995
1976
  }
1996
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: MatchaTabItemComponent, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
1997
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.13", type: MatchaTabItemComponent, isStandalone: false, selector: "matcha-tab-item", inputs: { active: "active" }, outputs: { selected: "selected" }, queries: [{ propertyName: "innerButton", first: true, predicate: MatchaButtonComponent, descendants: true, read: ElementRef, static: true }], ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
1977
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: MatchaTabItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1978
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.13", type: MatchaTabItemComponent, isStandalone: false, selector: "matcha-tab", inputs: { title: "title", icon: "icon", active: "active" }, ngImport: i0, template: "<ng-content *ngIf=\"active\"></ng-content>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
1998
1979
  }
1999
1980
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: MatchaTabItemComponent, decorators: [{
2000
1981
  type: Component,
2001
- args: [{ selector: 'matcha-tab-item', standalone: false, template: "<ng-content></ng-content>\n" }]
2002
- }], ctorParameters: () => [{ type: i0.Renderer2 }], propDecorators: { active: [{
1982
+ args: [{ selector: 'matcha-tab', standalone: false, template: "<ng-content *ngIf=\"active\"></ng-content>\n" }]
1983
+ }], propDecorators: { title: [{
1984
+ type: Input
1985
+ }], icon: [{
1986
+ type: Input
1987
+ }], active: [{
2003
1988
  type: Input
2004
- }], selected: [{
2005
- type: Output
2006
- }], innerButton: [{
2007
- type: ContentChild,
2008
- args: [MatchaButtonComponent, { static: true, read: ElementRef }]
2009
1989
  }] } });
2010
1990
 
2011
1991
  class MatchaTabsComponent {
2012
1992
  constructor() {
2013
- /* entradas originais */
2014
- this._multiple = false;
2015
- this._disabled = false;
2016
- this._required = false;
2017
- this.inactiveColor = 'disabled';
2018
- this.inactiveType = 'basic';
2019
- this._gap = 16;
1993
+ this.activeTabIndex = 0;
1994
+ this.tabSelected = new EventEmitter();
2020
1995
  }
2021
- get multiple() { return this._multiple; }
2022
- set multiple(v) { this._multiple = v === 'false' ? false : !!v; }
2023
- get disabled() { return this._disabled; }
2024
- set disabled(v) { this._disabled = v === 'false' ? false : !!v; }
2025
- get isDisabled() { return this.disabled || null; }
2026
- get required() { return this._required; }
2027
- set required(v) { this._required = v === 'false' ? false : !!v; }
2028
- set gap(v) { const n = +v; this._gap = isNaN(n) ? 16 : n; }
2029
- get gapClass() { return `gap-${this._gap}`; }
2030
- /* ────────────────────────────────────── */
2031
1996
  ngAfterContentInit() {
2032
- /* se algum veio com [active] / active-item usa-o, senão o primeiro */
2033
- const preset = this.tabItems.find(i => i.active);
2034
- this.tabItems.forEach((item, idx) => {
2035
- const isActive = preset ? item === preset : idx === 0;
2036
- item.setActiveState(isActive, this.inactiveColor, this.inactiveType);
2037
- item.selected.subscribe(() => this.onItemSelected(item));
2038
- });
2039
- }
2040
- onItemSelected(selectedItem) {
2041
- // Se required é true e é a última tab ativa, não permite desativar
2042
- if (this.required) {
2043
- const activeTabs = this.tabItems.filter(item => item.active);
2044
- if (activeTabs.length === 1 && activeTabs[0] === selectedItem) {
2045
- return;
2046
- }
1997
+ const activeTabs = this.tabs.filter(tab => tab.active);
1998
+ if (activeTabs.length === 0 && this.tabs.first) {
1999
+ this.selectTabByIndex(this.activeTabIndex);
2047
2000
  }
2048
- // Se multiple é true, permite ativar/desativar livremente
2049
- if (this.multiple) {
2050
- selectedItem.setActiveState(!selectedItem.active, this.inactiveColor, this.inactiveType);
2001
+ }
2002
+ selectTab(tab) {
2003
+ if (tab.active)
2051
2004
  return;
2005
+ const tabsArray = this.tabs.toArray();
2006
+ tabsArray.forEach(t => t.active = false);
2007
+ tab.active = true;
2008
+ const index = tabsArray.indexOf(tab);
2009
+ this.tabSelected.emit(index);
2010
+ }
2011
+ selectTabByIndex(index) {
2012
+ if (index >= 0 && index < this.tabs.length) {
2013
+ const tab = this.tabs.toArray()[index];
2014
+ this.selectTab(tab);
2015
+ }
2016
+ }
2017
+ handleKeyboardEvent(event) {
2018
+ const tabsArray = this.tabs.toArray();
2019
+ const currentIndex = tabsArray.findIndex(tab => tab.active);
2020
+ if (event.key === 'ArrowRight') {
2021
+ const nextIndex = (currentIndex + 1) % tabsArray.length;
2022
+ this.selectTabByIndex(nextIndex);
2052
2023
  }
2053
- // Se multiple é false
2054
- if (selectedItem.active) {
2055
- // Se a tab já está ativa, permite desselecionar
2056
- selectedItem.setActiveState(false, this.inactiveColor, this.inactiveType);
2024
+ else if (event.key === 'ArrowLeft') {
2025
+ const prevIndex = (currentIndex - 1 + tabsArray.length) % tabsArray.length;
2026
+ this.selectTabByIndex(prevIndex);
2057
2027
  }
2058
- else {
2059
- // Se está selecionando uma nova tab, desativa todas as outras
2060
- this.tabItems.forEach(item => item.setActiveState(item === selectedItem, this.inactiveColor, this.inactiveType));
2028
+ else if (event.key === 'Home') {
2029
+ this.selectTabByIndex(0);
2030
+ }
2031
+ else if (event.key === 'End') {
2032
+ this.selectTabByIndex(tabsArray.length - 1);
2061
2033
  }
2062
2034
  }
2063
2035
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: MatchaTabsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2064
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.13", type: MatchaTabsComponent, isStandalone: false, selector: "matcha-tabs", inputs: { multiple: "multiple", disabled: "disabled", required: "required", inactiveColor: "inactiveColor", inactiveType: "inactiveType", gap: "gap" }, host: { properties: { "attr.disabled": "this.isDisabled" } }, queries: [{ propertyName: "tabItems", predicate: MatchaTabItemComponent }], ngImport: i0, template: "<div class=\"button-group d-flex flex-wrap\" [ngClass]=\"gapClass\" role=\"group\"><ng-content></ng-content></div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] }); }
2036
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.13", type: MatchaTabsComponent, isStandalone: false, selector: "matcha-tabs", inputs: { activeTabIndex: "activeTabIndex" }, outputs: { tabSelected: "tabSelected" }, host: { listeners: { "keydown": "handleKeyboardEvent($event)" } }, queries: [{ propertyName: "tabs", predicate: MatchaTabItemComponent }], ngImport: i0, template: "<div class=\"flex-column gap-24 w-100-p\">\n <nav class=\"button-group grid-2 grid-sm-3 grid-md-6 gap-8 list-style-none pl-0\" role=\"tablist\">\n <button *ngFor=\"let tab of tabs; let i = index\" (click)=\"selectTabByIndex(i)\" \n [attr.aria-selected]=\"tab.active\" \n [attr.aria-controls]=\"'tab-content-' + i\" \n [ngClass]=\"{'active': tab.active}\"\n class=\"\n border-color-{{tab.active?'accent':'surface'}} background-surface\n cursor-pointer w-100-p b-2 radius-8 p-8 flex-column flex-align-center gap-4 flex-space-between\"\n role=\"tab\"\n tabindex=\"{{tab.active ? 0 : -1}}\">\n <matcha-icon [name]=\"tab.icon\" color=\"accent\" size=\"md\"></matcha-icon>\n <span class=\"text-label fw-900 fs-14 lh-16 line-clamp-2\">\n {{ tab.title }}\n </span>\n </button>\n </nav>\n\n <div>\n <ng-content></ng-content>\n </div>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: MatchaIconComponent, selector: "matcha-icon", inputs: ["name", "size", "color", "class", "loading"] }], animations: [...createAnimations] }); }
2065
2037
  }
2066
2038
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: MatchaTabsComponent, decorators: [{
2067
2039
  type: Component,
2068
- args: [{ selector: 'matcha-tabs', standalone: false, template: "<div class=\"button-group d-flex flex-wrap\" [ngClass]=\"gapClass\" role=\"group\"><ng-content></ng-content></div>\n" }]
2069
- }], propDecorators: { multiple: [{
2070
- type: Input
2071
- }], disabled: [{
2072
- type: Input
2073
- }], isDisabled: [{
2074
- type: HostBinding,
2075
- args: ['attr.disabled']
2076
- }], required: [{
2077
- type: Input
2078
- }], inactiveColor: [{
2079
- type: Input
2080
- }], inactiveType: [{
2081
- type: Input
2082
- }], gap: [{
2083
- type: Input
2084
- }], tabItems: [{
2040
+ args: [{ selector: 'matcha-tabs', animations: [...createAnimations], standalone: false, template: "<div class=\"flex-column gap-24 w-100-p\">\n <nav class=\"button-group grid-2 grid-sm-3 grid-md-6 gap-8 list-style-none pl-0\" role=\"tablist\">\n <button *ngFor=\"let tab of tabs; let i = index\" (click)=\"selectTabByIndex(i)\" \n [attr.aria-selected]=\"tab.active\" \n [attr.aria-controls]=\"'tab-content-' + i\" \n [ngClass]=\"{'active': tab.active}\"\n class=\"\n border-color-{{tab.active?'accent':'surface'}} background-surface\n cursor-pointer w-100-p b-2 radius-8 p-8 flex-column flex-align-center gap-4 flex-space-between\"\n role=\"tab\"\n tabindex=\"{{tab.active ? 0 : -1}}\">\n <matcha-icon [name]=\"tab.icon\" color=\"accent\" size=\"md\"></matcha-icon>\n <span class=\"text-label fw-900 fs-14 lh-16 line-clamp-2\">\n {{ tab.title }}\n </span>\n </button>\n </nav>\n\n <div>\n <ng-content></ng-content>\n </div>\n</div>\n" }]
2041
+ }], propDecorators: { tabs: [{
2085
2042
  type: ContentChildren,
2086
2043
  args: [MatchaTabItemComponent]
2044
+ }], activeTabIndex: [{
2045
+ type: Input
2046
+ }], tabSelected: [{
2047
+ type: Output
2048
+ }], handleKeyboardEvent: [{
2049
+ type: HostListener,
2050
+ args: ['keydown', ['$event']]
2087
2051
  }] } });
2088
2052
 
2089
- class TipTextComponent {
2090
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: TipTextComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2091
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.13", type: TipTextComponent, isStandalone: false, selector: "tip-text", ngImport: i0, template: "<p>tip-text works!</p>\n", styles: [""] }); }
2092
- }
2093
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: TipTextComponent, decorators: [{
2094
- type: Component,
2095
- args: [{ selector: 'tip-text', standalone: false, template: "<p>tip-text works!</p>\n" }]
2096
- }] });
2097
-
2098
2053
  class MatchaTooltipDirective {
2099
2054
  constructor(el, renderer) {
2100
2055
  this.el = el;
@@ -3542,9 +3497,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImpo
3542
3497
  class MatchaTabsModule {
3543
3498
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: MatchaTabsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3544
3499
  static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.13", ngImport: i0, type: MatchaTabsModule, declarations: [MatchaTabsComponent, MatchaTabItemComponent], imports: [CommonModule,
3545
- MatchaTooltipModule], exports: [MatchaTabsComponent, MatchaTabItemComponent] }); }
3500
+ MatchaTooltipModule,
3501
+ MatchaIconModule], exports: [MatchaTabsComponent, MatchaTabItemComponent] }); }
3546
3502
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: MatchaTabsModule, imports: [CommonModule,
3547
- MatchaTooltipModule] }); }
3503
+ MatchaTooltipModule,
3504
+ MatchaIconModule] }); }
3548
3505
  }
3549
3506
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: MatchaTabsModule, decorators: [{
3550
3507
  type: NgModule,
@@ -3552,7 +3509,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImpo
3552
3509
  declarations: [MatchaTabsComponent, MatchaTabItemComponent],
3553
3510
  imports: [
3554
3511
  CommonModule,
3555
- MatchaTooltipModule
3512
+ MatchaTooltipModule,
3513
+ MatchaIconModule,
3556
3514
  ],
3557
3515
  exports: [MatchaTabsComponent, MatchaTabItemComponent]
3558
3516
  }]
@@ -3590,26 +3548,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImpo
3590
3548
  }]
3591
3549
  }] });
3592
3550
 
3593
- class TipTextModule {
3594
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: TipTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3595
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.13", ngImport: i0, type: TipTextModule, declarations: [TipTextComponent], imports: [CommonModule], exports: [TipTextComponent] }); }
3596
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: TipTextModule, imports: [CommonModule] }); }
3597
- }
3598
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: TipTextModule, decorators: [{
3599
- type: NgModule,
3600
- args: [{
3601
- declarations: [
3602
- TipTextComponent,
3603
- ],
3604
- imports: [
3605
- CommonModule
3606
- ],
3607
- exports: [
3608
- TipTextComponent,
3609
- ],
3610
- }]
3611
- }] });
3612
-
3613
3551
  class MatchaComponentsModule {
3614
3552
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: MatchaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3615
3553
  static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.13", ngImport: i0, type: MatchaComponentsModule, declarations: [MatchaOverflowDraggableComponent], imports: [CommonModule,
@@ -3649,8 +3587,7 @@ class MatchaComponentsModule {
3649
3587
  MatchaTabsModule,
3650
3588
  MatchaTitleModule,
3651
3589
  MatchaTooltipModule,
3652
- MatchaTreeModule,
3653
- TipTextModule], exports: [MatchaAccordionModule,
3590
+ MatchaTreeModule], exports: [MatchaAccordionModule,
3654
3591
  MatchaAutocompleteModule,
3655
3592
  MatchaBadgeModule,
3656
3593
  MatchaButtonModule,
@@ -3684,8 +3621,7 @@ class MatchaComponentsModule {
3684
3621
  MatchaTabsModule,
3685
3622
  MatchaTitleModule,
3686
3623
  MatchaTooltipModule,
3687
- MatchaTreeModule,
3688
- TipTextModule] }); }
3624
+ MatchaTreeModule] }); }
3689
3625
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: MatchaComponentsModule, imports: [CommonModule,
3690
3626
  FormsModule,
3691
3627
  ReactiveFormsModule,
@@ -3723,8 +3659,7 @@ class MatchaComponentsModule {
3723
3659
  MatchaTabsModule,
3724
3660
  MatchaTitleModule,
3725
3661
  MatchaTooltipModule,
3726
- MatchaTreeModule,
3727
- TipTextModule, MatchaAccordionModule,
3662
+ MatchaTreeModule, MatchaAccordionModule,
3728
3663
  MatchaAutocompleteModule,
3729
3664
  MatchaBadgeModule,
3730
3665
  MatchaButtonModule,
@@ -3758,8 +3693,7 @@ class MatchaComponentsModule {
3758
3693
  MatchaTabsModule,
3759
3694
  MatchaTitleModule,
3760
3695
  MatchaTooltipModule,
3761
- MatchaTreeModule,
3762
- TipTextModule] }); }
3696
+ MatchaTreeModule] }); }
3763
3697
  }
3764
3698
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImport: i0, type: MatchaComponentsModule, decorators: [{
3765
3699
  type: NgModule,
@@ -3805,8 +3739,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImpo
3805
3739
  MatchaTabsModule,
3806
3740
  MatchaTitleModule,
3807
3741
  MatchaTooltipModule,
3808
- MatchaTreeModule,
3809
- TipTextModule,
3742
+ MatchaTreeModule
3810
3743
  ],
3811
3744
  exports: [
3812
3745
  MatchaAccordionModule,
@@ -3843,8 +3776,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImpo
3843
3776
  MatchaTabsModule,
3844
3777
  MatchaTitleModule,
3845
3778
  MatchaTooltipModule,
3846
- MatchaTreeModule,
3847
- TipTextModule,
3779
+ MatchaTreeModule
3848
3780
  ]
3849
3781
  }]
3850
3782
  }] });
@@ -3868,5 +3800,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImpo
3868
3800
  * Generated bundle index. Do not edit.
3869
3801
  */
3870
3802
 
3871
- export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaAutocompleteOverviewDirective, MatchaBadgeDirective, MatchaBadgeModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputDirective, MatchaInputModule, MatchaLabelComponent, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaRadioButtonDirective, MatchaRadioButtonModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSlideToggleDirective, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaSpinComponent, MatchaSpinModule, MatchaTabItemComponent, MatchaTableDirective, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, MatchaTreeDirective, MatchaTreeModule, TipTextComponent, TipTextModule };
3803
+ export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaAutocompleteOverviewDirective, MatchaBadgeDirective, MatchaBadgeModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputDirective, MatchaInputModule, MatchaLabelComponent, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaOverlayService, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaRadioButtonDirective, MatchaRadioButtonModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSlideToggleDirective, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaSpinComponent, MatchaSpinModule, MatchaTabItemComponent, MatchaTableDirective, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, MatchaTreeDirective, MatchaTreeModule };
3872
3804
  //# sourceMappingURL=matcha-components.mjs.map