matcha-components 19.53.0 → 19.54.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: [{
@@ -895,40 +602,231 @@ class MatchaInfiniteScrollDataComponent {
895
602
  });
896
603
  this.dataSubscription.add(sub);
897
604
  }
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]);
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
+ constructor(_elementRef, _renderer) {
643
+ this._elementRef = _elementRef;
644
+ this._renderer = _renderer;
645
+ this.size = null;
646
+ this.sizeXs = null;
647
+ this.sizeSm = null;
648
+ this.sizeMd = null;
649
+ this.sizeLg = null;
650
+ this.sizeXl = null;
651
+ this.color = 'basic';
652
+ this.basic = false;
653
+ this.outline = false;
654
+ this.alpha = false;
655
+ this.pill = false;
656
+ this.icon = false;
657
+ this.link = false;
658
+ this._config = {
659
+ sizeXs: 'tiny',
660
+ sizeSm: 'small',
661
+ sizeMd: 'medium',
662
+ sizeLg: 'large',
663
+ sizeXl: 'huge',
664
+ size: 'medium',
665
+ basic: false,
666
+ outline: false,
667
+ pill: false,
668
+ icon: false,
669
+ link: false
670
+ };
671
+ }
672
+ ngOnInit() {
673
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button`);
674
+ this.setConfig();
675
+ // Adicione o evento de clique apenas a elementos com a classe "matcha-button"
676
+ const buttons = document.querySelectorAll('.matcha-button');
677
+ buttons.forEach(button => {
678
+ // mouse down event
679
+ button.addEventListener('mousedown', this.addRippleEffect, false);
680
+ });
681
+ }
682
+ ngOnChanges() {
683
+ this.setConfig();
684
+ }
685
+ clearConfig() {
686
+ //size
687
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-${this._config.size}`);
688
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-xs-${this._config.sizeXs}`);
689
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-sm-${this._config.sizeSm}`);
690
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-md-${this._config.sizeMd}`);
691
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-lg-${this._config.sizeLg}`);
692
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-xl-${this._config.sizeXl}`);
693
+ //basic
694
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-icon`);
695
+ //outline
696
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-outline`);
697
+ //pill
698
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-pill`);
699
+ //icon
700
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-basic`);
701
+ //link
702
+ this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-link`);
703
+ }
704
+ setConfig() {
705
+ this.clearConfig();
706
+ this.size ? this.setSize() : null;
707
+ (this.outline === true || this.outline === 'true') ? this.setOutline() : null;
708
+ (this.pill === true || this.pill === 'true') ? this.setPill() : null;
709
+ (this.link === true || this.link === 'true') ? this.setLink() : null;
710
+ (this.basic === true || this.basic === 'true') ? this.setBasic() : null;
711
+ (this.icon === true || this.icon === 'true') ? this.setIcon() : null;
712
+ }
713
+ setSize() {
714
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-${this.size}`);
715
+ this._config.size = this.size;
716
+ if (this.sizeXs) {
717
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-xs-${this.sizeXs}`);
718
+ this._config.sizeXs = this.sizeXs;
719
+ }
720
+ if (this.sizeSm) {
721
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-sm-${this.sizeSm}`);
722
+ this._config.sizeSm = this.sizeSm;
723
+ }
724
+ if (this.sizeMd) {
725
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-md-${this.sizeMd}`);
726
+ this._config.sizeMd = this.sizeMd;
727
+ }
728
+ if (this.sizeLg) {
729
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-lg-${this.sizeLg}`);
730
+ this._config.sizeLg = this.sizeLg;
731
+ }
732
+ if (this.sizeXl) {
733
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-xl-${this.sizeXl}`);
734
+ this._config.sizeXl = this.sizeXl;
735
+ }
736
+ }
737
+ setOutline() {
738
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-outline`);
739
+ }
740
+ setPill() {
741
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-pill`);
742
+ }
743
+ setLink() {
744
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-link`);
745
+ }
746
+ setBasic() {
747
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-basic`);
748
+ this._renderer.addClass(this._elementRef.nativeElement, `basic`);
749
+ }
750
+ setIcon() {
751
+ this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-icon`);
752
+ }
753
+ addRippleEffect(e) {
754
+ var target = e.target;
755
+ if (target.tagName.toLowerCase() !== 'button')
756
+ return false;
757
+ var rect = target.getBoundingClientRect();
758
+ var ripple = target.querySelector('.ripple');
759
+ if (!ripple) {
760
+ ripple = document.createElement('span');
761
+ ripple.className = `ripple`;
762
+ ripple.style.height = ripple.style.width = target.offsetWidth + 'px';
763
+ target.appendChild(ripple);
905
764
  }
765
+ ripple.classList.remove('show');
766
+ var top = e.pageY - rect.top - ripple.offsetHeight / 2 - window.scrollY;
767
+ var left = e.pageX - rect.left - ripple.offsetWidth / 2 - window.scrollX;
768
+ ripple.style.top = top + 'px';
769
+ ripple.style.left = left + 'px';
770
+ ripple.classList.add('show');
771
+ return false;
906
772
  }
907
773
  ngOnDestroy() {
908
- this.observer.disconnect();
909
- this.dataSubscription.unsubscribe();
910
- this.searchSubscription.unsubscribe();
774
+ const buttons = document.querySelectorAll('.matcha-button');
775
+ buttons.forEach(button => {
776
+ button.removeEventListener('click', this.addRippleEffect, false);
777
+ });
911
778
  }
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"] }); }
779
+ 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 }); }
780
+ 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", icon: "icon", link: "link" }, usesOnChanges: true, ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
914
781
  }
915
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaInfiniteScrollDataComponent, decorators: [{
782
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonComponent, decorators: [{
916
783
  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: [{
919
- type: Input
920
- }], initialList: [{
921
- type: Input
922
- }], threshold: [{
923
- type: Input
924
- }], resetKey: [{
925
- type: Input
926
- }], searchTerm: [{
927
- type: Input
928
- }], aggregatedData: [{
929
- type: Output
930
- }], exactMatch: [{
931
- type: Output
784
+ args: [{ selector: '[matcha-button]', standalone: false, template: "<ng-content></ng-content>\n" }]
785
+ }], ctorParameters: () => [{ type: i0.ElementRef, decorators: [{
786
+ type: Inject,
787
+ args: [ElementRef]
788
+ }] }, { type: i0.Renderer2, decorators: [{
789
+ type: Inject,
790
+ args: [Renderer2]
791
+ }] }], propDecorators: { size: [{
792
+ type: Input,
793
+ args: ['size']
794
+ }], sizeXs: [{
795
+ type: Input,
796
+ args: ['size-xs']
797
+ }], sizeSm: [{
798
+ type: Input,
799
+ args: ['size-sm']
800
+ }], sizeMd: [{
801
+ type: Input,
802
+ args: ['size-md']
803
+ }], sizeLg: [{
804
+ type: Input,
805
+ args: ['size-lg']
806
+ }], sizeXl: [{
807
+ type: Input,
808
+ args: ['size-xl']
809
+ }], color: [{
810
+ type: Input,
811
+ args: ['color']
812
+ }], basic: [{
813
+ type: Input,
814
+ args: ['basic']
815
+ }], outline: [{
816
+ type: Input,
817
+ args: ['outline']
818
+ }], alpha: [{
819
+ type: Input,
820
+ args: ['alpha']
821
+ }], pill: [{
822
+ type: Input,
823
+ args: ['pill']
824
+ }], icon: [{
825
+ type: Input,
826
+ args: ['icon']
827
+ }], link: [{
828
+ type: Input,
829
+ args: ['link']
932
830
  }] } });
933
831
 
934
832
  class MatchaCardComponent {
@@ -971,10 +869,10 @@ class MatchaCardComponent {
971
869
  hasBlockquotePosition() {
972
870
  return this.blockquote === 'left' || this.blockquote === 'right';
973
871
  }
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: [""] }); }
872
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
873
+ 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
874
  }
977
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaCardComponent, decorators: [{
875
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCardComponent, decorators: [{
978
876
  type: Component,
979
877
  args: [{ selector: 'matcha-card', standalone: false, template: "<ng-content></ng-content>\n" }]
980
878
  }], propDecorators: { blockquote: [{
@@ -1034,10 +932,10 @@ class MatchaDividerComponent {
1034
932
  activeClasses += gapXl ? ` ${gapXl}` : '';
1035
933
  return activeClasses;
1036
934
  }
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: [""] }); }
935
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDividerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
936
+ 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
937
  }
1040
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaDividerComponent, decorators: [{
938
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDividerComponent, decorators: [{
1041
939
  type: Component,
1042
940
  args: [{ selector: 'matcha-divider', standalone: false, template: "<div [class]=\"classes\"></div>\n" }]
1043
941
  }], propDecorators: { gap: [{
@@ -1104,10 +1002,10 @@ class MatchaTitleComponent {
1104
1002
  hasIconClickOutput() {
1105
1003
  return this.iconClick.observers.length > 0;
1106
1004
  }
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: [""] }); }
1005
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTitleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1006
+ 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
1007
  }
1110
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTitleComponent, decorators: [{
1008
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTitleComponent, decorators: [{
1111
1009
  type: Component,
1112
1010
  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
1011
  }], propDecorators: { color: [{
@@ -1140,10 +1038,10 @@ class MatchaIconComponent {
1140
1038
  const activeClasses = `${icon} ${color} ${size} ${loading} ${this.class}`;
1141
1039
  return activeClasses;
1142
1040
  }
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: [""] }); }
1041
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1042
+ 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
1043
  }
1146
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaIconComponent, decorators: [{
1044
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaIconComponent, decorators: [{
1147
1045
  type: Component,
1148
1046
  args: [{ selector: 'matcha-icon', standalone: false, template: "<span [class]=\"classes\">\n <ng-content></ng-content>\n</span>\n" }]
1149
1047
  }], propDecorators: { name: [{
@@ -1240,10 +1138,10 @@ class MatchaGridComponent {
1240
1138
  this.setColspanClasses(this.colspan, this.breakpoint);
1241
1139
  this.setRowspanClasses(this.rowspan, this.breakpoint);
1242
1140
  }
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: [""] }); }
1141
+ 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 }); }
1142
+ 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
1143
  }
1246
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaGridComponent, decorators: [{
1144
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaGridComponent, decorators: [{
1247
1145
  type: Component,
1248
1146
  args: [{ selector: 'matcha-grid', standalone: false, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n" }]
1249
1147
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }], propDecorators: { breakpoint: [{
@@ -1303,10 +1201,10 @@ class MatchaMasonryComponent {
1303
1201
  activeClasses += gapXl ? ` ${gapXl}` : '';
1304
1202
  return activeClasses;
1305
1203
  }
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: [""] }); }
1204
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMasonryComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1205
+ 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
1206
  }
1309
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaMasonryComponent, decorators: [{
1207
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMasonryComponent, decorators: [{
1310
1208
  type: Component,
1311
1209
  args: [{ selector: 'matcha-masonry', standalone: false, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n" }]
1312
1210
  }], propDecorators: { colSize: [{
@@ -1342,19 +1240,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
1342
1240
  }] } });
1343
1241
 
1344
1242
  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: [""] }); }
1243
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1244
+ 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
1245
  }
1348
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalContentComponent, decorators: [{
1246
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalContentComponent, decorators: [{
1349
1247
  type: Component,
1350
1248
  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
1249
  }] });
1352
1250
 
1353
1251
  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"] }] }); }
1252
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1253
+ 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
1254
  }
1357
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalHeaderComponent, decorators: [{
1255
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalHeaderComponent, decorators: [{
1358
1256
  type: Component,
1359
1257
  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
1258
  }] });
@@ -1380,10 +1278,10 @@ class MatchaModalFooterComponent {
1380
1278
  }
1381
1279
  });
1382
1280
  }
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"] }] }); }
1281
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalFooterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1282
+ 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
1283
  }
1386
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalFooterComponent, decorators: [{
1284
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalFooterComponent, decorators: [{
1387
1285
  type: Component,
1388
1286
  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
1287
  }], propDecorators: { buttonType: [{
@@ -1392,10 +1290,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
1392
1290
  }] } });
1393
1291
 
1394
1292
  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: [""] }); }
1293
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1294
+ 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
1295
  }
1398
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalOptionsComponent, decorators: [{
1296
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalOptionsComponent, decorators: [{
1399
1297
  type: Component,
1400
1298
  args: [{ selector: 'matcha-modal-options', standalone: false, template: "<div class=\"flex-row gap-8\">\n <ng-content></ng-content>\n</div>\n" }]
1401
1299
  }] });
@@ -1408,10 +1306,10 @@ class MatchaModalComponent {
1408
1306
  const activeClasses = `background-surface radius-8 flex-column ${this.class}`;
1409
1307
  return activeClasses;
1410
1308
  }
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: [""] }); }
1309
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1310
+ 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
1311
  }
1414
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalComponent, decorators: [{
1312
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalComponent, decorators: [{
1415
1313
  type: Component,
1416
1314
  args: [{ selector: 'matcha-modal', standalone: false, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n" }]
1417
1315
  }], propDecorators: { class: [{
@@ -1450,10 +1348,10 @@ class MatchaMenuComponent {
1450
1348
  toggleMenu() {
1451
1349
  this.isOpen = !this.isOpen;
1452
1350
  }
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"] }] }); }
1351
+ 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 }); }
1352
+ 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
1353
  }
1456
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaMenuComponent, decorators: [{
1354
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMenuComponent, decorators: [{
1457
1355
  type: Component,
1458
1356
  args: [{ selector: 'matcha-menu', exportAs: 'matchaMenu', standalone: false, template: "<div class=\"menu\" [ngClass]=\"{'show': isOpen}\">\n <ng-content></ng-content>\n </div>\n" }]
1459
1357
  }], ctorParameters: () => [{ type: i0.ElementRef, decorators: [{
@@ -1492,10 +1390,10 @@ class MatchaToolbarComponent {
1492
1390
  ngOnDestroy() {
1493
1391
  clearTimeout(this.resizeTimeout);
1494
1392
  }
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"] }] }); }
1393
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1394
+ 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
1395
  }
1498
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaToolbarComponent, decorators: [{
1396
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarComponent, decorators: [{
1499
1397
  type: Component,
1500
1398
  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
1399
  }], propDecorators: { onResize: [{
@@ -1515,10 +1413,10 @@ class MatchaToolbarButtonComponent {
1515
1413
  emitButtonClick() {
1516
1414
  this.buttonClick.emit();
1517
1415
  }
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"] }] }); }
1416
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1417
+ 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", "icon", "link"] }] }); }
1520
1418
  }
1521
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaToolbarButtonComponent, decorators: [{
1419
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarButtonComponent, decorators: [{
1522
1420
  type: Component,
1523
1421
  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
1422
  }], propDecorators: { icon: [{
@@ -1529,10 +1427,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
1529
1427
  }] } });
1530
1428
 
1531
1429
  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: [""] }); }
1430
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1431
+ 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
1432
  }
1535
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaToolbarContentComponent, decorators: [{
1433
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarContentComponent, decorators: [{
1536
1434
  type: Component,
1537
1435
  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
1436
  }] });
@@ -1544,10 +1442,10 @@ class MatchaToolbarMainButtonComponent {
1544
1442
  emitButtonClick() {
1545
1443
  this.buttonClick.emit();
1546
1444
  }
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"] }] }); }
1445
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarMainButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1446
+ 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", "icon", "link"] }] }); }
1549
1447
  }
1550
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaToolbarMainButtonComponent, decorators: [{
1448
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarMainButtonComponent, decorators: [{
1551
1449
  type: Component,
1552
1450
  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
1451
  }], propDecorators: { buttonClick: [{
@@ -1570,10 +1468,10 @@ class MatchaFormFieldComponent {
1570
1468
  get showError() {
1571
1469
  return !!this.control?.invalid && (this.control?.touched || this.control?.dirty);
1572
1470
  }
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"] }] }); }
1471
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaFormFieldComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1472
+ 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
1473
  }
1576
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaFormFieldComponent, decorators: [{
1474
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaFormFieldComponent, decorators: [{
1577
1475
  type: Component,
1578
1476
  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
1477
  }], propDecorators: { color: [{
@@ -1605,10 +1503,10 @@ class MatchaLabelComponent {
1605
1503
  constructor() {
1606
1504
  this.color = 'blue-grey';
1607
1505
  }
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: [""] }); }
1506
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaLabelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1507
+ 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
1508
  }
1611
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaLabelComponent, decorators: [{
1509
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaLabelComponent, decorators: [{
1612
1510
  type: Component,
1613
1511
  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
1512
  }], propDecorators: { color: [{
@@ -1616,10 +1514,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
1616
1514
  }] } });
1617
1515
 
1618
1516
  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"] }] }); }
1517
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaErrorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1518
+ 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
1519
  }
1622
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaErrorComponent, decorators: [{
1520
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaErrorComponent, decorators: [{
1623
1521
  type: Component,
1624
1522
  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
1523
  }] });
@@ -1677,10 +1575,10 @@ class MatchaRippleDirective {
1677
1575
  });
1678
1576
  this.ripples = [];
1679
1577
  }
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 }); }
1578
+ 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 }); }
1579
+ 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
1580
  }
1683
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaRippleDirective, decorators: [{
1581
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRippleDirective, decorators: [{
1684
1582
  type: Directive,
1685
1583
  args: [{
1686
1584
  selector: '[matchaRipple]',
@@ -1740,8 +1638,8 @@ class MatchaCheckboxComponent {
1740
1638
  this.onTouched();
1741
1639
  this.change.emit({ checked: this.checked });
1742
1640
  }
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: [
1641
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCheckboxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1642
+ 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
1643
  {
1746
1644
  provide: NG_VALUE_ACCESSOR,
1747
1645
  useExisting: forwardRef(() => MatchaCheckboxComponent),
@@ -1749,7 +1647,7 @@ class MatchaCheckboxComponent {
1749
1647
  }
1750
1648
  ], 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
1649
  }
1752
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaCheckboxComponent, decorators: [{
1650
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCheckboxComponent, decorators: [{
1753
1651
  type: Component,
1754
1652
  args: [{ selector: 'matcha-checkbox', standalone: false, providers: [
1755
1653
  {
@@ -1817,10 +1715,10 @@ class MatchaSpinComponent {
1817
1715
  const progress = Math.min(Math.max(Number(this.progress), 0), 100);
1818
1716
  return this.circumference - (progress / 100) * this.circumference;
1819
1717
  }
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: [""] }); }
1718
+ 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 }); }
1719
+ 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
1720
  }
1823
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSpinComponent, decorators: [{
1721
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSpinComponent, decorators: [{
1824
1722
  type: Component,
1825
1723
  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
1724
  }], ctorParameters: () => [{ type: i0.ElementRef, decorators: [{
@@ -1874,10 +1772,10 @@ class MatchaHintTextComponent {
1874
1772
  default: return 'red';
1875
1773
  }
1876
1774
  }
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"] }] }); }
1775
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaHintTextComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1776
+ 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
1777
  }
1880
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaHintTextComponent, decorators: [{
1778
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaHintTextComponent, decorators: [{
1881
1779
  type: Component,
1882
1780
  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
1781
  }], propDecorators: { type: [{
@@ -1888,6 +1786,254 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
1888
1786
  args: ['size']
1889
1787
  }] } });
1890
1788
 
1789
+ class MatchaButtonToggleItemComponent {
1790
+ constructor(_render) {
1791
+ this._render = _render;
1792
+ this.active = false;
1793
+ this.selected = new EventEmitter();
1794
+ }
1795
+ ngAfterContentInit() {
1796
+ if (!this.innerButton) {
1797
+ return;
1798
+ }
1799
+ /* considera <button … active-item> como ativo */
1800
+ if (this.innerButton.nativeElement.hasAttribute('active-item')) {
1801
+ this.active = true;
1802
+ }
1803
+ this._render.listen(this.innerButton.nativeElement, 'click', () => this.onClick());
1804
+ }
1805
+ onClick() {
1806
+ this.selected.emit();
1807
+ }
1808
+ setActiveState(isActive, inactiveColor, inactiveType) {
1809
+ this.active = isActive;
1810
+ if (this.innerButton) {
1811
+ /* liga/desliga atributo visual */
1812
+ if (isActive) {
1813
+ this._render.setAttribute(this.innerButton.nativeElement, 'active-item', 'true');
1814
+ }
1815
+ else {
1816
+ this._render.removeAttribute(this.innerButton.nativeElement, 'active-item');
1817
+ }
1818
+ }
1819
+ }
1820
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleItemComponent, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
1821
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaButtonToggleItemComponent, isStandalone: false, selector: "matcha-button-toggle-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: [""] }); }
1822
+ }
1823
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleItemComponent, decorators: [{
1824
+ type: Component,
1825
+ args: [{ selector: 'matcha-button-toggle-item', standalone: false, template: "<ng-content></ng-content>\n" }]
1826
+ }], ctorParameters: () => [{ type: i0.Renderer2 }], propDecorators: { active: [{
1827
+ type: Input
1828
+ }], selected: [{
1829
+ type: Output
1830
+ }], innerButton: [{
1831
+ type: ContentChild,
1832
+ args: [MatchaButtonComponent, { static: true, read: ElementRef }]
1833
+ }] } });
1834
+
1835
+ class MatchaButtonToggleComponent {
1836
+ constructor() {
1837
+ /* entradas originais */
1838
+ this._multiple = false;
1839
+ this._disabled = false;
1840
+ this._required = false;
1841
+ this.inactiveColor = 'disabled';
1842
+ this.inactiveType = 'basic';
1843
+ this._gap = 16;
1844
+ }
1845
+ get multiple() { return this._multiple; }
1846
+ set multiple(v) { this._multiple = v === 'false' ? false : !!v; }
1847
+ get disabled() { return this._disabled; }
1848
+ set disabled(v) { this._disabled = v === 'false' ? false : !!v; }
1849
+ get isDisabled() { return this.disabled || null; }
1850
+ get required() { return this._required; }
1851
+ set required(v) { this._required = v === 'false' ? false : !!v; }
1852
+ set gap(v) { const n = +v; this._gap = isNaN(n) ? 16 : n; }
1853
+ get gapClass() { return `gap-${this._gap}`; }
1854
+ /* ────────────────────────────────────── */
1855
+ ngAfterContentInit() {
1856
+ /* se algum veio com [active] / active-item usa-o, senão o primeiro */
1857
+ const preset = this.buttonToggleItems.find(i => i.active);
1858
+ this.buttonToggleItems.forEach((item, idx) => {
1859
+ const isActive = preset ? item === preset : idx === 0;
1860
+ item.setActiveState(isActive, this.inactiveColor, this.inactiveType);
1861
+ item.selected.subscribe(() => this.onItemSelected(item));
1862
+ });
1863
+ }
1864
+ onItemSelected(selectedItem) {
1865
+ // Se required é true e é a última tab ativa, não permite desativar
1866
+ if (this.required) {
1867
+ const activeTabs = this.buttonToggleItems.filter(item => item.active);
1868
+ if (activeTabs.length === 1 && activeTabs[0] === selectedItem) {
1869
+ return;
1870
+ }
1871
+ }
1872
+ // Se multiple é true, permite ativar/desativar livremente
1873
+ if (this.multiple) {
1874
+ selectedItem.setActiveState(!selectedItem.active, this.inactiveColor, this.inactiveType);
1875
+ return;
1876
+ }
1877
+ // Se multiple é false
1878
+ if (selectedItem.active) {
1879
+ // Se a tab já está ativa, permite desselecionar
1880
+ selectedItem.setActiveState(false, this.inactiveColor, this.inactiveType);
1881
+ }
1882
+ else {
1883
+ // Se está selecionando uma nova tab, desativa todas as outras
1884
+ this.buttonToggleItems.forEach(item => item.setActiveState(item === selectedItem, this.inactiveColor, this.inactiveType));
1885
+ }
1886
+ }
1887
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1888
+ 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: "buttonToggleItems", predicate: MatchaButtonToggleItemComponent }], 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"] }] }); }
1889
+ }
1890
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleComponent, decorators: [{
1891
+ type: Component,
1892
+ 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" }]
1893
+ }], propDecorators: { multiple: [{
1894
+ type: Input
1895
+ }], disabled: [{
1896
+ type: Input
1897
+ }], isDisabled: [{
1898
+ type: HostBinding,
1899
+ args: ['attr.disabled']
1900
+ }], required: [{
1901
+ type: Input
1902
+ }], inactiveColor: [{
1903
+ type: Input
1904
+ }], inactiveType: [{
1905
+ type: Input
1906
+ }], gap: [{
1907
+ type: Input
1908
+ }], buttonToggleItems: [{
1909
+ type: ContentChildren,
1910
+ args: [MatchaButtonToggleItemComponent]
1911
+ }] } });
1912
+
1913
+ class MatchaTabItemComponent {
1914
+ constructor(_render) {
1915
+ this._render = _render;
1916
+ this.active = false;
1917
+ this.selected = new EventEmitter();
1918
+ }
1919
+ ngAfterContentInit() {
1920
+ if (!this.innerButton) {
1921
+ return;
1922
+ }
1923
+ /* considera <button … active-item> como ativo */
1924
+ if (this.innerButton.nativeElement.hasAttribute('active-item')) {
1925
+ this.active = true;
1926
+ }
1927
+ this._render.listen(this.innerButton.nativeElement, 'click', () => this.onClick());
1928
+ }
1929
+ onClick() {
1930
+ this.selected.emit();
1931
+ }
1932
+ setActiveState(isActive, inactiveColor, inactiveType) {
1933
+ this.active = isActive;
1934
+ if (this.innerButton) {
1935
+ /* liga/desliga atributo visual */
1936
+ if (isActive) {
1937
+ this._render.setAttribute(this.innerButton.nativeElement, 'active-item', 'true');
1938
+ }
1939
+ else {
1940
+ this._render.removeAttribute(this.innerButton.nativeElement, 'active-item');
1941
+ }
1942
+ }
1943
+ }
1944
+ 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 }); }
1945
+ 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: [""] }); }
1946
+ }
1947
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTabItemComponent, decorators: [{
1948
+ type: Component,
1949
+ args: [{ selector: 'matcha-tab-item', standalone: false, template: "<ng-content></ng-content>\n" }]
1950
+ }], ctorParameters: () => [{ type: i0.Renderer2 }], propDecorators: { active: [{
1951
+ type: Input
1952
+ }], selected: [{
1953
+ type: Output
1954
+ }], innerButton: [{
1955
+ type: ContentChild,
1956
+ args: [MatchaButtonComponent, { static: true, read: ElementRef }]
1957
+ }] } });
1958
+
1959
+ class MatchaTabsComponent {
1960
+ constructor() {
1961
+ /* entradas originais */
1962
+ this._multiple = false;
1963
+ this._disabled = false;
1964
+ this._required = false;
1965
+ this.inactiveColor = 'disabled';
1966
+ this.inactiveType = 'basic';
1967
+ this._gap = 16;
1968
+ }
1969
+ get multiple() { return this._multiple; }
1970
+ set multiple(v) { this._multiple = v === 'false' ? false : !!v; }
1971
+ get disabled() { return this._disabled; }
1972
+ set disabled(v) { this._disabled = v === 'false' ? false : !!v; }
1973
+ get isDisabled() { return this.disabled || null; }
1974
+ get required() { return this._required; }
1975
+ set required(v) { this._required = v === 'false' ? false : !!v; }
1976
+ set gap(v) { const n = +v; this._gap = isNaN(n) ? 16 : n; }
1977
+ get gapClass() { return `gap-${this._gap}`; }
1978
+ /* ────────────────────────────────────── */
1979
+ ngAfterContentInit() {
1980
+ /* se algum veio com [active] / active-item usa-o, senão o primeiro */
1981
+ const preset = this.tabItems.find(i => i.active);
1982
+ this.tabItems.forEach((item, idx) => {
1983
+ const isActive = preset ? item === preset : idx === 0;
1984
+ item.setActiveState(isActive, this.inactiveColor, this.inactiveType);
1985
+ item.selected.subscribe(() => this.onItemSelected(item));
1986
+ });
1987
+ }
1988
+ onItemSelected(selectedItem) {
1989
+ // Se required é true e é a última tab ativa, não permite desativar
1990
+ if (this.required) {
1991
+ const activeTabs = this.tabItems.filter(item => item.active);
1992
+ if (activeTabs.length === 1 && activeTabs[0] === selectedItem) {
1993
+ return;
1994
+ }
1995
+ }
1996
+ // Se multiple é true, permite ativar/desativar livremente
1997
+ if (this.multiple) {
1998
+ selectedItem.setActiveState(!selectedItem.active, this.inactiveColor, this.inactiveType);
1999
+ return;
2000
+ }
2001
+ // Se multiple é false
2002
+ if (selectedItem.active) {
2003
+ // Se a tab já está ativa, permite desselecionar
2004
+ selectedItem.setActiveState(false, this.inactiveColor, this.inactiveType);
2005
+ }
2006
+ else {
2007
+ // Se está selecionando uma nova tab, desativa todas as outras
2008
+ this.tabItems.forEach(item => item.setActiveState(item === selectedItem, this.inactiveColor, this.inactiveType));
2009
+ }
2010
+ }
2011
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTabsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2012
+ 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"] }] }); }
2013
+ }
2014
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTabsComponent, decorators: [{
2015
+ type: Component,
2016
+ 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" }]
2017
+ }], propDecorators: { multiple: [{
2018
+ type: Input
2019
+ }], disabled: [{
2020
+ type: Input
2021
+ }], isDisabled: [{
2022
+ type: HostBinding,
2023
+ args: ['attr.disabled']
2024
+ }], required: [{
2025
+ type: Input
2026
+ }], inactiveColor: [{
2027
+ type: Input
2028
+ }], inactiveType: [{
2029
+ type: Input
2030
+ }], gap: [{
2031
+ type: Input
2032
+ }], tabItems: [{
2033
+ type: ContentChildren,
2034
+ args: [MatchaTabItemComponent]
2035
+ }] } });
2036
+
1891
2037
  class MatchaTooltipDirective {
1892
2038
  constructor(el, renderer) {
1893
2039
  this.el = el;
@@ -2029,10 +2175,10 @@ class MatchaTooltipDirective {
2029
2175
  this.documentClickListener = null;
2030
2176
  }
2031
2177
  }
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 }); }
2178
+ 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 }); }
2179
+ 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
2180
  }
2035
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTooltipDirective, decorators: [{
2181
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTooltipDirective, decorators: [{
2036
2182
  type: Directive,
2037
2183
  args: [{
2038
2184
  selector: '[matchaTooltip]',
@@ -2071,11 +2217,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2071
2217
  }] } });
2072
2218
 
2073
2219
  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] }); }
2220
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTooltipModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2221
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaTooltipModule, declarations: [MatchaTooltipDirective], imports: [CommonModule], exports: [MatchaTooltipDirective] }); }
2222
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTooltipModule, imports: [CommonModule] }); }
2077
2223
  }
2078
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTooltipModule, decorators: [{
2224
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTooltipModule, decorators: [{
2079
2225
  type: NgModule,
2080
2226
  args: [{
2081
2227
  declarations: [MatchaTooltipDirective],
@@ -2084,31 +2230,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2084
2230
  }]
2085
2231
  }] });
2086
2232
 
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
2233
  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] }); }
2234
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2235
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaIconModule, declarations: [MatchaIconComponent], imports: [CommonModule, MatchaTooltipModule], exports: [MatchaIconComponent] }); }
2236
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaIconModule, imports: [CommonModule, MatchaTooltipModule] }); }
2110
2237
  }
2111
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaIconModule, decorators: [{
2238
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaIconModule, decorators: [{
2112
2239
  type: NgModule,
2113
2240
  args: [{
2114
2241
  declarations: [MatchaIconComponent],
@@ -2118,11 +2245,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2118
2245
  }] });
2119
2246
 
2120
2247
  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] }); }
2248
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTitleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2249
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaTitleModule, declarations: [MatchaTitleComponent], imports: [CommonModule], exports: [MatchaTitleComponent] }); }
2250
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTitleModule, imports: [CommonModule] }); }
2124
2251
  }
2125
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTitleModule, decorators: [{
2252
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTitleModule, decorators: [{
2126
2253
  type: NgModule,
2127
2254
  args: [{
2128
2255
  declarations: [MatchaTitleComponent],
@@ -2132,11 +2259,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2132
2259
  }] });
2133
2260
 
2134
2261
  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] }); }
2262
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDividerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2263
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaDividerModule, declarations: [MatchaDividerComponent], imports: [CommonModule], exports: [MatchaDividerComponent] }); }
2264
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDividerModule, imports: [CommonModule] }); }
2138
2265
  }
2139
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaDividerModule, decorators: [{
2266
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDividerModule, decorators: [{
2140
2267
  type: NgModule,
2141
2268
  args: [{
2142
2269
  declarations: [
@@ -2150,11 +2277,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2150
2277
  }] });
2151
2278
 
2152
2279
  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 }); }
2280
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2281
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonModule, declarations: [MatchaButtonComponent], exports: [MatchaButtonComponent] }); }
2282
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonModule }); }
2156
2283
  }
2157
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonModule, decorators: [{
2284
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonModule, decorators: [{
2158
2285
  type: NgModule,
2159
2286
  args: [{
2160
2287
  declarations: [MatchaButtonComponent],
@@ -2164,8 +2291,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2164
2291
  }] });
2165
2292
 
2166
2293
  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,
2294
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2295
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionModule, declarations: [MatchaAccordionComponent,
2169
2296
  MatchaAccordionItemComponent,
2170
2297
  MatchaAccordionHeaderComponent,
2171
2298
  MatchaAccordionContentComponent], imports: [CommonModule,
@@ -2177,14 +2304,14 @@ class MatchaAccordionModule {
2177
2304
  MatchaAccordionItemComponent,
2178
2305
  MatchaAccordionHeaderComponent,
2179
2306
  MatchaAccordionContentComponent] }); }
2180
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAccordionModule, imports: [CommonModule,
2307
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionModule, imports: [CommonModule,
2181
2308
  MatchaIconModule,
2182
2309
  MatchaTitleModule,
2183
2310
  MatchaDividerModule,
2184
2311
  MatchaTooltipModule,
2185
2312
  MatchaButtonModule] }); }
2186
2313
  }
2187
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAccordionModule, decorators: [{
2314
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionModule, decorators: [{
2188
2315
  type: NgModule,
2189
2316
  args: [{
2190
2317
  declarations: [
@@ -2211,11 +2338,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2211
2338
  }] });
2212
2339
 
2213
2340
  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] }); }
2341
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInfiniteScrollModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2342
+ 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] }); }
2343
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInfiniteScrollModule, imports: [CommonModule] }); }
2217
2344
  }
2218
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaInfiniteScrollModule, decorators: [{
2345
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInfiniteScrollModule, decorators: [{
2219
2346
  type: NgModule,
2220
2347
  args: [{
2221
2348
  declarations: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent],
@@ -2249,10 +2376,10 @@ class MatchaElevationDirective {
2249
2376
  this._renderer.addClass(this._elementRef.nativeElement, `elevation-z-0`);
2250
2377
  }
2251
2378
  }
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 }); }
2379
+ 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 }); }
2380
+ 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
2381
  }
2255
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaElevationDirective, decorators: [{
2382
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaElevationDirective, decorators: [{
2256
2383
  type: Directive,
2257
2384
  args: [{
2258
2385
  selector: '[elevation]',
@@ -2264,11 +2391,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2264
2391
  }] } });
2265
2392
 
2266
2393
  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] }); }
2394
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaElevationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2395
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaElevationModule, declarations: [MatchaElevationDirective], imports: [CommonModule], exports: [MatchaElevationDirective] }); }
2396
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaElevationModule, imports: [CommonModule] }); }
2270
2397
  }
2271
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaElevationModule, decorators: [{
2398
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaElevationModule, decorators: [{
2272
2399
  type: NgModule,
2273
2400
  args: [{
2274
2401
  declarations: [MatchaElevationDirective],
@@ -2278,8 +2405,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2278
2405
  }] });
2279
2406
 
2280
2407
  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,
2408
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2409
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalModule, declarations: [MatchaModalHeaderComponent,
2283
2410
  MatchaModalContentComponent,
2284
2411
  MatchaModalFooterComponent,
2285
2412
  MatchaModalOptionsComponent,
@@ -2293,14 +2420,14 @@ class MatchaModalModule {
2293
2420
  MatchaModalFooterComponent,
2294
2421
  MatchaModalOptionsComponent,
2295
2422
  MatchaModalComponent] }); }
2296
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalModule, imports: [CommonModule,
2423
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalModule, imports: [CommonModule,
2297
2424
  MatchaIconModule,
2298
2425
  MatchaTitleModule,
2299
2426
  MatchaDividerModule,
2300
2427
  MatchaTooltipModule,
2301
2428
  MatchaElevationModule] }); }
2302
2429
  }
2303
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaModalModule, decorators: [{
2430
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalModule, decorators: [{
2304
2431
  type: NgModule,
2305
2432
  args: [{
2306
2433
  declarations: [
@@ -2329,21 +2456,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2329
2456
  }] });
2330
2457
 
2331
2458
  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,
2459
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2460
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaCardModule, declarations: [MatchaCardComponent], imports: [CommonModule,
2334
2461
  MatchaElevationModule,
2335
2462
  MatchaIconModule,
2336
2463
  MatchaTitleModule,
2337
2464
  MatchaDividerModule,
2338
2465
  MatchaTooltipModule], exports: [MatchaCardComponent] }); }
2339
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaCardModule, imports: [CommonModule,
2466
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCardModule, imports: [CommonModule,
2340
2467
  MatchaElevationModule,
2341
2468
  MatchaIconModule,
2342
2469
  MatchaTitleModule,
2343
2470
  MatchaDividerModule,
2344
2471
  MatchaTooltipModule] }); }
2345
2472
  }
2346
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaCardModule, decorators: [{
2473
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCardModule, decorators: [{
2347
2474
  type: NgModule,
2348
2475
  args: [{
2349
2476
  declarations: [MatchaCardComponent],
@@ -2360,11 +2487,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2360
2487
  }] });
2361
2488
 
2362
2489
  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] }); }
2490
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMasonryModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2491
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaMasonryModule, declarations: [MatchaMasonryComponent], imports: [CommonModule], exports: [MatchaMasonryComponent] }); }
2492
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMasonryModule, imports: [CommonModule] }); }
2366
2493
  }
2367
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaMasonryModule, decorators: [{
2494
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMasonryModule, decorators: [{
2368
2495
  type: NgModule,
2369
2496
  args: [{
2370
2497
  declarations: [MatchaMasonryComponent],
@@ -2373,9 +2500,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2373
2500
  }]
2374
2501
  }] });
2375
2502
 
2503
+ class MatchaButtonToggleModule {
2504
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2505
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleModule, declarations: [MatchaButtonToggleComponent, MatchaButtonToggleItemComponent], imports: [CommonModule,
2506
+ MatchaTooltipModule], exports: [MatchaButtonToggleComponent, MatchaButtonToggleItemComponent] }); }
2507
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleModule, imports: [CommonModule,
2508
+ MatchaTooltipModule] }); }
2509
+ }
2510
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleModule, decorators: [{
2511
+ type: NgModule,
2512
+ args: [{
2513
+ declarations: [MatchaButtonToggleComponent, MatchaButtonToggleItemComponent],
2514
+ imports: [
2515
+ CommonModule,
2516
+ MatchaTooltipModule
2517
+ ],
2518
+ exports: [MatchaButtonToggleComponent, MatchaButtonToggleItemComponent]
2519
+ }]
2520
+ }] });
2521
+
2376
2522
  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,
2523
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2524
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarModule, declarations: [MatchaToolbarComponent,
2379
2525
  MatchaToolbarButtonComponent,
2380
2526
  MatchaToolbarContentComponent,
2381
2527
  MatchaToolbarMainButtonComponent], imports: [CommonModule,
@@ -2386,12 +2532,12 @@ class MatchaToolbarModule {
2386
2532
  MatchaToolbarContentComponent,
2387
2533
  MatchaToolbarMainButtonComponent,
2388
2534
  MatchaTitleModule] }); }
2389
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaToolbarModule, imports: [CommonModule,
2535
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarModule, imports: [CommonModule,
2390
2536
  MatchaButtonModule,
2391
2537
  MatchaTitleModule,
2392
2538
  MatchaTooltipModule, MatchaTitleModule] }); }
2393
2539
  }
2394
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaToolbarModule, decorators: [{
2540
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarModule, decorators: [{
2395
2541
  type: NgModule,
2396
2542
  args: [{
2397
2543
  declarations: [
@@ -2417,11 +2563,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2417
2563
  }] });
2418
2564
 
2419
2565
  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] }); }
2566
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaGridModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2567
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaGridModule, declarations: [MatchaGridComponent], imports: [CommonModule], exports: [MatchaGridComponent] }); }
2568
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaGridModule, imports: [CommonModule] }); }
2423
2569
  }
2424
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaGridModule, decorators: [{
2570
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaGridModule, decorators: [{
2425
2571
  type: NgModule,
2426
2572
  args: [{
2427
2573
  declarations: [MatchaGridComponent],
@@ -2431,11 +2577,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2431
2577
  }] });
2432
2578
 
2433
2579
  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] }); }
2580
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaFormFieldModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2581
+ 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] }); }
2582
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaFormFieldModule, imports: [CommonModule, MatchaIconModule] }); }
2437
2583
  }
2438
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaFormFieldModule, decorators: [{
2584
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaFormFieldModule, decorators: [{
2439
2585
  type: NgModule,
2440
2586
  args: [{
2441
2587
  declarations: [MatchaFormFieldComponent, MatchaLabelComponent, MatchaErrorComponent],
@@ -2450,10 +2596,10 @@ class MatchaAutocompleteDirective {
2450
2596
  this._renderer = _renderer;
2451
2597
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-autocomplete');
2452
2598
  }
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 }); }
2599
+ 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 }); }
2600
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaAutocompleteDirective, isStandalone: false, selector: "[matcha-autocomplete]", ngImport: i0 }); }
2455
2601
  }
2456
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAutocompleteDirective, decorators: [{
2602
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAutocompleteDirective, decorators: [{
2457
2603
  type: Directive,
2458
2604
  args: [{
2459
2605
  selector: '[matcha-autocomplete]',
@@ -2468,10 +2614,10 @@ class MatchaAutocompleteOverviewDirective {
2468
2614
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
2469
2615
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-autocomplete-overview');
2470
2616
  }
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 }); }
2617
+ 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 }); }
2618
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaAutocompleteOverviewDirective, isStandalone: false, selector: "[matcha-autocomplete-overview]", ngImport: i0 }); }
2473
2619
  }
2474
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAutocompleteOverviewDirective, decorators: [{
2620
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAutocompleteOverviewDirective, decorators: [{
2475
2621
  type: Directive,
2476
2622
  args: [{
2477
2623
  selector: '[matcha-autocomplete-overview]',
@@ -2480,12 +2626,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2480
2626
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
2481
2627
 
2482
2628
  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,
2629
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAutocompleteModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2630
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaAutocompleteModule, declarations: [MatchaAutocompleteDirective,
2485
2631
  MatchaAutocompleteOverviewDirective], exports: [MatchaAutocompleteDirective, MatchaAutocompleteOverviewDirective] }); }
2486
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAutocompleteModule }); }
2632
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAutocompleteModule }); }
2487
2633
  }
2488
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaAutocompleteModule, decorators: [{
2634
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAutocompleteModule, decorators: [{
2489
2635
  type: NgModule,
2490
2636
  args: [{
2491
2637
  declarations: [
@@ -2504,10 +2650,10 @@ class MatchaBadgeDirective {
2504
2650
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
2505
2651
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-badge');
2506
2652
  }
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 }); }
2653
+ 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 }); }
2654
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaBadgeDirective, isStandalone: false, selector: "[matcha-badge]", ngImport: i0 }); }
2509
2655
  }
2510
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaBadgeDirective, decorators: [{
2656
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaBadgeDirective, decorators: [{
2511
2657
  type: Directive,
2512
2658
  args: [{
2513
2659
  selector: '[matcha-badge]',
@@ -2516,11 +2662,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2516
2662
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
2517
2663
 
2518
2664
  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 }); }
2665
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaBadgeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2666
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaBadgeModule, declarations: [MatchaBadgeDirective], exports: [MatchaBadgeDirective] }); }
2667
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaBadgeModule }); }
2522
2668
  }
2523
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaBadgeModule, decorators: [{
2669
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaBadgeModule, decorators: [{
2524
2670
  type: NgModule,
2525
2671
  args: [{
2526
2672
  declarations: [MatchaBadgeDirective],
@@ -2529,111 +2675,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2529
2675
  }]
2530
2676
  }] });
2531
2677
 
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
2678
  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] }); }
2679
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRippleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2680
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaRippleModule, declarations: [MatchaRippleDirective], imports: [CommonModule], exports: [MatchaRippleDirective] }); }
2681
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRippleModule, imports: [CommonModule] }); }
2635
2682
  }
2636
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaRippleModule, decorators: [{
2683
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRippleModule, decorators: [{
2637
2684
  type: NgModule,
2638
2685
  args: [{
2639
2686
  declarations: [
@@ -2649,11 +2696,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2649
2696
  }] });
2650
2697
 
2651
2698
  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] }); }
2699
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCheckboxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2700
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaCheckboxModule, declarations: [MatchaCheckboxComponent], imports: [CommonModule, MatchaRippleModule], exports: [MatchaCheckboxComponent] }); }
2701
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCheckboxModule, imports: [CommonModule, MatchaRippleModule] }); }
2655
2702
  }
2656
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaCheckboxModule, decorators: [{
2703
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCheckboxModule, decorators: [{
2657
2704
  type: NgModule,
2658
2705
  args: [{
2659
2706
  declarations: [
@@ -2673,10 +2720,10 @@ class MatchaChipsDirective {
2673
2720
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
2674
2721
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-chips');
2675
2722
  }
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 }); }
2723
+ 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 }); }
2724
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaChipsDirective, isStandalone: false, selector: "[matchaChips]", ngImport: i0 }); }
2678
2725
  }
2679
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaChipsDirective, decorators: [{
2726
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaChipsDirective, decorators: [{
2680
2727
  type: Directive,
2681
2728
  args: [{
2682
2729
  selector: '[matchaChips]',
@@ -2685,11 +2732,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2685
2732
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
2686
2733
 
2687
2734
  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 }); }
2735
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaChipsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2736
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaChipsModule, declarations: [MatchaChipsDirective], exports: [MatchaChipsDirective] }); }
2737
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaChipsModule }); }
2691
2738
  }
2692
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaChipsModule, decorators: [{
2739
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaChipsModule, decorators: [{
2693
2740
  type: NgModule,
2694
2741
  args: [{
2695
2742
  declarations: [MatchaChipsDirective],
@@ -2707,10 +2754,10 @@ class MatchaDatepickerDirective {
2707
2754
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
2708
2755
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-datepicker');
2709
2756
  }
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 }); }
2757
+ 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 }); }
2758
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaDatepickerDirective, isStandalone: false, selector: "[matcha-datepicker]", ngImport: i0 }); }
2712
2759
  }
2713
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaDatepickerDirective, decorators: [{
2760
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDatepickerDirective, decorators: [{
2714
2761
  type: Directive,
2715
2762
  args: [{
2716
2763
  selector: '[matcha-datepicker]',
@@ -2719,11 +2766,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2719
2766
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
2720
2767
 
2721
2768
  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 }); }
2769
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDatepickerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2770
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaDatepickerModule, declarations: [MatchaDatepickerDirective], exports: [MatchaDatepickerDirective] }); }
2771
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDatepickerModule }); }
2725
2772
  }
2726
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaDatepickerModule, decorators: [{
2773
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDatepickerModule, decorators: [{
2727
2774
  type: NgModule,
2728
2775
  args: [{
2729
2776
  declarations: [MatchaDatepickerDirective],
@@ -2732,67 +2779,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2732
2779
  }]
2733
2780
  }] });
2734
2781
 
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] }); }
2782
+ class MatchaHintTextModule {
2783
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaHintTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2784
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaHintTextModule, declarations: [MatchaHintTextComponent], imports: [CommonModule,
2785
+ MatchaIconModule], exports: [MatchaHintTextComponent] }); }
2786
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaHintTextModule, imports: [CommonModule,
2787
+ MatchaIconModule] }); }
2789
2788
  }
2790
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaFormsModule, decorators: [{
2789
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaHintTextModule, decorators: [{
2791
2790
  type: NgModule,
2792
2791
  args: [{
2793
- declarations: [MatchaFormFieldDirective],
2794
- imports: [CommonModule],
2795
- exports: [MatchaFormFieldDirective],
2792
+ declarations: [MatchaHintTextComponent],
2793
+ imports: [
2794
+ CommonModule,
2795
+ MatchaIconModule,
2796
+ ],
2797
+ exports: [MatchaHintTextComponent],
2796
2798
  }]
2797
2799
  }] });
2798
2800
 
@@ -2803,10 +2805,10 @@ class MatchaInputDirective {
2803
2805
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
2804
2806
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-input');
2805
2807
  }
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 }); }
2808
+ 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 }); }
2809
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaInputDirective, isStandalone: false, selector: "[matcha-input]", ngImport: i0 }); }
2808
2810
  }
2809
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaInputDirective, decorators: [{
2811
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInputDirective, decorators: [{
2810
2812
  type: Directive,
2811
2813
  args: [{
2812
2814
  selector: '[matcha-input]',
@@ -2815,11 +2817,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2815
2817
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
2816
2818
 
2817
2819
  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 }); }
2820
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInputModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2821
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaInputModule, declarations: [MatchaInputDirective], exports: [MatchaInputDirective] }); }
2822
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInputModule }); }
2821
2823
  }
2822
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaInputModule, decorators: [{
2824
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInputModule, decorators: [{
2823
2825
  type: NgModule,
2824
2826
  args: [{
2825
2827
  declarations: [MatchaInputDirective],
@@ -2828,38 +2830,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2828
2830
  }]
2829
2831
  }] });
2830
2832
 
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
2833
  class MatchaMenuTriggerForDirective {
2864
2834
  constructor(_elementRef, _renderer) {
2865
2835
  this._elementRef = _elementRef;
@@ -2881,10 +2851,10 @@ class MatchaMenuTriggerForDirective {
2881
2851
  this.menu.closeMenu();
2882
2852
  }
2883
2853
  }
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 }); }
2854
+ 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 }); }
2855
+ 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
2856
  }
2887
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaMenuTriggerForDirective, decorators: [{
2857
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMenuTriggerForDirective, decorators: [{
2888
2858
  type: Directive,
2889
2859
  args: [{
2890
2860
  selector: '[matchaMenuTriggerFor]',
@@ -2912,13 +2882,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2912
2882
  }] } });
2913
2883
 
2914
2884
  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,
2885
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2886
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaMenuModule, declarations: [MatchaMenuComponent,
2917
2887
  MatchaMenuTriggerForDirective], imports: [CommonModule], exports: [MatchaMenuComponent,
2918
2888
  MatchaMenuTriggerForDirective] }); }
2919
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaMenuModule, imports: [CommonModule] }); }
2889
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMenuModule, imports: [CommonModule] }); }
2920
2890
  }
2921
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaMenuModule, decorators: [{
2891
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMenuModule, decorators: [{
2922
2892
  type: NgModule,
2923
2893
  args: [{
2924
2894
  declarations: [
@@ -2935,37 +2905,57 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2935
2905
  }]
2936
2906
  }] });
2937
2907
 
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');
2908
+ class MatchaOverflowDraggableComponent {
2909
+ constructor() {
2910
+ this.dragRef = '';
2944
2911
  }
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] }); }
2912
+ dragToScroll() {
2913
+ const ele = document.querySelector(`matchaDraggableReference${this.dragRef}`);
2914
+ if (ele) {
2915
+ let pos = { top: 0, left: 0, x: 0, y: 0 };
2916
+ const mouseDownHandler = function (e) {
2917
+ pos = {
2918
+ // The current scroll
2919
+ left: ele.scrollLeft,
2920
+ top: ele.scrollTop,
2921
+ // Get the current mouse position
2922
+ x: e.clientX,
2923
+ y: e.clientY,
2924
+ };
2925
+ ele.setAttribute('style', 'cursor: grabbing; user-select: none');
2926
+ document.addEventListener('mousemove', mouseMoveHandler);
2927
+ document.addEventListener('mouseup', mouseUpHandler);
2928
+ };
2929
+ const mouseMoveHandler = function (e) {
2930
+ // How far the mouse has been moved
2931
+ const dx = e.clientX - pos.x;
2932
+ const dy = e.clientY - pos.y;
2933
+ // Scroll the element
2934
+ ele.scrollTop = pos.top - dy;
2935
+ ele.scrollLeft = pos.left - dx;
2936
+ };
2937
+ const mouseUpHandler = function () {
2938
+ document.removeEventListener('mousemove', mouseMoveHandler);
2939
+ document.removeEventListener('mouseup', mouseUpHandler);
2940
+ ele.setAttribute('style', 'cursor: grab; user-select: initial');
2941
+ };
2942
+ ele.addEventListener('mousedown', mouseDownHandler);
2943
+ }
2944
+ }
2945
+ get classes() {
2946
+ const draggableReference = this.dragRef ? `matchaDraggableReference${this.dragRef}` : '';
2947
+ const activeClasses = `${draggableReference}`;
2948
+ return activeClasses;
2949
+ }
2950
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaOverflowDraggableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2951
+ 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
2952
  }
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
- }] });
2953
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaOverflowDraggableComponent, decorators: [{
2954
+ type: Component,
2955
+ args: [{ selector: 'matcha-overflow-draggable', standalone: false, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n" }]
2956
+ }], propDecorators: { dragRef: [{
2957
+ type: Input
2958
+ }] } });
2969
2959
 
2970
2960
  class MatchaPaginatorDirective {
2971
2961
  constructor(_elementRef, _renderer) {
@@ -2974,10 +2964,10 @@ class MatchaPaginatorDirective {
2974
2964
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
2975
2965
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-paginator');
2976
2966
  }
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 }); }
2967
+ 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 }); }
2968
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaPaginatorDirective, isStandalone: false, selector: "[matchaPaginator]", ngImport: i0 }); }
2979
2969
  }
2980
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaPaginatorDirective, decorators: [{
2970
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaPaginatorDirective, decorators: [{
2981
2971
  type: Directive,
2982
2972
  args: [{
2983
2973
  selector: '[matchaPaginator]',
@@ -2986,11 +2976,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
2986
2976
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
2987
2977
 
2988
2978
  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] }); }
2979
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaPaginatorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2980
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaPaginatorModule, declarations: [MatchaPaginatorDirective], imports: [CommonModule], exports: [MatchaPaginatorDirective] }); }
2981
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaPaginatorModule, imports: [CommonModule] }); }
2992
2982
  }
2993
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaPaginatorModule, decorators: [{
2983
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaPaginatorModule, decorators: [{
2994
2984
  type: NgModule,
2995
2985
  args: [{
2996
2986
  declarations: [MatchaPaginatorDirective],
@@ -3006,10 +2996,10 @@ class MatchaProgressBarDirective {
3006
2996
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
3007
2997
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-progress-bar');
3008
2998
  }
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 }); }
2999
+ 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 }); }
3000
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaProgressBarDirective, isStandalone: false, selector: "[matcha-progress-bar]", ngImport: i0 }); }
3011
3001
  }
3012
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaProgressBarDirective, decorators: [{
3002
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaProgressBarDirective, decorators: [{
3013
3003
  type: Directive,
3014
3004
  args: [{
3015
3005
  selector: '[matcha-progress-bar]',
@@ -3018,11 +3008,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3018
3008
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
3019
3009
 
3020
3010
  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] }); }
3011
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaProgressBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3012
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaProgressBarModule, declarations: [MatchaProgressBarDirective], imports: [CommonModule], exports: [MatchaProgressBarDirective] }); }
3013
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaProgressBarModule, imports: [CommonModule] }); }
3024
3014
  }
3025
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaProgressBarModule, decorators: [{
3015
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaProgressBarModule, decorators: [{
3026
3016
  type: NgModule,
3027
3017
  args: [{
3028
3018
  declarations: [MatchaProgressBarDirective],
@@ -3042,10 +3032,10 @@ class MatchaRadioButtonDirective {
3042
3032
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
3043
3033
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-radio-button');
3044
3034
  }
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 }); }
3035
+ 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 }); }
3036
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaRadioButtonDirective, isStandalone: false, selector: "[matchaRadioButton]", ngImport: i0 }); }
3047
3037
  }
3048
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaRadioButtonDirective, decorators: [{
3038
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRadioButtonDirective, decorators: [{
3049
3039
  type: Directive,
3050
3040
  args: [{
3051
3041
  selector: '[matchaRadioButton]',
@@ -3053,51 +3043,83 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3053
3043
  }]
3054
3044
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
3055
3045
 
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] }); }
3046
+ class MatchaRadioButtonModule {
3047
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRadioButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3048
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaRadioButtonModule, declarations: [MatchaRadioButtonDirective], imports: [CommonModule], exports: [MatchaRadioButtonDirective] }); }
3049
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRadioButtonModule, imports: [CommonModule] }); }
3050
+ }
3051
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRadioButtonModule, decorators: [{
3052
+ type: NgModule,
3053
+ args: [{
3054
+ declarations: [MatchaRadioButtonDirective],
3055
+ imports: [
3056
+ CommonModule
3057
+ ],
3058
+ exports: [MatchaRadioButtonDirective]
3059
+ }]
3060
+ }] });
3061
+
3062
+ class MatchaSelectDirective {
3063
+ constructor(_elementRef, _renderer) {
3064
+ this._elementRef = _elementRef;
3065
+ this._renderer = _renderer;
3066
+ //this._elementRef.nativeElement.style.backgroundColor = 'grey';
3067
+ this._renderer.addClass(this._elementRef.nativeElement, 'matcha-select');
3068
+ }
3069
+ 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 }); }
3070
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaSelectDirective, isStandalone: false, selector: "[matcha-select]", ngImport: i0 }); }
3071
+ }
3072
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSelectDirective, decorators: [{
3073
+ type: Directive,
3074
+ args: [{
3075
+ selector: '[matcha-select]',
3076
+ standalone: false
3077
+ }]
3078
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
3079
+
3080
+ class MatchaSelectModule {
3081
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSelectModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3082
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaSelectModule, declarations: [MatchaSelectDirective], imports: [CommonModule], exports: [MatchaSelectDirective] }); }
3083
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSelectModule, imports: [CommonModule] }); }
3060
3084
  }
3061
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaRadioButtonModule, decorators: [{
3085
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSelectModule, decorators: [{
3062
3086
  type: NgModule,
3063
3087
  args: [{
3064
- declarations: [MatchaRadioButtonDirective],
3065
- imports: [
3066
- CommonModule
3067
- ],
3068
- exports: [MatchaRadioButtonDirective]
3088
+ declarations: [MatchaSelectDirective],
3089
+ imports: [CommonModule],
3090
+ exports: [MatchaSelectDirective],
3069
3091
  }]
3070
3092
  }] });
3071
3093
 
3072
- class MatchaSelectDirective {
3094
+ class MatchaSidenavDirective {
3073
3095
  constructor(_elementRef, _renderer) {
3074
3096
  this._elementRef = _elementRef;
3075
3097
  this._renderer = _renderer;
3076
3098
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
3077
- this._renderer.addClass(this._elementRef.nativeElement, 'matcha-select');
3099
+ this._renderer.addClass(this._elementRef.nativeElement, 'matcha-sidenav');
3078
3100
  }
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 }); }
3101
+ 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 }); }
3102
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaSidenavDirective, isStandalone: false, selector: "[matcha-sidenav]", ngImport: i0 }); }
3081
3103
  }
3082
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSelectDirective, decorators: [{
3104
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSidenavDirective, decorators: [{
3083
3105
  type: Directive,
3084
3106
  args: [{
3085
- selector: '[matcha-select]',
3107
+ selector: '[matcha-sidenav]',
3086
3108
  standalone: false
3087
3109
  }]
3088
3110
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
3089
3111
 
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] }); }
3112
+ class MatchaSidenavModule {
3113
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSidenavModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3114
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaSidenavModule, declarations: [MatchaSidenavDirective], imports: [CommonModule], exports: [MatchaSidenavDirective] }); }
3115
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSidenavModule, imports: [CommonModule] }); }
3094
3116
  }
3095
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSelectModule, decorators: [{
3117
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSidenavModule, decorators: [{
3096
3118
  type: NgModule,
3097
3119
  args: [{
3098
- declarations: [MatchaSelectDirective],
3120
+ declarations: [MatchaSidenavDirective],
3099
3121
  imports: [CommonModule],
3100
- exports: [MatchaSelectDirective],
3122
+ exports: [MatchaSidenavDirective],
3101
3123
  }]
3102
3124
  }] });
3103
3125
 
@@ -3108,10 +3130,10 @@ class MatchaSlideToggleDirective {
3108
3130
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
3109
3131
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-slide-toggle');
3110
3132
  }
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 }); }
3133
+ 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 }); }
3134
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaSlideToggleDirective, isStandalone: false, selector: "[slide-toggle]", ngImport: i0 }); }
3113
3135
  }
3114
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSlideToggleDirective, decorators: [{
3136
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSlideToggleDirective, decorators: [{
3115
3137
  type: Directive,
3116
3138
  args: [{
3117
3139
  selector: '[slide-toggle]',
@@ -3120,11 +3142,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3120
3142
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
3121
3143
 
3122
3144
  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] }); }
3145
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSlideToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3146
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaSlideToggleModule, declarations: [MatchaSlideToggleDirective], imports: [CommonModule], exports: [MatchaSlideToggleDirective] }); }
3147
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSlideToggleModule, imports: [CommonModule] }); }
3126
3148
  }
3127
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSlideToggleModule, decorators: [{
3149
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSlideToggleModule, decorators: [{
3128
3150
  type: NgModule,
3129
3151
  args: [{
3130
3152
  declarations: [MatchaSlideToggleDirective],
@@ -3142,10 +3164,10 @@ class MatchaSliderDirective {
3142
3164
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
3143
3165
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-slider');
3144
3166
  }
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 }); }
3167
+ 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 }); }
3168
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaSliderDirective, isStandalone: false, selector: "[matchaSlider]", ngImport: i0 }); }
3147
3169
  }
3148
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSliderDirective, decorators: [{
3170
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSliderDirective, decorators: [{
3149
3171
  type: Directive,
3150
3172
  args: [{
3151
3173
  selector: '[matchaSlider]',
@@ -3154,11 +3176,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3154
3176
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
3155
3177
 
3156
3178
  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] }); }
3179
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSliderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3180
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaSliderModule, declarations: [MatchaSliderDirective], imports: [CommonModule], exports: [MatchaSliderDirective] }); }
3181
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSliderModule, imports: [CommonModule] }); }
3160
3182
  }
3161
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSliderModule, decorators: [{
3183
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSliderModule, decorators: [{
3162
3184
  type: NgModule,
3163
3185
  args: [{
3164
3186
  declarations: [MatchaSliderDirective],
@@ -3176,10 +3198,10 @@ class MatchaSnackBarDirective {
3176
3198
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
3177
3199
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-snackbar');
3178
3200
  }
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 }); }
3201
+ 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 }); }
3202
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaSnackBarDirective, isStandalone: false, selector: "[matchaSnackBar]", ngImport: i0 }); }
3181
3203
  }
3182
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSnackBarDirective, decorators: [{
3204
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSnackBarDirective, decorators: [{
3183
3205
  type: Directive,
3184
3206
  args: [{
3185
3207
  selector: '[matchaSnackBar]',
@@ -3188,11 +3210,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3188
3210
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
3189
3211
 
3190
3212
  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] }); }
3213
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSnackBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3214
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaSnackBarModule, declarations: [MatchaSnackBarDirective], imports: [CommonModule], exports: [MatchaSnackBarDirective] }); }
3215
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSnackBarModule, imports: [CommonModule] }); }
3194
3216
  }
3195
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSnackBarModule, decorators: [{
3217
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSnackBarModule, decorators: [{
3196
3218
  type: NgModule,
3197
3219
  args: [{
3198
3220
  declarations: [MatchaSnackBarDirective],
@@ -3208,10 +3230,10 @@ class MatchaSortHeaderDirective {
3208
3230
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
3209
3231
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-sort-header');
3210
3232
  }
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 }); }
3233
+ 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 }); }
3234
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaSortHeaderDirective, isStandalone: false, selector: "[matchaSortHeader]", ngImport: i0 }); }
3213
3235
  }
3214
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSortHeaderDirective, decorators: [{
3236
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSortHeaderDirective, decorators: [{
3215
3237
  type: Directive,
3216
3238
  args: [{
3217
3239
  selector: '[matchaSortHeader]',
@@ -3220,11 +3242,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3220
3242
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
3221
3243
 
3222
3244
  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] }); }
3245
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSortHeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3246
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaSortHeaderModule, declarations: [MatchaSortHeaderDirective], imports: [CommonModule], exports: [MatchaSortHeaderDirective] }); }
3247
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSortHeaderModule, imports: [CommonModule] }); }
3226
3248
  }
3227
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSortHeaderModule, decorators: [{
3249
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSortHeaderModule, decorators: [{
3228
3250
  type: NgModule,
3229
3251
  args: [{
3230
3252
  declarations: [MatchaSortHeaderDirective],
@@ -3233,6 +3255,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3233
3255
  }]
3234
3256
  }] });
3235
3257
 
3258
+ class MatchaSpinModule {
3259
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSpinModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3260
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaSpinModule, declarations: [MatchaSpinComponent], imports: [CommonModule], exports: [MatchaSpinComponent] }); }
3261
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSpinModule, imports: [CommonModule] }); }
3262
+ }
3263
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSpinModule, decorators: [{
3264
+ type: NgModule,
3265
+ args: [{
3266
+ declarations: [MatchaSpinComponent],
3267
+ imports: [
3268
+ CommonModule
3269
+ ],
3270
+ exports: [MatchaSpinComponent]
3271
+ }]
3272
+ }] });
3273
+
3236
3274
  class MatchaTableDirective {
3237
3275
  constructor(_elementRef, _renderer) {
3238
3276
  this._elementRef = _elementRef;
@@ -3240,10 +3278,10 @@ class MatchaTableDirective {
3240
3278
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
3241
3279
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-table');
3242
3280
  }
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 }); }
3281
+ 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 }); }
3282
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaTableDirective, isStandalone: false, selector: "[matchaTable]", ngImport: i0 }); }
3245
3283
  }
3246
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTableDirective, decorators: [{
3284
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTableDirective, decorators: [{
3247
3285
  type: Directive,
3248
3286
  args: [{
3249
3287
  selector: '[matchaTable]',
@@ -3252,11 +3290,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3252
3290
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
3253
3291
 
3254
3292
  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] }); }
3293
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3294
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaTableModule, declarations: [MatchaTableDirective], imports: [CommonModule], exports: [MatchaTableDirective] }); }
3295
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTableModule, imports: [CommonModule] }); }
3258
3296
  }
3259
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTableModule, decorators: [{
3297
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTableModule, decorators: [{
3260
3298
  type: NgModule,
3261
3299
  args: [{
3262
3300
  declarations: [MatchaTableDirective],
@@ -3265,6 +3303,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3265
3303
  }]
3266
3304
  }] });
3267
3305
 
3306
+ class MatchaTabsModule {
3307
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTabsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3308
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaTabsModule, declarations: [MatchaTabsComponent, MatchaTabItemComponent], imports: [CommonModule,
3309
+ MatchaTooltipModule], exports: [MatchaTabsComponent, MatchaTabItemComponent] }); }
3310
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTabsModule, imports: [CommonModule,
3311
+ MatchaTooltipModule] }); }
3312
+ }
3313
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTabsModule, decorators: [{
3314
+ type: NgModule,
3315
+ args: [{
3316
+ declarations: [MatchaTabsComponent, MatchaTabItemComponent],
3317
+ imports: [
3318
+ CommonModule,
3319
+ MatchaTooltipModule
3320
+ ],
3321
+ exports: [MatchaTabsComponent, MatchaTabItemComponent]
3322
+ }]
3323
+ }] });
3324
+
3268
3325
  class MatchaTreeDirective {
3269
3326
  constructor(_elementRef, _renderer) {
3270
3327
  this._elementRef = _elementRef;
@@ -3272,10 +3329,10 @@ class MatchaTreeDirective {
3272
3329
  //this._elementRef.nativeElement.style.backgroundColor = 'grey';
3273
3330
  this._renderer.addClass(this._elementRef.nativeElement, 'matcha-tree');
3274
3331
  }
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 }); }
3332
+ 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 }); }
3333
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.6", type: MatchaTreeDirective, isStandalone: false, selector: "[matchaTree]", ngImport: i0 }); }
3277
3334
  }
3278
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTreeDirective, decorators: [{
3335
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTreeDirective, decorators: [{
3279
3336
  type: Directive,
3280
3337
  args: [{
3281
3338
  selector: '[matchaTree]',
@@ -3284,11 +3341,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3284
3341
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
3285
3342
 
3286
3343
  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] }); }
3344
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTreeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3345
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaTreeModule, declarations: [MatchaTreeDirective], imports: [CommonModule], exports: [MatchaTreeDirective] }); }
3346
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTreeModule, imports: [CommonModule] }); }
3290
3347
  }
3291
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTreeModule, decorators: [{
3348
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTreeModule, decorators: [{
3292
3349
  type: NgModule,
3293
3350
  args: [{
3294
3351
  declarations: [MatchaTreeDirective],
@@ -3297,261 +3354,154 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3297
3354
  }]
3298
3355
  }] });
3299
3356
 
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
3357
  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,
3358
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3359
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaComponentsModule, declarations: [MatchaOverflowDraggableComponent], imports: [CommonModule,
3390
3360
  FormsModule,
3391
3361
  ReactiveFormsModule,
3392
- MatchaButtonGroupModule,
3393
3362
  MatchaAccordionModule,
3394
- MatchaFormFieldModule,
3395
- MatchaInfiniteScrollModule,
3396
- MatchaModalModule,
3397
- MatchaMasonryModule,
3398
- MatchaCardModule,
3399
- MatchaTitleModule,
3400
3363
  MatchaAutocompleteModule,
3401
3364
  MatchaBadgeModule,
3402
- MatchaTabsModule,
3403
- MatchaBottomSheetModule,
3404
- MatchaButtonToggleModule,
3405
3365
  MatchaButtonModule,
3366
+ MatchaButtonToggleModule,
3367
+ MatchaCardModule,
3406
3368
  MatchaCheckboxModule,
3407
3369
  MatchaChipsModule,
3408
3370
  MatchaDatepickerModule,
3409
3371
  MatchaDividerModule,
3410
3372
  MatchaElevationModule,
3411
- MatchaExpansionModule,
3412
- MatchaFormsModule,
3373
+ MatchaFormFieldModule,
3374
+ MatchaHintTextModule,
3413
3375
  MatchaIconModule,
3376
+ MatchaInfiniteScrollModule,
3414
3377
  MatchaInputModule,
3415
- MatchaListModule,
3378
+ MatchaMasonryModule,
3416
3379
  MatchaMenuModule,
3417
- MatchaSidenavModule,
3380
+ MatchaModalModule,
3418
3381
  MatchaPaginatorModule,
3419
3382
  MatchaProgressBarModule,
3420
3383
  MatchaRadioButtonModule,
3384
+ MatchaRippleModule,
3421
3385
  MatchaSelectModule,
3386
+ MatchaSidenavModule,
3422
3387
  MatchaSlideToggleModule,
3423
3388
  MatchaSliderModule,
3424
3389
  MatchaSnackBarModule,
3425
3390
  MatchaSortHeaderModule,
3426
- MatchaTableModule,
3427
- MatchaTooltipModule,
3428
- MatchaTreeModule,
3429
- MatchaRippleModule,
3430
3391
  MatchaSpinModule,
3431
- MatchaHintTextModule], exports: [MatchaButtonGroupModule,
3432
- MatchaAccordionModule,
3433
- MatchaFormFieldModule,
3434
- MatchaInfiniteScrollModule,
3435
- MatchaModalModule,
3436
- MatchaMasonryModule,
3437
- MatchaCardModule,
3392
+ MatchaTableModule,
3393
+ MatchaTabsModule,
3438
3394
  MatchaTitleModule,
3395
+ MatchaTooltipModule,
3396
+ MatchaTreeModule], exports: [MatchaAccordionModule,
3439
3397
  MatchaAutocompleteModule,
3440
3398
  MatchaBadgeModule,
3441
- MatchaTabsModule,
3442
- MatchaBottomSheetModule,
3443
- MatchaButtonToggleModule,
3444
3399
  MatchaButtonModule,
3400
+ MatchaButtonToggleModule,
3401
+ MatchaCardModule,
3445
3402
  MatchaCheckboxModule,
3446
3403
  MatchaChipsModule,
3447
3404
  MatchaDatepickerModule,
3448
3405
  MatchaDividerModule,
3449
3406
  MatchaElevationModule,
3450
- MatchaExpansionModule,
3451
- MatchaFormsModule,
3407
+ MatchaFormFieldModule,
3408
+ MatchaHintTextModule,
3452
3409
  MatchaIconModule,
3410
+ MatchaInfiniteScrollModule,
3453
3411
  MatchaInputModule,
3454
- MatchaListModule,
3412
+ MatchaMasonryModule,
3455
3413
  MatchaMenuModule,
3456
- MatchaSidenavModule,
3414
+ MatchaModalModule,
3457
3415
  MatchaPaginatorModule,
3458
3416
  MatchaProgressBarModule,
3459
3417
  MatchaRadioButtonModule,
3418
+ MatchaRippleModule,
3460
3419
  MatchaSelectModule,
3420
+ MatchaSidenavModule,
3461
3421
  MatchaSlideToggleModule,
3462
3422
  MatchaSliderModule,
3463
3423
  MatchaSnackBarModule,
3464
3424
  MatchaSortHeaderModule,
3425
+ MatchaSpinModule,
3465
3426
  MatchaTableModule,
3427
+ MatchaTabsModule,
3428
+ MatchaTitleModule,
3466
3429
  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,
3430
+ MatchaTreeModule] }); }
3431
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaComponentsModule, imports: [CommonModule,
3472
3432
  FormsModule,
3473
3433
  ReactiveFormsModule,
3474
- MatchaButtonGroupModule,
3475
3434
  MatchaAccordionModule,
3476
- MatchaFormFieldModule,
3477
- MatchaInfiniteScrollModule,
3478
- MatchaModalModule,
3479
- MatchaMasonryModule,
3480
- MatchaCardModule,
3481
- MatchaTitleModule,
3482
3435
  MatchaAutocompleteModule,
3483
3436
  MatchaBadgeModule,
3484
- MatchaTabsModule,
3485
- MatchaBottomSheetModule,
3486
- MatchaButtonToggleModule,
3487
3437
  MatchaButtonModule,
3438
+ MatchaButtonToggleModule,
3439
+ MatchaCardModule,
3488
3440
  MatchaCheckboxModule,
3489
3441
  MatchaChipsModule,
3490
3442
  MatchaDatepickerModule,
3491
3443
  MatchaDividerModule,
3492
3444
  MatchaElevationModule,
3493
- MatchaExpansionModule,
3494
- MatchaFormsModule,
3445
+ MatchaFormFieldModule,
3446
+ MatchaHintTextModule,
3495
3447
  MatchaIconModule,
3448
+ MatchaInfiniteScrollModule,
3496
3449
  MatchaInputModule,
3497
- MatchaListModule,
3450
+ MatchaMasonryModule,
3498
3451
  MatchaMenuModule,
3499
- MatchaSidenavModule,
3452
+ MatchaModalModule,
3500
3453
  MatchaPaginatorModule,
3501
3454
  MatchaProgressBarModule,
3502
3455
  MatchaRadioButtonModule,
3456
+ MatchaRippleModule,
3503
3457
  MatchaSelectModule,
3458
+ MatchaSidenavModule,
3504
3459
  MatchaSlideToggleModule,
3505
3460
  MatchaSliderModule,
3506
3461
  MatchaSnackBarModule,
3507
3462
  MatchaSortHeaderModule,
3508
- MatchaTableModule,
3509
- MatchaTooltipModule,
3510
- MatchaTreeModule,
3511
- MatchaRippleModule,
3512
3463
  MatchaSpinModule,
3513
- MatchaHintTextModule, MatchaButtonGroupModule,
3514
- MatchaAccordionModule,
3515
- MatchaFormFieldModule,
3516
- MatchaInfiniteScrollModule,
3517
- MatchaModalModule,
3518
- MatchaMasonryModule,
3519
- MatchaCardModule,
3464
+ MatchaTableModule,
3465
+ MatchaTabsModule,
3520
3466
  MatchaTitleModule,
3467
+ MatchaTooltipModule,
3468
+ MatchaTreeModule, MatchaAccordionModule,
3521
3469
  MatchaAutocompleteModule,
3522
3470
  MatchaBadgeModule,
3523
- MatchaTabsModule,
3524
- MatchaBottomSheetModule,
3525
- MatchaButtonToggleModule,
3526
3471
  MatchaButtonModule,
3472
+ MatchaButtonToggleModule,
3473
+ MatchaCardModule,
3527
3474
  MatchaCheckboxModule,
3528
3475
  MatchaChipsModule,
3529
3476
  MatchaDatepickerModule,
3530
3477
  MatchaDividerModule,
3531
3478
  MatchaElevationModule,
3532
- MatchaExpansionModule,
3533
- MatchaFormsModule,
3479
+ MatchaFormFieldModule,
3480
+ MatchaHintTextModule,
3534
3481
  MatchaIconModule,
3482
+ MatchaInfiniteScrollModule,
3535
3483
  MatchaInputModule,
3536
- MatchaListModule,
3484
+ MatchaMasonryModule,
3537
3485
  MatchaMenuModule,
3538
- MatchaSidenavModule,
3486
+ MatchaModalModule,
3539
3487
  MatchaPaginatorModule,
3540
3488
  MatchaProgressBarModule,
3541
3489
  MatchaRadioButtonModule,
3490
+ MatchaRippleModule,
3542
3491
  MatchaSelectModule,
3492
+ MatchaSidenavModule,
3543
3493
  MatchaSlideToggleModule,
3544
3494
  MatchaSliderModule,
3545
3495
  MatchaSnackBarModule,
3546
3496
  MatchaSortHeaderModule,
3497
+ MatchaSpinModule,
3547
3498
  MatchaTableModule,
3499
+ MatchaTabsModule,
3500
+ MatchaTitleModule,
3548
3501
  MatchaTooltipModule,
3549
- MatchaTreeModule,
3550
- MatchaRippleModule,
3551
- MatchaSpinModule,
3552
- MatchaHintTextModule] }); }
3502
+ MatchaTreeModule] }); }
3553
3503
  }
3554
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaComponentsModule, decorators: [{
3504
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaComponentsModule, decorators: [{
3555
3505
  type: NgModule,
3556
3506
  args: [{
3557
3507
  declarations: [
@@ -3561,88 +3511,78 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3561
3511
  CommonModule,
3562
3512
  FormsModule,
3563
3513
  ReactiveFormsModule,
3564
- MatchaButtonGroupModule,
3565
3514
  MatchaAccordionModule,
3566
- MatchaFormFieldModule,
3567
- MatchaInfiniteScrollModule,
3568
- MatchaModalModule,
3569
- MatchaMasonryModule,
3570
- MatchaCardModule,
3571
- MatchaTitleModule,
3572
3515
  MatchaAutocompleteModule,
3573
3516
  MatchaBadgeModule,
3574
- MatchaTabsModule,
3575
- MatchaBottomSheetModule,
3576
- MatchaButtonToggleModule,
3577
3517
  MatchaButtonModule,
3518
+ MatchaButtonToggleModule,
3519
+ MatchaCardModule,
3578
3520
  MatchaCheckboxModule,
3579
3521
  MatchaChipsModule,
3580
3522
  MatchaDatepickerModule,
3581
3523
  MatchaDividerModule,
3582
3524
  MatchaElevationModule,
3583
- MatchaExpansionModule,
3584
- MatchaFormsModule,
3525
+ MatchaFormFieldModule,
3526
+ MatchaHintTextModule,
3585
3527
  MatchaIconModule,
3528
+ MatchaInfiniteScrollModule,
3586
3529
  MatchaInputModule,
3587
- MatchaListModule,
3530
+ MatchaMasonryModule,
3588
3531
  MatchaMenuModule,
3589
- MatchaSidenavModule,
3532
+ MatchaModalModule,
3590
3533
  MatchaPaginatorModule,
3591
3534
  MatchaProgressBarModule,
3592
3535
  MatchaRadioButtonModule,
3536
+ MatchaRippleModule,
3593
3537
  MatchaSelectModule,
3538
+ MatchaSidenavModule,
3594
3539
  MatchaSlideToggleModule,
3595
3540
  MatchaSliderModule,
3596
3541
  MatchaSnackBarModule,
3597
3542
  MatchaSortHeaderModule,
3543
+ MatchaSpinModule,
3598
3544
  MatchaTableModule,
3545
+ MatchaTabsModule,
3546
+ MatchaTitleModule,
3599
3547
  MatchaTooltipModule,
3600
- MatchaTreeModule,
3601
- MatchaRippleModule,
3602
- MatchaSpinModule,
3603
- MatchaHintTextModule
3548
+ MatchaTreeModule
3604
3549
  ],
3605
3550
  exports: [
3606
- MatchaButtonGroupModule,
3607
3551
  MatchaAccordionModule,
3608
- MatchaFormFieldModule,
3609
- MatchaInfiniteScrollModule,
3610
- MatchaModalModule,
3611
- MatchaMasonryModule,
3612
- MatchaCardModule,
3613
- MatchaTitleModule,
3614
3552
  MatchaAutocompleteModule,
3615
3553
  MatchaBadgeModule,
3616
- MatchaTabsModule,
3617
- MatchaBottomSheetModule,
3618
- MatchaButtonToggleModule,
3619
3554
  MatchaButtonModule,
3555
+ MatchaButtonToggleModule,
3556
+ MatchaCardModule,
3620
3557
  MatchaCheckboxModule,
3621
3558
  MatchaChipsModule,
3622
3559
  MatchaDatepickerModule,
3623
3560
  MatchaDividerModule,
3624
3561
  MatchaElevationModule,
3625
- MatchaExpansionModule,
3626
- MatchaFormsModule,
3562
+ MatchaFormFieldModule,
3563
+ MatchaHintTextModule,
3627
3564
  MatchaIconModule,
3565
+ MatchaInfiniteScrollModule,
3628
3566
  MatchaInputModule,
3629
- MatchaListModule,
3567
+ MatchaMasonryModule,
3630
3568
  MatchaMenuModule,
3631
- MatchaSidenavModule,
3569
+ MatchaModalModule,
3632
3570
  MatchaPaginatorModule,
3633
3571
  MatchaProgressBarModule,
3634
3572
  MatchaRadioButtonModule,
3573
+ MatchaRippleModule,
3635
3574
  MatchaSelectModule,
3575
+ MatchaSidenavModule,
3636
3576
  MatchaSlideToggleModule,
3637
3577
  MatchaSliderModule,
3638
3578
  MatchaSnackBarModule,
3639
3579
  MatchaSortHeaderModule,
3580
+ MatchaSpinModule,
3640
3581
  MatchaTableModule,
3582
+ MatchaTabsModule,
3583
+ MatchaTitleModule,
3641
3584
  MatchaTooltipModule,
3642
- MatchaTreeModule,
3643
- MatchaRippleModule,
3644
- MatchaSpinModule,
3645
- MatchaHintTextModule
3585
+ MatchaTreeModule
3646
3586
  ]
3647
3587
  }]
3648
3588
  }] });
@@ -3666,5 +3606,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
3666
3606
  * Generated bundle index. Do not edit.
3667
3607
  */
3668
3608
 
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 };
3609
+ export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaAutocompleteOverviewDirective, MatchaBadgeDirective, MatchaBadgeModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleItemComponent, 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
3610
  //# sourceMappingURL=matcha-components.mjs.map