matcha-components 18.0.40 → 18.0.42

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.
@@ -1,8 +1,207 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Component, Input, EventEmitter, Output, ElementRef, Renderer2, Inject, HostListener, NgModule, Directive } from '@angular/core';
2
+ import { ElementRef, Renderer2, Component, Inject, Input, EventEmitter, Output, HostListener, NgModule, Directive } from '@angular/core';
3
3
  import * as i1 from '@angular/common';
4
4
  import { CommonModule } from '@angular/common';
5
5
 
6
+ class MatchaButtonComponent {
7
+ constructor(_elementRef, _renderer) {
8
+ this._elementRef = _elementRef;
9
+ this._renderer = _renderer;
10
+ this.size = null;
11
+ this.sizeXs = null;
12
+ this.sizeSm = null;
13
+ this.sizeMd = null;
14
+ this.sizeLg = null;
15
+ this.sizeXl = null;
16
+ this.color = 'basic';
17
+ this.basic = false;
18
+ this.outline = false;
19
+ this.pill = false;
20
+ this.icon = false;
21
+ this.link = false;
22
+ this._config = {
23
+ sizeXs: 'tiny',
24
+ sizeSm: 'small',
25
+ sizeMd: 'medium',
26
+ sizeLg: 'large',
27
+ sizeXl: 'huge',
28
+ size: 'medium',
29
+ color: 'primary',
30
+ basic: false,
31
+ outline: false,
32
+ pill: false,
33
+ icon: false,
34
+ link: false
35
+ };
36
+ }
37
+ ngOnInit() {
38
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button`);
39
+ this.setConfig();
40
+ // Adicione o evento de clique apenas a elementos com a classe "matcha-button"
41
+ const buttons = document.querySelectorAll('.matcha-button');
42
+ buttons.forEach(button => {
43
+ // mouse down event
44
+ button.addEventListener('mousedown', this.addRippleEffect, false);
45
+ });
46
+ }
47
+ ngOnChanges() {
48
+ this.setConfig();
49
+ }
50
+ clearConfig() {
51
+ // BG colors and FG contrast
52
+ this._renderer.removeClass(this._elementRef.nativeElement, `${this._config.color}`);
53
+ // FG colors only
54
+ this._renderer.removeClass(this._elementRef.nativeElement, `color-${this._config.color}`);
55
+ //size
56
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-${this._config.size}`);
57
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-xs-${this._config.sizeXs}`);
58
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-sm-${this._config.sizeSm}`);
59
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-md-${this._config.sizeMd}`);
60
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-lg-${this._config.sizeLg}`);
61
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-xl-${this._config.sizeXl}`);
62
+ //basic
63
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-icon`);
64
+ //outline
65
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-outline`);
66
+ //pill
67
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-pill`);
68
+ //icon
69
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-basic`);
70
+ //link
71
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-link`);
72
+ }
73
+ setConfig() {
74
+ this.clearConfig();
75
+ this.size ? this.setSize() : null;
76
+ this.color ? this.setColor() : null;
77
+ (this.outline === true || this.outline === 'true') ? this.setOutline() : null;
78
+ (this.pill === true || this.pill === 'true') ? this.setPill() : null;
79
+ (this.link === true || this.link === 'true') ? this.setLink() : null;
80
+ (this.basic === true || this.basic === 'true') ? this.setBasic() : null;
81
+ (this.icon === true || this.icon === 'true') ? this.setIcon() : null;
82
+ }
83
+ setSize() {
84
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-${this.size}`);
85
+ this._config.size = this.size;
86
+ if (this.sizeXs) {
87
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-xs-${this.sizeXs}`);
88
+ this._config.sizeXs = this.sizeXs;
89
+ }
90
+ if (this.sizeSm) {
91
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-sm-${this.sizeSm}`);
92
+ this._config.sizeSm = this.sizeSm;
93
+ }
94
+ if (this.sizeMd) {
95
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-md-${this.sizeMd}`);
96
+ this._config.sizeMd = this.sizeMd;
97
+ }
98
+ if (this.sizeLg) {
99
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-lg-${this.sizeLg}`);
100
+ this._config.sizeLg = this.sizeLg;
101
+ }
102
+ if (this.sizeXl) {
103
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-xl-${this.sizeXl}`);
104
+ this._config.sizeXl = this.sizeXl;
105
+ }
106
+ }
107
+ setColor() {
108
+ this._renderer.addClass(this._elementRef.nativeElement, `${this.color}`);
109
+ this._config.color = this.color;
110
+ }
111
+ setOutline() {
112
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-outline`);
113
+ this._renderer.addClass(this._elementRef.nativeElement, `color-${this.color}`);
114
+ }
115
+ setPill() {
116
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-pill`);
117
+ }
118
+ setLink() {
119
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-link`);
120
+ }
121
+ setBasic() {
122
+ this._renderer.removeClass(this._elementRef.nativeElement, `${this._config.color}`);
123
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-basic`);
124
+ this._renderer.addClass(this._elementRef.nativeElement, `color-${this.color}`);
125
+ }
126
+ setIcon() {
127
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-icon`);
128
+ }
129
+ addRippleEffect(e) {
130
+ var target = e.target;
131
+ if (target.tagName.toLowerCase() !== 'button')
132
+ return false;
133
+ var rect = target.getBoundingClientRect();
134
+ var ripple = target.querySelector('.ripple');
135
+ if (!ripple) {
136
+ ripple = document.createElement('span');
137
+ ripple.className = `ripple`;
138
+ ripple.style.height = ripple.style.width = target.offsetWidth + 'px';
139
+ target.appendChild(ripple);
140
+ }
141
+ ripple.classList.remove('show');
142
+ var top = e.pageY - rect.top - ripple.offsetHeight / 2 - window.scrollY;
143
+ var left = e.pageX - rect.left - ripple.offsetWidth / 2 - window.scrollX;
144
+ ripple.style.top = top + 'px';
145
+ ripple.style.left = left + 'px';
146
+ ripple.classList.add('show');
147
+ return false;
148
+ }
149
+ ngOnDestroy() {
150
+ const buttons = document.querySelectorAll('.matcha-button');
151
+ buttons.forEach(button => {
152
+ button.removeEventListener('click', this.addRippleEffect, false);
153
+ });
154
+ }
155
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonComponent, deps: [{ token: ElementRef }, { token: Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
156
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaButtonComponent, selector: "matcha-button", inputs: { size: "size", sizeXs: ["size-xs", "sizeXs"], sizeSm: ["size-sm", "sizeSm"], sizeMd: ["size-md", "sizeMd"], sizeLg: ["size-lg", "sizeLg"], sizeXl: ["size-xl", "sizeXl"], color: "color", basic: "basic", outline: "outline", pill: "pill", icon: "icon", link: "link" }, usesOnChanges: true, ngImport: i0, template: "<button>\n <ng-content></ng-content>\n</button>\n", styles: [""] }); }
157
+ }
158
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonComponent, decorators: [{
159
+ type: Component,
160
+ args: [{ selector: 'matcha-button', template: "<button>\n <ng-content></ng-content>\n</button>\n" }]
161
+ }], ctorParameters: () => [{ type: i0.ElementRef, decorators: [{
162
+ type: Inject,
163
+ args: [ElementRef]
164
+ }] }, { type: i0.Renderer2, decorators: [{
165
+ type: Inject,
166
+ args: [Renderer2]
167
+ }] }], propDecorators: { size: [{
168
+ type: Input,
169
+ args: ['size']
170
+ }], sizeXs: [{
171
+ type: Input,
172
+ args: ['size-xs']
173
+ }], sizeSm: [{
174
+ type: Input,
175
+ args: ['size-sm']
176
+ }], sizeMd: [{
177
+ type: Input,
178
+ args: ['size-md']
179
+ }], sizeLg: [{
180
+ type: Input,
181
+ args: ['size-lg']
182
+ }], sizeXl: [{
183
+ type: Input,
184
+ args: ['size-xl']
185
+ }], color: [{
186
+ type: Input,
187
+ args: ['color']
188
+ }], basic: [{
189
+ type: Input,
190
+ args: ['basic']
191
+ }], outline: [{
192
+ type: Input,
193
+ args: ['outline']
194
+ }], pill: [{
195
+ type: Input,
196
+ args: ['pill']
197
+ }], icon: [{
198
+ type: Input,
199
+ args: ['icon']
200
+ }], link: [{
201
+ type: Input,
202
+ args: ['link']
203
+ }] } });
204
+
6
205
  class MatchaCardComponent {
7
206
  constructor() {
8
207
  this.elevation = 0;
@@ -967,7 +1166,6 @@ class MatchaButtonDirective {
967
1166
  ripple.className = `ripple`;
968
1167
  ripple.style.height = ripple.style.width = target.offsetWidth + 'px';
969
1168
  target.appendChild(ripple);
970
- ;
971
1169
  }
972
1170
  ripple.classList.remove('show');
973
1171
  var top = e.pageY - rect.top - ripple.offsetHeight / 2 - window.scrollY;
@@ -1037,15 +1235,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1037
1235
 
1038
1236
  class MatchaButtonModule {
1039
1237
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1040
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonModule, declarations: [MatchaButtonDirective], exports: [MatchaButtonDirective] }); }
1238
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonModule, declarations: [MatchaButtonDirective, MatchaButtonComponent], exports: [MatchaButtonDirective, MatchaButtonComponent] }); }
1041
1239
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonModule }); }
1042
1240
  }
1043
1241
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonModule, decorators: [{
1044
1242
  type: NgModule,
1045
1243
  args: [{
1046
- declarations: [MatchaButtonDirective],
1244
+ declarations: [MatchaButtonDirective, MatchaButtonComponent],
1047
1245
  imports: [],
1048
- exports: [MatchaButtonDirective],
1246
+ exports: [MatchaButtonDirective, MatchaButtonComponent],
1049
1247
  }]
1050
1248
  }] });
1051
1249
 
@@ -1144,41 +1342,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1144
1342
  }]
1145
1343
  }] });
1146
1344
 
1147
- class MatchaDialogDirective {
1148
- constructor(_elementRef, _renderer) {
1149
- this._elementRef = _elementRef;
1150
- this._renderer = _renderer;
1151
- //this._elementRef.nativeElement.style.backgroundColor = 'grey';
1152
- this._renderer.addClass(this._elementRef.nativeElement, 'matcha-dialog');
1153
- }
1154
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaDialogDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
1155
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaDialogDirective, selector: "[matchaDialog]", ngImport: i0 }); }
1156
- }
1157
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaDialogDirective, decorators: [{
1158
- type: Directive,
1159
- args: [{
1160
- selector: '[matchaDialog]'
1161
- }]
1162
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
1163
-
1164
- class MatchaDialogModule {
1165
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaDialogModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1166
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaDialogModule, declarations: [MatchaDialogDirective], imports: [CommonModule], exports: [MatchaDialogDirective] }); }
1167
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaDialogModule, imports: [CommonModule] }); }
1168
- }
1169
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaDialogModule, decorators: [{
1170
- type: NgModule,
1171
- args: [{
1172
- declarations: [MatchaDialogDirective],
1173
- imports: [
1174
- CommonModule
1175
- ],
1176
- exports: [
1177
- MatchaDialogDirective
1178
- ]
1179
- }]
1180
- }] });
1181
-
1182
1345
  class MatchaElevationDirective {
1183
1346
  constructor(_elementRef, _renderer) {
1184
1347
  this._elementRef = _elementRef;
@@ -1925,8 +2088,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1925
2088
 
1926
2089
  class MatchaComponentsModule {
1927
2090
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1928
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaComponentsModule, declarations: [MatchaOverflowDraggableComponent], imports: [MatchaModalModule, MatchaMasonryModule, MatchaCardModule, MatchaTitleModule, MatchaAutocompleteModule, MatchaBadgeModule, MatchaTabsModule, MatchaBottomSheetModule, MatchaButtonToggleModule, MatchaButtonModule, MatchaCheckboxModule, MatchaChipsModule, MatchaDatepickerModule, MatchaDialogModule, MatchaDividerModule, MatchaElevationModule, MatchaExpansionModule, MatchaFormsModule, MatchaIconModule, MatchaInputModule, MatchaListModule, MatchaMenuModule, MatchaSidenavModule, MatchaPaginatorModule, MatchaProgressBarModule, MatchaProgressSpinnerModule, MatchaRadioButtonModule, MatchaSelectModule, MatchaSlideToggleModule, MatchaSliderModule, MatchaSnackBarModule, MatchaSortHeaderModule, MatchaStepperModule, MatchaTableModule, MatchaTabsModule, MatchaTooltipModule, MatchaTreeModule], exports: [MatchaModalModule, MatchaMasonryModule, MatchaCardModule, MatchaTitleModule, MatchaAutocompleteModule, MatchaBadgeModule, MatchaTabsModule, MatchaBottomSheetModule, MatchaButtonToggleModule, MatchaButtonModule, MatchaCheckboxModule, MatchaChipsModule, MatchaDatepickerModule, MatchaDialogModule, MatchaDividerModule, MatchaElevationModule, MatchaExpansionModule, MatchaFormsModule, MatchaIconModule, MatchaInputModule, MatchaListModule, MatchaMenuModule, MatchaSidenavModule, MatchaPaginatorModule, MatchaProgressBarModule, MatchaProgressSpinnerModule, MatchaRadioButtonModule, MatchaSelectModule, MatchaSlideToggleModule, MatchaSliderModule, MatchaSnackBarModule, MatchaSortHeaderModule, MatchaStepperModule, MatchaTableModule, MatchaTabsModule, MatchaTooltipModule, MatchaTreeModule] }); }
1929
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaComponentsModule, imports: [MatchaModalModule, MatchaMasonryModule, MatchaCardModule, MatchaTitleModule, MatchaAutocompleteModule, MatchaBadgeModule, MatchaTabsModule, MatchaBottomSheetModule, MatchaButtonToggleModule, MatchaButtonModule, MatchaCheckboxModule, MatchaChipsModule, MatchaDatepickerModule, MatchaDialogModule, MatchaDividerModule, MatchaElevationModule, MatchaExpansionModule, MatchaFormsModule, MatchaIconModule, MatchaInputModule, MatchaListModule, MatchaMenuModule, MatchaSidenavModule, MatchaPaginatorModule, MatchaProgressBarModule, MatchaProgressSpinnerModule, MatchaRadioButtonModule, MatchaSelectModule, MatchaSlideToggleModule, MatchaSliderModule, MatchaSnackBarModule, MatchaSortHeaderModule, MatchaStepperModule, MatchaTableModule, MatchaTabsModule, MatchaTooltipModule, MatchaTreeModule, MatchaModalModule, MatchaMasonryModule, MatchaCardModule, MatchaTitleModule, MatchaAutocompleteModule, MatchaBadgeModule, MatchaTabsModule, MatchaBottomSheetModule, MatchaButtonToggleModule, MatchaButtonModule, MatchaCheckboxModule, MatchaChipsModule, MatchaDatepickerModule, MatchaDialogModule, MatchaDividerModule, MatchaElevationModule, MatchaExpansionModule, MatchaFormsModule, MatchaIconModule, MatchaInputModule, MatchaListModule, MatchaMenuModule, MatchaSidenavModule, MatchaPaginatorModule, MatchaProgressBarModule, MatchaProgressSpinnerModule, MatchaRadioButtonModule, MatchaSelectModule, MatchaSlideToggleModule, MatchaSliderModule, MatchaSnackBarModule, MatchaSortHeaderModule, MatchaStepperModule, MatchaTableModule, MatchaTabsModule, MatchaTooltipModule, MatchaTreeModule] }); }
2091
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaComponentsModule, declarations: [MatchaOverflowDraggableComponent], imports: [MatchaModalModule, MatchaMasonryModule, MatchaCardModule, MatchaTitleModule, MatchaAutocompleteModule, MatchaBadgeModule, MatchaTabsModule, MatchaBottomSheetModule, MatchaButtonToggleModule, MatchaButtonModule, MatchaCheckboxModule, MatchaChipsModule, MatchaDatepickerModule, MatchaDividerModule, MatchaElevationModule, MatchaExpansionModule, MatchaFormsModule, MatchaIconModule, MatchaInputModule, MatchaListModule, MatchaMenuModule, MatchaSidenavModule, MatchaPaginatorModule, MatchaProgressBarModule, MatchaProgressSpinnerModule, MatchaRadioButtonModule, MatchaSelectModule, MatchaSlideToggleModule, MatchaSliderModule, MatchaSnackBarModule, MatchaSortHeaderModule, MatchaStepperModule, MatchaTableModule, MatchaTabsModule, MatchaTooltipModule, MatchaTreeModule], exports: [MatchaModalModule, MatchaMasonryModule, MatchaCardModule, MatchaTitleModule, MatchaAutocompleteModule, MatchaBadgeModule, MatchaTabsModule, MatchaBottomSheetModule, MatchaButtonToggleModule, MatchaButtonModule, MatchaCheckboxModule, MatchaChipsModule, MatchaDatepickerModule, MatchaDividerModule, MatchaElevationModule, MatchaExpansionModule, MatchaFormsModule, MatchaIconModule, MatchaInputModule, MatchaListModule, MatchaMenuModule, MatchaSidenavModule, MatchaPaginatorModule, MatchaProgressBarModule, MatchaProgressSpinnerModule, MatchaRadioButtonModule, MatchaSelectModule, MatchaSlideToggleModule, MatchaSliderModule, MatchaSnackBarModule, MatchaSortHeaderModule, MatchaStepperModule, MatchaTableModule, MatchaTabsModule, MatchaTooltipModule, MatchaTreeModule] }); }
2092
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaComponentsModule, imports: [MatchaModalModule, MatchaMasonryModule, MatchaCardModule, MatchaTitleModule, MatchaAutocompleteModule, MatchaBadgeModule, MatchaTabsModule, MatchaBottomSheetModule, MatchaButtonToggleModule, MatchaButtonModule, MatchaCheckboxModule, MatchaChipsModule, MatchaDatepickerModule, MatchaDividerModule, MatchaElevationModule, MatchaExpansionModule, MatchaFormsModule, MatchaIconModule, MatchaInputModule, MatchaListModule, MatchaMenuModule, MatchaSidenavModule, MatchaPaginatorModule, MatchaProgressBarModule, MatchaProgressSpinnerModule, MatchaRadioButtonModule, MatchaSelectModule, MatchaSlideToggleModule, MatchaSliderModule, MatchaSnackBarModule, MatchaSortHeaderModule, MatchaStepperModule, MatchaTableModule, MatchaTabsModule, MatchaTooltipModule, MatchaTreeModule, MatchaModalModule, MatchaMasonryModule, MatchaCardModule, MatchaTitleModule, MatchaAutocompleteModule, MatchaBadgeModule, MatchaTabsModule, MatchaBottomSheetModule, MatchaButtonToggleModule, MatchaButtonModule, MatchaCheckboxModule, MatchaChipsModule, MatchaDatepickerModule, MatchaDividerModule, MatchaElevationModule, MatchaExpansionModule, MatchaFormsModule, MatchaIconModule, MatchaInputModule, MatchaListModule, MatchaMenuModule, MatchaSidenavModule, MatchaPaginatorModule, MatchaProgressBarModule, MatchaProgressSpinnerModule, MatchaRadioButtonModule, MatchaSelectModule, MatchaSlideToggleModule, MatchaSliderModule, MatchaSnackBarModule, MatchaSortHeaderModule, MatchaStepperModule, MatchaTableModule, MatchaTabsModule, MatchaTooltipModule, MatchaTreeModule] }); }
1930
2093
  }
1931
2094
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaComponentsModule, decorators: [{
1932
2095
  type: NgModule,
@@ -1934,8 +2097,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1934
2097
  declarations: [
1935
2098
  MatchaOverflowDraggableComponent
1936
2099
  ],
1937
- imports: [MatchaModalModule, MatchaMasonryModule, MatchaCardModule, MatchaTitleModule, MatchaAutocompleteModule, MatchaBadgeModule, MatchaTabsModule, MatchaBottomSheetModule, MatchaButtonToggleModule, MatchaButtonModule, MatchaCheckboxModule, MatchaChipsModule, MatchaDatepickerModule, MatchaDialogModule, MatchaDividerModule, MatchaElevationModule, MatchaExpansionModule, MatchaFormsModule, MatchaIconModule, MatchaInputModule, MatchaListModule, MatchaMenuModule, MatchaSidenavModule, MatchaPaginatorModule, MatchaProgressBarModule, MatchaProgressSpinnerModule, MatchaRadioButtonModule, MatchaSelectModule, MatchaSlideToggleModule, MatchaSliderModule, MatchaSnackBarModule, MatchaSortHeaderModule, MatchaStepperModule, MatchaTableModule, MatchaTabsModule, MatchaTooltipModule, MatchaTreeModule],
1938
- exports: [MatchaModalModule, MatchaMasonryModule, MatchaCardModule, MatchaTitleModule, MatchaAutocompleteModule, MatchaBadgeModule, MatchaTabsModule, MatchaBottomSheetModule, MatchaButtonToggleModule, MatchaButtonModule, MatchaCheckboxModule, MatchaChipsModule, MatchaDatepickerModule, MatchaDialogModule, MatchaDividerModule, MatchaElevationModule, MatchaExpansionModule, MatchaFormsModule, MatchaIconModule, MatchaInputModule, MatchaListModule, MatchaMenuModule, MatchaSidenavModule, MatchaPaginatorModule, MatchaProgressBarModule, MatchaProgressSpinnerModule, MatchaRadioButtonModule, MatchaSelectModule, MatchaSlideToggleModule, MatchaSliderModule, MatchaSnackBarModule, MatchaSortHeaderModule, MatchaStepperModule, MatchaTableModule, MatchaTabsModule, MatchaTooltipModule, MatchaTreeModule],
2100
+ imports: [MatchaModalModule, MatchaMasonryModule, MatchaCardModule, MatchaTitleModule, MatchaAutocompleteModule, MatchaBadgeModule, MatchaTabsModule, MatchaBottomSheetModule, MatchaButtonToggleModule, MatchaButtonModule, MatchaCheckboxModule, MatchaChipsModule, MatchaDatepickerModule, MatchaDividerModule, MatchaElevationModule, MatchaExpansionModule, MatchaFormsModule, MatchaIconModule, MatchaInputModule, MatchaListModule, MatchaMenuModule, MatchaSidenavModule, MatchaPaginatorModule, MatchaProgressBarModule, MatchaProgressSpinnerModule, MatchaRadioButtonModule, MatchaSelectModule, MatchaSlideToggleModule, MatchaSliderModule, MatchaSnackBarModule, MatchaSortHeaderModule, MatchaStepperModule, MatchaTableModule, MatchaTabsModule, MatchaTooltipModule, MatchaTreeModule],
2101
+ exports: [MatchaModalModule, MatchaMasonryModule, MatchaCardModule, MatchaTitleModule, MatchaAutocompleteModule, MatchaBadgeModule, MatchaTabsModule, MatchaBottomSheetModule, MatchaButtonToggleModule, MatchaButtonModule, MatchaCheckboxModule, MatchaChipsModule, MatchaDatepickerModule, MatchaDividerModule, MatchaElevationModule, MatchaExpansionModule, MatchaFormsModule, MatchaIconModule, MatchaInputModule, MatchaListModule, MatchaMenuModule, MatchaSidenavModule, MatchaPaginatorModule, MatchaProgressBarModule, MatchaProgressSpinnerModule, MatchaRadioButtonModule, MatchaSelectModule, MatchaSlideToggleModule, MatchaSliderModule, MatchaSnackBarModule, MatchaSortHeaderModule, MatchaStepperModule, MatchaTableModule, MatchaTabsModule, MatchaTooltipModule, MatchaTreeModule],
1939
2102
  }]
1940
2103
  }] });
1941
2104
 
@@ -1972,5 +2135,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1972
2135
  * Generated bundle index. Do not edit.
1973
2136
  */
1974
2137
 
1975
- export { MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaAutocompleteOverviewDirective, MatchaBadgeDirective, MatchaBadgeModule, MatchaBottomSheetDirective, MatchaBottomSheetModule, MatchaButtonDirective, MatchaButtonModule, MatchaButtonToggleDirective, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxDirective, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDialogDirective, MatchaDialogModule, MatchaDividerComponent, MatchaDividerModule, MatchaElevationDirective, MatchaElevationModule, MatchaExpansionDirective, MatchaExpansionModule, MatchaFormFieldDirective, MatchaFormsModule, MatchaGridComponent, MatchaGridModule, MatchaIconComponent, MatchaIconModule, MatchaInputDirective, MatchaInputModule, MatchaListDirective, MatchaListModule, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaProgressSpinnerDirective, MatchaProgressSpinnerModule, MatchaRadioButtonDirective, MatchaRadioButtonModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSlideToggleDirective, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaStepperDirective, MatchaStepperModule, MatchaTableDirective, MatchaTableModule, MatchaTabsDirective, MatchaTabsModule, MatchaTitleComponent, MatchaTitleModule, MatchaTooltipDirective, MatchaTooltipModule, MatchaTreeDirective, MatchaTreeModule };
2138
+ export { MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaAutocompleteOverviewDirective, MatchaBadgeDirective, MatchaBadgeModule, MatchaBottomSheetDirective, MatchaBottomSheetModule, MatchaButtonComponent, MatchaButtonDirective, MatchaButtonModule, MatchaButtonToggleDirective, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxDirective, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaElevationDirective, MatchaElevationModule, MatchaExpansionDirective, MatchaExpansionModule, MatchaFormFieldDirective, MatchaFormsModule, MatchaGridComponent, MatchaGridModule, MatchaIconComponent, MatchaIconModule, MatchaInputDirective, MatchaInputModule, MatchaListDirective, MatchaListModule, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaProgressSpinnerDirective, MatchaProgressSpinnerModule, MatchaRadioButtonDirective, MatchaRadioButtonModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSlideToggleDirective, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaStepperDirective, MatchaStepperModule, MatchaTableDirective, MatchaTableModule, MatchaTabsDirective, MatchaTabsModule, MatchaTitleComponent, MatchaTitleModule, MatchaTooltipDirective, MatchaTooltipModule, MatchaTreeDirective, MatchaTreeModule };
1976
2139
  //# sourceMappingURL=matcha-components.mjs.map