matcha-components 19.53.0 → 19.55.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.
@@ -1,305 +1,12 @@
1
1
  import * as i0 from '@angular/core';
2
- import { ElementRef, Renderer2, Input, Inject, Component, EventEmitter, ContentChild, Output, ContentChildren, HostBinding, HostListener, Directive, forwardRef, NgModule } from '@angular/core';
3
- import * as i1 from '@angular/common';
4
- import { CommonModule } from '@angular/common';
2
+ import { EventEmitter, Output, Input, Component, ContentChildren, ElementRef, Renderer2, Inject, HostBinding, HostListener, ContentChild, Directive, forwardRef, NgModule } from '@angular/core';
5
3
  import { animation, style, animate, trigger, transition, useAnimation, state, query, stagger, animateChild, sequence, group } from '@angular/animations';
6
4
  import { Subscription, Subject } from 'rxjs';
7
5
  import { debounceTime } from 'rxjs/operators';
6
+ import * as i1 from '@angular/common';
7
+ import { CommonModule } from '@angular/common';
8
8
  import { FormControlName, NG_VALUE_ACCESSOR, FormsModule, ReactiveFormsModule } from '@angular/forms';
9
9
 
10
- class MatchaButtonComponent {
11
- constructor(_elementRef, _renderer) {
12
- this._elementRef = _elementRef;
13
- this._renderer = _renderer;
14
- this.size = null;
15
- this.sizeXs = null;
16
- this.sizeSm = null;
17
- this.sizeMd = null;
18
- this.sizeLg = null;
19
- this.sizeXl = null;
20
- this.color = 'basic';
21
- this.basic = false;
22
- this.outline = false;
23
- this.alpha = false;
24
- this.pill = false;
25
- this.icon = false;
26
- this.link = false;
27
- this._config = {
28
- sizeXs: 'tiny',
29
- sizeSm: 'small',
30
- sizeMd: 'medium',
31
- sizeLg: 'large',
32
- sizeXl: 'huge',
33
- size: 'medium',
34
- basic: false,
35
- outline: false,
36
- pill: false,
37
- icon: false,
38
- link: false
39
- };
40
- }
41
- ngOnInit() {
42
- this._renderer.addClass(this._elementRef.nativeElement, `matcha-button`);
43
- this.setConfig();
44
- // Adicione o evento de clique apenas a elementos com a classe "matcha-button"
45
- const buttons = document.querySelectorAll('.matcha-button');
46
- buttons.forEach(button => {
47
- // mouse down event
48
- button.addEventListener('mousedown', this.addRippleEffect, false);
49
- });
50
- }
51
- ngOnChanges() {
52
- this.setConfig();
53
- }
54
- clearConfig() {
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.outline === true || this.outline === 'true') ? this.setOutline() : null;
77
- (this.pill === true || this.pill === 'true') ? this.setPill() : null;
78
- (this.link === true || this.link === 'true') ? this.setLink() : null;
79
- (this.basic === true || this.basic === 'true') ? this.setBasic() : null;
80
- (this.icon === true || this.icon === 'true') ? this.setIcon() : null;
81
- }
82
- setSize() {
83
- this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-${this.size}`);
84
- this._config.size = this.size;
85
- if (this.sizeXs) {
86
- this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-xs-${this.sizeXs}`);
87
- this._config.sizeXs = this.sizeXs;
88
- }
89
- if (this.sizeSm) {
90
- this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-sm-${this.sizeSm}`);
91
- this._config.sizeSm = this.sizeSm;
92
- }
93
- if (this.sizeMd) {
94
- this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-md-${this.sizeMd}`);
95
- this._config.sizeMd = this.sizeMd;
96
- }
97
- if (this.sizeLg) {
98
- this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-lg-${this.sizeLg}`);
99
- this._config.sizeLg = this.sizeLg;
100
- }
101
- if (this.sizeXl) {
102
- this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-xl-${this.sizeXl}`);
103
- this._config.sizeXl = this.sizeXl;
104
- }
105
- }
106
- setOutline() {
107
- this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-outline`);
108
- }
109
- setPill() {
110
- this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-pill`);
111
- }
112
- setLink() {
113
- this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-link`);
114
- }
115
- setBasic() {
116
- this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-basic`);
117
- this._renderer.addClass(this._elementRef.nativeElement, `basic`);
118
- }
119
- setIcon() {
120
- this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-icon`);
121
- }
122
- addRippleEffect(e) {
123
- var target = e.target;
124
- if (target.tagName.toLowerCase() !== 'button')
125
- return false;
126
- var rect = target.getBoundingClientRect();
127
- var ripple = target.querySelector('.ripple');
128
- if (!ripple) {
129
- ripple = document.createElement('span');
130
- ripple.className = `ripple`;
131
- ripple.style.height = ripple.style.width = target.offsetWidth + 'px';
132
- target.appendChild(ripple);
133
- }
134
- ripple.classList.remove('show');
135
- var top = e.pageY - rect.top - ripple.offsetHeight / 2 - window.scrollY;
136
- var left = e.pageX - rect.left - ripple.offsetWidth / 2 - window.scrollX;
137
- ripple.style.top = top + 'px';
138
- ripple.style.left = left + 'px';
139
- ripple.classList.add('show');
140
- return false;
141
- }
142
- ngOnDestroy() {
143
- const buttons = document.querySelectorAll('.matcha-button');
144
- buttons.forEach(button => {
145
- button.removeEventListener('click', this.addRippleEffect, false);
146
- });
147
- }
148
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonComponent, deps: [{ token: ElementRef }, { token: Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
149
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaButtonComponent, isStandalone: false, 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", alpha: "alpha", pill: "pill", icon: "icon", link: "link" }, usesOnChanges: true, ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
150
- }
151
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonComponent, decorators: [{
152
- type: Component,
153
- args: [{ selector: '[matcha-button]', standalone: false, template: "<ng-content></ng-content>\n" }]
154
- }], ctorParameters: () => [{ type: i0.ElementRef, decorators: [{
155
- type: Inject,
156
- args: [ElementRef]
157
- }] }, { type: i0.Renderer2, decorators: [{
158
- type: Inject,
159
- args: [Renderer2]
160
- }] }], propDecorators: { size: [{
161
- type: Input,
162
- args: ['size']
163
- }], sizeXs: [{
164
- type: Input,
165
- args: ['size-xs']
166
- }], sizeSm: [{
167
- type: Input,
168
- args: ['size-sm']
169
- }], sizeMd: [{
170
- type: Input,
171
- args: ['size-md']
172
- }], sizeLg: [{
173
- type: Input,
174
- args: ['size-lg']
175
- }], sizeXl: [{
176
- type: Input,
177
- args: ['size-xl']
178
- }], color: [{
179
- type: Input,
180
- args: ['color']
181
- }], basic: [{
182
- type: Input,
183
- args: ['basic']
184
- }], outline: [{
185
- type: Input,
186
- args: ['outline']
187
- }], alpha: [{
188
- type: Input,
189
- args: ['alpha']
190
- }], pill: [{
191
- type: Input,
192
- args: ['pill']
193
- }], icon: [{
194
- type: Input,
195
- args: ['icon']
196
- }], link: [{
197
- type: Input,
198
- args: ['link']
199
- }] } });
200
-
201
- class MatchaButtonItemComponent {
202
- constructor(_render) {
203
- this._render = _render;
204
- this.active = false;
205
- this.selected = new EventEmitter();
206
- }
207
- ngAfterContentInit() {
208
- if (!this.innerButton) {
209
- return;
210
- }
211
- /* considera <button … active-item> como ativo */
212
- if (this.innerButton.nativeElement.hasAttribute('active-item')) {
213
- this.active = true;
214
- }
215
- this._render.listen(this.innerButton.nativeElement, 'click', () => this.onClick());
216
- }
217
- onClick() {
218
- this.selected.emit();
219
- }
220
- setActiveState(isActive, inactiveColor, inactiveType) {
221
- this.active = isActive;
222
- /* liga/desliga atributo visual */
223
- if (isActive) {
224
- this._render.setAttribute(this.innerButton.nativeElement, 'active-item', 'true');
225
- }
226
- else {
227
- this._render.removeAttribute(this.innerButton.nativeElement, 'active-item');
228
- }
229
- }
230
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonItemComponent, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
231
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaButtonItemComponent, isStandalone: false, selector: "matcha-button-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: [""] }); }
232
- }
233
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonItemComponent, decorators: [{
234
- type: Component,
235
- args: [{ selector: 'matcha-button-item', standalone: false, template: "<ng-content></ng-content>\n" }]
236
- }], ctorParameters: () => [{ type: i0.Renderer2 }], propDecorators: { active: [{
237
- type: Input
238
- }], selected: [{
239
- type: Output
240
- }], innerButton: [{
241
- type: ContentChild,
242
- args: [MatchaButtonComponent, { static: true, read: ElementRef }]
243
- }] } });
244
-
245
- class MatchaButtonGroupComponent {
246
- constructor() {
247
- /* entradas originais */
248
- this._multiple = false;
249
- this._disabled = false;
250
- this.inactiveColor = 'disabled';
251
- this.inactiveType = 'basic';
252
- this._gap = 16;
253
- }
254
- get multiple() { return this._multiple; }
255
- set multiple(v) { this._multiple = v === 'false' ? false : !!v; }
256
- get disabled() { return this._disabled; }
257
- set disabled(v) { this._disabled = v === 'false' ? false : !!v; }
258
- get isDisabled() { return this.disabled || null; }
259
- set gap(v) { const n = +v; this._gap = isNaN(n) ? 16 : n; }
260
- get gapClass() { return `gap-${this._gap}`; }
261
- /* ────────────────────────────────────── */
262
- ngAfterContentInit() {
263
- /* se algum veio com [active] / active-item usa-o, senão o primeiro */
264
- const preset = this.buttonItems.find(i => i.active);
265
- this.buttonItems.forEach((item, idx) => {
266
- const isActive = preset ? item === preset : idx === 0;
267
- item.setActiveState(isActive, this.inactiveColor, this.inactiveType);
268
- item.selected.subscribe(() => this.onItemSelected(item));
269
- });
270
- }
271
- onItemSelected(selectedItem) {
272
- if (this.multiple) {
273
- selectedItem.setActiveState(!selectedItem.active, this.inactiveColor, this.inactiveType);
274
- }
275
- else {
276
- this.buttonItems.forEach(item => item.setActiveState(item === selectedItem, this.inactiveColor, this.inactiveType));
277
- }
278
- }
279
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
280
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaButtonGroupComponent, isStandalone: false, selector: "matcha-button-group", inputs: { multiple: "multiple", disabled: "disabled", inactiveColor: "inactiveColor", inactiveType: "inactiveType", gap: "gap" }, host: { properties: { "attr.disabled": "this.isDisabled" } }, queries: [{ propertyName: "buttonItems", predicate: MatchaButtonItemComponent }], 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"] }] }); }
281
- }
282
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonGroupComponent, decorators: [{
283
- type: Component,
284
- args: [{ selector: 'matcha-button-group', standalone: false, template: "<div class=\"button-group d-flex flex-wrap\" [ngClass]=\"gapClass\" role=\"group\"><ng-content></ng-content></div>\n" }]
285
- }], propDecorators: { multiple: [{
286
- type: Input
287
- }], disabled: [{
288
- type: Input
289
- }], isDisabled: [{
290
- type: HostBinding,
291
- args: ['attr.disabled']
292
- }], inactiveColor: [{
293
- type: Input
294
- }], inactiveType: [{
295
- type: Input
296
- }], gap: [{
297
- type: Input
298
- }], buttonItems: [{
299
- type: ContentChildren,
300
- args: [MatchaButtonItemComponent]
301
- }] } });
302
-
303
10
  const customAnimation = animation([
304
11
  style({
305
12
  opacity: '{{opacity}}',
@@ -676,10 +383,10 @@ class MatchaAccordionItemComponent {
676
383
  this.isOpen = !this.isOpen;
677
384
  this.opened.emit(this.isOpen);
678
385
  }
679
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAccordionItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
680
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaAccordionItemComponent, isStandalone: false, selector: "matcha-accordion-item", inputs: { stretch: "stretch", isOpen: "isOpen" }, outputs: { opened: "opened" }, ngImport: i0, template: "<div class=\"accordion-item flex-column overflow-hidden\">\n <div class=\"accordion-header d-flex\">\n <div class=\"d-flex accordion-header-wrapper\" (click)=\"toggleAccordion()\">\n <ng-content select=\"matcha-accordion-header\"></ng-content>\n </div>\n </div>\n <div class=\"accordion-content overflow-hidden\" [@expandCollapse]=\"isOpen ? '*' : 'void'\">\n <ng-content select=\"matcha-accordion-content\"></ng-content>\n <ng-content></ng-content>\n </div>\n</div>\n", styles: [""], animations: [...createAnimations] }); }
386
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
387
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaAccordionItemComponent, isStandalone: false, selector: "matcha-accordion-item", inputs: { stretch: "stretch", isOpen: "isOpen" }, outputs: { opened: "opened" }, ngImport: i0, template: "<div class=\"accordion-item flex-column overflow-hidden\">\n <div class=\"accordion-header d-flex\">\n <div class=\"d-flex accordion-header-wrapper\" (click)=\"toggleAccordion()\">\n <ng-content select=\"matcha-accordion-header\"></ng-content>\n </div>\n </div>\n <div class=\"accordion-content overflow-hidden\" [@expandCollapse]=\"isOpen ? '*' : 'void'\">\n <ng-content select=\"matcha-accordion-content\"></ng-content>\n <ng-content></ng-content>\n </div>\n</div>\n", styles: [""], animations: [...createAnimations] }); }
681
388
  }
682
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAccordionItemComponent, decorators: [{
389
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionItemComponent, decorators: [{
683
390
  type: Component,
684
391
  args: [{ selector: 'matcha-accordion-item', standalone: false, animations: [...createAnimations], template: "<div class=\"accordion-item flex-column overflow-hidden\">\n <div class=\"accordion-header d-flex\">\n <div class=\"d-flex accordion-header-wrapper\" (click)=\"toggleAccordion()\">\n <ng-content select=\"matcha-accordion-header\"></ng-content>\n </div>\n </div>\n <div class=\"accordion-content overflow-hidden\" [@expandCollapse]=\"isOpen ? '*' : 'void'\">\n <ng-content select=\"matcha-accordion-content\"></ng-content>\n <ng-content></ng-content>\n </div>\n</div>\n" }]
685
392
  }], propDecorators: { stretch: [{
@@ -720,10 +427,10 @@ class MatchaAccordionComponent {
720
427
  });
721
428
  }
722
429
  }
723
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAccordionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
724
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaAccordionComponent, isStandalone: false, selector: "matcha-accordion", inputs: { multiple: "multiple" }, outputs: { openedChange: "openedChange" }, queries: [{ propertyName: "items", predicate: MatchaAccordionItemComponent }], ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
430
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
431
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaAccordionComponent, isStandalone: false, selector: "matcha-accordion", inputs: { multiple: "multiple" }, outputs: { openedChange: "openedChange" }, queries: [{ propertyName: "items", predicate: MatchaAccordionItemComponent }], ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
725
432
  }
726
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAccordionComponent, decorators: [{
433
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionComponent, decorators: [{
727
434
  type: Component,
728
435
  args: [{ selector: 'matcha-accordion', standalone: false, template: "<ng-content></ng-content>\n" }]
729
436
  }], propDecorators: { multiple: [{
@@ -737,19 +444,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
737
444
  }] } });
738
445
 
739
446
  class MatchaAccordionHeaderComponent {
740
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAccordionHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
741
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaAccordionHeaderComponent, isStandalone: false, selector: "matcha-accordion-header", ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
447
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
448
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaAccordionHeaderComponent, isStandalone: false, selector: "matcha-accordion-header", ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
742
449
  }
743
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAccordionHeaderComponent, decorators: [{
450
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionHeaderComponent, decorators: [{
744
451
  type: Component,
745
452
  args: [{ selector: 'matcha-accordion-header', standalone: false, template: "<ng-content></ng-content>\n" }]
746
453
  }] });
747
454
 
748
455
  class MatchaAccordionContentComponent {
749
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAccordionContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
750
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaAccordionContentComponent, isStandalone: false, selector: "matcha-accordion-content", ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
456
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
457
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaAccordionContentComponent, isStandalone: false, selector: "matcha-accordion-content", ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
751
458
  }
752
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAccordionContentComponent, decorators: [{
459
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionContentComponent, decorators: [{
753
460
  type: Component,
754
461
  args: [{ selector: 'matcha-accordion-content', standalone: false, template: "<ng-content></ng-content>\n" }]
755
462
  }] });
@@ -788,10 +495,10 @@ class MatchaInfiniteScrollComponent {
788
495
  ngOnDestroy() {
789
496
  this.observer.disconnect();
790
497
  }
791
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaInfiniteScrollComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
792
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaInfiniteScrollComponent, isStandalone: false, selector: "matcha-infinite-scroll", outputs: { scrolledToEnd: "scrolledToEnd" }, ngImport: i0, template: "", styles: [""] }); }
498
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInfiniteScrollComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
499
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaInfiniteScrollComponent, isStandalone: false, selector: "matcha-infinite-scroll", outputs: { scrolledToEnd: "scrolledToEnd" }, ngImport: i0, template: "", styles: [""] }); }
793
500
  }
794
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaInfiniteScrollComponent, decorators: [{
501
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInfiniteScrollComponent, decorators: [{
795
502
  type: Component,
796
503
  args: [{ selector: 'matcha-infinite-scroll', standalone: false, template: "" }]
797
504
  }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { scrolledToEnd: [{
@@ -853,82 +560,279 @@ class MatchaInfiniteScrollDataComponent {
853
560
  if (changes['resetKey'] && !changes['resetKey'].firstChange) {
854
561
  this.resetData();
855
562
  }
856
- if (changes['searchTerm'] && !changes['searchTerm'].firstChange) {
857
- // Emite o novo valor para o Subject e aguarda o debounce
858
- this.searchTermSubject.next(changes['searchTerm'].currentValue);
563
+ if (changes['searchTerm'] && !changes['searchTerm'].firstChange) {
564
+ // Emite o novo valor para o Subject e aguarda o debounce
565
+ this.searchTermSubject.next(changes['searchTerm'].currentValue);
566
+ }
567
+ }
568
+ /**
569
+ * Inicializa ou reinicializa a lista agregada e o contador de página.
570
+ */
571
+ initialize() {
572
+ this.aggregatedList = [...this.initialList];
573
+ this.currentPage = 0;
574
+ this.aggregatedData.emit(this.aggregatedList);
575
+ this.checkExactMatch();
576
+ }
577
+ /**
578
+ * Reseta apenas as assinaturas e o estado dos dados (não a inscrição do searchTerm).
579
+ */
580
+ resetData() {
581
+ // Cancela as assinaturas das chamadas de loadData
582
+ this.dataSubscription.unsubscribe();
583
+ this.dataSubscription = new Subscription();
584
+ // Re-inicializa a lista e o contador
585
+ this.initialize();
586
+ }
587
+ /**
588
+ * Carrega a próxima página de dados utilizando a função loadData.
589
+ */
590
+ loadNextPage() {
591
+ if (!this.loadData) {
592
+ return;
593
+ }
594
+ this.currentPage++;
595
+ const dataObservable = this.loadData(this.currentPage);
596
+ const sub = dataObservable.subscribe(data => {
597
+ if (data && data.length) {
598
+ this.aggregatedList = [...this.aggregatedList, ...data];
599
+ this.aggregatedData.emit(this.aggregatedList);
600
+ this.checkExactMatch();
601
+ }
602
+ });
603
+ this.dataSubscription.add(sub);
604
+ }
605
+ /**
606
+ * Verifica se a lista agregada possui exatamente um item e se esse item é igual ao searchTerm.
607
+ * Se sim, emite o output exactMatch com esse item.
608
+ */
609
+ checkExactMatch() {
610
+ if (this.aggregatedList.length === 1 && this.aggregatedList[0] === this.searchTerm) {
611
+ this.exactMatch.emit(this.aggregatedList[0]);
612
+ }
613
+ }
614
+ ngOnDestroy() {
615
+ this.observer.disconnect();
616
+ this.dataSubscription.unsubscribe();
617
+ this.searchSubscription.unsubscribe();
618
+ }
619
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInfiniteScrollDataComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
620
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaInfiniteScrollDataComponent, isStandalone: false, selector: "matcha-infinite-scroll-data", inputs: { loadData: "loadData", initialList: "initialList", threshold: "threshold", resetKey: "resetKey", searchTerm: "searchTerm" }, outputs: { aggregatedData: "aggregatedData", exactMatch: "exactMatch" }, usesOnChanges: true, ngImport: i0, template: "", styles: ["", ":host{height:1px;opacity:0}\n"] }); }
621
+ }
622
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInfiniteScrollDataComponent, decorators: [{
623
+ type: Component,
624
+ args: [{ selector: 'matcha-infinite-scroll-data', standalone: false, template: "", styles: [":host{height:1px;opacity:0}\n"] }]
625
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { loadData: [{
626
+ type: Input
627
+ }], initialList: [{
628
+ type: Input
629
+ }], threshold: [{
630
+ type: Input
631
+ }], resetKey: [{
632
+ type: Input
633
+ }], searchTerm: [{
634
+ type: Input
635
+ }], aggregatedData: [{
636
+ type: Output
637
+ }], exactMatch: [{
638
+ type: Output
639
+ }] } });
640
+
641
+ class MatchaButtonComponent {
642
+ get basic() { return this._basic; }
643
+ set basic(v) { this._basic = v === 'false' ? false : !!v; }
644
+ get outline() { return this._outline; }
645
+ set outline(v) { this._outline = v === 'false' ? false : !!v; }
646
+ get alpha() { return this._alpha; }
647
+ set alpha(v) { this._alpha = v === 'false' ? false : !!v; }
648
+ get pill() { return this._pill; }
649
+ set pill(v) { this._pill = v === 'false' ? false : !!v; }
650
+ get link() { return this._link; }
651
+ set link(v) { this._link = v === 'false' ? false : !!v; }
652
+ get icon() { return this._icon; }
653
+ set icon(v) { this._icon = v === 'false' ? false : !!v; }
654
+ constructor(_elementRef, _renderer) {
655
+ this._elementRef = _elementRef;
656
+ this._renderer = _renderer;
657
+ this.size = null;
658
+ this.sizeXs = null;
659
+ this.sizeSm = null;
660
+ this.sizeMd = null;
661
+ this.sizeLg = null;
662
+ this.sizeXl = null;
663
+ this.color = 'basic';
664
+ this._basic = false;
665
+ this._outline = false;
666
+ this._alpha = false;
667
+ this._pill = false;
668
+ this._link = false;
669
+ this._icon = false;
670
+ this._config = {
671
+ sizeXs: 'tiny',
672
+ sizeSm: 'small',
673
+ sizeMd: 'medium',
674
+ sizeLg: 'large',
675
+ sizeXl: 'huge',
676
+ size: 'medium',
677
+ basic: false,
678
+ outline: false,
679
+ pill: false,
680
+ icon: false,
681
+ link: false
682
+ };
683
+ }
684
+ ngOnInit() {
685
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button`);
686
+ this.setConfig();
687
+ // Adicione o evento de clique apenas a elementos com a classe "matcha-button"
688
+ const buttons = document.querySelectorAll('.matcha-button');
689
+ buttons.forEach(button => {
690
+ // mouse down event
691
+ button.addEventListener('mousedown', this.addRippleEffect, false);
692
+ });
693
+ }
694
+ ngOnChanges() {
695
+ this.setConfig();
696
+ }
697
+ clearConfig() {
698
+ //size
699
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-${this._config.size}`);
700
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-xs-${this._config.sizeXs}`);
701
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-sm-${this._config.sizeSm}`);
702
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-md-${this._config.sizeMd}`);
703
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-lg-${this._config.sizeLg}`);
704
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-xl-${this._config.sizeXl}`);
705
+ //basic
706
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-icon`);
707
+ //outline
708
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-outline`);
709
+ //pill
710
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-pill`);
711
+ //icon
712
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-basic`);
713
+ //link
714
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-link`);
715
+ }
716
+ setConfig() {
717
+ this.clearConfig();
718
+ this.size ? this.setSize() : null;
719
+ (this.outline === true || this.outline === 'true') ? this.setOutline() : null;
720
+ (this.pill === true || this.pill === 'true') ? this.setPill() : null;
721
+ (this.link === true || this.link === 'true') ? this.setLink() : null;
722
+ (this.basic === true || this.basic === 'true') ? this.setBasic() : null;
723
+ (this.icon === true || this.icon === 'true') ? this.setIcon() : null;
724
+ }
725
+ setSize() {
726
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-${this.size}`);
727
+ this._config.size = this.size;
728
+ if (this.sizeXs) {
729
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-xs-${this.sizeXs}`);
730
+ this._config.sizeXs = this.sizeXs;
731
+ }
732
+ if (this.sizeSm) {
733
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-sm-${this.sizeSm}`);
734
+ this._config.sizeSm = this.sizeSm;
735
+ }
736
+ if (this.sizeMd) {
737
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-md-${this.sizeMd}`);
738
+ this._config.sizeMd = this.sizeMd;
739
+ }
740
+ if (this.sizeLg) {
741
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-lg-${this.sizeLg}`);
742
+ this._config.sizeLg = this.sizeLg;
743
+ }
744
+ if (this.sizeXl) {
745
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-xl-${this.sizeXl}`);
746
+ this._config.sizeXl = this.sizeXl;
859
747
  }
860
748
  }
861
- /**
862
- * Inicializa ou reinicializa a lista agregada e o contador de página.
863
- */
864
- initialize() {
865
- this.aggregatedList = [...this.initialList];
866
- this.currentPage = 0;
867
- this.aggregatedData.emit(this.aggregatedList);
868
- this.checkExactMatch();
749
+ setOutline() {
750
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-outline`);
869
751
  }
870
- /**
871
- * Reseta apenas as assinaturas e o estado dos dados (não a inscrição do searchTerm).
872
- */
873
- resetData() {
874
- // Cancela as assinaturas das chamadas de loadData
875
- this.dataSubscription.unsubscribe();
876
- this.dataSubscription = new Subscription();
877
- // Re-inicializa a lista e o contador
878
- this.initialize();
752
+ setPill() {
753
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-pill`);
879
754
  }
880
- /**
881
- * Carrega a próxima página de dados utilizando a função loadData.
882
- */
883
- loadNextPage() {
884
- if (!this.loadData) {
885
- return;
886
- }
887
- this.currentPage++;
888
- const dataObservable = this.loadData(this.currentPage);
889
- const sub = dataObservable.subscribe(data => {
890
- if (data && data.length) {
891
- this.aggregatedList = [...this.aggregatedList, ...data];
892
- this.aggregatedData.emit(this.aggregatedList);
893
- this.checkExactMatch();
894
- }
895
- });
896
- this.dataSubscription.add(sub);
755
+ setLink() {
756
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-link`);
897
757
  }
898
- /**
899
- * Verifica se a lista agregada possui exatamente um item e se esse item é igual ao searchTerm.
900
- * Se sim, emite o output exactMatch com esse item.
901
- */
902
- checkExactMatch() {
903
- if (this.aggregatedList.length === 1 && this.aggregatedList[0] === this.searchTerm) {
904
- this.exactMatch.emit(this.aggregatedList[0]);
758
+ setBasic() {
759
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-basic`);
760
+ this._renderer.addClass(this._elementRef.nativeElement, `basic`);
761
+ }
762
+ setIcon() {
763
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-icon`);
764
+ }
765
+ addRippleEffect(e) {
766
+ var target = e.target;
767
+ if (target.tagName.toLowerCase() !== 'button')
768
+ return false;
769
+ var rect = target.getBoundingClientRect();
770
+ var ripple = target.querySelector('.ripple');
771
+ if (!ripple) {
772
+ ripple = document.createElement('span');
773
+ ripple.className = `ripple`;
774
+ ripple.style.height = ripple.style.width = target.offsetWidth + 'px';
775
+ target.appendChild(ripple);
905
776
  }
777
+ ripple.classList.remove('show');
778
+ var top = e.pageY - rect.top - ripple.offsetHeight / 2 - window.scrollY;
779
+ var left = e.pageX - rect.left - ripple.offsetWidth / 2 - window.scrollX;
780
+ ripple.style.top = top + 'px';
781
+ ripple.style.left = left + 'px';
782
+ ripple.classList.add('show');
783
+ return false;
906
784
  }
907
785
  ngOnDestroy() {
908
- this.observer.disconnect();
909
- this.dataSubscription.unsubscribe();
910
- this.searchSubscription.unsubscribe();
786
+ const buttons = document.querySelectorAll('.matcha-button');
787
+ buttons.forEach(button => {
788
+ button.removeEventListener('click', this.addRippleEffect, false);
789
+ });
911
790
  }
912
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaInfiniteScrollDataComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
913
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaInfiniteScrollDataComponent, isStandalone: false, selector: "matcha-infinite-scroll-data", inputs: { loadData: "loadData", initialList: "initialList", threshold: "threshold", resetKey: "resetKey", searchTerm: "searchTerm" }, outputs: { aggregatedData: "aggregatedData", exactMatch: "exactMatch" }, usesOnChanges: true, ngImport: i0, template: "", styles: ["", ":host{height:1px;opacity:0}\n"] }); }
791
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonComponent, deps: [{ token: ElementRef }, { token: Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
792
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaButtonComponent, isStandalone: false, 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", alpha: "alpha", pill: "pill", link: "link", icon: "icon" }, usesOnChanges: true, ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
914
793
  }
915
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaInfiniteScrollDataComponent, decorators: [{
794
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonComponent, decorators: [{
916
795
  type: Component,
917
- args: [{ selector: 'matcha-infinite-scroll-data', standalone: false, template: "", styles: [":host{height:1px;opacity:0}\n"] }]
918
- }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { loadData: [{
796
+ args: [{ selector: '[matcha-button]', standalone: false, template: "<ng-content></ng-content>\n" }]
797
+ }], ctorParameters: () => [{ type: i0.ElementRef, decorators: [{
798
+ type: Inject,
799
+ args: [ElementRef]
800
+ }] }, { type: i0.Renderer2, decorators: [{
801
+ type: Inject,
802
+ args: [Renderer2]
803
+ }] }], propDecorators: { size: [{
804
+ type: Input,
805
+ args: ['size']
806
+ }], sizeXs: [{
807
+ type: Input,
808
+ args: ['size-xs']
809
+ }], sizeSm: [{
810
+ type: Input,
811
+ args: ['size-sm']
812
+ }], sizeMd: [{
813
+ type: Input,
814
+ args: ['size-md']
815
+ }], sizeLg: [{
816
+ type: Input,
817
+ args: ['size-lg']
818
+ }], sizeXl: [{
819
+ type: Input,
820
+ args: ['size-xl']
821
+ }], color: [{
822
+ type: Input,
823
+ args: ['color']
824
+ }], basic: [{
919
825
  type: Input
920
- }], initialList: [{
826
+ }], outline: [{
921
827
  type: Input
922
- }], threshold: [{
828
+ }], alpha: [{
923
829
  type: Input
924
- }], resetKey: [{
830
+ }], pill: [{
925
831
  type: Input
926
- }], searchTerm: [{
832
+ }], link: [{
833
+ type: Input
834
+ }], icon: [{
927
835
  type: Input
928
- }], aggregatedData: [{
929
- type: Output
930
- }], exactMatch: [{
931
- type: Output
932
836
  }] } });
933
837
 
934
838
  class MatchaCardComponent {
@@ -971,10 +875,10 @@ class MatchaCardComponent {
971
875
  hasBlockquotePosition() {
972
876
  return this.blockquote === 'left' || this.blockquote === 'right';
973
877
  }
974
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
975
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaCardComponent, isStandalone: false, selector: "matcha-card", inputs: { blockquote: "blockquote", color: "color", blockquoteColor: "blockquoteColor", class: "class", alpha: "alpha", tint: "tint", loading: "loading" }, host: { properties: { "class": "this.classes" } }, ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
878
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
879
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaCardComponent, isStandalone: false, selector: "matcha-card", inputs: { blockquote: "blockquote", color: "color", blockquoteColor: "blockquoteColor", class: "class", alpha: "alpha", tint: "tint", loading: "loading" }, host: { properties: { "class": "this.classes" } }, ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
976
880
  }
977
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaCardComponent, decorators: [{
881
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCardComponent, decorators: [{
978
882
  type: Component,
979
883
  args: [{ selector: 'matcha-card', standalone: false, template: "<ng-content></ng-content>\n" }]
980
884
  }], propDecorators: { blockquote: [{
@@ -1034,10 +938,10 @@ class MatchaDividerComponent {
1034
938
  activeClasses += gapXl ? ` ${gapXl}` : '';
1035
939
  return activeClasses;
1036
940
  }
1037
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaDividerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1038
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaDividerComponent, isStandalone: false, selector: "matcha-divider", inputs: { gap: "gap", gapSm: ["gap-sm", "gapSm"], gapMd: ["gap-md", "gapMd"], gapLg: ["gap-lg", "gapLg"], gapXl: ["gap-xl", "gapXl"], vertical: "vertical" }, ngImport: i0, template: "<div [class]=\"classes\"></div>\n", styles: [""] }); }
941
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDividerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
942
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaDividerComponent, isStandalone: false, selector: "matcha-divider", inputs: { gap: "gap", gapSm: ["gap-sm", "gapSm"], gapMd: ["gap-md", "gapMd"], gapLg: ["gap-lg", "gapLg"], gapXl: ["gap-xl", "gapXl"], vertical: "vertical" }, ngImport: i0, template: "<div [class]=\"classes\"></div>\n", styles: [""] }); }
1039
943
  }
1040
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaDividerComponent, decorators: [{
944
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDividerComponent, decorators: [{
1041
945
  type: Component,
1042
946
  args: [{ selector: 'matcha-divider', standalone: false, template: "<div [class]=\"classes\"></div>\n" }]
1043
947
  }], propDecorators: { gap: [{
@@ -1104,10 +1008,10 @@ class MatchaTitleComponent {
1104
1008
  hasIconClickOutput() {
1105
1009
  return this.iconClick.observers.length > 0;
1106
1010
  }
1107
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTitleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1108
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaTitleComponent, isStandalone: false, selector: "matcha-title", inputs: { color: "color", size: "size", loading: "loading", type: "type", icon: "icon" }, outputs: { iconClick: "iconClick" }, ngImport: i0, template: "<!-- <matcha-title size=\"1\" type=\"bullet\"></matcha-title> -->\n\n<div class=\"d-flex flex-align-center m-0\">\n <span [class]=\"signClasses\" [class.cursor-pointer]=\"hasIconClickOutput()\" (click)=\"emitIconAction()\"></span>\n <span [class]=\"textClasses\">\n <ng-content></ng-content>\n </span>\n</div>\n", styles: [""] }); }
1011
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTitleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1012
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaTitleComponent, isStandalone: false, selector: "matcha-title", inputs: { color: "color", size: "size", loading: "loading", type: "type", icon: "icon" }, outputs: { iconClick: "iconClick" }, ngImport: i0, template: "<!-- <matcha-title size=\"1\" type=\"bullet\"></matcha-title> -->\n\n<div class=\"d-flex flex-align-center m-0\">\n <span [class]=\"signClasses\" [class.cursor-pointer]=\"hasIconClickOutput()\" (click)=\"emitIconAction()\"></span>\n <span [class]=\"textClasses\">\n <ng-content></ng-content>\n </span>\n</div>\n", styles: [""] }); }
1109
1013
  }
1110
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTitleComponent, decorators: [{
1014
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTitleComponent, decorators: [{
1111
1015
  type: Component,
1112
1016
  args: [{ selector: 'matcha-title', standalone: false, template: "<!-- <matcha-title size=\"1\" type=\"bullet\"></matcha-title> -->\n\n<div class=\"d-flex flex-align-center m-0\">\n <span [class]=\"signClasses\" [class.cursor-pointer]=\"hasIconClickOutput()\" (click)=\"emitIconAction()\"></span>\n <span [class]=\"textClasses\">\n <ng-content></ng-content>\n </span>\n</div>\n" }]
1113
1017
  }], propDecorators: { color: [{
@@ -1140,10 +1044,10 @@ class MatchaIconComponent {
1140
1044
  const activeClasses = `${icon} ${color} ${size} ${loading} ${this.class}`;
1141
1045
  return activeClasses;
1142
1046
  }
1143
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1144
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaIconComponent, isStandalone: false, selector: "matcha-icon", inputs: { name: "name", size: "size", color: "color", class: "class", loading: "loading" }, ngImport: i0, template: "<span [class]=\"classes\">\n <ng-content></ng-content>\n</span>\n", styles: [""] }); }
1047
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1048
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaIconComponent, isStandalone: false, selector: "matcha-icon", inputs: { name: "name", size: "size", color: "color", class: "class", loading: "loading" }, ngImport: i0, template: "<span [class]=\"classes\">\n <ng-content></ng-content>\n</span>\n", styles: [""] }); }
1145
1049
  }
1146
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaIconComponent, decorators: [{
1050
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaIconComponent, decorators: [{
1147
1051
  type: Component,
1148
1052
  args: [{ selector: 'matcha-icon', standalone: false, template: "<span [class]=\"classes\">\n <ng-content></ng-content>\n</span>\n" }]
1149
1053
  }], propDecorators: { name: [{
@@ -1240,10 +1144,10 @@ class MatchaGridComponent {
1240
1144
  this.setColspanClasses(this.colspan, this.breakpoint);
1241
1145
  this.setRowspanClasses(this.rowspan, this.breakpoint);
1242
1146
  }
1243
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaGridComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
1244
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaGridComponent, isStandalone: false, selector: "matcha-grid", inputs: { breakpoint: "breakpoint", col: "col", gap: "gap", class: "class", span: "span", rowspan: "rowspan", colspan: "colspan", direction: "direction", loading: "loading" }, usesOnChanges: true, ngImport: i0, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
1147
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaGridComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
1148
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaGridComponent, isStandalone: false, selector: "matcha-grid", inputs: { breakpoint: "breakpoint", col: "col", gap: "gap", class: "class", span: "span", rowspan: "rowspan", colspan: "colspan", direction: "direction", loading: "loading" }, usesOnChanges: true, ngImport: i0, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
1245
1149
  }
1246
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaGridComponent, decorators: [{
1150
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaGridComponent, decorators: [{
1247
1151
  type: Component,
1248
1152
  args: [{ selector: 'matcha-grid', standalone: false, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n" }]
1249
1153
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }], propDecorators: { breakpoint: [{
@@ -1303,10 +1207,10 @@ class MatchaMasonryComponent {
1303
1207
  activeClasses += gapXl ? ` ${gapXl}` : '';
1304
1208
  return activeClasses;
1305
1209
  }
1306
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaMasonryComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1307
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaMasonryComponent, isStandalone: false, selector: "matcha-masonry", inputs: { colSize: ["col", "colSize"], smColSize: ["col-sm", "smColSize"], mdColSize: ["col-md", "mdColSize"], lgColSize: ["col-lg", "lgColSize"], xlColSize: ["col-xl", "xlColSize"], gap: "gap", gapSm: ["gap-sm", "gapSm"], gapMd: ["gap-md", "gapMd"], gapLg: ["gap-lg", "gapLg"], gapXl: ["gap-xl", "gapXl"] }, ngImport: i0, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
1210
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMasonryComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1211
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaMasonryComponent, isStandalone: false, selector: "matcha-masonry", inputs: { colSize: ["col", "colSize"], smColSize: ["col-sm", "smColSize"], mdColSize: ["col-md", "mdColSize"], lgColSize: ["col-lg", "lgColSize"], xlColSize: ["col-xl", "xlColSize"], gap: "gap", gapSm: ["gap-sm", "gapSm"], gapMd: ["gap-md", "gapMd"], gapLg: ["gap-lg", "gapLg"], gapXl: ["gap-xl", "gapXl"] }, ngImport: i0, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
1308
1212
  }
1309
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaMasonryComponent, decorators: [{
1213
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMasonryComponent, decorators: [{
1310
1214
  type: Component,
1311
1215
  args: [{ selector: 'matcha-masonry', standalone: false, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n" }]
1312
1216
  }], propDecorators: { colSize: [{
@@ -1342,19 +1246,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
1342
1246
  }] } });
1343
1247
 
1344
1248
  class MatchaModalContentComponent {
1345
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1346
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaModalContentComponent, isStandalone: false, selector: "matcha-modal-content", ngImport: i0, template: "\n<div class=\"py-24 pt-0 overflow-auto\" style=\"max-height: calc(100vh - 300px);\n\">\n <div class=\"matcha-card-flat matcha-background-transparent p-0 flex-column--force\">\n <div class=\"flex-col matcha-card-flat matcha-background-transparent px-24 py-0\">\n <ng-content></ng-content>\n </div>\n </div>\n</div>\n", styles: [""] }); }
1249
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1250
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaModalContentComponent, isStandalone: false, selector: "matcha-modal-content", ngImport: i0, template: "\n<div class=\"py-24 pt-0 overflow-auto\" style=\"max-height: calc(100vh - 300px);\n\">\n <div class=\"matcha-card-flat matcha-background-transparent p-0 flex-column--force\">\n <div class=\"flex-col matcha-card-flat matcha-background-transparent px-24 py-0\">\n <ng-content></ng-content>\n </div>\n </div>\n</div>\n", styles: [""] }); }
1347
1251
  }
1348
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalContentComponent, decorators: [{
1252
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalContentComponent, decorators: [{
1349
1253
  type: Component,
1350
1254
  args: [{ selector: 'matcha-modal-content', standalone: false, template: "\n<div class=\"py-24 pt-0 overflow-auto\" style=\"max-height: calc(100vh - 300px);\n\">\n <div class=\"matcha-card-flat matcha-background-transparent p-0 flex-column--force\">\n <div class=\"flex-col matcha-card-flat matcha-background-transparent px-24 py-0\">\n <ng-content></ng-content>\n </div>\n </div>\n</div>\n" }]
1351
1255
  }] });
1352
1256
 
1353
1257
  class MatchaModalHeaderComponent {
1354
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1355
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaModalHeaderComponent, isStandalone: false, selector: "matcha-modal-header", ngImport: i0, template: "<!-- [@animate]=\"{ value: '*', params: { delay: '100ms' } }\" -->\n<!-- MATCHA CHECK -->\n<div class=\"matcha-section pt-16 px-16 pt-md-24 px-md-24\">\n <div class=\"d-flex flex-wrap flex-space-between mb-16 mb-md-24\">\n <div class=\"flex-space-between flex-align-center\">\n <ng-content></ng-content>\n </div>\n <div class=\"flex-row flex-end gap-8\">\n <ng-content select=\"matcha-modal-options\"></ng-content>\n </div>\n </div>\n <matcha-divider></matcha-divider>\n</div>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaDividerComponent, selector: "matcha-divider", inputs: ["gap", "gap-sm", "gap-md", "gap-lg", "gap-xl", "vertical"] }] }); }
1258
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1259
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaModalHeaderComponent, isStandalone: false, selector: "matcha-modal-header", ngImport: i0, template: "<!-- [@animate]=\"{ value: '*', params: { delay: '100ms' } }\" -->\n<!-- MATCHA CHECK -->\n<div class=\"matcha-section pt-16 px-16 pt-md-24 px-md-24\">\n <div class=\"d-flex flex-wrap flex-space-between mb-16 mb-md-24\">\n <div class=\"flex-space-between flex-align-center\">\n <ng-content></ng-content>\n </div>\n <div class=\"flex-row flex-end gap-8\">\n <ng-content select=\"matcha-modal-options\"></ng-content>\n </div>\n </div>\n <matcha-divider></matcha-divider>\n</div>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaDividerComponent, selector: "matcha-divider", inputs: ["gap", "gap-sm", "gap-md", "gap-lg", "gap-xl", "vertical"] }] }); }
1356
1260
  }
1357
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalHeaderComponent, decorators: [{
1261
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalHeaderComponent, decorators: [{
1358
1262
  type: Component,
1359
1263
  args: [{ selector: 'matcha-modal-header', standalone: false, template: "<!-- [@animate]=\"{ value: '*', params: { delay: '100ms' } }\" -->\n<!-- MATCHA CHECK -->\n<div class=\"matcha-section pt-16 px-16 pt-md-24 px-md-24\">\n <div class=\"d-flex flex-wrap flex-space-between mb-16 mb-md-24\">\n <div class=\"flex-space-between flex-align-center\">\n <ng-content></ng-content>\n </div>\n <div class=\"flex-row flex-end gap-8\">\n <ng-content select=\"matcha-modal-options\"></ng-content>\n </div>\n </div>\n <matcha-divider></matcha-divider>\n</div>\n" }]
1360
1264
  }] });
@@ -1380,10 +1284,10 @@ class MatchaModalFooterComponent {
1380
1284
  }
1381
1285
  });
1382
1286
  }
1383
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalFooterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1384
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaModalFooterComponent, isStandalone: false, selector: "matcha-modal-footer", inputs: { buttonType: ["", "buttonType"] }, ngImport: i0, template: "<div class=\"matcha-section pb-16 px-16 pb-md-24 px-md-24\">\n <matcha-divider></matcha-divider>\n <div class=\"flex-column flex-sm-row w-100-p flex-space-between mt-16 mt-md-24 gap-16\">\n <ng-content></ng-content>\n </div>\n</div>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaDividerComponent, selector: "matcha-divider", inputs: ["gap", "gap-sm", "gap-md", "gap-lg", "gap-xl", "vertical"] }] }); }
1287
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalFooterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1288
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaModalFooterComponent, isStandalone: false, selector: "matcha-modal-footer", inputs: { buttonType: ["", "buttonType"] }, ngImport: i0, template: "<div class=\"matcha-section pb-16 px-16 pb-md-24 px-md-24\">\n <matcha-divider></matcha-divider>\n <div class=\"flex-column flex-sm-row w-100-p flex-space-between mt-16 mt-md-24 gap-16\">\n <ng-content></ng-content>\n </div>\n</div>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaDividerComponent, selector: "matcha-divider", inputs: ["gap", "gap-sm", "gap-md", "gap-lg", "gap-xl", "vertical"] }] }); }
1385
1289
  }
1386
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalFooterComponent, decorators: [{
1290
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalFooterComponent, decorators: [{
1387
1291
  type: Component,
1388
1292
  args: [{ selector: 'matcha-modal-footer', standalone: false, template: "<div class=\"matcha-section pb-16 px-16 pb-md-24 px-md-24\">\n <matcha-divider></matcha-divider>\n <div class=\"flex-column flex-sm-row w-100-p flex-space-between mt-16 mt-md-24 gap-16\">\n <ng-content></ng-content>\n </div>\n</div>\n" }]
1389
1293
  }], propDecorators: { buttonType: [{
@@ -1392,10 +1296,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
1392
1296
  }] } });
1393
1297
 
1394
1298
  class MatchaModalOptionsComponent {
1395
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1396
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaModalOptionsComponent, isStandalone: false, selector: "matcha-modal-options", ngImport: i0, template: "<div class=\"flex-row gap-8\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
1299
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1300
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaModalOptionsComponent, isStandalone: false, selector: "matcha-modal-options", ngImport: i0, template: "<div class=\"flex-row gap-8\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
1397
1301
  }
1398
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalOptionsComponent, decorators: [{
1302
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalOptionsComponent, decorators: [{
1399
1303
  type: Component,
1400
1304
  args: [{ selector: 'matcha-modal-options', standalone: false, template: "<div class=\"flex-row gap-8\">\n <ng-content></ng-content>\n</div>\n" }]
1401
1305
  }] });
@@ -1408,10 +1312,10 @@ class MatchaModalComponent {
1408
1312
  const activeClasses = `background-surface radius-8 flex-column ${this.class}`;
1409
1313
  return activeClasses;
1410
1314
  }
1411
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1412
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaModalComponent, isStandalone: false, selector: "matcha-modal", inputs: { class: "class" }, host: { properties: { "class": "this.classes" } }, ngImport: i0, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
1315
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1316
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaModalComponent, isStandalone: false, selector: "matcha-modal", inputs: { class: "class" }, host: { properties: { "class": "this.classes" } }, ngImport: i0, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
1413
1317
  }
1414
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalComponent, decorators: [{
1318
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalComponent, decorators: [{
1415
1319
  type: Component,
1416
1320
  args: [{ selector: 'matcha-modal', standalone: false, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n" }]
1417
1321
  }], propDecorators: { class: [{
@@ -1450,10 +1354,10 @@ class MatchaMenuComponent {
1450
1354
  toggleMenu() {
1451
1355
  this.isOpen = !this.isOpen;
1452
1356
  }
1453
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaMenuComponent, deps: [{ token: ElementRef }, { token: Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
1454
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaMenuComponent, isStandalone: false, selector: "matcha-menu", inputs: { isParentMenu: "isParentMenu" }, host: { listeners: { "document:click": "handleOutsideClick($event)", "mouseleave": "handleMouseLeave($event)" } }, exportAs: ["matchaMenu"], ngImport: i0, template: "<div class=\"menu\" [ngClass]=\"{'show': isOpen}\">\n <ng-content></ng-content>\n </div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] }); }
1357
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMenuComponent, deps: [{ token: ElementRef }, { token: Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
1358
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaMenuComponent, isStandalone: false, selector: "matcha-menu", inputs: { isParentMenu: "isParentMenu" }, host: { listeners: { "document:click": "handleOutsideClick($event)", "mouseleave": "handleMouseLeave($event)" } }, exportAs: ["matchaMenu"], ngImport: i0, template: "<div class=\"menu\" [ngClass]=\"{'show': isOpen}\">\n <ng-content></ng-content>\n </div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] }); }
1455
1359
  }
1456
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaMenuComponent, decorators: [{
1360
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMenuComponent, decorators: [{
1457
1361
  type: Component,
1458
1362
  args: [{ selector: 'matcha-menu', exportAs: 'matchaMenu', standalone: false, template: "<div class=\"menu\" [ngClass]=\"{'show': isOpen}\">\n <ng-content></ng-content>\n </div>\n" }]
1459
1363
  }], ctorParameters: () => [{ type: i0.ElementRef, decorators: [{
@@ -1492,10 +1396,10 @@ class MatchaToolbarComponent {
1492
1396
  ngOnDestroy() {
1493
1397
  clearTimeout(this.resizeTimeout);
1494
1398
  }
1495
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaToolbarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1496
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaToolbarComponent, isStandalone: false, selector: "matcha-toolbar", host: { listeners: { "window:resize": "onResize()" } }, ngImport: i0, template: "<!-- HOW TO USE:\n<matcha-toolbar>\n <matcha-title type=\"icon\" icon=\"settings-out\" (iconClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-NO-ICONE-AQUI\">\n {{'FINANCIAL.CATEGORY.TITLE' | translate}}\n </matcha-title>\n <search-form toolbar-form-field (searchText)=\"searchText($event)\"></search-form>\n <matcha-toolbar-button icon=\"home-out\" (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n </matcha-toolbar-button>\n <matcha-toolbar-content>\n TEXTO DO BOT\u00C3O AQUI\n </matcha-toolbar-content>\n <matcha-toolbar-main-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n </matcha-toolbar-main-button>\n QUALQUER OUTRA FUNCIONALIDADE AQUI\n</matcha-toolbar>\n-->\n<ng-template #toolbarMainButton>\n <ng-content select=\"matcha-toolbar-main-button\"></ng-content>\n</ng-template>\n<!-- CONTENT HEADER -->\n<div class=\"flex-column background-surface radius-8 matcha-elevation-z1\">\n <div class=\"flex-column flex-md-row flex-wrap p-16 flex-align-center flex-space-between h-auto min-h-40 flex-wrap\">\n <div class=\"w-100-p--force w-md-auto--force flex-space-between flex-wrap\">\n <div class=\"min-h-32 flex-center-center\">\n <ng-content select=\"matcha-title\"></ng-content>\n </div>\n <ng-container *ngIf=\"isMobileScreen\">\n <ng-container *ngTemplateOutlet=\"toolbarMainButton\"></ng-container>\n </ng-container>\n </div>\n <div class=\"w-100-p--force w-md-auto--force flex-row flex-end gap-8\">\n <!-- ISSO DEVE SER SUBSTITUIDO PELO matcha-input-search FOR IMPLEMENTADO -->\n <ng-content select=\"search-form\"></ng-content>\n <!-- /ISSO DEVE SER SUBSTITUIDO PELO matcha-input-search FOR IMPLEMENTADO -->\n <div class=\"flex-row gap-8\">\n <ng-content select=\"matcha-toolbar-button\"></ng-content>\n <ng-content select=\"matcha-toolbar-content\"></ng-content>\n <ng-content></ng-content>\n <ng-container *ngIf=\"!isMobileScreen\">\n <ng-container *ngTemplateOutlet=\"toolbarMainButton\"></ng-container>\n </ng-container>\n </div>\n </div>\n </div>\n</div>\n<!-- / CONTENT HEADER -->\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
1399
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1400
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaToolbarComponent, isStandalone: false, selector: "matcha-toolbar", host: { listeners: { "window:resize": "onResize()" } }, ngImport: i0, template: "<!-- HOW TO USE:\n<matcha-toolbar>\n <matcha-title type=\"icon\" icon=\"settings-out\" (iconClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-NO-ICONE-AQUI\">\n {{'FINANCIAL.CATEGORY.TITLE' | translate}}\n </matcha-title>\n <search-form toolbar-form-field (searchText)=\"searchText($event)\"></search-form>\n <matcha-toolbar-button icon=\"home-out\" (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n </matcha-toolbar-button>\n <matcha-toolbar-content>\n TEXTO DO BOT\u00C3O AQUI\n </matcha-toolbar-content>\n <matcha-toolbar-main-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n </matcha-toolbar-main-button>\n QUALQUER OUTRA FUNCIONALIDADE AQUI\n</matcha-toolbar>\n-->\n<ng-template #toolbarMainButton>\n <ng-content select=\"matcha-toolbar-main-button\"></ng-content>\n</ng-template>\n<!-- CONTENT HEADER -->\n<div class=\"flex-column background-surface radius-8 matcha-elevation-z1\">\n <div class=\"flex-column flex-md-row flex-wrap p-16 flex-align-center flex-space-between h-auto min-h-40 flex-wrap\">\n <div class=\"w-100-p--force w-md-auto--force flex-space-between flex-wrap\">\n <div class=\"min-h-32 flex-center-center\">\n <ng-content select=\"matcha-title\"></ng-content>\n </div>\n <ng-container *ngIf=\"isMobileScreen\">\n <ng-container *ngTemplateOutlet=\"toolbarMainButton\"></ng-container>\n </ng-container>\n </div>\n <div class=\"w-100-p--force w-md-auto--force flex-row flex-end gap-8\">\n <!-- ISSO DEVE SER SUBSTITUIDO PELO matcha-input-search FOR IMPLEMENTADO -->\n <ng-content select=\"search-form\"></ng-content>\n <!-- /ISSO DEVE SER SUBSTITUIDO PELO matcha-input-search FOR IMPLEMENTADO -->\n <div class=\"flex-row gap-8\">\n <ng-content select=\"matcha-toolbar-button\"></ng-content>\n <ng-content select=\"matcha-toolbar-content\"></ng-content>\n <ng-content></ng-content>\n <ng-container *ngIf=\"!isMobileScreen\">\n <ng-container *ngTemplateOutlet=\"toolbarMainButton\"></ng-container>\n </ng-container>\n </div>\n </div>\n </div>\n</div>\n<!-- / CONTENT HEADER -->\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
1497
1401
  }
1498
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaToolbarComponent, decorators: [{
1402
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarComponent, decorators: [{
1499
1403
  type: Component,
1500
1404
  args: [{ selector: 'matcha-toolbar', standalone: false, template: "<!-- HOW TO USE:\n<matcha-toolbar>\n <matcha-title type=\"icon\" icon=\"settings-out\" (iconClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-NO-ICONE-AQUI\">\n {{'FINANCIAL.CATEGORY.TITLE' | translate}}\n </matcha-title>\n <search-form toolbar-form-field (searchText)=\"searchText($event)\"></search-form>\n <matcha-toolbar-button icon=\"home-out\" (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n </matcha-toolbar-button>\n <matcha-toolbar-content>\n TEXTO DO BOT\u00C3O AQUI\n </matcha-toolbar-content>\n <matcha-toolbar-main-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n </matcha-toolbar-main-button>\n QUALQUER OUTRA FUNCIONALIDADE AQUI\n</matcha-toolbar>\n-->\n<ng-template #toolbarMainButton>\n <ng-content select=\"matcha-toolbar-main-button\"></ng-content>\n</ng-template>\n<!-- CONTENT HEADER -->\n<div class=\"flex-column background-surface radius-8 matcha-elevation-z1\">\n <div class=\"flex-column flex-md-row flex-wrap p-16 flex-align-center flex-space-between h-auto min-h-40 flex-wrap\">\n <div class=\"w-100-p--force w-md-auto--force flex-space-between flex-wrap\">\n <div class=\"min-h-32 flex-center-center\">\n <ng-content select=\"matcha-title\"></ng-content>\n </div>\n <ng-container *ngIf=\"isMobileScreen\">\n <ng-container *ngTemplateOutlet=\"toolbarMainButton\"></ng-container>\n </ng-container>\n </div>\n <div class=\"w-100-p--force w-md-auto--force flex-row flex-end gap-8\">\n <!-- ISSO DEVE SER SUBSTITUIDO PELO matcha-input-search FOR IMPLEMENTADO -->\n <ng-content select=\"search-form\"></ng-content>\n <!-- /ISSO DEVE SER SUBSTITUIDO PELO matcha-input-search FOR IMPLEMENTADO -->\n <div class=\"flex-row gap-8\">\n <ng-content select=\"matcha-toolbar-button\"></ng-content>\n <ng-content select=\"matcha-toolbar-content\"></ng-content>\n <ng-content></ng-content>\n <ng-container *ngIf=\"!isMobileScreen\">\n <ng-container *ngTemplateOutlet=\"toolbarMainButton\"></ng-container>\n </ng-container>\n </div>\n </div>\n </div>\n</div>\n<!-- / CONTENT HEADER -->\n" }]
1501
1405
  }], propDecorators: { onResize: [{
@@ -1515,10 +1419,10 @@ class MatchaToolbarButtonComponent {
1515
1419
  emitButtonClick() {
1516
1420
  this.buttonClick.emit();
1517
1421
  }
1518
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaToolbarButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1519
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaToolbarButtonComponent, isStandalone: false, selector: "matcha-toolbar-button", inputs: { icon: "icon" }, outputs: { buttonClick: "buttonClick" }, ngImport: i0, template: "<!-- HOW TO USE:\n<matcha-toolbar-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\" toolbar-button-tooltip=\"TOOLTIP-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n</matcha-toolbar-button>\n-->\n<button matcha-button outline=\"true\" size=\"small\" color=\"grey\" icon=\"true\" class=\"mt-16 mt-md-0\" (click)=\"emitButtonClick()\">\n <span [class]=\"classes\"></span>\n</button>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaButtonComponent, selector: "[matcha-button]", inputs: ["size", "size-xs", "size-sm", "size-md", "size-lg", "size-xl", "color", "basic", "outline", "alpha", "pill", "icon", "link"] }] }); }
1422
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1423
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaToolbarButtonComponent, isStandalone: false, selector: "matcha-toolbar-button", inputs: { icon: "icon" }, outputs: { buttonClick: "buttonClick" }, ngImport: i0, template: "<!-- HOW TO USE:\n<matcha-toolbar-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\" toolbar-button-tooltip=\"TOOLTIP-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n</matcha-toolbar-button>\n-->\n<button matcha-button outline=\"true\" size=\"small\" color=\"grey\" icon=\"true\" class=\"mt-16 mt-md-0\" (click)=\"emitButtonClick()\">\n <span [class]=\"classes\"></span>\n</button>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaButtonComponent, selector: "[matcha-button]", inputs: ["size", "size-xs", "size-sm", "size-md", "size-lg", "size-xl", "color", "basic", "outline", "alpha", "pill", "link", "icon"] }] }); }
1520
1424
  }
1521
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaToolbarButtonComponent, decorators: [{
1425
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarButtonComponent, decorators: [{
1522
1426
  type: Component,
1523
1427
  args: [{ selector: 'matcha-toolbar-button', standalone: false, template: "<!-- HOW TO USE:\n<matcha-toolbar-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\" toolbar-button-tooltip=\"TOOLTIP-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n</matcha-toolbar-button>\n-->\n<button matcha-button outline=\"true\" size=\"small\" color=\"grey\" icon=\"true\" class=\"mt-16 mt-md-0\" (click)=\"emitButtonClick()\">\n <span [class]=\"classes\"></span>\n</button>\n" }]
1524
1428
  }], propDecorators: { icon: [{
@@ -1529,10 +1433,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
1529
1433
  }] } });
1530
1434
 
1531
1435
  class MatchaToolbarContentComponent {
1532
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaToolbarContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1533
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaToolbarContentComponent, isStandalone: false, selector: "matcha-toolbar-content", ngImport: i0, template: "<!-- HOW TO USE:\n<matcha-toolbar-content>\n OUTROS CONTEUDOS CUSTOMIZADOS NA TOOLBAR\n</matcha-toolbar-content>\n-->\n<div class=\"d-flex flex-wrap gap-8 mt-16 mt-md-0\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
1436
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1437
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaToolbarContentComponent, isStandalone: false, selector: "matcha-toolbar-content", ngImport: i0, template: "<!-- HOW TO USE:\n<matcha-toolbar-content>\n OUTROS CONTEUDOS CUSTOMIZADOS NA TOOLBAR\n</matcha-toolbar-content>\n-->\n<div class=\"d-flex flex-wrap gap-8 mt-16 mt-md-0\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
1534
1438
  }
1535
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaToolbarContentComponent, decorators: [{
1439
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarContentComponent, decorators: [{
1536
1440
  type: Component,
1537
1441
  args: [{ selector: 'matcha-toolbar-content', standalone: false, template: "<!-- HOW TO USE:\n<matcha-toolbar-content>\n OUTROS CONTEUDOS CUSTOMIZADOS NA TOOLBAR\n</matcha-toolbar-content>\n-->\n<div class=\"d-flex flex-wrap gap-8 mt-16 mt-md-0\">\n <ng-content></ng-content>\n</div>\n" }]
1538
1442
  }] });
@@ -1544,10 +1448,10 @@ class MatchaToolbarMainButtonComponent {
1544
1448
  emitButtonClick() {
1545
1449
  this.buttonClick.emit();
1546
1450
  }
1547
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaToolbarMainButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1548
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaToolbarMainButtonComponent, isStandalone: false, selector: "matcha-toolbar-main-button", outputs: { buttonClick: "buttonClick" }, ngImport: i0, template: "<!-- HOW TO USE:\n<matcha-toolbar-main-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n</matcha-toolbar-main-button>\n-->\n<button matcha-button size=\"tiny\" size-md=\"small\" color=\"accent\" (click)=\"emitButtonClick()\">\n <span class=\"i-matcha-action_plus i-size-sm ml--4\"></span>\n <span class=\"ml-8 fs-14\">\n <ng-content></ng-content>\n </span>\n</button>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaButtonComponent, selector: "[matcha-button]", inputs: ["size", "size-xs", "size-sm", "size-md", "size-lg", "size-xl", "color", "basic", "outline", "alpha", "pill", "icon", "link"] }] }); }
1451
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarMainButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1452
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaToolbarMainButtonComponent, isStandalone: false, selector: "matcha-toolbar-main-button", outputs: { buttonClick: "buttonClick" }, ngImport: i0, template: "<!-- HOW TO USE:\n<matcha-toolbar-main-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n</matcha-toolbar-main-button>\n-->\n<button matcha-button size=\"tiny\" size-md=\"small\" color=\"accent\" (click)=\"emitButtonClick()\">\n <span class=\"i-matcha-action_plus i-size-sm ml--4\"></span>\n <span class=\"ml-8 fs-14\">\n <ng-content></ng-content>\n </span>\n</button>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaButtonComponent, selector: "[matcha-button]", inputs: ["size", "size-xs", "size-sm", "size-md", "size-lg", "size-xl", "color", "basic", "outline", "alpha", "pill", "link", "icon"] }] }); }
1549
1453
  }
1550
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaToolbarMainButtonComponent, decorators: [{
1454
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarMainButtonComponent, decorators: [{
1551
1455
  type: Component,
1552
1456
  args: [{ selector: 'matcha-toolbar-main-button', standalone: false, template: "<!-- HOW TO USE:\n<matcha-toolbar-main-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n</matcha-toolbar-main-button>\n-->\n<button matcha-button size=\"tiny\" size-md=\"small\" color=\"accent\" (click)=\"emitButtonClick()\">\n <span class=\"i-matcha-action_plus i-size-sm ml--4\"></span>\n <span class=\"ml-8 fs-14\">\n <ng-content></ng-content>\n </span>\n</button>\n" }]
1553
1457
  }], propDecorators: { buttonClick: [{
@@ -1570,10 +1474,10 @@ class MatchaFormFieldComponent {
1570
1474
  get showError() {
1571
1475
  return !!this.control?.invalid && (this.control?.touched || this.control?.dirty);
1572
1476
  }
1573
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaFormFieldComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1574
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaFormFieldComponent, isStandalone: false, selector: "matcha-form-field", inputs: { color: "color", size: "size", sizeXs: ["size-xs", "sizeXs"], sizeSm: ["size-sm", "sizeSm"], sizeMd: ["size-md", "sizeMd"], sizeLg: ["size-lg", "sizeLg"], sizeXl: ["size-xl", "sizeXl"] }, queries: [{ propertyName: "controlDir", first: true, predicate: FormControlName, descendants: true }], ngImport: i0, template: "<div class=\"flex-column gap-4\">\n <div class=\"matcha-form-field position-relative w-100-p min-h-40 flex-align-center\" #inputSelector>\n <div class=\"flex-row position-absolute w-100-p min-h-40 h-100-p\">\n <div class=\"bl-2 bt-2 bb-2 radius-left-8 min-w-8 border-color-{{color}}\"></div>\n <div class=\"bb-2 w-auto border-color-{{color}}\">\n <ng-content select=\"matcha-label\"></ng-content>\n </div>\n <div class=\"br-2 bt-2 bb-2 radius-right-8 w-100-p border-color-{{color}}\"></div>\n </div>\n <div class=\"flex-row position-relative py-8 px-12 gap-8 w-100-p\">\n <ng-content></ng-content>\n </div>\n </div>\n <ng-container *ngIf=\"showError\">\n <ng-content select=\"matcha-error\"></ng-content>\n </ng-container>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
1477
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaFormFieldComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1478
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaFormFieldComponent, isStandalone: false, selector: "matcha-form-field", inputs: { color: "color", size: "size", sizeXs: ["size-xs", "sizeXs"], sizeSm: ["size-sm", "sizeSm"], sizeMd: ["size-md", "sizeMd"], sizeLg: ["size-lg", "sizeLg"], sizeXl: ["size-xl", "sizeXl"] }, queries: [{ propertyName: "controlDir", first: true, predicate: FormControlName, descendants: true }], ngImport: i0, template: "<div class=\"flex-column gap-4\">\n <div class=\"matcha-form-field position-relative w-100-p min-h-40 flex-align-center\" #inputSelector>\n <div class=\"flex-row position-absolute w-100-p min-h-40 h-100-p\">\n <div class=\"bl-2 bt-2 bb-2 radius-left-8 min-w-8 border-color-{{color}}\"></div>\n <div class=\"bb-2 w-auto border-color-{{color}}\">\n <ng-content select=\"matcha-label\"></ng-content>\n </div>\n <div class=\"br-2 bt-2 bb-2 radius-right-8 w-100-p border-color-{{color}}\"></div>\n </div>\n <div class=\"flex-row position-relative py-8 px-12 gap-8 w-100-p\">\n <ng-content></ng-content>\n </div>\n </div>\n <ng-container *ngIf=\"showError\">\n <ng-content select=\"matcha-error\"></ng-content>\n </ng-container>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
1575
1479
  }
1576
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaFormFieldComponent, decorators: [{
1480
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaFormFieldComponent, decorators: [{
1577
1481
  type: Component,
1578
1482
  args: [{ selector: 'matcha-form-field', standalone: false, template: "<div class=\"flex-column gap-4\">\n <div class=\"matcha-form-field position-relative w-100-p min-h-40 flex-align-center\" #inputSelector>\n <div class=\"flex-row position-absolute w-100-p min-h-40 h-100-p\">\n <div class=\"bl-2 bt-2 bb-2 radius-left-8 min-w-8 border-color-{{color}}\"></div>\n <div class=\"bb-2 w-auto border-color-{{color}}\">\n <ng-content select=\"matcha-label\"></ng-content>\n </div>\n <div class=\"br-2 bt-2 bb-2 radius-right-8 w-100-p border-color-{{color}}\"></div>\n </div>\n <div class=\"flex-row position-relative py-8 px-12 gap-8 w-100-p\">\n <ng-content></ng-content>\n </div>\n </div>\n <ng-container *ngIf=\"showError\">\n <ng-content select=\"matcha-error\"></ng-content>\n </ng-container>\n</div>\n" }]
1579
1483
  }], propDecorators: { color: [{
@@ -1605,10 +1509,10 @@ class MatchaLabelComponent {
1605
1509
  constructor() {
1606
1510
  this.color = 'blue-grey';
1607
1511
  }
1608
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaLabelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1609
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaLabelComponent, isStandalone: false, selector: "matcha-label", inputs: { color: "color" }, ngImport: i0, template: "<label\n class=\"d-flex d-flex-align-center position-relative text-nowrap px-4 fs-12 lh-18 fw-700 color-{{color}}\"\n style=\"transform: translateY(-8px);\">\n <ng-content></ng-content>\n <!-- <span class=\"pl-4 fs-10 fw-400 lh-16 matcha-color-placeholder\">*</span>\n <span class=\"pl-4 fs-10 fw-400 lh-16 matcha-color-placeholder\">(Opcional)</span> -->\n</label>", styles: [""] }); }
1512
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaLabelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1513
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaLabelComponent, isStandalone: false, selector: "matcha-label", inputs: { color: "color" }, ngImport: i0, template: "<label\n class=\"d-flex d-flex-align-center position-relative text-nowrap px-4 fs-12 lh-18 fw-700 color-{{color}}\"\n style=\"transform: translateY(-8px);\">\n <ng-content></ng-content>\n <!-- <span class=\"pl-4 fs-10 fw-400 lh-16 matcha-color-placeholder\">*</span>\n <span class=\"pl-4 fs-10 fw-400 lh-16 matcha-color-placeholder\">(Opcional)</span> -->\n</label>", styles: [""] }); }
1610
1514
  }
1611
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaLabelComponent, decorators: [{
1515
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaLabelComponent, decorators: [{
1612
1516
  type: Component,
1613
1517
  args: [{ selector: 'matcha-label', standalone: false, template: "<label\n class=\"d-flex d-flex-align-center position-relative text-nowrap px-4 fs-12 lh-18 fw-700 color-{{color}}\"\n style=\"transform: translateY(-8px);\">\n <ng-content></ng-content>\n <!-- <span class=\"pl-4 fs-10 fw-400 lh-16 matcha-color-placeholder\">*</span>\n <span class=\"pl-4 fs-10 fw-400 lh-16 matcha-color-placeholder\">(Opcional)</span> -->\n</label>" }]
1614
1518
  }], propDecorators: { color: [{
@@ -1616,10 +1520,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
1616
1520
  }] } });
1617
1521
 
1618
1522
  class MatchaErrorComponent {
1619
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaErrorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1620
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaErrorComponent, isStandalone: false, selector: "matcha-error", ngImport: i0, template: "<p class=\"w-100-p color-red fs-12 lh-16 flex-row flex-align-center gap-4 m-0\">\n <matcha-icon name=\"action_sign_warning-out\" size=\"sm\"></matcha-icon>\n <ng-content></ng-content>\n</p>", styles: [""], dependencies: [{ kind: "component", type: MatchaIconComponent, selector: "matcha-icon", inputs: ["name", "size", "color", "class", "loading"] }] }); }
1523
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaErrorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1524
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaErrorComponent, isStandalone: false, selector: "matcha-error", ngImport: i0, template: "<p class=\"w-100-p color-red fs-12 lh-16 flex-row flex-align-center gap-4 m-0\">\n <matcha-icon name=\"action_sign_warning-out\" size=\"sm\"></matcha-icon>\n <ng-content></ng-content>\n</p>", styles: [""], dependencies: [{ kind: "component", type: MatchaIconComponent, selector: "matcha-icon", inputs: ["name", "size", "color", "class", "loading"] }] }); }
1621
1525
  }
1622
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaErrorComponent, decorators: [{
1526
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaErrorComponent, decorators: [{
1623
1527
  type: Component,
1624
1528
  args: [{ selector: 'matcha-error', standalone: false, template: "<p class=\"w-100-p color-red fs-12 lh-16 flex-row flex-align-center gap-4 m-0\">\n <matcha-icon name=\"action_sign_warning-out\" size=\"sm\"></matcha-icon>\n <ng-content></ng-content>\n</p>" }]
1625
1529
  }] });
@@ -1677,10 +1581,10 @@ class MatchaRippleDirective {
1677
1581
  });
1678
1582
  this.ripples = [];
1679
1583
  }
1680
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaRippleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
1681
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaRippleDirective, isStandalone: false, selector: "[matchaRipple]", inputs: { rippleColor: "rippleColor" }, host: { listeners: { "mousedown": "onMouseDown($event)" } }, ngImport: i0 }); }
1584
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRippleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
1585
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaRippleDirective, isStandalone: false, selector: "[matchaRipple]", inputs: { rippleColor: "rippleColor" }, host: { listeners: { "mousedown": "onMouseDown($event)" } }, ngImport: i0 }); }
1682
1586
  }
1683
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaRippleDirective, decorators: [{
1587
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRippleDirective, decorators: [{
1684
1588
  type: Directive,
1685
1589
  args: [{
1686
1590
  selector: '[matchaRipple]',
@@ -1740,8 +1644,8 @@ class MatchaCheckboxComponent {
1740
1644
  this.onTouched();
1741
1645
  this.change.emit({ checked: this.checked });
1742
1646
  }
1743
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaCheckboxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1744
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaCheckboxComponent, isStandalone: false, selector: "matcha-checkbox", inputs: { color: "color", indeterminate: "indeterminate", disabled: "disabled", checked: "checked" }, outputs: { change: "change" }, providers: [
1647
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCheckboxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1648
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaCheckboxComponent, isStandalone: false, selector: "matcha-checkbox", inputs: { color: "color", indeterminate: "indeterminate", disabled: "disabled", checked: "checked" }, outputs: { change: "change" }, providers: [
1745
1649
  {
1746
1650
  provide: NG_VALUE_ACCESSOR,
1747
1651
  useExisting: forwardRef(() => MatchaCheckboxComponent),
@@ -1749,7 +1653,7 @@ class MatchaCheckboxComponent {
1749
1653
  }
1750
1654
  ], ngImport: i0, template: "<label\n class=\"matcha-checkbox flex-align-center\"\n [class.matcha-checkbox-disabled]=\"disabled\">\n <div\n class=\"matcha-checkbox-container p-8 flex-center-center radius-full cursor-pointer\"\n matchaRipple>\n <input\n type=\"checkbox\"\n class=\"matcha-checkbox-input\"\n [checked]=\"checked\"\n [disabled]=\"disabled\"\n [indeterminate]=\"indeterminate\"\n (change)=\"onInputChange($event)\">\n </div>\n\n <span class=\"matcha-checkbox-label fw-500 fs-16 lh-20\">\n <ng-content></ng-content>\n </span>\n</label>", styles: [""], dependencies: [{ kind: "directive", type: MatchaRippleDirective, selector: "[matchaRipple]", inputs: ["rippleColor"] }] }); }
1751
1655
  }
1752
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaCheckboxComponent, decorators: [{
1656
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCheckboxComponent, decorators: [{
1753
1657
  type: Component,
1754
1658
  args: [{ selector: 'matcha-checkbox', standalone: false, providers: [
1755
1659
  {
@@ -1817,10 +1721,10 @@ class MatchaSpinComponent {
1817
1721
  const progress = Math.min(Math.max(Number(this.progress), 0), 100);
1818
1722
  return this.circumference - (progress / 100) * this.circumference;
1819
1723
  }
1820
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSpinComponent, deps: [{ token: ElementRef }, { token: Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
1821
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaSpinComponent, isStandalone: false, selector: "matcha-spin", 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-spin\"\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\">\n <circle\n class=\"spin-placeholder\"\n [attr.cx]=\"diameter / 2\"\n [attr.cy]=\"diameter / 2\"\n [attr.r]=\"radius\"\n [attr.stroke-width]=\"strokeWidth\"\n />\n <circle\n class=\"spin-progress\"\n [attr.cx]=\"diameter / 2\"\n [attr.cy]=\"diameter / 2\"\n [attr.r]=\"radius\"\n [attr.stroke-width]=\"strokeWidth\"\n [attr.stroke]=\"color\"\n [attr.stroke-dasharray]=\"circumference\"\n [attr.stroke-dashoffset]=\"progress ? dashOffset : null\"\n />\n </svg>\n</div>\n", styles: [""] }); }
1724
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSpinComponent, deps: [{ token: ElementRef }, { token: Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
1725
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaSpinComponent, isStandalone: false, selector: "matcha-spin", 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-spin\"\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\">\n <circle\n class=\"spin-placeholder\"\n [attr.cx]=\"diameter / 2\"\n [attr.cy]=\"diameter / 2\"\n [attr.r]=\"radius\"\n [attr.stroke-width]=\"strokeWidth\"\n />\n <circle\n class=\"spin-progress\"\n [attr.cx]=\"diameter / 2\"\n [attr.cy]=\"diameter / 2\"\n [attr.r]=\"radius\"\n [attr.stroke-width]=\"strokeWidth\"\n [attr.stroke]=\"color\"\n [attr.stroke-dasharray]=\"circumference\"\n [attr.stroke-dashoffset]=\"progress ? dashOffset : null\"\n />\n </svg>\n</div>\n", styles: [""] }); }
1822
1726
  }
1823
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSpinComponent, decorators: [{
1727
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSpinComponent, decorators: [{
1824
1728
  type: Component,
1825
1729
  args: [{ selector: 'matcha-spin', standalone: false, template: "<div\n class=\"matcha-spin\"\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\">\n <circle\n class=\"spin-placeholder\"\n [attr.cx]=\"diameter / 2\"\n [attr.cy]=\"diameter / 2\"\n [attr.r]=\"radius\"\n [attr.stroke-width]=\"strokeWidth\"\n />\n <circle\n class=\"spin-progress\"\n [attr.cx]=\"diameter / 2\"\n [attr.cy]=\"diameter / 2\"\n [attr.r]=\"radius\"\n [attr.stroke-width]=\"strokeWidth\"\n [attr.stroke]=\"color\"\n [attr.stroke-dasharray]=\"circumference\"\n [attr.stroke-dashoffset]=\"progress ? dashOffset : null\"\n />\n </svg>\n</div>\n" }]
1826
1730
  }], ctorParameters: () => [{ type: i0.ElementRef, decorators: [{
@@ -1874,10 +1778,10 @@ class MatchaHintTextComponent {
1874
1778
  default: return 'red';
1875
1779
  }
1876
1780
  }
1877
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaHintTextComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1878
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaHintTextComponent, isStandalone: false, selector: "matcha-hint-text", inputs: { type: "type", size: "size" }, ngImport: i0, template: "<div class=\"d-flex gap-4\">\n <matcha-icon color=\"{{ iconColor }}\" name=\"{{ iconName }}\"> </matcha-icon>\n <span class=\"text\"><ng-content></ng-content></span>\n</div>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaIconComponent, selector: "matcha-icon", inputs: ["name", "size", "color", "class", "loading"] }] }); }
1781
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaHintTextComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1782
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaHintTextComponent, isStandalone: false, selector: "matcha-hint-text", inputs: { type: "type", size: "size" }, ngImport: i0, template: "<div class=\"d-flex gap-4\">\n <matcha-icon color=\"{{ iconColor }}\" name=\"{{ iconName }}\"> </matcha-icon>\n <span class=\"text\"><ng-content></ng-content></span>\n</div>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaIconComponent, selector: "matcha-icon", inputs: ["name", "size", "color", "class", "loading"] }] }); }
1879
1783
  }
1880
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaHintTextComponent, decorators: [{
1784
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaHintTextComponent, decorators: [{
1881
1785
  type: Component,
1882
1786
  args: [{ selector: 'matcha-hint-text', standalone: false, template: "<div class=\"d-flex gap-4\">\n <matcha-icon color=\"{{ iconColor }}\" name=\"{{ iconName }}\"> </matcha-icon>\n <span class=\"text\"><ng-content></ng-content></span>\n</div>\n" }]
1883
1787
  }], propDecorators: { type: [{
@@ -1888,6 +1792,211 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
1888
1792
  args: ['size']
1889
1793
  }] } });
1890
1794
 
1795
+ class MatchaButtonToggleComponent {
1796
+ get multiple() { return this._multiple; }
1797
+ set multiple(v) { this._multiple = v === 'false' ? false : !!v; }
1798
+ get disabled() { return this._disabled; }
1799
+ set disabled(v) { this._disabled = v === 'false' ? false : !!v; }
1800
+ get isDisabled() { return this.disabled || null; }
1801
+ get required() { return this._required; }
1802
+ set required(v) { this._required = v === 'false' ? false : !!v; }
1803
+ set gap(v) { const n = +v; this._gap = isNaN(n) ? 16 : n; }
1804
+ get gapClass() { return `gap-${this._gap}`; }
1805
+ constructor(elementRef) {
1806
+ this.elementRef = elementRef;
1807
+ this._multiple = false;
1808
+ this._disabled = false;
1809
+ this._required = false;
1810
+ this.inactiveColor = 'primary';
1811
+ this.inactiveType = 'solid';
1812
+ this._gap = 16;
1813
+ }
1814
+ ngAfterContentInit() {
1815
+ const buttons = this.elementRef.nativeElement.querySelectorAll('button[matcha-button]');
1816
+ buttons.forEach((button, index) => {
1817
+ const isActive = button.hasAttribute('active');
1818
+ this.setButtonState(button, isActive);
1819
+ button.addEventListener('click', () => this.onButtonSelected(button));
1820
+ });
1821
+ }
1822
+ setButtonState(button, isActive) {
1823
+ if (isActive) {
1824
+ button.setAttribute('active', '');
1825
+ }
1826
+ else {
1827
+ button.removeAttribute('active');
1828
+ }
1829
+ }
1830
+ onButtonSelected(selectedButton) {
1831
+ const buttons = this.elementRef.nativeElement.querySelectorAll('button[matcha-button]');
1832
+ const activeButtons = Array.from(buttons).filter((button) => button.hasAttribute('active'));
1833
+ if (this.required && activeButtons.length === 1 && activeButtons[0] === selectedButton) {
1834
+ return;
1835
+ }
1836
+ if (this.multiple) {
1837
+ const isActive = selectedButton.hasAttribute('active');
1838
+ this.setButtonState(selectedButton, !isActive);
1839
+ return;
1840
+ }
1841
+ if (selectedButton.hasAttribute('active')) {
1842
+ this.setButtonState(selectedButton, false);
1843
+ }
1844
+ else {
1845
+ buttons.forEach((button) => {
1846
+ this.setButtonState(button, button === selectedButton);
1847
+ });
1848
+ }
1849
+ }
1850
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
1851
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaButtonToggleComponent, isStandalone: false, selector: "matcha-button-toggle", inputs: { multiple: "multiple", disabled: "disabled", required: "required", inactiveColor: "inactiveColor", inactiveType: "inactiveType", gap: "gap" }, host: { properties: { "attr.disabled": "this.isDisabled" } }, queries: [{ propertyName: "buttons", predicate: MatchaButtonComponent }], 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"] }] }); }
1852
+ }
1853
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleComponent, decorators: [{
1854
+ type: Component,
1855
+ args: [{ selector: 'matcha-button-toggle', standalone: false, template: "<div class=\"button-group d-flex flex-wrap\" [ngClass]=\"gapClass\" role=\"group\"><ng-content></ng-content></div>\n" }]
1856
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { multiple: [{
1857
+ type: Input
1858
+ }], disabled: [{
1859
+ type: Input
1860
+ }], isDisabled: [{
1861
+ type: HostBinding,
1862
+ args: ['attr.disabled']
1863
+ }], required: [{
1864
+ type: Input
1865
+ }], inactiveColor: [{
1866
+ type: Input
1867
+ }], inactiveType: [{
1868
+ type: Input
1869
+ }], gap: [{
1870
+ type: Input
1871
+ }], buttons: [{
1872
+ type: ContentChildren,
1873
+ args: [MatchaButtonComponent]
1874
+ }] } });
1875
+
1876
+ class MatchaTabItemComponent {
1877
+ constructor(_render) {
1878
+ this._render = _render;
1879
+ this.active = false;
1880
+ this.selected = new EventEmitter();
1881
+ }
1882
+ ngAfterContentInit() {
1883
+ if (!this.innerButton) {
1884
+ return;
1885
+ }
1886
+ /* considera <button … active-item> como ativo */
1887
+ if (this.innerButton.nativeElement.hasAttribute('active-item')) {
1888
+ this.active = true;
1889
+ }
1890
+ this._render.listen(this.innerButton.nativeElement, 'click', () => this.onClick());
1891
+ }
1892
+ onClick() {
1893
+ this.selected.emit();
1894
+ }
1895
+ setActiveState(isActive, inactiveColor, inactiveType) {
1896
+ this.active = isActive;
1897
+ if (this.innerButton) {
1898
+ /* liga/desliga atributo visual */
1899
+ if (isActive) {
1900
+ this._render.setAttribute(this.innerButton.nativeElement, 'active-item', 'true');
1901
+ }
1902
+ else {
1903
+ this._render.removeAttribute(this.innerButton.nativeElement, 'active-item');
1904
+ }
1905
+ }
1906
+ }
1907
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTabItemComponent, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
1908
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", 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: [""] }); }
1909
+ }
1910
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTabItemComponent, decorators: [{
1911
+ type: Component,
1912
+ args: [{ selector: 'matcha-tab-item', standalone: false, template: "<ng-content></ng-content>\n" }]
1913
+ }], ctorParameters: () => [{ type: i0.Renderer2 }], propDecorators: { active: [{
1914
+ type: Input
1915
+ }], selected: [{
1916
+ type: Output
1917
+ }], innerButton: [{
1918
+ type: ContentChild,
1919
+ args: [MatchaButtonComponent, { static: true, read: ElementRef }]
1920
+ }] } });
1921
+
1922
+ class MatchaTabsComponent {
1923
+ constructor() {
1924
+ /* entradas originais */
1925
+ this._multiple = false;
1926
+ this._disabled = false;
1927
+ this._required = false;
1928
+ this.inactiveColor = 'disabled';
1929
+ this.inactiveType = 'basic';
1930
+ this._gap = 16;
1931
+ }
1932
+ get multiple() { return this._multiple; }
1933
+ set multiple(v) { this._multiple = v === 'false' ? false : !!v; }
1934
+ get disabled() { return this._disabled; }
1935
+ set disabled(v) { this._disabled = v === 'false' ? false : !!v; }
1936
+ get isDisabled() { return this.disabled || null; }
1937
+ get required() { return this._required; }
1938
+ set required(v) { this._required = v === 'false' ? false : !!v; }
1939
+ set gap(v) { const n = +v; this._gap = isNaN(n) ? 16 : n; }
1940
+ get gapClass() { return `gap-${this._gap}`; }
1941
+ /* ────────────────────────────────────── */
1942
+ ngAfterContentInit() {
1943
+ /* se algum veio com [active] / active-item usa-o, senão o primeiro */
1944
+ const preset = this.tabItems.find(i => i.active);
1945
+ this.tabItems.forEach((item, idx) => {
1946
+ const isActive = preset ? item === preset : idx === 0;
1947
+ item.setActiveState(isActive, this.inactiveColor, this.inactiveType);
1948
+ item.selected.subscribe(() => this.onItemSelected(item));
1949
+ });
1950
+ }
1951
+ onItemSelected(selectedItem) {
1952
+ // Se required é true e é a última tab ativa, não permite desativar
1953
+ if (this.required) {
1954
+ const activeTabs = this.tabItems.filter(item => item.active);
1955
+ if (activeTabs.length === 1 && activeTabs[0] === selectedItem) {
1956
+ return;
1957
+ }
1958
+ }
1959
+ // Se multiple é true, permite ativar/desativar livremente
1960
+ if (this.multiple) {
1961
+ selectedItem.setActiveState(!selectedItem.active, this.inactiveColor, this.inactiveType);
1962
+ return;
1963
+ }
1964
+ // Se multiple é false
1965
+ if (selectedItem.active) {
1966
+ // Se a tab já está ativa, permite desselecionar
1967
+ selectedItem.setActiveState(false, this.inactiveColor, this.inactiveType);
1968
+ }
1969
+ else {
1970
+ // Se está selecionando uma nova tab, desativa todas as outras
1971
+ this.tabItems.forEach(item => item.setActiveState(item === selectedItem, this.inactiveColor, this.inactiveType));
1972
+ }
1973
+ }
1974
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTabsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1975
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", 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"] }] }); }
1976
+ }
1977
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTabsComponent, decorators: [{
1978
+ type: Component,
1979
+ 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" }]
1980
+ }], propDecorators: { multiple: [{
1981
+ type: Input
1982
+ }], disabled: [{
1983
+ type: Input
1984
+ }], isDisabled: [{
1985
+ type: HostBinding,
1986
+ args: ['attr.disabled']
1987
+ }], required: [{
1988
+ type: Input
1989
+ }], inactiveColor: [{
1990
+ type: Input
1991
+ }], inactiveType: [{
1992
+ type: Input
1993
+ }], gap: [{
1994
+ type: Input
1995
+ }], tabItems: [{
1996
+ type: ContentChildren,
1997
+ args: [MatchaTabItemComponent]
1998
+ }] } });
1999
+
1891
2000
  class MatchaTooltipDirective {
1892
2001
  constructor(el, renderer) {
1893
2002
  this.el = el;
@@ -2029,10 +2138,10 @@ class MatchaTooltipDirective {
2029
2138
  this.documentClickListener = null;
2030
2139
  }
2031
2140
  }
2032
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTooltipDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2033
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaTooltipDirective, isStandalone: false, selector: "[matchaTooltip]", inputs: { tooltipText: ["matchaTooltip", "tooltipText"], tooltipDisabled: ["matchaTooltipDisabled", "tooltipDisabled"], preferAbove: ["matchaTooltipAbove", "preferAbove"], preferBelow: ["matchaTooltipBelow", "preferBelow"], preferLeft: ["matchaTooltipLeft", "preferLeft"], preferRight: ["matchaTooltipRight", "preferRight"], tooltipEnableClose: ["matchaTooltipEnableClose", "tooltipEnableClose"] }, host: { listeners: { "mouseenter": "onMouseEnter()", "mouseleave": "onMouseLeave()", "click": "onClick($event)" } }, ngImport: i0 }); }
2141
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTooltipDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2142
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaTooltipDirective, isStandalone: false, selector: "[matchaTooltip]", inputs: { tooltipText: ["matchaTooltip", "tooltipText"], tooltipDisabled: ["matchaTooltipDisabled", "tooltipDisabled"], preferAbove: ["matchaTooltipAbove", "preferAbove"], preferBelow: ["matchaTooltipBelow", "preferBelow"], preferLeft: ["matchaTooltipLeft", "preferLeft"], preferRight: ["matchaTooltipRight", "preferRight"], tooltipEnableClose: ["matchaTooltipEnableClose", "tooltipEnableClose"] }, host: { listeners: { "mouseenter": "onMouseEnter()", "mouseleave": "onMouseLeave()", "click": "onClick($event)" } }, ngImport: i0 }); }
2034
2143
  }
2035
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTooltipDirective, decorators: [{
2144
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTooltipDirective, decorators: [{
2036
2145
  type: Directive,
2037
2146
  args: [{
2038
2147
  selector: '[matchaTooltip]',
@@ -2071,11 +2180,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2071
2180
  }] } });
2072
2181
 
2073
2182
  class MatchaTooltipModule {
2074
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTooltipModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2075
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaTooltipModule, declarations: [MatchaTooltipDirective], imports: [CommonModule], exports: [MatchaTooltipDirective] }); }
2076
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTooltipModule, imports: [CommonModule] }); }
2183
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTooltipModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2184
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaTooltipModule, declarations: [MatchaTooltipDirective], imports: [CommonModule], exports: [MatchaTooltipDirective] }); }
2185
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTooltipModule, imports: [CommonModule] }); }
2077
2186
  }
2078
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTooltipModule, decorators: [{
2187
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTooltipModule, decorators: [{
2079
2188
  type: NgModule,
2080
2189
  args: [{
2081
2190
  declarations: [MatchaTooltipDirective],
@@ -2084,31 +2193,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2084
2193
  }]
2085
2194
  }] });
2086
2195
 
2087
- class MatchaButtonGroupModule {
2088
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2089
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonGroupModule, declarations: [MatchaButtonGroupComponent, MatchaButtonItemComponent], imports: [CommonModule,
2090
- MatchaTooltipModule], exports: [MatchaButtonGroupComponent, MatchaButtonItemComponent] }); }
2091
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonGroupModule, imports: [CommonModule,
2092
- MatchaTooltipModule] }); }
2093
- }
2094
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonGroupModule, decorators: [{
2095
- type: NgModule,
2096
- args: [{
2097
- declarations: [MatchaButtonGroupComponent, MatchaButtonItemComponent],
2098
- imports: [
2099
- CommonModule,
2100
- MatchaTooltipModule
2101
- ],
2102
- exports: [MatchaButtonGroupComponent, MatchaButtonItemComponent]
2103
- }]
2104
- }] });
2105
-
2106
2196
  class MatchaIconModule {
2107
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2108
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaIconModule, declarations: [MatchaIconComponent], imports: [CommonModule, MatchaTooltipModule], exports: [MatchaIconComponent] }); }
2109
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaIconModule, imports: [CommonModule, MatchaTooltipModule] }); }
2197
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2198
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaIconModule, declarations: [MatchaIconComponent], imports: [CommonModule, MatchaTooltipModule], exports: [MatchaIconComponent] }); }
2199
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaIconModule, imports: [CommonModule, MatchaTooltipModule] }); }
2110
2200
  }
2111
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaIconModule, decorators: [{
2201
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaIconModule, decorators: [{
2112
2202
  type: NgModule,
2113
2203
  args: [{
2114
2204
  declarations: [MatchaIconComponent],
@@ -2118,11 +2208,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2118
2208
  }] });
2119
2209
 
2120
2210
  class MatchaTitleModule {
2121
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTitleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2122
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaTitleModule, declarations: [MatchaTitleComponent], imports: [CommonModule], exports: [MatchaTitleComponent] }); }
2123
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTitleModule, imports: [CommonModule] }); }
2211
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTitleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2212
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaTitleModule, declarations: [MatchaTitleComponent], imports: [CommonModule], exports: [MatchaTitleComponent] }); }
2213
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTitleModule, imports: [CommonModule] }); }
2124
2214
  }
2125
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTitleModule, decorators: [{
2215
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTitleModule, decorators: [{
2126
2216
  type: NgModule,
2127
2217
  args: [{
2128
2218
  declarations: [MatchaTitleComponent],
@@ -2132,11 +2222,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2132
2222
  }] });
2133
2223
 
2134
2224
  class MatchaDividerModule {
2135
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaDividerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2136
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaDividerModule, declarations: [MatchaDividerComponent], imports: [CommonModule], exports: [MatchaDividerComponent] }); }
2137
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaDividerModule, imports: [CommonModule] }); }
2225
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDividerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2226
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaDividerModule, declarations: [MatchaDividerComponent], imports: [CommonModule], exports: [MatchaDividerComponent] }); }
2227
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDividerModule, imports: [CommonModule] }); }
2138
2228
  }
2139
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaDividerModule, decorators: [{
2229
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDividerModule, decorators: [{
2140
2230
  type: NgModule,
2141
2231
  args: [{
2142
2232
  declarations: [
@@ -2150,11 +2240,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2150
2240
  }] });
2151
2241
 
2152
2242
  class MatchaButtonModule {
2153
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2154
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonModule, declarations: [MatchaButtonComponent], exports: [MatchaButtonComponent] }); }
2155
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonModule }); }
2243
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2244
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonModule, declarations: [MatchaButtonComponent], exports: [MatchaButtonComponent] }); }
2245
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonModule }); }
2156
2246
  }
2157
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonModule, decorators: [{
2247
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonModule, decorators: [{
2158
2248
  type: NgModule,
2159
2249
  args: [{
2160
2250
  declarations: [MatchaButtonComponent],
@@ -2164,8 +2254,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2164
2254
  }] });
2165
2255
 
2166
2256
  class MatchaAccordionModule {
2167
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAccordionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2168
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaAccordionModule, declarations: [MatchaAccordionComponent,
2257
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2258
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionModule, declarations: [MatchaAccordionComponent,
2169
2259
  MatchaAccordionItemComponent,
2170
2260
  MatchaAccordionHeaderComponent,
2171
2261
  MatchaAccordionContentComponent], imports: [CommonModule,
@@ -2177,14 +2267,14 @@ class MatchaAccordionModule {
2177
2267
  MatchaAccordionItemComponent,
2178
2268
  MatchaAccordionHeaderComponent,
2179
2269
  MatchaAccordionContentComponent] }); }
2180
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAccordionModule, imports: [CommonModule,
2270
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionModule, imports: [CommonModule,
2181
2271
  MatchaIconModule,
2182
2272
  MatchaTitleModule,
2183
2273
  MatchaDividerModule,
2184
2274
  MatchaTooltipModule,
2185
2275
  MatchaButtonModule] }); }
2186
2276
  }
2187
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAccordionModule, decorators: [{
2277
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionModule, decorators: [{
2188
2278
  type: NgModule,
2189
2279
  args: [{
2190
2280
  declarations: [
@@ -2211,11 +2301,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2211
2301
  }] });
2212
2302
 
2213
2303
  class MatchaInfiniteScrollModule {
2214
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaInfiniteScrollModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2215
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaInfiniteScrollModule, declarations: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent], imports: [CommonModule], exports: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent] }); }
2216
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaInfiniteScrollModule, imports: [CommonModule] }); }
2304
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInfiniteScrollModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2305
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaInfiniteScrollModule, declarations: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent], imports: [CommonModule], exports: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent] }); }
2306
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInfiniteScrollModule, imports: [CommonModule] }); }
2217
2307
  }
2218
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaInfiniteScrollModule, decorators: [{
2308
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInfiniteScrollModule, decorators: [{
2219
2309
  type: NgModule,
2220
2310
  args: [{
2221
2311
  declarations: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent],
@@ -2249,10 +2339,10 @@ class MatchaElevationDirective {
2249
2339
  this._renderer.addClass(this._elementRef.nativeElement, `elevation-z-0`);
2250
2340
  }
2251
2341
  }
2252
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaElevationDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2253
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaElevationDirective, isStandalone: false, selector: "[elevation]", inputs: { elevation: "elevation" }, usesOnChanges: true, ngImport: i0 }); }
2342
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaElevationDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2343
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaElevationDirective, isStandalone: false, selector: "[elevation]", inputs: { elevation: "elevation" }, usesOnChanges: true, ngImport: i0 }); }
2254
2344
  }
2255
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaElevationDirective, decorators: [{
2345
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaElevationDirective, decorators: [{
2256
2346
  type: Directive,
2257
2347
  args: [{
2258
2348
  selector: '[elevation]',
@@ -2264,11 +2354,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2264
2354
  }] } });
2265
2355
 
2266
2356
  class MatchaElevationModule {
2267
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaElevationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2268
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaElevationModule, declarations: [MatchaElevationDirective], imports: [CommonModule], exports: [MatchaElevationDirective] }); }
2269
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaElevationModule, imports: [CommonModule] }); }
2357
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaElevationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2358
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaElevationModule, declarations: [MatchaElevationDirective], imports: [CommonModule], exports: [MatchaElevationDirective] }); }
2359
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaElevationModule, imports: [CommonModule] }); }
2270
2360
  }
2271
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaElevationModule, decorators: [{
2361
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaElevationModule, decorators: [{
2272
2362
  type: NgModule,
2273
2363
  args: [{
2274
2364
  declarations: [MatchaElevationDirective],
@@ -2278,8 +2368,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2278
2368
  }] });
2279
2369
 
2280
2370
  class MatchaModalModule {
2281
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2282
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalModule, declarations: [MatchaModalHeaderComponent,
2371
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2372
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalModule, declarations: [MatchaModalHeaderComponent,
2283
2373
  MatchaModalContentComponent,
2284
2374
  MatchaModalFooterComponent,
2285
2375
  MatchaModalOptionsComponent,
@@ -2293,14 +2383,14 @@ class MatchaModalModule {
2293
2383
  MatchaModalFooterComponent,
2294
2384
  MatchaModalOptionsComponent,
2295
2385
  MatchaModalComponent] }); }
2296
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalModule, imports: [CommonModule,
2386
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalModule, imports: [CommonModule,
2297
2387
  MatchaIconModule,
2298
2388
  MatchaTitleModule,
2299
2389
  MatchaDividerModule,
2300
2390
  MatchaTooltipModule,
2301
2391
  MatchaElevationModule] }); }
2302
2392
  }
2303
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalModule, decorators: [{
2393
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalModule, decorators: [{
2304
2394
  type: NgModule,
2305
2395
  args: [{
2306
2396
  declarations: [
@@ -2329,21 +2419,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2329
2419
  }] });
2330
2420
 
2331
2421
  class MatchaCardModule {
2332
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaCardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2333
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaCardModule, declarations: [MatchaCardComponent], imports: [CommonModule,
2422
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2423
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaCardModule, declarations: [MatchaCardComponent], imports: [CommonModule,
2334
2424
  MatchaElevationModule,
2335
2425
  MatchaIconModule,
2336
2426
  MatchaTitleModule,
2337
2427
  MatchaDividerModule,
2338
2428
  MatchaTooltipModule], exports: [MatchaCardComponent] }); }
2339
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaCardModule, imports: [CommonModule,
2429
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCardModule, imports: [CommonModule,
2340
2430
  MatchaElevationModule,
2341
2431
  MatchaIconModule,
2342
2432
  MatchaTitleModule,
2343
2433
  MatchaDividerModule,
2344
2434
  MatchaTooltipModule] }); }
2345
2435
  }
2346
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaCardModule, decorators: [{
2436
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCardModule, decorators: [{
2347
2437
  type: NgModule,
2348
2438
  args: [{
2349
2439
  declarations: [MatchaCardComponent],
@@ -2360,11 +2450,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2360
2450
  }] });
2361
2451
 
2362
2452
  class MatchaMasonryModule {
2363
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaMasonryModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2364
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaMasonryModule, declarations: [MatchaMasonryComponent], imports: [CommonModule], exports: [MatchaMasonryComponent] }); }
2365
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaMasonryModule, imports: [CommonModule] }); }
2453
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMasonryModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2454
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaMasonryModule, declarations: [MatchaMasonryComponent], imports: [CommonModule], exports: [MatchaMasonryComponent] }); }
2455
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMasonryModule, imports: [CommonModule] }); }
2366
2456
  }
2367
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaMasonryModule, decorators: [{
2457
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMasonryModule, decorators: [{
2368
2458
  type: NgModule,
2369
2459
  args: [{
2370
2460
  declarations: [MatchaMasonryComponent],
@@ -2373,9 +2463,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2373
2463
  }]
2374
2464
  }] });
2375
2465
 
2466
+ class MatchaButtonToggleModule {
2467
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2468
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleModule, declarations: [MatchaButtonToggleComponent], imports: [CommonModule,
2469
+ MatchaTooltipModule], exports: [MatchaButtonToggleComponent] }); }
2470
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleModule, imports: [CommonModule,
2471
+ MatchaTooltipModule] }); }
2472
+ }
2473
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleModule, decorators: [{
2474
+ type: NgModule,
2475
+ args: [{
2476
+ declarations: [MatchaButtonToggleComponent],
2477
+ imports: [
2478
+ CommonModule,
2479
+ MatchaTooltipModule
2480
+ ],
2481
+ exports: [MatchaButtonToggleComponent]
2482
+ }]
2483
+ }] });
2484
+
2376
2485
  class MatchaToolbarModule {
2377
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaToolbarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2378
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaToolbarModule, declarations: [MatchaToolbarComponent,
2486
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2487
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarModule, declarations: [MatchaToolbarComponent,
2379
2488
  MatchaToolbarButtonComponent,
2380
2489
  MatchaToolbarContentComponent,
2381
2490
  MatchaToolbarMainButtonComponent], imports: [CommonModule,
@@ -2386,12 +2495,12 @@ class MatchaToolbarModule {
2386
2495
  MatchaToolbarContentComponent,
2387
2496
  MatchaToolbarMainButtonComponent,
2388
2497
  MatchaTitleModule] }); }
2389
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaToolbarModule, imports: [CommonModule,
2498
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarModule, imports: [CommonModule,
2390
2499
  MatchaButtonModule,
2391
2500
  MatchaTitleModule,
2392
2501
  MatchaTooltipModule, MatchaTitleModule] }); }
2393
2502
  }
2394
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaToolbarModule, decorators: [{
2503
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarModule, decorators: [{
2395
2504
  type: NgModule,
2396
2505
  args: [{
2397
2506
  declarations: [
@@ -2417,11 +2526,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2417
2526
  }] });
2418
2527
 
2419
2528
  class MatchaGridModule {
2420
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaGridModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2421
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaGridModule, declarations: [MatchaGridComponent], imports: [CommonModule], exports: [MatchaGridComponent] }); }
2422
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaGridModule, imports: [CommonModule] }); }
2529
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaGridModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2530
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaGridModule, declarations: [MatchaGridComponent], imports: [CommonModule], exports: [MatchaGridComponent] }); }
2531
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaGridModule, imports: [CommonModule] }); }
2423
2532
  }
2424
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaGridModule, decorators: [{
2533
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaGridModule, decorators: [{
2425
2534
  type: NgModule,
2426
2535
  args: [{
2427
2536
  declarations: [MatchaGridComponent],
@@ -2431,11 +2540,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2431
2540
  }] });
2432
2541
 
2433
2542
  class MatchaFormFieldModule {
2434
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaFormFieldModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2435
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaFormFieldModule, declarations: [MatchaFormFieldComponent, MatchaLabelComponent, MatchaErrorComponent], imports: [CommonModule, MatchaIconModule], exports: [MatchaFormFieldComponent, MatchaLabelComponent, MatchaErrorComponent] }); }
2436
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaFormFieldModule, imports: [CommonModule, MatchaIconModule] }); }
2543
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaFormFieldModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2544
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaFormFieldModule, declarations: [MatchaFormFieldComponent, MatchaLabelComponent, MatchaErrorComponent], imports: [CommonModule, MatchaIconModule], exports: [MatchaFormFieldComponent, MatchaLabelComponent, MatchaErrorComponent] }); }
2545
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaFormFieldModule, imports: [CommonModule, MatchaIconModule] }); }
2437
2546
  }
2438
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaFormFieldModule, decorators: [{
2547
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaFormFieldModule, decorators: [{
2439
2548
  type: NgModule,
2440
2549
  args: [{
2441
2550
  declarations: [MatchaFormFieldComponent, MatchaLabelComponent, MatchaErrorComponent],
@@ -2450,10 +2559,10 @@ class MatchaAutocompleteDirective {
2450
2559
  this._renderer = _renderer;
2451
2560
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-autocomplete');
2452
2561
  }
2453
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAutocompleteDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2454
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaAutocompleteDirective, isStandalone: false, selector: "[matcha-autocomplete]", ngImport: i0 }); }
2562
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAutocompleteDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2563
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaAutocompleteDirective, isStandalone: false, selector: "[matcha-autocomplete]", ngImport: i0 }); }
2455
2564
  }
2456
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAutocompleteDirective, decorators: [{
2565
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAutocompleteDirective, decorators: [{
2457
2566
  type: Directive,
2458
2567
  args: [{
2459
2568
  selector: '[matcha-autocomplete]',
@@ -2468,10 +2577,10 @@ class MatchaAutocompleteOverviewDirective {
2468
2577
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
2469
2578
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-autocomplete-overview');
2470
2579
  }
2471
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAutocompleteOverviewDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2472
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaAutocompleteOverviewDirective, isStandalone: false, selector: "[matcha-autocomplete-overview]", ngImport: i0 }); }
2580
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAutocompleteOverviewDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2581
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaAutocompleteOverviewDirective, isStandalone: false, selector: "[matcha-autocomplete-overview]", ngImport: i0 }); }
2473
2582
  }
2474
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAutocompleteOverviewDirective, decorators: [{
2583
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAutocompleteOverviewDirective, decorators: [{
2475
2584
  type: Directive,
2476
2585
  args: [{
2477
2586
  selector: '[matcha-autocomplete-overview]',
@@ -2480,12 +2589,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2480
2589
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
2481
2590
 
2482
2591
  class MatchaAutocompleteModule {
2483
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAutocompleteModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2484
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaAutocompleteModule, declarations: [MatchaAutocompleteDirective,
2592
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAutocompleteModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2593
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaAutocompleteModule, declarations: [MatchaAutocompleteDirective,
2485
2594
  MatchaAutocompleteOverviewDirective], exports: [MatchaAutocompleteDirective, MatchaAutocompleteOverviewDirective] }); }
2486
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAutocompleteModule }); }
2595
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAutocompleteModule }); }
2487
2596
  }
2488
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAutocompleteModule, decorators: [{
2597
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAutocompleteModule, decorators: [{
2489
2598
  type: NgModule,
2490
2599
  args: [{
2491
2600
  declarations: [
@@ -2504,10 +2613,10 @@ class MatchaBadgeDirective {
2504
2613
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
2505
2614
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-badge');
2506
2615
  }
2507
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaBadgeDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2508
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaBadgeDirective, isStandalone: false, selector: "[matcha-badge]", ngImport: i0 }); }
2616
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaBadgeDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2617
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaBadgeDirective, isStandalone: false, selector: "[matcha-badge]", ngImport: i0 }); }
2509
2618
  }
2510
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaBadgeDirective, decorators: [{
2619
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaBadgeDirective, decorators: [{
2511
2620
  type: Directive,
2512
2621
  args: [{
2513
2622
  selector: '[matcha-badge]',
@@ -2516,11 +2625,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2516
2625
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
2517
2626
 
2518
2627
  class MatchaBadgeModule {
2519
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaBadgeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2520
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaBadgeModule, declarations: [MatchaBadgeDirective], exports: [MatchaBadgeDirective] }); }
2521
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaBadgeModule }); }
2628
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaBadgeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2629
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaBadgeModule, declarations: [MatchaBadgeDirective], exports: [MatchaBadgeDirective] }); }
2630
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaBadgeModule }); }
2522
2631
  }
2523
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaBadgeModule, decorators: [{
2632
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaBadgeModule, decorators: [{
2524
2633
  type: NgModule,
2525
2634
  args: [{
2526
2635
  declarations: [MatchaBadgeDirective],
@@ -2529,111 +2638,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2529
2638
  }]
2530
2639
  }] });
2531
2640
 
2532
- class MatchaTabsDirective {
2533
- constructor(_elementRef, _renderer) {
2534
- this._elementRef = _elementRef;
2535
- this._renderer = _renderer;
2536
- //this._elementRef.nativeElement.style.backgroundColor = 'grey';
2537
- this._renderer.addClass(this._elementRef.nativeElement, 'matcha-tabs');
2538
- }
2539
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTabsDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2540
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaTabsDirective, isStandalone: false, selector: "[matchaTabs]", ngImport: i0 }); }
2541
- }
2542
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTabsDirective, decorators: [{
2543
- type: Directive,
2544
- args: [{
2545
- selector: '[matchaTabs]',
2546
- standalone: false
2547
- }]
2548
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
2549
-
2550
- class MatchaTabsModule {
2551
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTabsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2552
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaTabsModule, declarations: [MatchaTabsDirective], imports: [CommonModule], exports: [MatchaTabsDirective] }); }
2553
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTabsModule, imports: [CommonModule] }); }
2554
- }
2555
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTabsModule, decorators: [{
2556
- type: NgModule,
2557
- args: [{
2558
- declarations: [MatchaTabsDirective],
2559
- imports: [CommonModule],
2560
- exports: [MatchaTabsDirective],
2561
- }]
2562
- }] });
2563
-
2564
- class MatchaBottomSheetDirective {
2565
- constructor(_elementRef, _renderer) {
2566
- this._elementRef = _elementRef;
2567
- this._renderer = _renderer;
2568
- //this._elementRef.nativeElement.style.backgroundColor = 'grey';
2569
- this._renderer.addClass(this._elementRef.nativeElement, 'matcha-bottom-sheet');
2570
- }
2571
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaBottomSheetDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2572
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaBottomSheetDirective, isStandalone: false, selector: "[matcha-bottom-sheet]", ngImport: i0 }); }
2573
- }
2574
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaBottomSheetDirective, decorators: [{
2575
- type: Directive,
2576
- args: [{
2577
- selector: '[matcha-bottom-sheet]',
2578
- standalone: false
2579
- }]
2580
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
2581
-
2582
- class MatchaBottomSheetModule {
2583
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaBottomSheetModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2584
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaBottomSheetModule, declarations: [MatchaBottomSheetDirective], exports: [MatchaBottomSheetDirective] }); }
2585
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaBottomSheetModule }); }
2586
- }
2587
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaBottomSheetModule, decorators: [{
2588
- type: NgModule,
2589
- args: [{
2590
- declarations: [MatchaBottomSheetDirective],
2591
- imports: [],
2592
- exports: [MatchaBottomSheetDirective],
2593
- }]
2594
- }] });
2595
-
2596
- class MatchaButtonToggleDirective {
2597
- constructor(_elementRef, _renderer) {
2598
- this._elementRef = _elementRef;
2599
- this._renderer = _renderer;
2600
- this._renderer.addClass(this._elementRef.nativeElement, 'matcha-button-toggle');
2601
- }
2602
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonToggleDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2603
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaButtonToggleDirective, isStandalone: false, selector: "[matcha-button-toggle]", ngImport: i0 }); }
2604
- }
2605
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonToggleDirective, decorators: [{
2606
- type: Directive,
2607
- args: [{
2608
- selector: '[matcha-button-toggle]',
2609
- standalone: false
2610
- }]
2611
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
2612
-
2613
- class MatchaButtonToggleModule {
2614
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2615
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonToggleModule, declarations: [MatchaButtonToggleDirective], exports: [MatchaButtonToggleDirective] }); }
2616
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonToggleModule }); }
2617
- }
2618
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonToggleModule, decorators: [{
2619
- type: NgModule,
2620
- args: [{
2621
- declarations: [
2622
- MatchaButtonToggleDirective
2623
- ],
2624
- imports: [],
2625
- exports: [
2626
- MatchaButtonToggleDirective
2627
- ]
2628
- }]
2629
- }] });
2630
-
2631
2641
  class MatchaRippleModule {
2632
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaRippleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2633
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaRippleModule, declarations: [MatchaRippleDirective], imports: [CommonModule], exports: [MatchaRippleDirective] }); }
2634
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaRippleModule, imports: [CommonModule] }); }
2642
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRippleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2643
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaRippleModule, declarations: [MatchaRippleDirective], imports: [CommonModule], exports: [MatchaRippleDirective] }); }
2644
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRippleModule, imports: [CommonModule] }); }
2635
2645
  }
2636
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaRippleModule, decorators: [{
2646
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRippleModule, decorators: [{
2637
2647
  type: NgModule,
2638
2648
  args: [{
2639
2649
  declarations: [
@@ -2649,11 +2659,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2649
2659
  }] });
2650
2660
 
2651
2661
  class MatchaCheckboxModule {
2652
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaCheckboxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2653
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaCheckboxModule, declarations: [MatchaCheckboxComponent], imports: [CommonModule, MatchaRippleModule], exports: [MatchaCheckboxComponent] }); }
2654
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaCheckboxModule, imports: [CommonModule, MatchaRippleModule] }); }
2662
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCheckboxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2663
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaCheckboxModule, declarations: [MatchaCheckboxComponent], imports: [CommonModule, MatchaRippleModule], exports: [MatchaCheckboxComponent] }); }
2664
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCheckboxModule, imports: [CommonModule, MatchaRippleModule] }); }
2655
2665
  }
2656
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaCheckboxModule, decorators: [{
2666
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCheckboxModule, decorators: [{
2657
2667
  type: NgModule,
2658
2668
  args: [{
2659
2669
  declarations: [
@@ -2673,10 +2683,10 @@ class MatchaChipsDirective {
2673
2683
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
2674
2684
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-chips');
2675
2685
  }
2676
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaChipsDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2677
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaChipsDirective, isStandalone: false, selector: "[matchaChips]", ngImport: i0 }); }
2686
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaChipsDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2687
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaChipsDirective, isStandalone: false, selector: "[matchaChips]", ngImport: i0 }); }
2678
2688
  }
2679
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaChipsDirective, decorators: [{
2689
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaChipsDirective, decorators: [{
2680
2690
  type: Directive,
2681
2691
  args: [{
2682
2692
  selector: '[matchaChips]',
@@ -2685,11 +2695,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2685
2695
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
2686
2696
 
2687
2697
  class MatchaChipsModule {
2688
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaChipsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2689
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaChipsModule, declarations: [MatchaChipsDirective], exports: [MatchaChipsDirective] }); }
2690
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaChipsModule }); }
2698
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaChipsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2699
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaChipsModule, declarations: [MatchaChipsDirective], exports: [MatchaChipsDirective] }); }
2700
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaChipsModule }); }
2691
2701
  }
2692
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaChipsModule, decorators: [{
2702
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaChipsModule, decorators: [{
2693
2703
  type: NgModule,
2694
2704
  args: [{
2695
2705
  declarations: [MatchaChipsDirective],
@@ -2707,10 +2717,10 @@ class MatchaDatepickerDirective {
2707
2717
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
2708
2718
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-datepicker');
2709
2719
  }
2710
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaDatepickerDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2711
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaDatepickerDirective, isStandalone: false, selector: "[matcha-datepicker]", ngImport: i0 }); }
2720
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDatepickerDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2721
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaDatepickerDirective, isStandalone: false, selector: "[matcha-datepicker]", ngImport: i0 }); }
2712
2722
  }
2713
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaDatepickerDirective, decorators: [{
2723
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDatepickerDirective, decorators: [{
2714
2724
  type: Directive,
2715
2725
  args: [{
2716
2726
  selector: '[matcha-datepicker]',
@@ -2719,11 +2729,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2719
2729
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
2720
2730
 
2721
2731
  class MatchaDatepickerModule {
2722
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaDatepickerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2723
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaDatepickerModule, declarations: [MatchaDatepickerDirective], exports: [MatchaDatepickerDirective] }); }
2724
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaDatepickerModule }); }
2732
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDatepickerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2733
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaDatepickerModule, declarations: [MatchaDatepickerDirective], exports: [MatchaDatepickerDirective] }); }
2734
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDatepickerModule }); }
2725
2735
  }
2726
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaDatepickerModule, decorators: [{
2736
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDatepickerModule, decorators: [{
2727
2737
  type: NgModule,
2728
2738
  args: [{
2729
2739
  declarations: [MatchaDatepickerDirective],
@@ -2732,67 +2742,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2732
2742
  }]
2733
2743
  }] });
2734
2744
 
2735
- class MatchaExpansionDirective {
2736
- constructor(_elementRef, _renderer) {
2737
- this._elementRef = _elementRef;
2738
- this._renderer = _renderer;
2739
- //this._elementRef.nativeElement.style.backgroundColor = 'grey';
2740
- this._renderer.addClass(this._elementRef.nativeElement, 'matcha-expansion-panel');
2741
- }
2742
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaExpansionDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2743
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaExpansionDirective, isStandalone: false, selector: "[matchaExpansion]", ngImport: i0 }); }
2744
- }
2745
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaExpansionDirective, decorators: [{
2746
- type: Directive,
2747
- args: [{
2748
- selector: '[matchaExpansion]',
2749
- standalone: false
2750
- }]
2751
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
2752
-
2753
- class MatchaExpansionModule {
2754
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaExpansionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2755
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaExpansionModule, declarations: [MatchaExpansionDirective], imports: [CommonModule], exports: [MatchaExpansionDirective] }); }
2756
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaExpansionModule, imports: [CommonModule] }); }
2757
- }
2758
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaExpansionModule, decorators: [{
2759
- type: NgModule,
2760
- args: [{
2761
- declarations: [MatchaExpansionDirective],
2762
- imports: [CommonModule],
2763
- exports: [MatchaExpansionDirective],
2764
- }]
2765
- }] });
2766
-
2767
- class MatchaFormFieldDirective {
2768
- constructor(_elementRef, _renderer) {
2769
- this._elementRef = _elementRef;
2770
- this._renderer = _renderer;
2771
- //this._elementRef.nativeElement.style.backgroundColor = 'grey';
2772
- this._renderer.addClass(this._elementRef.nativeElement, 'matcha-form-field');
2773
- }
2774
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaFormFieldDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2775
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaFormFieldDirective, isStandalone: false, selector: "[matchaFormField]", ngImport: i0 }); }
2776
- }
2777
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaFormFieldDirective, decorators: [{
2778
- type: Directive,
2779
- args: [{
2780
- selector: '[matchaFormField]',
2781
- standalone: false
2782
- }]
2783
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
2784
-
2785
- class MatchaFormsModule {
2786
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaFormsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2787
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaFormsModule, declarations: [MatchaFormFieldDirective], imports: [CommonModule], exports: [MatchaFormFieldDirective] }); }
2788
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaFormsModule, imports: [CommonModule] }); }
2745
+ class MatchaHintTextModule {
2746
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaHintTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2747
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaHintTextModule, declarations: [MatchaHintTextComponent], imports: [CommonModule,
2748
+ MatchaIconModule], exports: [MatchaHintTextComponent] }); }
2749
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaHintTextModule, imports: [CommonModule,
2750
+ MatchaIconModule] }); }
2789
2751
  }
2790
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaFormsModule, decorators: [{
2752
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaHintTextModule, decorators: [{
2791
2753
  type: NgModule,
2792
2754
  args: [{
2793
- declarations: [MatchaFormFieldDirective],
2794
- imports: [CommonModule],
2795
- exports: [MatchaFormFieldDirective],
2755
+ declarations: [MatchaHintTextComponent],
2756
+ imports: [
2757
+ CommonModule,
2758
+ MatchaIconModule,
2759
+ ],
2760
+ exports: [MatchaHintTextComponent],
2796
2761
  }]
2797
2762
  }] });
2798
2763
 
@@ -2803,10 +2768,10 @@ class MatchaInputDirective {
2803
2768
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
2804
2769
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-input');
2805
2770
  }
2806
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaInputDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2807
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaInputDirective, isStandalone: false, selector: "[matcha-input]", ngImport: i0 }); }
2771
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInputDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2772
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaInputDirective, isStandalone: false, selector: "[matcha-input]", ngImport: i0 }); }
2808
2773
  }
2809
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaInputDirective, decorators: [{
2774
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInputDirective, decorators: [{
2810
2775
  type: Directive,
2811
2776
  args: [{
2812
2777
  selector: '[matcha-input]',
@@ -2815,11 +2780,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2815
2780
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
2816
2781
 
2817
2782
  class MatchaInputModule {
2818
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaInputModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2819
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaInputModule, declarations: [MatchaInputDirective], exports: [MatchaInputDirective] }); }
2820
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaInputModule }); }
2783
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInputModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2784
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaInputModule, declarations: [MatchaInputDirective], exports: [MatchaInputDirective] }); }
2785
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInputModule }); }
2821
2786
  }
2822
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaInputModule, decorators: [{
2787
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInputModule, decorators: [{
2823
2788
  type: NgModule,
2824
2789
  args: [{
2825
2790
  declarations: [MatchaInputDirective],
@@ -2828,38 +2793,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2828
2793
  }]
2829
2794
  }] });
2830
2795
 
2831
- class MatchaListDirective {
2832
- constructor(_elementRef, _renderer) {
2833
- this._elementRef = _elementRef;
2834
- this._renderer = _renderer;
2835
- //this._elementRef.nativeElement.style.backgroundColor = 'grey';
2836
- this._renderer.addClass(this._elementRef.nativeElement, 'matcha-list');
2837
- }
2838
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaListDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2839
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaListDirective, isStandalone: false, selector: "[matchaList]", ngImport: i0 }); }
2840
- }
2841
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaListDirective, decorators: [{
2842
- type: Directive,
2843
- args: [{
2844
- selector: '[matchaList]',
2845
- standalone: false
2846
- }]
2847
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
2848
-
2849
- class MatchaListModule {
2850
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2851
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaListModule, declarations: [MatchaListDirective], imports: [CommonModule], exports: [MatchaListDirective] }); }
2852
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaListModule, imports: [CommonModule] }); }
2853
- }
2854
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaListModule, decorators: [{
2855
- type: NgModule,
2856
- args: [{
2857
- declarations: [MatchaListDirective],
2858
- imports: [CommonModule],
2859
- exports: [MatchaListDirective],
2860
- }]
2861
- }] });
2862
-
2863
2796
  class MatchaMenuTriggerForDirective {
2864
2797
  constructor(_elementRef, _renderer) {
2865
2798
  this._elementRef = _elementRef;
@@ -2881,10 +2814,10 @@ class MatchaMenuTriggerForDirective {
2881
2814
  this.menu.closeMenu();
2882
2815
  }
2883
2816
  }
2884
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaMenuTriggerForDirective, deps: [{ token: ElementRef }, { token: Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2885
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaMenuTriggerForDirective, isStandalone: false, selector: "[matchaMenuTriggerFor]", inputs: { menu: ["matchaMenuTriggerFor", "menu"] }, host: { listeners: { "click": "onClick($event)", "mouseenter": "onMouseEnter()", "mouseleave": "onMouseLeave()" } }, exportAs: ["matchaMenuTriggerFor"], ngImport: i0 }); }
2817
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMenuTriggerForDirective, deps: [{ token: ElementRef }, { token: Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2818
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaMenuTriggerForDirective, isStandalone: false, selector: "[matchaMenuTriggerFor]", inputs: { menu: ["matchaMenuTriggerFor", "menu"] }, host: { listeners: { "click": "onClick($event)", "mouseenter": "onMouseEnter()", "mouseleave": "onMouseLeave()" } }, exportAs: ["matchaMenuTriggerFor"], ngImport: i0 }); }
2886
2819
  }
2887
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaMenuTriggerForDirective, decorators: [{
2820
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMenuTriggerForDirective, decorators: [{
2888
2821
  type: Directive,
2889
2822
  args: [{
2890
2823
  selector: '[matchaMenuTriggerFor]',
@@ -2912,13 +2845,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2912
2845
  }] } });
2913
2846
 
2914
2847
  class MatchaMenuModule {
2915
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2916
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaMenuModule, declarations: [MatchaMenuComponent,
2848
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2849
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaMenuModule, declarations: [MatchaMenuComponent,
2917
2850
  MatchaMenuTriggerForDirective], imports: [CommonModule], exports: [MatchaMenuComponent,
2918
2851
  MatchaMenuTriggerForDirective] }); }
2919
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaMenuModule, imports: [CommonModule] }); }
2852
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMenuModule, imports: [CommonModule] }); }
2920
2853
  }
2921
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaMenuModule, decorators: [{
2854
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMenuModule, decorators: [{
2922
2855
  type: NgModule,
2923
2856
  args: [{
2924
2857
  declarations: [
@@ -2935,37 +2868,57 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2935
2868
  }]
2936
2869
  }] });
2937
2870
 
2938
- class MatchaSidenavDirective {
2939
- constructor(_elementRef, _renderer) {
2940
- this._elementRef = _elementRef;
2941
- this._renderer = _renderer;
2942
- //this._elementRef.nativeElement.style.backgroundColor = 'grey';
2943
- this._renderer.addClass(this._elementRef.nativeElement, 'matcha-sidenav');
2871
+ class MatchaOverflowDraggableComponent {
2872
+ constructor() {
2873
+ this.dragRef = '';
2944
2874
  }
2945
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSidenavDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2946
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaSidenavDirective, isStandalone: false, selector: "[matcha-sidenav]", ngImport: i0 }); }
2947
- }
2948
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSidenavDirective, decorators: [{
2949
- type: Directive,
2950
- args: [{
2951
- selector: '[matcha-sidenav]',
2952
- standalone: false
2953
- }]
2954
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
2955
-
2956
- class MatchaSidenavModule {
2957
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSidenavModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2958
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaSidenavModule, declarations: [MatchaSidenavDirective], imports: [CommonModule], exports: [MatchaSidenavDirective] }); }
2959
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSidenavModule, imports: [CommonModule] }); }
2875
+ dragToScroll() {
2876
+ const ele = document.querySelector(`matchaDraggableReference${this.dragRef}`);
2877
+ if (ele) {
2878
+ let pos = { top: 0, left: 0, x: 0, y: 0 };
2879
+ const mouseDownHandler = function (e) {
2880
+ pos = {
2881
+ // The current scroll
2882
+ left: ele.scrollLeft,
2883
+ top: ele.scrollTop,
2884
+ // Get the current mouse position
2885
+ x: e.clientX,
2886
+ y: e.clientY,
2887
+ };
2888
+ ele.setAttribute('style', 'cursor: grabbing; user-select: none');
2889
+ document.addEventListener('mousemove', mouseMoveHandler);
2890
+ document.addEventListener('mouseup', mouseUpHandler);
2891
+ };
2892
+ const mouseMoveHandler = function (e) {
2893
+ // How far the mouse has been moved
2894
+ const dx = e.clientX - pos.x;
2895
+ const dy = e.clientY - pos.y;
2896
+ // Scroll the element
2897
+ ele.scrollTop = pos.top - dy;
2898
+ ele.scrollLeft = pos.left - dx;
2899
+ };
2900
+ const mouseUpHandler = function () {
2901
+ document.removeEventListener('mousemove', mouseMoveHandler);
2902
+ document.removeEventListener('mouseup', mouseUpHandler);
2903
+ ele.setAttribute('style', 'cursor: grab; user-select: initial');
2904
+ };
2905
+ ele.addEventListener('mousedown', mouseDownHandler);
2906
+ }
2907
+ }
2908
+ get classes() {
2909
+ const draggableReference = this.dragRef ? `matchaDraggableReference${this.dragRef}` : '';
2910
+ const activeClasses = `${draggableReference}`;
2911
+ return activeClasses;
2912
+ }
2913
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaOverflowDraggableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2914
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaOverflowDraggableComponent, isStandalone: false, selector: "matcha-overflow-draggable", inputs: { dragRef: "dragRef" }, ngImport: i0, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
2960
2915
  }
2961
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSidenavModule, decorators: [{
2962
- type: NgModule,
2963
- args: [{
2964
- declarations: [MatchaSidenavDirective],
2965
- imports: [CommonModule],
2966
- exports: [MatchaSidenavDirective],
2967
- }]
2968
- }] });
2916
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaOverflowDraggableComponent, decorators: [{
2917
+ type: Component,
2918
+ args: [{ selector: 'matcha-overflow-draggable', standalone: false, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n" }]
2919
+ }], propDecorators: { dragRef: [{
2920
+ type: Input
2921
+ }] } });
2969
2922
 
2970
2923
  class MatchaPaginatorDirective {
2971
2924
  constructor(_elementRef, _renderer) {
@@ -2974,10 +2927,10 @@ class MatchaPaginatorDirective {
2974
2927
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
2975
2928
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-paginator');
2976
2929
  }
2977
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaPaginatorDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2978
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaPaginatorDirective, isStandalone: false, selector: "[matchaPaginator]", ngImport: i0 }); }
2930
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaPaginatorDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2931
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaPaginatorDirective, isStandalone: false, selector: "[matchaPaginator]", ngImport: i0 }); }
2979
2932
  }
2980
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaPaginatorDirective, decorators: [{
2933
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaPaginatorDirective, decorators: [{
2981
2934
  type: Directive,
2982
2935
  args: [{
2983
2936
  selector: '[matchaPaginator]',
@@ -2986,11 +2939,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2986
2939
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
2987
2940
 
2988
2941
  class MatchaPaginatorModule {
2989
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaPaginatorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2990
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaPaginatorModule, declarations: [MatchaPaginatorDirective], imports: [CommonModule], exports: [MatchaPaginatorDirective] }); }
2991
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaPaginatorModule, imports: [CommonModule] }); }
2942
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaPaginatorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2943
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaPaginatorModule, declarations: [MatchaPaginatorDirective], imports: [CommonModule], exports: [MatchaPaginatorDirective] }); }
2944
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaPaginatorModule, imports: [CommonModule] }); }
2992
2945
  }
2993
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaPaginatorModule, decorators: [{
2946
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaPaginatorModule, decorators: [{
2994
2947
  type: NgModule,
2995
2948
  args: [{
2996
2949
  declarations: [MatchaPaginatorDirective],
@@ -3006,10 +2959,10 @@ class MatchaProgressBarDirective {
3006
2959
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
3007
2960
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-progress-bar');
3008
2961
  }
3009
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaProgressBarDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
3010
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaProgressBarDirective, isStandalone: false, selector: "[matcha-progress-bar]", ngImport: i0 }); }
2962
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaProgressBarDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2963
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaProgressBarDirective, isStandalone: false, selector: "[matcha-progress-bar]", ngImport: i0 }); }
3011
2964
  }
3012
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaProgressBarDirective, decorators: [{
2965
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaProgressBarDirective, decorators: [{
3013
2966
  type: Directive,
3014
2967
  args: [{
3015
2968
  selector: '[matcha-progress-bar]',
@@ -3018,11 +2971,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3018
2971
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
3019
2972
 
3020
2973
  class MatchaProgressBarModule {
3021
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaProgressBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3022
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaProgressBarModule, declarations: [MatchaProgressBarDirective], imports: [CommonModule], exports: [MatchaProgressBarDirective] }); }
3023
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaProgressBarModule, imports: [CommonModule] }); }
2974
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaProgressBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2975
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaProgressBarModule, declarations: [MatchaProgressBarDirective], imports: [CommonModule], exports: [MatchaProgressBarDirective] }); }
2976
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaProgressBarModule, imports: [CommonModule] }); }
3024
2977
  }
3025
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaProgressBarModule, decorators: [{
2978
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaProgressBarModule, decorators: [{
3026
2979
  type: NgModule,
3027
2980
  args: [{
3028
2981
  declarations: [MatchaProgressBarDirective],
@@ -3042,10 +2995,10 @@ class MatchaRadioButtonDirective {
3042
2995
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
3043
2996
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-radio-button');
3044
2997
  }
3045
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaRadioButtonDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
3046
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaRadioButtonDirective, isStandalone: false, selector: "[matchaRadioButton]", ngImport: i0 }); }
2998
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRadioButtonDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2999
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaRadioButtonDirective, isStandalone: false, selector: "[matchaRadioButton]", ngImport: i0 }); }
3047
3000
  }
3048
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaRadioButtonDirective, decorators: [{
3001
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRadioButtonDirective, decorators: [{
3049
3002
  type: Directive,
3050
3003
  args: [{
3051
3004
  selector: '[matchaRadioButton]',
@@ -3053,51 +3006,83 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3053
3006
  }]
3054
3007
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
3055
3008
 
3056
- class MatchaRadioButtonModule {
3057
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaRadioButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3058
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaRadioButtonModule, declarations: [MatchaRadioButtonDirective], imports: [CommonModule], exports: [MatchaRadioButtonDirective] }); }
3059
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaRadioButtonModule, imports: [CommonModule] }); }
3009
+ class MatchaRadioButtonModule {
3010
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRadioButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3011
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaRadioButtonModule, declarations: [MatchaRadioButtonDirective], imports: [CommonModule], exports: [MatchaRadioButtonDirective] }); }
3012
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRadioButtonModule, imports: [CommonModule] }); }
3013
+ }
3014
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRadioButtonModule, decorators: [{
3015
+ type: NgModule,
3016
+ args: [{
3017
+ declarations: [MatchaRadioButtonDirective],
3018
+ imports: [
3019
+ CommonModule
3020
+ ],
3021
+ exports: [MatchaRadioButtonDirective]
3022
+ }]
3023
+ }] });
3024
+
3025
+ class MatchaSelectDirective {
3026
+ constructor(_elementRef, _renderer) {
3027
+ this._elementRef = _elementRef;
3028
+ this._renderer = _renderer;
3029
+ //this._elementRef.nativeElement.style.backgroundColor = 'grey';
3030
+ this._renderer.addClass(this._elementRef.nativeElement, 'matcha-select');
3031
+ }
3032
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSelectDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
3033
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaSelectDirective, isStandalone: false, selector: "[matcha-select]", ngImport: i0 }); }
3034
+ }
3035
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSelectDirective, decorators: [{
3036
+ type: Directive,
3037
+ args: [{
3038
+ selector: '[matcha-select]',
3039
+ standalone: false
3040
+ }]
3041
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
3042
+
3043
+ class MatchaSelectModule {
3044
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSelectModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3045
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaSelectModule, declarations: [MatchaSelectDirective], imports: [CommonModule], exports: [MatchaSelectDirective] }); }
3046
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSelectModule, imports: [CommonModule] }); }
3060
3047
  }
3061
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaRadioButtonModule, decorators: [{
3048
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSelectModule, decorators: [{
3062
3049
  type: NgModule,
3063
3050
  args: [{
3064
- declarations: [MatchaRadioButtonDirective],
3065
- imports: [
3066
- CommonModule
3067
- ],
3068
- exports: [MatchaRadioButtonDirective]
3051
+ declarations: [MatchaSelectDirective],
3052
+ imports: [CommonModule],
3053
+ exports: [MatchaSelectDirective],
3069
3054
  }]
3070
3055
  }] });
3071
3056
 
3072
- class MatchaSelectDirective {
3057
+ class MatchaSidenavDirective {
3073
3058
  constructor(_elementRef, _renderer) {
3074
3059
  this._elementRef = _elementRef;
3075
3060
  this._renderer = _renderer;
3076
3061
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
3077
- this._renderer.addClass(this._elementRef.nativeElement, 'matcha-select');
3062
+ this._renderer.addClass(this._elementRef.nativeElement, 'matcha-sidenav');
3078
3063
  }
3079
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSelectDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
3080
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaSelectDirective, isStandalone: false, selector: "[matcha-select]", ngImport: i0 }); }
3064
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSidenavDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
3065
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaSidenavDirective, isStandalone: false, selector: "[matcha-sidenav]", ngImport: i0 }); }
3081
3066
  }
3082
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSelectDirective, decorators: [{
3067
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSidenavDirective, decorators: [{
3083
3068
  type: Directive,
3084
3069
  args: [{
3085
- selector: '[matcha-select]',
3070
+ selector: '[matcha-sidenav]',
3086
3071
  standalone: false
3087
3072
  }]
3088
3073
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
3089
3074
 
3090
- class MatchaSelectModule {
3091
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSelectModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3092
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaSelectModule, declarations: [MatchaSelectDirective], imports: [CommonModule], exports: [MatchaSelectDirective] }); }
3093
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSelectModule, imports: [CommonModule] }); }
3075
+ class MatchaSidenavModule {
3076
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSidenavModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3077
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaSidenavModule, declarations: [MatchaSidenavDirective], imports: [CommonModule], exports: [MatchaSidenavDirective] }); }
3078
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSidenavModule, imports: [CommonModule] }); }
3094
3079
  }
3095
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSelectModule, decorators: [{
3080
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSidenavModule, decorators: [{
3096
3081
  type: NgModule,
3097
3082
  args: [{
3098
- declarations: [MatchaSelectDirective],
3083
+ declarations: [MatchaSidenavDirective],
3099
3084
  imports: [CommonModule],
3100
- exports: [MatchaSelectDirective],
3085
+ exports: [MatchaSidenavDirective],
3101
3086
  }]
3102
3087
  }] });
3103
3088
 
@@ -3108,10 +3093,10 @@ class MatchaSlideToggleDirective {
3108
3093
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
3109
3094
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-slide-toggle');
3110
3095
  }
3111
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSlideToggleDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
3112
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaSlideToggleDirective, isStandalone: false, selector: "[slide-toggle]", ngImport: i0 }); }
3096
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSlideToggleDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
3097
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaSlideToggleDirective, isStandalone: false, selector: "[slide-toggle]", ngImport: i0 }); }
3113
3098
  }
3114
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSlideToggleDirective, decorators: [{
3099
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSlideToggleDirective, decorators: [{
3115
3100
  type: Directive,
3116
3101
  args: [{
3117
3102
  selector: '[slide-toggle]',
@@ -3120,11 +3105,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3120
3105
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
3121
3106
 
3122
3107
  class MatchaSlideToggleModule {
3123
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSlideToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3124
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaSlideToggleModule, declarations: [MatchaSlideToggleDirective], imports: [CommonModule], exports: [MatchaSlideToggleDirective] }); }
3125
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSlideToggleModule, imports: [CommonModule] }); }
3108
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSlideToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3109
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaSlideToggleModule, declarations: [MatchaSlideToggleDirective], imports: [CommonModule], exports: [MatchaSlideToggleDirective] }); }
3110
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSlideToggleModule, imports: [CommonModule] }); }
3126
3111
  }
3127
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSlideToggleModule, decorators: [{
3112
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSlideToggleModule, decorators: [{
3128
3113
  type: NgModule,
3129
3114
  args: [{
3130
3115
  declarations: [MatchaSlideToggleDirective],
@@ -3142,10 +3127,10 @@ class MatchaSliderDirective {
3142
3127
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
3143
3128
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-slider');
3144
3129
  }
3145
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSliderDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
3146
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaSliderDirective, isStandalone: false, selector: "[matchaSlider]", ngImport: i0 }); }
3130
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSliderDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
3131
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaSliderDirective, isStandalone: false, selector: "[matchaSlider]", ngImport: i0 }); }
3147
3132
  }
3148
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSliderDirective, decorators: [{
3133
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSliderDirective, decorators: [{
3149
3134
  type: Directive,
3150
3135
  args: [{
3151
3136
  selector: '[matchaSlider]',
@@ -3154,11 +3139,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3154
3139
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
3155
3140
 
3156
3141
  class MatchaSliderModule {
3157
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSliderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3158
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaSliderModule, declarations: [MatchaSliderDirective], imports: [CommonModule], exports: [MatchaSliderDirective] }); }
3159
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSliderModule, imports: [CommonModule] }); }
3142
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSliderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3143
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaSliderModule, declarations: [MatchaSliderDirective], imports: [CommonModule], exports: [MatchaSliderDirective] }); }
3144
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSliderModule, imports: [CommonModule] }); }
3160
3145
  }
3161
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSliderModule, decorators: [{
3146
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSliderModule, decorators: [{
3162
3147
  type: NgModule,
3163
3148
  args: [{
3164
3149
  declarations: [MatchaSliderDirective],
@@ -3176,10 +3161,10 @@ class MatchaSnackBarDirective {
3176
3161
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
3177
3162
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-snackbar');
3178
3163
  }
3179
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSnackBarDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
3180
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaSnackBarDirective, isStandalone: false, selector: "[matchaSnackBar]", ngImport: i0 }); }
3164
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSnackBarDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
3165
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaSnackBarDirective, isStandalone: false, selector: "[matchaSnackBar]", ngImport: i0 }); }
3181
3166
  }
3182
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSnackBarDirective, decorators: [{
3167
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSnackBarDirective, decorators: [{
3183
3168
  type: Directive,
3184
3169
  args: [{
3185
3170
  selector: '[matchaSnackBar]',
@@ -3188,11 +3173,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3188
3173
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
3189
3174
 
3190
3175
  class MatchaSnackBarModule {
3191
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSnackBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3192
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaSnackBarModule, declarations: [MatchaSnackBarDirective], imports: [CommonModule], exports: [MatchaSnackBarDirective] }); }
3193
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSnackBarModule, imports: [CommonModule] }); }
3176
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSnackBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3177
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaSnackBarModule, declarations: [MatchaSnackBarDirective], imports: [CommonModule], exports: [MatchaSnackBarDirective] }); }
3178
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSnackBarModule, imports: [CommonModule] }); }
3194
3179
  }
3195
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSnackBarModule, decorators: [{
3180
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSnackBarModule, decorators: [{
3196
3181
  type: NgModule,
3197
3182
  args: [{
3198
3183
  declarations: [MatchaSnackBarDirective],
@@ -3208,10 +3193,10 @@ class MatchaSortHeaderDirective {
3208
3193
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
3209
3194
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-sort-header');
3210
3195
  }
3211
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSortHeaderDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
3212
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaSortHeaderDirective, isStandalone: false, selector: "[matchaSortHeader]", ngImport: i0 }); }
3196
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSortHeaderDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
3197
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaSortHeaderDirective, isStandalone: false, selector: "[matchaSortHeader]", ngImport: i0 }); }
3213
3198
  }
3214
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSortHeaderDirective, decorators: [{
3199
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSortHeaderDirective, decorators: [{
3215
3200
  type: Directive,
3216
3201
  args: [{
3217
3202
  selector: '[matchaSortHeader]',
@@ -3220,11 +3205,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3220
3205
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
3221
3206
 
3222
3207
  class MatchaSortHeaderModule {
3223
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSortHeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3224
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaSortHeaderModule, declarations: [MatchaSortHeaderDirective], imports: [CommonModule], exports: [MatchaSortHeaderDirective] }); }
3225
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSortHeaderModule, imports: [CommonModule] }); }
3208
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSortHeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3209
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaSortHeaderModule, declarations: [MatchaSortHeaderDirective], imports: [CommonModule], exports: [MatchaSortHeaderDirective] }); }
3210
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSortHeaderModule, imports: [CommonModule] }); }
3226
3211
  }
3227
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSortHeaderModule, decorators: [{
3212
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSortHeaderModule, decorators: [{
3228
3213
  type: NgModule,
3229
3214
  args: [{
3230
3215
  declarations: [MatchaSortHeaderDirective],
@@ -3233,6 +3218,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3233
3218
  }]
3234
3219
  }] });
3235
3220
 
3221
+ class MatchaSpinModule {
3222
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSpinModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3223
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaSpinModule, declarations: [MatchaSpinComponent], imports: [CommonModule], exports: [MatchaSpinComponent] }); }
3224
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSpinModule, imports: [CommonModule] }); }
3225
+ }
3226
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSpinModule, decorators: [{
3227
+ type: NgModule,
3228
+ args: [{
3229
+ declarations: [MatchaSpinComponent],
3230
+ imports: [
3231
+ CommonModule
3232
+ ],
3233
+ exports: [MatchaSpinComponent]
3234
+ }]
3235
+ }] });
3236
+
3236
3237
  class MatchaTableDirective {
3237
3238
  constructor(_elementRef, _renderer) {
3238
3239
  this._elementRef = _elementRef;
@@ -3240,10 +3241,10 @@ class MatchaTableDirective {
3240
3241
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
3241
3242
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-table');
3242
3243
  }
3243
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTableDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
3244
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaTableDirective, isStandalone: false, selector: "[matchaTable]", ngImport: i0 }); }
3244
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTableDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
3245
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaTableDirective, isStandalone: false, selector: "[matchaTable]", ngImport: i0 }); }
3245
3246
  }
3246
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTableDirective, decorators: [{
3247
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTableDirective, decorators: [{
3247
3248
  type: Directive,
3248
3249
  args: [{
3249
3250
  selector: '[matchaTable]',
@@ -3252,11 +3253,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3252
3253
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
3253
3254
 
3254
3255
  class MatchaTableModule {
3255
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3256
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaTableModule, declarations: [MatchaTableDirective], imports: [CommonModule], exports: [MatchaTableDirective] }); }
3257
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTableModule, imports: [CommonModule] }); }
3256
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3257
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaTableModule, declarations: [MatchaTableDirective], imports: [CommonModule], exports: [MatchaTableDirective] }); }
3258
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTableModule, imports: [CommonModule] }); }
3258
3259
  }
3259
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTableModule, decorators: [{
3260
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTableModule, decorators: [{
3260
3261
  type: NgModule,
3261
3262
  args: [{
3262
3263
  declarations: [MatchaTableDirective],
@@ -3265,6 +3266,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3265
3266
  }]
3266
3267
  }] });
3267
3268
 
3269
+ class MatchaTabsModule {
3270
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTabsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3271
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaTabsModule, declarations: [MatchaTabsComponent, MatchaTabItemComponent], imports: [CommonModule,
3272
+ MatchaTooltipModule], exports: [MatchaTabsComponent, MatchaTabItemComponent] }); }
3273
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTabsModule, imports: [CommonModule,
3274
+ MatchaTooltipModule] }); }
3275
+ }
3276
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTabsModule, decorators: [{
3277
+ type: NgModule,
3278
+ args: [{
3279
+ declarations: [MatchaTabsComponent, MatchaTabItemComponent],
3280
+ imports: [
3281
+ CommonModule,
3282
+ MatchaTooltipModule
3283
+ ],
3284
+ exports: [MatchaTabsComponent, MatchaTabItemComponent]
3285
+ }]
3286
+ }] });
3287
+
3268
3288
  class MatchaTreeDirective {
3269
3289
  constructor(_elementRef, _renderer) {
3270
3290
  this._elementRef = _elementRef;
@@ -3272,10 +3292,10 @@ class MatchaTreeDirective {
3272
3292
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
3273
3293
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-tree');
3274
3294
  }
3275
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTreeDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
3276
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaTreeDirective, isStandalone: false, selector: "[matchaTree]", ngImport: i0 }); }
3295
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTreeDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
3296
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaTreeDirective, isStandalone: false, selector: "[matchaTree]", ngImport: i0 }); }
3277
3297
  }
3278
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTreeDirective, decorators: [{
3298
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTreeDirective, decorators: [{
3279
3299
  type: Directive,
3280
3300
  args: [{
3281
3301
  selector: '[matchaTree]',
@@ -3284,11 +3304,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3284
3304
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
3285
3305
 
3286
3306
  class MatchaTreeModule {
3287
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTreeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3288
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaTreeModule, declarations: [MatchaTreeDirective], imports: [CommonModule], exports: [MatchaTreeDirective] }); }
3289
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTreeModule, imports: [CommonModule] }); }
3307
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTreeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3308
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaTreeModule, declarations: [MatchaTreeDirective], imports: [CommonModule], exports: [MatchaTreeDirective] }); }
3309
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTreeModule, imports: [CommonModule] }); }
3290
3310
  }
3291
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTreeModule, decorators: [{
3311
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTreeModule, decorators: [{
3292
3312
  type: NgModule,
3293
3313
  args: [{
3294
3314
  declarations: [MatchaTreeDirective],
@@ -3297,261 +3317,154 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3297
3317
  }]
3298
3318
  }] });
3299
3319
 
3300
- class MatchaOverflowDraggableComponent {
3301
- constructor() {
3302
- this.dragRef = '';
3303
- }
3304
- dragToScroll() {
3305
- const ele = document.querySelector(`matchaDraggableReference${this.dragRef}`);
3306
- if (ele) {
3307
- let pos = { top: 0, left: 0, x: 0, y: 0 };
3308
- const mouseDownHandler = function (e) {
3309
- pos = {
3310
- // The current scroll
3311
- left: ele.scrollLeft,
3312
- top: ele.scrollTop,
3313
- // Get the current mouse position
3314
- x: e.clientX,
3315
- y: e.clientY,
3316
- };
3317
- ele.setAttribute('style', 'cursor: grabbing; user-select: none');
3318
- document.addEventListener('mousemove', mouseMoveHandler);
3319
- document.addEventListener('mouseup', mouseUpHandler);
3320
- };
3321
- const mouseMoveHandler = function (e) {
3322
- // How far the mouse has been moved
3323
- const dx = e.clientX - pos.x;
3324
- const dy = e.clientY - pos.y;
3325
- // Scroll the element
3326
- ele.scrollTop = pos.top - dy;
3327
- ele.scrollLeft = pos.left - dx;
3328
- };
3329
- const mouseUpHandler = function () {
3330
- document.removeEventListener('mousemove', mouseMoveHandler);
3331
- document.removeEventListener('mouseup', mouseUpHandler);
3332
- ele.setAttribute('style', 'cursor: grab; user-select: initial');
3333
- };
3334
- ele.addEventListener('mousedown', mouseDownHandler);
3335
- }
3336
- }
3337
- get classes() {
3338
- const draggableReference = this.dragRef ? `matchaDraggableReference${this.dragRef}` : '';
3339
- const activeClasses = `${draggableReference}`;
3340
- return activeClasses;
3341
- }
3342
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaOverflowDraggableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3343
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: MatchaOverflowDraggableComponent, isStandalone: false, selector: "matcha-overflow-draggable", inputs: { dragRef: "dragRef" }, ngImport: i0, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
3344
- }
3345
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaOverflowDraggableComponent, decorators: [{
3346
- type: Component,
3347
- args: [{ selector: 'matcha-overflow-draggable', standalone: false, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n" }]
3348
- }], propDecorators: { dragRef: [{
3349
- type: Input
3350
- }] } });
3351
-
3352
- class MatchaSpinModule {
3353
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSpinModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3354
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaSpinModule, declarations: [MatchaSpinComponent], imports: [CommonModule], exports: [MatchaSpinComponent] }); }
3355
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSpinModule, imports: [CommonModule] }); }
3356
- }
3357
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSpinModule, decorators: [{
3358
- type: NgModule,
3359
- args: [{
3360
- declarations: [MatchaSpinComponent],
3361
- imports: [
3362
- CommonModule
3363
- ],
3364
- exports: [MatchaSpinComponent]
3365
- }]
3366
- }] });
3367
-
3368
- class MatchaHintTextModule {
3369
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaHintTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3370
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaHintTextModule, declarations: [MatchaHintTextComponent], imports: [CommonModule,
3371
- MatchaIconModule], exports: [MatchaHintTextComponent] }); }
3372
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaHintTextModule, imports: [CommonModule,
3373
- MatchaIconModule] }); }
3374
- }
3375
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaHintTextModule, decorators: [{
3376
- type: NgModule,
3377
- args: [{
3378
- declarations: [MatchaHintTextComponent],
3379
- imports: [
3380
- CommonModule,
3381
- MatchaIconModule,
3382
- ],
3383
- exports: [MatchaHintTextComponent],
3384
- }]
3385
- }] });
3386
-
3387
3320
  class MatchaComponentsModule {
3388
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3389
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaComponentsModule, declarations: [MatchaOverflowDraggableComponent], imports: [CommonModule,
3321
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3322
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaComponentsModule, declarations: [MatchaOverflowDraggableComponent], imports: [CommonModule,
3390
3323
  FormsModule,
3391
3324
  ReactiveFormsModule,
3392
- MatchaButtonGroupModule,
3393
3325
  MatchaAccordionModule,
3394
- MatchaFormFieldModule,
3395
- MatchaInfiniteScrollModule,
3396
- MatchaModalModule,
3397
- MatchaMasonryModule,
3398
- MatchaCardModule,
3399
- MatchaTitleModule,
3400
3326
  MatchaAutocompleteModule,
3401
3327
  MatchaBadgeModule,
3402
- MatchaTabsModule,
3403
- MatchaBottomSheetModule,
3404
- MatchaButtonToggleModule,
3405
3328
  MatchaButtonModule,
3329
+ MatchaButtonToggleModule,
3330
+ MatchaCardModule,
3406
3331
  MatchaCheckboxModule,
3407
3332
  MatchaChipsModule,
3408
3333
  MatchaDatepickerModule,
3409
3334
  MatchaDividerModule,
3410
3335
  MatchaElevationModule,
3411
- MatchaExpansionModule,
3412
- MatchaFormsModule,
3336
+ MatchaFormFieldModule,
3337
+ MatchaHintTextModule,
3413
3338
  MatchaIconModule,
3339
+ MatchaInfiniteScrollModule,
3414
3340
  MatchaInputModule,
3415
- MatchaListModule,
3341
+ MatchaMasonryModule,
3416
3342
  MatchaMenuModule,
3417
- MatchaSidenavModule,
3343
+ MatchaModalModule,
3418
3344
  MatchaPaginatorModule,
3419
3345
  MatchaProgressBarModule,
3420
3346
  MatchaRadioButtonModule,
3347
+ MatchaRippleModule,
3421
3348
  MatchaSelectModule,
3349
+ MatchaSidenavModule,
3422
3350
  MatchaSlideToggleModule,
3423
3351
  MatchaSliderModule,
3424
3352
  MatchaSnackBarModule,
3425
3353
  MatchaSortHeaderModule,
3426
- MatchaTableModule,
3427
- MatchaTooltipModule,
3428
- MatchaTreeModule,
3429
- MatchaRippleModule,
3430
3354
  MatchaSpinModule,
3431
- MatchaHintTextModule], exports: [MatchaButtonGroupModule,
3432
- MatchaAccordionModule,
3433
- MatchaFormFieldModule,
3434
- MatchaInfiniteScrollModule,
3435
- MatchaModalModule,
3436
- MatchaMasonryModule,
3437
- MatchaCardModule,
3355
+ MatchaTableModule,
3356
+ MatchaTabsModule,
3438
3357
  MatchaTitleModule,
3358
+ MatchaTooltipModule,
3359
+ MatchaTreeModule], exports: [MatchaAccordionModule,
3439
3360
  MatchaAutocompleteModule,
3440
3361
  MatchaBadgeModule,
3441
- MatchaTabsModule,
3442
- MatchaBottomSheetModule,
3443
- MatchaButtonToggleModule,
3444
3362
  MatchaButtonModule,
3363
+ MatchaButtonToggleModule,
3364
+ MatchaCardModule,
3445
3365
  MatchaCheckboxModule,
3446
3366
  MatchaChipsModule,
3447
3367
  MatchaDatepickerModule,
3448
3368
  MatchaDividerModule,
3449
3369
  MatchaElevationModule,
3450
- MatchaExpansionModule,
3451
- MatchaFormsModule,
3370
+ MatchaFormFieldModule,
3371
+ MatchaHintTextModule,
3452
3372
  MatchaIconModule,
3373
+ MatchaInfiniteScrollModule,
3453
3374
  MatchaInputModule,
3454
- MatchaListModule,
3375
+ MatchaMasonryModule,
3455
3376
  MatchaMenuModule,
3456
- MatchaSidenavModule,
3377
+ MatchaModalModule,
3457
3378
  MatchaPaginatorModule,
3458
3379
  MatchaProgressBarModule,
3459
3380
  MatchaRadioButtonModule,
3381
+ MatchaRippleModule,
3460
3382
  MatchaSelectModule,
3383
+ MatchaSidenavModule,
3461
3384
  MatchaSlideToggleModule,
3462
3385
  MatchaSliderModule,
3463
3386
  MatchaSnackBarModule,
3464
3387
  MatchaSortHeaderModule,
3388
+ MatchaSpinModule,
3465
3389
  MatchaTableModule,
3390
+ MatchaTabsModule,
3391
+ MatchaTitleModule,
3466
3392
  MatchaTooltipModule,
3467
- MatchaTreeModule,
3468
- MatchaRippleModule,
3469
- MatchaSpinModule,
3470
- MatchaHintTextModule] }); }
3471
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaComponentsModule, imports: [CommonModule,
3393
+ MatchaTreeModule] }); }
3394
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaComponentsModule, imports: [CommonModule,
3472
3395
  FormsModule,
3473
3396
  ReactiveFormsModule,
3474
- MatchaButtonGroupModule,
3475
3397
  MatchaAccordionModule,
3476
- MatchaFormFieldModule,
3477
- MatchaInfiniteScrollModule,
3478
- MatchaModalModule,
3479
- MatchaMasonryModule,
3480
- MatchaCardModule,
3481
- MatchaTitleModule,
3482
3398
  MatchaAutocompleteModule,
3483
3399
  MatchaBadgeModule,
3484
- MatchaTabsModule,
3485
- MatchaBottomSheetModule,
3486
- MatchaButtonToggleModule,
3487
3400
  MatchaButtonModule,
3401
+ MatchaButtonToggleModule,
3402
+ MatchaCardModule,
3488
3403
  MatchaCheckboxModule,
3489
3404
  MatchaChipsModule,
3490
3405
  MatchaDatepickerModule,
3491
3406
  MatchaDividerModule,
3492
3407
  MatchaElevationModule,
3493
- MatchaExpansionModule,
3494
- MatchaFormsModule,
3408
+ MatchaFormFieldModule,
3409
+ MatchaHintTextModule,
3495
3410
  MatchaIconModule,
3411
+ MatchaInfiniteScrollModule,
3496
3412
  MatchaInputModule,
3497
- MatchaListModule,
3413
+ MatchaMasonryModule,
3498
3414
  MatchaMenuModule,
3499
- MatchaSidenavModule,
3415
+ MatchaModalModule,
3500
3416
  MatchaPaginatorModule,
3501
3417
  MatchaProgressBarModule,
3502
3418
  MatchaRadioButtonModule,
3419
+ MatchaRippleModule,
3503
3420
  MatchaSelectModule,
3421
+ MatchaSidenavModule,
3504
3422
  MatchaSlideToggleModule,
3505
3423
  MatchaSliderModule,
3506
3424
  MatchaSnackBarModule,
3507
3425
  MatchaSortHeaderModule,
3508
- MatchaTableModule,
3509
- MatchaTooltipModule,
3510
- MatchaTreeModule,
3511
- MatchaRippleModule,
3512
3426
  MatchaSpinModule,
3513
- MatchaHintTextModule, MatchaButtonGroupModule,
3514
- MatchaAccordionModule,
3515
- MatchaFormFieldModule,
3516
- MatchaInfiniteScrollModule,
3517
- MatchaModalModule,
3518
- MatchaMasonryModule,
3519
- MatchaCardModule,
3427
+ MatchaTableModule,
3428
+ MatchaTabsModule,
3520
3429
  MatchaTitleModule,
3430
+ MatchaTooltipModule,
3431
+ MatchaTreeModule, MatchaAccordionModule,
3521
3432
  MatchaAutocompleteModule,
3522
3433
  MatchaBadgeModule,
3523
- MatchaTabsModule,
3524
- MatchaBottomSheetModule,
3525
- MatchaButtonToggleModule,
3526
3434
  MatchaButtonModule,
3435
+ MatchaButtonToggleModule,
3436
+ MatchaCardModule,
3527
3437
  MatchaCheckboxModule,
3528
3438
  MatchaChipsModule,
3529
3439
  MatchaDatepickerModule,
3530
3440
  MatchaDividerModule,
3531
3441
  MatchaElevationModule,
3532
- MatchaExpansionModule,
3533
- MatchaFormsModule,
3442
+ MatchaFormFieldModule,
3443
+ MatchaHintTextModule,
3534
3444
  MatchaIconModule,
3445
+ MatchaInfiniteScrollModule,
3535
3446
  MatchaInputModule,
3536
- MatchaListModule,
3447
+ MatchaMasonryModule,
3537
3448
  MatchaMenuModule,
3538
- MatchaSidenavModule,
3449
+ MatchaModalModule,
3539
3450
  MatchaPaginatorModule,
3540
3451
  MatchaProgressBarModule,
3541
3452
  MatchaRadioButtonModule,
3453
+ MatchaRippleModule,
3542
3454
  MatchaSelectModule,
3455
+ MatchaSidenavModule,
3543
3456
  MatchaSlideToggleModule,
3544
3457
  MatchaSliderModule,
3545
3458
  MatchaSnackBarModule,
3546
3459
  MatchaSortHeaderModule,
3460
+ MatchaSpinModule,
3547
3461
  MatchaTableModule,
3462
+ MatchaTabsModule,
3463
+ MatchaTitleModule,
3548
3464
  MatchaTooltipModule,
3549
- MatchaTreeModule,
3550
- MatchaRippleModule,
3551
- MatchaSpinModule,
3552
- MatchaHintTextModule] }); }
3465
+ MatchaTreeModule] }); }
3553
3466
  }
3554
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaComponentsModule, decorators: [{
3467
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaComponentsModule, decorators: [{
3555
3468
  type: NgModule,
3556
3469
  args: [{
3557
3470
  declarations: [
@@ -3561,88 +3474,78 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3561
3474
  CommonModule,
3562
3475
  FormsModule,
3563
3476
  ReactiveFormsModule,
3564
- MatchaButtonGroupModule,
3565
3477
  MatchaAccordionModule,
3566
- MatchaFormFieldModule,
3567
- MatchaInfiniteScrollModule,
3568
- MatchaModalModule,
3569
- MatchaMasonryModule,
3570
- MatchaCardModule,
3571
- MatchaTitleModule,
3572
3478
  MatchaAutocompleteModule,
3573
3479
  MatchaBadgeModule,
3574
- MatchaTabsModule,
3575
- MatchaBottomSheetModule,
3576
- MatchaButtonToggleModule,
3577
3480
  MatchaButtonModule,
3481
+ MatchaButtonToggleModule,
3482
+ MatchaCardModule,
3578
3483
  MatchaCheckboxModule,
3579
3484
  MatchaChipsModule,
3580
3485
  MatchaDatepickerModule,
3581
3486
  MatchaDividerModule,
3582
3487
  MatchaElevationModule,
3583
- MatchaExpansionModule,
3584
- MatchaFormsModule,
3488
+ MatchaFormFieldModule,
3489
+ MatchaHintTextModule,
3585
3490
  MatchaIconModule,
3491
+ MatchaInfiniteScrollModule,
3586
3492
  MatchaInputModule,
3587
- MatchaListModule,
3493
+ MatchaMasonryModule,
3588
3494
  MatchaMenuModule,
3589
- MatchaSidenavModule,
3495
+ MatchaModalModule,
3590
3496
  MatchaPaginatorModule,
3591
3497
  MatchaProgressBarModule,
3592
3498
  MatchaRadioButtonModule,
3499
+ MatchaRippleModule,
3593
3500
  MatchaSelectModule,
3501
+ MatchaSidenavModule,
3594
3502
  MatchaSlideToggleModule,
3595
3503
  MatchaSliderModule,
3596
3504
  MatchaSnackBarModule,
3597
3505
  MatchaSortHeaderModule,
3506
+ MatchaSpinModule,
3598
3507
  MatchaTableModule,
3508
+ MatchaTabsModule,
3509
+ MatchaTitleModule,
3599
3510
  MatchaTooltipModule,
3600
- MatchaTreeModule,
3601
- MatchaRippleModule,
3602
- MatchaSpinModule,
3603
- MatchaHintTextModule
3511
+ MatchaTreeModule
3604
3512
  ],
3605
3513
  exports: [
3606
- MatchaButtonGroupModule,
3607
3514
  MatchaAccordionModule,
3608
- MatchaFormFieldModule,
3609
- MatchaInfiniteScrollModule,
3610
- MatchaModalModule,
3611
- MatchaMasonryModule,
3612
- MatchaCardModule,
3613
- MatchaTitleModule,
3614
3515
  MatchaAutocompleteModule,
3615
3516
  MatchaBadgeModule,
3616
- MatchaTabsModule,
3617
- MatchaBottomSheetModule,
3618
- MatchaButtonToggleModule,
3619
3517
  MatchaButtonModule,
3518
+ MatchaButtonToggleModule,
3519
+ MatchaCardModule,
3620
3520
  MatchaCheckboxModule,
3621
3521
  MatchaChipsModule,
3622
3522
  MatchaDatepickerModule,
3623
3523
  MatchaDividerModule,
3624
3524
  MatchaElevationModule,
3625
- MatchaExpansionModule,
3626
- MatchaFormsModule,
3525
+ MatchaFormFieldModule,
3526
+ MatchaHintTextModule,
3627
3527
  MatchaIconModule,
3528
+ MatchaInfiniteScrollModule,
3628
3529
  MatchaInputModule,
3629
- MatchaListModule,
3530
+ MatchaMasonryModule,
3630
3531
  MatchaMenuModule,
3631
- MatchaSidenavModule,
3532
+ MatchaModalModule,
3632
3533
  MatchaPaginatorModule,
3633
3534
  MatchaProgressBarModule,
3634
3535
  MatchaRadioButtonModule,
3536
+ MatchaRippleModule,
3635
3537
  MatchaSelectModule,
3538
+ MatchaSidenavModule,
3636
3539
  MatchaSlideToggleModule,
3637
3540
  MatchaSliderModule,
3638
3541
  MatchaSnackBarModule,
3639
3542
  MatchaSortHeaderModule,
3543
+ MatchaSpinModule,
3640
3544
  MatchaTableModule,
3545
+ MatchaTabsModule,
3546
+ MatchaTitleModule,
3641
3547
  MatchaTooltipModule,
3642
- MatchaTreeModule,
3643
- MatchaRippleModule,
3644
- MatchaSpinModule,
3645
- MatchaHintTextModule
3548
+ MatchaTreeModule
3646
3549
  ]
3647
3550
  }]
3648
3551
  }] });
@@ -3666,5 +3569,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3666
3569
  * Generated bundle index. Do not edit.
3667
3570
  */
3668
3571
 
3669
- export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaAutocompleteOverviewDirective, MatchaBadgeDirective, MatchaBadgeModule, MatchaBottomSheetDirective, MatchaBottomSheetModule, MatchaButtonComponent, MatchaButtonGroupComponent, MatchaButtonGroupModule, MatchaButtonItemComponent, MatchaButtonModule, MatchaButtonToggleDirective, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaExpansionDirective, MatchaExpansionModule, MatchaFormFieldComponent, MatchaFormFieldDirective, MatchaFormFieldModule, MatchaFormsModule, MatchaGridComponent, MatchaGridModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputDirective, MatchaInputModule, MatchaLabelComponent, MatchaListDirective, MatchaListModule, 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, MatchaTableDirective, MatchaTableModule, MatchaTabsDirective, MatchaTabsModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, MatchaTreeDirective, MatchaTreeModule };
3572
+ 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 };
3670
3573
  //# sourceMappingURL=matcha-components.mjs.map