matcha-components 19.134.0 → 19.136.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.
@@ -639,6 +639,183 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
639
639
  type: Output
640
640
  }] } });
641
641
 
642
+ /*
643
+ HOW TO USE ---------------------------------------------------------
644
+ TEMPLATE:
645
+ <!-- Elemento sentinela para detectar o scroll -->
646
+ <option disabled style="height: 1px; padding: 0; margin: 0;">
647
+ <!-- Esse <div> não precisa ter conteúdo visual; ele apenas será observado -->
648
+ <div infiniteScroll (scrolledToEnd)="onScrolledToEnd()"></div>
649
+ </option>
650
+ */
651
+ class MatchaLazyloadComponent {
652
+ constructor(element) {
653
+ this.element = element;
654
+ // Evento que será disparado quando o elemento entrar na área visível
655
+ this.scrolledToEnd = new EventEmitter();
656
+ }
657
+ ngOnInit() {
658
+ // Configura o observer para disparar quando 10% do elemento estiver visível
659
+ const options = {
660
+ root: null, // Usa a viewport
661
+ rootMargin: '0px',
662
+ threshold: 0.1
663
+ };
664
+ this.observer = new IntersectionObserver((entries) => {
665
+ entries.forEach(entry => {
666
+ if (entry.isIntersecting) {
667
+ this.scrolledToEnd.emit();
668
+ }
669
+ });
670
+ }, options);
671
+ this.observer.observe(this.element.nativeElement);
672
+ }
673
+ ngOnDestroy() {
674
+ this.observer.disconnect();
675
+ }
676
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaLazyloadComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
677
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: MatchaLazyloadComponent, isStandalone: false, selector: "matcha-lazyload", outputs: { scrolledToEnd: "scrolledToEnd" }, ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
678
+ }
679
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaLazyloadComponent, decorators: [{
680
+ type: Component,
681
+ args: [{ selector: 'matcha-lazyload', standalone: false, template: "<ng-content></ng-content>\n" }]
682
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { scrolledToEnd: [{
683
+ type: Output
684
+ }] } });
685
+
686
+ class MatchaLazyloadDataComponent {
687
+ constructor(element) {
688
+ this.element = element;
689
+ /**
690
+ * Lista inicial (opcional) para iniciar a agregação.
691
+ */
692
+ this.initialList = [];
693
+ /**
694
+ * Threshold para o Intersection Observer (padrão: 0.1 = 10% do elemento visível).
695
+ */
696
+ this.threshold = 0.1;
697
+ /**
698
+ * Emite a lista acumulada de itens.
699
+ */
700
+ this.aggregatedData = new EventEmitter();
701
+ /**
702
+ * Emite o item exato, quando a aggregatedData tiver um único item igual ao searchTerm.
703
+ */
704
+ this.exactMatch = new EventEmitter();
705
+ this.aggregatedList = [];
706
+ this.currentPage = 0;
707
+ // Subscription para as chamadas do loadData
708
+ this.dataSubscription = new Subscription();
709
+ // Subscription exclusiva para o debounce do searchTerm
710
+ this.searchSubscription = new Subscription();
711
+ // Subject para aplicar debounce no searchTerm
712
+ this.searchTermSubject = new Subject();
713
+ }
714
+ ngOnInit() {
715
+ this.initialize();
716
+ // Configura o Intersection Observer para carregamento via scroll
717
+ const options = {
718
+ root: null,
719
+ rootMargin: '0px',
720
+ threshold: this.threshold
721
+ };
722
+ this.observer = new IntersectionObserver(entries => {
723
+ entries.forEach(entry => {
724
+ if (entry.isIntersecting) {
725
+ this.loadNextPage();
726
+ }
727
+ });
728
+ }, options);
729
+ this.observer.observe(this.element.nativeElement);
730
+ // Inscreve para receber alterações do searchTerm com debounce
731
+ this.searchSubscription = this.searchTermSubject.pipe(debounceTime(300)).subscribe(() => {
732
+ // Reseta e carrega a primeira página após o debounce
733
+ this.resetData();
734
+ this.loadNextPage();
735
+ });
736
+ }
737
+ ngOnChanges(changes) {
738
+ if (changes['resetKey'] && !changes['resetKey'].firstChange) {
739
+ this.resetData();
740
+ }
741
+ if (changes['searchTerm'] && !changes['searchTerm'].firstChange) {
742
+ // Emite o novo valor para o Subject e aguarda o debounce
743
+ this.searchTermSubject.next(changes['searchTerm'].currentValue);
744
+ }
745
+ }
746
+ /**
747
+ * Inicializa ou reinicializa a lista agregada e o contador de página.
748
+ */
749
+ initialize() {
750
+ this.aggregatedList = [...this.initialList];
751
+ this.currentPage = 0;
752
+ this.aggregatedData.emit(this.aggregatedList);
753
+ this.checkExactMatch();
754
+ }
755
+ /**
756
+ * Reseta apenas as assinaturas e o estado dos dados (não a inscrição do searchTerm).
757
+ */
758
+ resetData() {
759
+ // Cancela as assinaturas das chamadas de loadData
760
+ this.dataSubscription.unsubscribe();
761
+ this.dataSubscription = new Subscription();
762
+ // Re-inicializa a lista e o contador
763
+ this.initialize();
764
+ }
765
+ /**
766
+ * Carrega a próxima página de dados utilizando a função loadData.
767
+ */
768
+ loadNextPage() {
769
+ if (!this.loadData) {
770
+ return;
771
+ }
772
+ this.currentPage++;
773
+ const dataObservable = this.loadData(this.currentPage);
774
+ const sub = dataObservable.subscribe(data => {
775
+ if (data && data.length) {
776
+ this.aggregatedList = [...this.aggregatedList, ...data];
777
+ this.aggregatedData.emit(this.aggregatedList);
778
+ this.checkExactMatch();
779
+ }
780
+ });
781
+ this.dataSubscription.add(sub);
782
+ }
783
+ /**
784
+ * Verifica se a lista agregada possui exatamente um item e se esse item é igual ao searchTerm.
785
+ * Se sim, emite o output exactMatch com esse item.
786
+ */
787
+ checkExactMatch() {
788
+ if (this.aggregatedList.length === 1 && this.aggregatedList[0] === this.searchTerm) {
789
+ this.exactMatch.emit(this.aggregatedList[0]);
790
+ }
791
+ }
792
+ ngOnDestroy() {
793
+ this.observer.disconnect();
794
+ this.dataSubscription.unsubscribe();
795
+ this.searchSubscription.unsubscribe();
796
+ }
797
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaLazyloadDataComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
798
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: MatchaLazyloadDataComponent, isStandalone: false, selector: "matcha-lazyload-data", inputs: { loadData: "loadData", initialList: "initialList", threshold: "threshold", resetKey: "resetKey", searchTerm: "searchTerm" }, outputs: { aggregatedData: "aggregatedData", exactMatch: "exactMatch" }, usesOnChanges: true, ngImport: i0, template: "<ng-content></ng-content>\n", styles: ["", ":host{height:1px;opacity:0}\n"] }); }
799
+ }
800
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaLazyloadDataComponent, decorators: [{
801
+ type: Component,
802
+ args: [{ selector: 'matcha-lazyload-data', standalone: false, template: "<ng-content></ng-content>\n", styles: [":host{height:1px;opacity:0}\n"] }]
803
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { loadData: [{
804
+ type: Input
805
+ }], initialList: [{
806
+ type: Input
807
+ }], threshold: [{
808
+ type: Input
809
+ }], resetKey: [{
810
+ type: Input
811
+ }], searchTerm: [{
812
+ type: Input
813
+ }], aggregatedData: [{
814
+ type: Output
815
+ }], exactMatch: [{
816
+ type: Output
817
+ }] } });
818
+
642
819
  class MatchaButtonComponent {
643
820
  get colorAttr() {
644
821
  return this.color;
@@ -1858,6 +2035,86 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
1858
2035
  args: ['size-xl']
1859
2036
  }] } });
1860
2037
 
2038
+ class MatchaSpinnerComponent {
2039
+ set progress(value) {
2040
+ this._progress = Number(value);
2041
+ }
2042
+ get progress() {
2043
+ return this._progress;
2044
+ }
2045
+ constructor(_elementRef, _renderer) {
2046
+ this._elementRef = _elementRef;
2047
+ this._renderer = _renderer;
2048
+ this._progress = 0;
2049
+ this.color = 'accent';
2050
+ this.size = null;
2051
+ this.sizeXs = null;
2052
+ this.sizeSm = null;
2053
+ this.sizeMd = null;
2054
+ this.sizeLg = null;
2055
+ this.sizeXl = null;
2056
+ // Valores fixos baseados no hard coded que funciona
2057
+ this.diameter = 66;
2058
+ this.center = 33;
2059
+ this.radius = 30;
2060
+ this.strokeWidth = 5;
2061
+ }
2062
+ ngOnInit() {
2063
+ this._renderer.addClass(this._elementRef.nativeElement, 'matcha-spinner');
2064
+ this.setSize();
2065
+ }
2066
+ setSize() {
2067
+ const sizes = ['tiny', 'small', 'medium', 'large', 'huge'];
2068
+ sizes.forEach(size => {
2069
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-spinner-${size}`);
2070
+ });
2071
+ if (this.size) {
2072
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-spinner-${this.size}`);
2073
+ }
2074
+ }
2075
+ get circumference() {
2076
+ return 2 * Math.PI * this.radius;
2077
+ }
2078
+ get dashOffset() {
2079
+ const progress = Math.min(Math.max(Number(this.progress), 0), 100);
2080
+ return this.circumference - (progress / 100) * this.circumference;
2081
+ }
2082
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaSpinnerComponent, deps: [{ token: ElementRef }, { token: Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
2083
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: MatchaSpinnerComponent, isStandalone: false, selector: "matcha-spinner", inputs: { progress: "progress", color: "color", size: "size", sizeXs: ["size-xs", "sizeXs"], sizeSm: ["size-sm", "sizeSm"], sizeMd: ["size-md", "sizeMd"], sizeLg: ["size-lg", "sizeLg"], sizeXl: ["size-xl", "sizeXl"] }, ngImport: i0, template: "<div\n class=\"matcha-spinner\"\n role=\"progressbar\"\n [attr.aria-valuemin]=\"0\"\n [attr.aria-valuemax]=\"100\"\n [attr.aria-valuenow]=\"progress\"\n>\n <svg [attr.viewBox]=\"'0 0 ' + diameter + ' ' + diameter\" class=\"spinner\">\n <circle\n class=\"spinner-placeholder\"\n [attr.cx]=\"center\"\n [attr.cy]=\"center\"\n [attr.r]=\"radius\"\n [attr.stroke-width]=\"strokeWidth\"\n stroke-linecap=\"round\"\n />\n <circle\n class=\"spinner-progress path\"\n [attr.cx]=\"center\"\n [attr.cy]=\"center\"\n [attr.r]=\"radius\"\n [attr.stroke-width]=\"strokeWidth\"\n [attr.stroke]=\"color\"\n [attr.stroke-dasharray]=\"circumference\"\n [attr.stroke-dashoffset]=\"dashOffset\"\n stroke-linecap=\"round\"\n />\n </svg>\n</div>\n", styles: [""] }); }
2084
+ }
2085
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaSpinnerComponent, decorators: [{
2086
+ type: Component,
2087
+ args: [{ selector: 'matcha-spinner', standalone: false, template: "<div\n class=\"matcha-spinner\"\n role=\"progressbar\"\n [attr.aria-valuemin]=\"0\"\n [attr.aria-valuemax]=\"100\"\n [attr.aria-valuenow]=\"progress\"\n>\n <svg [attr.viewBox]=\"'0 0 ' + diameter + ' ' + diameter\" class=\"spinner\">\n <circle\n class=\"spinner-placeholder\"\n [attr.cx]=\"center\"\n [attr.cy]=\"center\"\n [attr.r]=\"radius\"\n [attr.stroke-width]=\"strokeWidth\"\n stroke-linecap=\"round\"\n />\n <circle\n class=\"spinner-progress path\"\n [attr.cx]=\"center\"\n [attr.cy]=\"center\"\n [attr.r]=\"radius\"\n [attr.stroke-width]=\"strokeWidth\"\n [attr.stroke]=\"color\"\n [attr.stroke-dasharray]=\"circumference\"\n [attr.stroke-dashoffset]=\"dashOffset\"\n stroke-linecap=\"round\"\n />\n </svg>\n</div>\n" }]
2088
+ }], ctorParameters: () => [{ type: i0.ElementRef, decorators: [{
2089
+ type: Inject,
2090
+ args: [ElementRef]
2091
+ }] }, { type: i0.Renderer2, decorators: [{
2092
+ type: Inject,
2093
+ args: [Renderer2]
2094
+ }] }], propDecorators: { progress: [{
2095
+ type: Input
2096
+ }], color: [{
2097
+ type: Input
2098
+ }], size: [{
2099
+ type: Input,
2100
+ args: ['size']
2101
+ }], sizeXs: [{
2102
+ type: Input,
2103
+ args: ['size-xs']
2104
+ }], sizeSm: [{
2105
+ type: Input,
2106
+ args: ['size-sm']
2107
+ }], sizeMd: [{
2108
+ type: Input,
2109
+ args: ['size-md']
2110
+ }], sizeLg: [{
2111
+ type: Input,
2112
+ args: ['size-lg']
2113
+ }], sizeXl: [{
2114
+ type: Input,
2115
+ args: ['size-xl']
2116
+ }] } });
2117
+
1861
2118
  class MatchaHintTextComponent {
1862
2119
  constructor() {
1863
2120
  this.type = 'error';
@@ -3638,6 +3895,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
3638
3895
  }]
3639
3896
  }] });
3640
3897
 
3898
+ class MatchaLazyloadModule {
3899
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaLazyloadModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3900
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.14", ngImport: i0, type: MatchaLazyloadModule, declarations: [MatchaLazyloadComponent, MatchaLazyloadDataComponent], imports: [CommonModule], exports: [MatchaLazyloadComponent, MatchaLazyloadDataComponent] }); }
3901
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaLazyloadModule, imports: [CommonModule] }); }
3902
+ }
3903
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaLazyloadModule, decorators: [{
3904
+ type: NgModule,
3905
+ args: [{
3906
+ declarations: [MatchaLazyloadComponent, MatchaLazyloadDataComponent],
3907
+ imports: [
3908
+ CommonModule
3909
+ ],
3910
+ exports: [MatchaLazyloadComponent, MatchaLazyloadDataComponent]
3911
+ }]
3912
+ }] });
3913
+
3641
3914
  class MatchaElevationDirective {
3642
3915
  constructor(_elementRef, _renderer) {
3643
3916
  this._elementRef = _elementRef;
@@ -4759,6 +5032,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
4759
5032
  }]
4760
5033
  }] });
4761
5034
 
5035
+ class MatchaSpinnerModule {
5036
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaSpinnerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
5037
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.14", ngImport: i0, type: MatchaSpinnerModule, declarations: [MatchaSpinnerComponent], imports: [CommonModule], exports: [MatchaSpinnerComponent] }); }
5038
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaSpinnerModule, imports: [CommonModule] }); }
5039
+ }
5040
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaSpinnerModule, decorators: [{
5041
+ type: NgModule,
5042
+ args: [{
5043
+ declarations: [MatchaSpinnerComponent],
5044
+ imports: [
5045
+ CommonModule
5046
+ ],
5047
+ exports: [MatchaSpinnerComponent]
5048
+ }]
5049
+ }] });
5050
+
4762
5051
  class MatchaTableDirective {
4763
5052
  constructor(_elementRef, _renderer) {
4764
5053
  this._elementRef = _elementRef;
@@ -5036,6 +5325,7 @@ class MatchaComponentsModule {
5036
5325
  MatchaHintTextModule,
5037
5326
  MatchaIconModule,
5038
5327
  MatchaInfiniteScrollModule,
5328
+ MatchaLazyloadModule,
5039
5329
  MatchaInputModule,
5040
5330
  // MatchaInputPhoneModule,
5041
5331
  MatchaMasonryModule,
@@ -5052,6 +5342,7 @@ class MatchaComponentsModule {
5052
5342
  MatchaSnackBarModule,
5053
5343
  MatchaSortHeaderModule,
5054
5344
  MatchaSpinModule,
5345
+ MatchaSpinnerModule,
5055
5346
  MatchaStepperModule,
5056
5347
  MatchaTableModule,
5057
5348
  MatchaTabsModule,
@@ -5075,6 +5366,7 @@ class MatchaComponentsModule {
5075
5366
  MatchaHintTextModule,
5076
5367
  MatchaIconModule,
5077
5368
  MatchaInfiniteScrollModule,
5369
+ MatchaLazyloadModule,
5078
5370
  MatchaInputModule,
5079
5371
  // MatchaInputPhoneModule,
5080
5372
  MatchaMasonryModule,
@@ -5092,6 +5384,7 @@ class MatchaComponentsModule {
5092
5384
  MatchaSnackBarModule,
5093
5385
  MatchaSortHeaderModule,
5094
5386
  MatchaSpinModule,
5387
+ MatchaSpinnerModule,
5095
5388
  MatchaStepperModule,
5096
5389
  MatchaTableModule,
5097
5390
  MatchaTabsModule,
@@ -5120,6 +5413,7 @@ class MatchaComponentsModule {
5120
5413
  MatchaHintTextModule,
5121
5414
  MatchaIconModule,
5122
5415
  MatchaInfiniteScrollModule,
5416
+ MatchaLazyloadModule,
5123
5417
  MatchaInputModule,
5124
5418
  // MatchaInputPhoneModule,
5125
5419
  MatchaMasonryModule,
@@ -5136,6 +5430,7 @@ class MatchaComponentsModule {
5136
5430
  MatchaSnackBarModule,
5137
5431
  MatchaSortHeaderModule,
5138
5432
  MatchaSpinModule,
5433
+ MatchaSpinnerModule,
5139
5434
  MatchaStepperModule,
5140
5435
  MatchaTableModule,
5141
5436
  MatchaTabsModule,
@@ -5159,6 +5454,7 @@ class MatchaComponentsModule {
5159
5454
  MatchaHintTextModule,
5160
5455
  MatchaIconModule,
5161
5456
  MatchaInfiniteScrollModule,
5457
+ MatchaLazyloadModule,
5162
5458
  MatchaInputModule,
5163
5459
  // MatchaInputPhoneModule,
5164
5460
  MatchaMasonryModule,
@@ -5176,6 +5472,7 @@ class MatchaComponentsModule {
5176
5472
  MatchaSnackBarModule,
5177
5473
  MatchaSortHeaderModule,
5178
5474
  MatchaSpinModule,
5475
+ MatchaSpinnerModule,
5179
5476
  MatchaStepperModule,
5180
5477
  MatchaTableModule,
5181
5478
  MatchaTabsModule,
@@ -5210,6 +5507,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
5210
5507
  MatchaHintTextModule,
5211
5508
  MatchaIconModule,
5212
5509
  MatchaInfiniteScrollModule,
5510
+ MatchaLazyloadModule,
5213
5511
  MatchaInputModule,
5214
5512
  // MatchaInputPhoneModule,
5215
5513
  MatchaMasonryModule,
@@ -5226,6 +5524,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
5226
5524
  MatchaSnackBarModule,
5227
5525
  MatchaSortHeaderModule,
5228
5526
  MatchaSpinModule,
5527
+ MatchaSpinnerModule,
5229
5528
  MatchaStepperModule,
5230
5529
  MatchaTableModule,
5231
5530
  MatchaTabsModule,
@@ -5251,6 +5550,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
5251
5550
  MatchaHintTextModule,
5252
5551
  MatchaIconModule,
5253
5552
  MatchaInfiniteScrollModule,
5553
+ MatchaLazyloadModule,
5254
5554
  MatchaInputModule,
5255
5555
  // MatchaInputPhoneModule,
5256
5556
  MatchaMasonryModule,
@@ -5268,6 +5568,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
5268
5568
  MatchaSnackBarModule,
5269
5569
  MatchaSortHeaderModule,
5270
5570
  MatchaSpinModule,
5571
+ MatchaSpinnerModule,
5271
5572
  MatchaStepperModule,
5272
5573
  MatchaTableModule,
5273
5574
  MatchaTabsModule,
@@ -5344,5 +5645,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
5344
5645
  * Generated bundle index. Do not edit.
5345
5646
  */
5346
5647
 
5347
- export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteDirective, MatchaAutocompleteModule, 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, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaOptionComponent, MatchaOptionModule, MatchaOptionService, MatchaOverlayService, MatchaPageLayoutComponent, MatchaPageLayoutModule, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaRadioButtonDirective, MatchaRadioButtonModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSkeletonComponent, MatchaSkeletonModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaSpinComponent, MatchaSpinModule, 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 };
5648
+ export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteDirective, MatchaAutocompleteModule, 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, MatchaRadioButtonDirective, MatchaRadioButtonModule, 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 };
5348
5649
  //# sourceMappingURL=matcha-components.mjs.map