matcha-components 19.52.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.
- package/fesm2022/matcha-components.mjs +1008 -1089
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/lib/matcha-button-toggle/button-toggle/button-toggle.component.d.ts +25 -0
- package/lib/matcha-button-toggle/button-toggle-item/button-toggle-item.component.d.ts +14 -0
- package/lib/matcha-button-toggle/button-toggle.module.d.ts +5 -2
- package/lib/matcha-components.module.d.ts +36 -41
- package/lib/matcha-tabs/tab-item/tab-item.component.d.ts +14 -0
- package/lib/matcha-tabs/tabs/tabs.component.d.ts +25 -0
- package/lib/matcha-tabs/tabs.module.d.ts +5 -3
- package/package.json +1 -1
- package/public-api.d.ts +6 -14
- package/lib/matcha-bottom-sheet/bottom-sheet.directive.d.ts +0 -9
- package/lib/matcha-bottom-sheet/bottom-sheet.module.d.ts +0 -7
- package/lib/matcha-button-group/button-group/button-group.component.d.ts +0 -22
- package/lib/matcha-button-group/button-group.module.d.ts +0 -10
- package/lib/matcha-button-group/button-item/button-item.component.d.ts +0 -14
- package/lib/matcha-button-toggle/matcha-button-toggle.directive.d.ts +0 -9
- package/lib/matcha-expansion/expansion.directive.d.ts +0 -9
- package/lib/matcha-expansion/expansion.module.d.ts +0 -8
- package/lib/matcha-forms/form-field.directive.d.ts +0 -9
- package/lib/matcha-forms/forms.module.d.ts +0 -8
- package/lib/matcha-list/list.directive.d.ts +0 -9
- package/lib/matcha-list/list.module.d.ts +0 -8
- package/lib/matcha-tabs/tabs.directive.d.ts +0 -9
|
@@ -1,326 +1,12 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
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(renderer) {
|
|
203
|
-
this.renderer = renderer;
|
|
204
|
-
this.active = false;
|
|
205
|
-
this.selected = new EventEmitter();
|
|
206
|
-
}
|
|
207
|
-
ngAfterContentInit() {
|
|
208
|
-
if (this.innerButton) {
|
|
209
|
-
this.renderer.listen(this.innerButton.nativeElement, 'click', () => this.onClick());
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
onClick() {
|
|
213
|
-
this.selected.emit();
|
|
214
|
-
}
|
|
215
|
-
setActiveState(isActive, inactiveColor, inactiveType) {
|
|
216
|
-
this.active = isActive;
|
|
217
|
-
const color = isActive ? '' : inactiveColor;
|
|
218
|
-
const type = isActive ? '' : inactiveType;
|
|
219
|
-
// Aplica a cor correta ao botão interno
|
|
220
|
-
if (isActive) {
|
|
221
|
-
this.renderer.setAttribute(this.innerButton.nativeElement, 'active-item', 'true');
|
|
222
|
-
}
|
|
223
|
-
else {
|
|
224
|
-
this.renderer.removeAttribute(this.innerButton.nativeElement, 'active-item');
|
|
225
|
-
}
|
|
226
|
-
// inactiveType - pode ser 'basic', 'outline', 'alpha' ou 'pill'
|
|
227
|
-
// Se o tipo for 'basic', 'outline', 'alpha' ou 'pill', aplica o tipo correto
|
|
228
|
-
// Limpa todos os tipos anteriores
|
|
229
|
-
// ['basic', 'outline', 'alpha', 'pill'].forEach(attr => {
|
|
230
|
-
// this.renderer.setAttribute(this.innerButton.nativeElement, attr, 'false');
|
|
231
|
-
// });
|
|
232
|
-
// Aplica o tipo correto ao botão interno se houver algum
|
|
233
|
-
// if (type) {
|
|
234
|
-
// this.renderer.setAttribute(this.innerButton.nativeElement, type, 'true');
|
|
235
|
-
// }
|
|
236
|
-
}
|
|
237
|
-
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 }); }
|
|
238
|
-
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: [""] }); }
|
|
239
|
-
}
|
|
240
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonItemComponent, decorators: [{
|
|
241
|
-
type: Component,
|
|
242
|
-
args: [{ selector: 'matcha-button-item', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
243
|
-
}], ctorParameters: () => [{ type: i0.Renderer2 }], propDecorators: { active: [{
|
|
244
|
-
type: Input
|
|
245
|
-
}], selected: [{
|
|
246
|
-
type: Output
|
|
247
|
-
}], innerButton: [{
|
|
248
|
-
type: ContentChild,
|
|
249
|
-
args: [MatchaButtonComponent, { static: true, read: ElementRef }]
|
|
250
|
-
}] } });
|
|
251
|
-
|
|
252
|
-
class MatchaButtonGroupComponent {
|
|
253
|
-
constructor() {
|
|
254
|
-
this._multiple = false;
|
|
255
|
-
this._disabled = false;
|
|
256
|
-
this.inactiveColor = 'disabled';
|
|
257
|
-
this.inactiveType = 'basic';
|
|
258
|
-
this._gap = 16;
|
|
259
|
-
}
|
|
260
|
-
get multiple() {
|
|
261
|
-
return this._multiple;
|
|
262
|
-
}
|
|
263
|
-
set multiple(value) {
|
|
264
|
-
this._multiple = value === 'false' ? false : Boolean(value);
|
|
265
|
-
}
|
|
266
|
-
get disabled() {
|
|
267
|
-
return this._disabled;
|
|
268
|
-
}
|
|
269
|
-
set disabled(value) {
|
|
270
|
-
this._disabled = value === 'false' ? false : Boolean(value);
|
|
271
|
-
}
|
|
272
|
-
get isDisabled() {
|
|
273
|
-
return this.disabled || null;
|
|
274
|
-
}
|
|
275
|
-
set gap(value) {
|
|
276
|
-
const numericGap = Number(value);
|
|
277
|
-
this._gap = isNaN(numericGap) ? 16 : numericGap;
|
|
278
|
-
}
|
|
279
|
-
get gapClass() {
|
|
280
|
-
return `gap-${this._gap}`;
|
|
281
|
-
}
|
|
282
|
-
ngAfterContentInit() {
|
|
283
|
-
this.buttonItems.forEach((item, index) => {
|
|
284
|
-
const isFirst = index === 0;
|
|
285
|
-
// Opcionalmente, primeiro botão pode iniciar ativo por padrão
|
|
286
|
-
item.setActiveState(isFirst, this.inactiveColor, this.inactiveType);
|
|
287
|
-
item.selected.subscribe(() => this.onItemSelected(item));
|
|
288
|
-
});
|
|
289
|
-
}
|
|
290
|
-
onItemSelected(selectedItem) {
|
|
291
|
-
if (this.multiple) {
|
|
292
|
-
selectedItem.setActiveState(!selectedItem.active, this.inactiveColor, this.inactiveType);
|
|
293
|
-
}
|
|
294
|
-
else {
|
|
295
|
-
this.buttonItems.forEach(item => {
|
|
296
|
-
item.setActiveState(item === selectedItem, this.inactiveColor, this.inactiveType);
|
|
297
|
-
});
|
|
298
|
-
}
|
|
299
|
-
}
|
|
300
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
301
|
-
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"] }] }); }
|
|
302
|
-
}
|
|
303
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonGroupComponent, decorators: [{
|
|
304
|
-
type: Component,
|
|
305
|
-
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" }]
|
|
306
|
-
}], propDecorators: { multiple: [{
|
|
307
|
-
type: Input
|
|
308
|
-
}], disabled: [{
|
|
309
|
-
type: Input
|
|
310
|
-
}], isDisabled: [{
|
|
311
|
-
type: HostBinding,
|
|
312
|
-
args: ['attr.disabled']
|
|
313
|
-
}], inactiveColor: [{
|
|
314
|
-
type: Input
|
|
315
|
-
}], inactiveType: [{
|
|
316
|
-
type: Input
|
|
317
|
-
}], gap: [{
|
|
318
|
-
type: Input
|
|
319
|
-
}], buttonItems: [{
|
|
320
|
-
type: ContentChildren,
|
|
321
|
-
args: [MatchaButtonItemComponent]
|
|
322
|
-
}] } });
|
|
323
|
-
|
|
324
10
|
const customAnimation = animation([
|
|
325
11
|
style({
|
|
326
12
|
opacity: '{{opacity}}',
|
|
@@ -697,10 +383,10 @@ class MatchaAccordionItemComponent {
|
|
|
697
383
|
this.isOpen = !this.isOpen;
|
|
698
384
|
this.opened.emit(this.isOpen);
|
|
699
385
|
}
|
|
700
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
701
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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] }); }
|
|
702
388
|
}
|
|
703
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
389
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionItemComponent, decorators: [{
|
|
704
390
|
type: Component,
|
|
705
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" }]
|
|
706
392
|
}], propDecorators: { stretch: [{
|
|
@@ -741,10 +427,10 @@ class MatchaAccordionComponent {
|
|
|
741
427
|
});
|
|
742
428
|
}
|
|
743
429
|
}
|
|
744
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
745
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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: [""] }); }
|
|
746
432
|
}
|
|
747
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
433
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionComponent, decorators: [{
|
|
748
434
|
type: Component,
|
|
749
435
|
args: [{ selector: 'matcha-accordion', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
750
436
|
}], propDecorators: { multiple: [{
|
|
@@ -758,19 +444,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
758
444
|
}] } });
|
|
759
445
|
|
|
760
446
|
class MatchaAccordionHeaderComponent {
|
|
761
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
762
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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: [""] }); }
|
|
763
449
|
}
|
|
764
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
450
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionHeaderComponent, decorators: [{
|
|
765
451
|
type: Component,
|
|
766
452
|
args: [{ selector: 'matcha-accordion-header', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
767
453
|
}] });
|
|
768
454
|
|
|
769
455
|
class MatchaAccordionContentComponent {
|
|
770
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
771
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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: [""] }); }
|
|
772
458
|
}
|
|
773
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
459
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionContentComponent, decorators: [{
|
|
774
460
|
type: Component,
|
|
775
461
|
args: [{ selector: 'matcha-accordion-content', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
776
462
|
}] });
|
|
@@ -809,10 +495,10 @@ class MatchaInfiniteScrollComponent {
|
|
|
809
495
|
ngOnDestroy() {
|
|
810
496
|
this.observer.disconnect();
|
|
811
497
|
}
|
|
812
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
813
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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: [""] }); }
|
|
814
500
|
}
|
|
815
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
501
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInfiniteScrollComponent, decorators: [{
|
|
816
502
|
type: Component,
|
|
817
503
|
args: [{ selector: 'matcha-infinite-scroll', standalone: false, template: "" }]
|
|
818
504
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { scrolledToEnd: [{
|
|
@@ -888,68 +574,259 @@ class MatchaInfiniteScrollDataComponent {
|
|
|
888
574
|
this.aggregatedData.emit(this.aggregatedList);
|
|
889
575
|
this.checkExactMatch();
|
|
890
576
|
}
|
|
891
|
-
/**
|
|
892
|
-
* Reseta apenas as assinaturas e o estado dos dados (não a inscrição do searchTerm).
|
|
893
|
-
*/
|
|
894
|
-
resetData() {
|
|
895
|
-
// Cancela as assinaturas das chamadas de loadData
|
|
896
|
-
this.dataSubscription.unsubscribe();
|
|
897
|
-
this.dataSubscription = new Subscription();
|
|
898
|
-
// Re-inicializa a lista e o contador
|
|
899
|
-
this.initialize();
|
|
577
|
+
/**
|
|
578
|
+
* Reseta apenas as assinaturas e o estado dos dados (não a inscrição do searchTerm).
|
|
579
|
+
*/
|
|
580
|
+
resetData() {
|
|
581
|
+
// Cancela as assinaturas das chamadas de loadData
|
|
582
|
+
this.dataSubscription.unsubscribe();
|
|
583
|
+
this.dataSubscription = new Subscription();
|
|
584
|
+
// Re-inicializa a lista e o contador
|
|
585
|
+
this.initialize();
|
|
586
|
+
}
|
|
587
|
+
/**
|
|
588
|
+
* Carrega a próxima página de dados utilizando a função loadData.
|
|
589
|
+
*/
|
|
590
|
+
loadNextPage() {
|
|
591
|
+
if (!this.loadData) {
|
|
592
|
+
return;
|
|
593
|
+
}
|
|
594
|
+
this.currentPage++;
|
|
595
|
+
const dataObservable = this.loadData(this.currentPage);
|
|
596
|
+
const sub = dataObservable.subscribe(data => {
|
|
597
|
+
if (data && data.length) {
|
|
598
|
+
this.aggregatedList = [...this.aggregatedList, ...data];
|
|
599
|
+
this.aggregatedData.emit(this.aggregatedList);
|
|
600
|
+
this.checkExactMatch();
|
|
601
|
+
}
|
|
602
|
+
});
|
|
603
|
+
this.dataSubscription.add(sub);
|
|
604
|
+
}
|
|
605
|
+
/**
|
|
606
|
+
* Verifica se a lista agregada possui exatamente um item e se esse item é igual ao searchTerm.
|
|
607
|
+
* Se sim, emite o output exactMatch com esse item.
|
|
608
|
+
*/
|
|
609
|
+
checkExactMatch() {
|
|
610
|
+
if (this.aggregatedList.length === 1 && this.aggregatedList[0] === this.searchTerm) {
|
|
611
|
+
this.exactMatch.emit(this.aggregatedList[0]);
|
|
612
|
+
}
|
|
613
|
+
}
|
|
614
|
+
ngOnDestroy() {
|
|
615
|
+
this.observer.disconnect();
|
|
616
|
+
this.dataSubscription.unsubscribe();
|
|
617
|
+
this.searchSubscription.unsubscribe();
|
|
618
|
+
}
|
|
619
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInfiniteScrollDataComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
620
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaInfiniteScrollDataComponent, isStandalone: false, selector: "matcha-infinite-scroll-data", inputs: { loadData: "loadData", initialList: "initialList", threshold: "threshold", resetKey: "resetKey", searchTerm: "searchTerm" }, outputs: { aggregatedData: "aggregatedData", exactMatch: "exactMatch" }, usesOnChanges: true, ngImport: i0, template: "", styles: ["", ":host{height:1px;opacity:0}\n"] }); }
|
|
621
|
+
}
|
|
622
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInfiniteScrollDataComponent, decorators: [{
|
|
623
|
+
type: Component,
|
|
624
|
+
args: [{ selector: 'matcha-infinite-scroll-data', standalone: false, template: "", styles: [":host{height:1px;opacity:0}\n"] }]
|
|
625
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { loadData: [{
|
|
626
|
+
type: Input
|
|
627
|
+
}], initialList: [{
|
|
628
|
+
type: Input
|
|
629
|
+
}], threshold: [{
|
|
630
|
+
type: Input
|
|
631
|
+
}], resetKey: [{
|
|
632
|
+
type: Input
|
|
633
|
+
}], searchTerm: [{
|
|
634
|
+
type: Input
|
|
635
|
+
}], aggregatedData: [{
|
|
636
|
+
type: Output
|
|
637
|
+
}], exactMatch: [{
|
|
638
|
+
type: Output
|
|
639
|
+
}] } });
|
|
640
|
+
|
|
641
|
+
class MatchaButtonComponent {
|
|
642
|
+
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`);
|
|
900
742
|
}
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
*/
|
|
904
|
-
loadNextPage() {
|
|
905
|
-
if (!this.loadData) {
|
|
906
|
-
return;
|
|
907
|
-
}
|
|
908
|
-
this.currentPage++;
|
|
909
|
-
const dataObservable = this.loadData(this.currentPage);
|
|
910
|
-
const sub = dataObservable.subscribe(data => {
|
|
911
|
-
if (data && data.length) {
|
|
912
|
-
this.aggregatedList = [...this.aggregatedList, ...data];
|
|
913
|
-
this.aggregatedData.emit(this.aggregatedList);
|
|
914
|
-
this.checkExactMatch();
|
|
915
|
-
}
|
|
916
|
-
});
|
|
917
|
-
this.dataSubscription.add(sub);
|
|
743
|
+
setLink() {
|
|
744
|
+
this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-link`);
|
|
918
745
|
}
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
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);
|
|
926
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;
|
|
927
772
|
}
|
|
928
773
|
ngOnDestroy() {
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
774
|
+
const buttons = document.querySelectorAll('.matcha-button');
|
|
775
|
+
buttons.forEach(button => {
|
|
776
|
+
button.removeEventListener('click', this.addRippleEffect, false);
|
|
777
|
+
});
|
|
932
778
|
}
|
|
933
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
934
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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: [""] }); }
|
|
935
781
|
}
|
|
936
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
782
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonComponent, decorators: [{
|
|
937
783
|
type: Component,
|
|
938
|
-
args: [{ selector: 'matcha-
|
|
939
|
-
}], ctorParameters: () => [{ type: i0.ElementRef
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
type:
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
type: Input
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
}],
|
|
952
|
-
type:
|
|
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']
|
|
953
830
|
}] } });
|
|
954
831
|
|
|
955
832
|
class MatchaCardComponent {
|
|
@@ -992,10 +869,10 @@ class MatchaCardComponent {
|
|
|
992
869
|
hasBlockquotePosition() {
|
|
993
870
|
return this.blockquote === 'left' || this.blockquote === 'right';
|
|
994
871
|
}
|
|
995
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
996
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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: [""] }); }
|
|
997
874
|
}
|
|
998
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
875
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCardComponent, decorators: [{
|
|
999
876
|
type: Component,
|
|
1000
877
|
args: [{ selector: 'matcha-card', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
1001
878
|
}], propDecorators: { blockquote: [{
|
|
@@ -1055,10 +932,10 @@ class MatchaDividerComponent {
|
|
|
1055
932
|
activeClasses += gapXl ? ` ${gapXl}` : '';
|
|
1056
933
|
return activeClasses;
|
|
1057
934
|
}
|
|
1058
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1059
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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: [""] }); }
|
|
1060
937
|
}
|
|
1061
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
938
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDividerComponent, decorators: [{
|
|
1062
939
|
type: Component,
|
|
1063
940
|
args: [{ selector: 'matcha-divider', standalone: false, template: "<div [class]=\"classes\"></div>\n" }]
|
|
1064
941
|
}], propDecorators: { gap: [{
|
|
@@ -1125,10 +1002,10 @@ class MatchaTitleComponent {
|
|
|
1125
1002
|
hasIconClickOutput() {
|
|
1126
1003
|
return this.iconClick.observers.length > 0;
|
|
1127
1004
|
}
|
|
1128
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1129
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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: [""] }); }
|
|
1130
1007
|
}
|
|
1131
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1008
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTitleComponent, decorators: [{
|
|
1132
1009
|
type: Component,
|
|
1133
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" }]
|
|
1134
1011
|
}], propDecorators: { color: [{
|
|
@@ -1161,10 +1038,10 @@ class MatchaIconComponent {
|
|
|
1161
1038
|
const activeClasses = `${icon} ${color} ${size} ${loading} ${this.class}`;
|
|
1162
1039
|
return activeClasses;
|
|
1163
1040
|
}
|
|
1164
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1165
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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: [""] }); }
|
|
1166
1043
|
}
|
|
1167
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1044
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaIconComponent, decorators: [{
|
|
1168
1045
|
type: Component,
|
|
1169
1046
|
args: [{ selector: 'matcha-icon', standalone: false, template: "<span [class]=\"classes\">\n <ng-content></ng-content>\n</span>\n" }]
|
|
1170
1047
|
}], propDecorators: { name: [{
|
|
@@ -1261,10 +1138,10 @@ class MatchaGridComponent {
|
|
|
1261
1138
|
this.setColspanClasses(this.colspan, this.breakpoint);
|
|
1262
1139
|
this.setRowspanClasses(this.rowspan, this.breakpoint);
|
|
1263
1140
|
}
|
|
1264
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1265
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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: [""] }); }
|
|
1266
1143
|
}
|
|
1267
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1144
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaGridComponent, decorators: [{
|
|
1268
1145
|
type: Component,
|
|
1269
1146
|
args: [{ selector: 'matcha-grid', standalone: false, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
1270
1147
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }], propDecorators: { breakpoint: [{
|
|
@@ -1324,10 +1201,10 @@ class MatchaMasonryComponent {
|
|
|
1324
1201
|
activeClasses += gapXl ? ` ${gapXl}` : '';
|
|
1325
1202
|
return activeClasses;
|
|
1326
1203
|
}
|
|
1327
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1328
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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: [""] }); }
|
|
1329
1206
|
}
|
|
1330
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1207
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMasonryComponent, decorators: [{
|
|
1331
1208
|
type: Component,
|
|
1332
1209
|
args: [{ selector: 'matcha-masonry', standalone: false, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
1333
1210
|
}], propDecorators: { colSize: [{
|
|
@@ -1363,19 +1240,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
1363
1240
|
}] } });
|
|
1364
1241
|
|
|
1365
1242
|
class MatchaModalContentComponent {
|
|
1366
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1367
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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: [""] }); }
|
|
1368
1245
|
}
|
|
1369
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1246
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalContentComponent, decorators: [{
|
|
1370
1247
|
type: Component,
|
|
1371
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" }]
|
|
1372
1249
|
}] });
|
|
1373
1250
|
|
|
1374
1251
|
class MatchaModalHeaderComponent {
|
|
1375
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1376
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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"] }] }); }
|
|
1377
1254
|
}
|
|
1378
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1255
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalHeaderComponent, decorators: [{
|
|
1379
1256
|
type: Component,
|
|
1380
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" }]
|
|
1381
1258
|
}] });
|
|
@@ -1401,10 +1278,10 @@ class MatchaModalFooterComponent {
|
|
|
1401
1278
|
}
|
|
1402
1279
|
});
|
|
1403
1280
|
}
|
|
1404
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1405
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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"] }] }); }
|
|
1406
1283
|
}
|
|
1407
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1284
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalFooterComponent, decorators: [{
|
|
1408
1285
|
type: Component,
|
|
1409
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" }]
|
|
1410
1287
|
}], propDecorators: { buttonType: [{
|
|
@@ -1413,10 +1290,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
1413
1290
|
}] } });
|
|
1414
1291
|
|
|
1415
1292
|
class MatchaModalOptionsComponent {
|
|
1416
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1417
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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: [""] }); }
|
|
1418
1295
|
}
|
|
1419
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1296
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalOptionsComponent, decorators: [{
|
|
1420
1297
|
type: Component,
|
|
1421
1298
|
args: [{ selector: 'matcha-modal-options', standalone: false, template: "<div class=\"flex-row gap-8\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
1422
1299
|
}] });
|
|
@@ -1429,10 +1306,10 @@ class MatchaModalComponent {
|
|
|
1429
1306
|
const activeClasses = `background-surface radius-8 flex-column ${this.class}`;
|
|
1430
1307
|
return activeClasses;
|
|
1431
1308
|
}
|
|
1432
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1433
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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: [""] }); }
|
|
1434
1311
|
}
|
|
1435
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1312
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalComponent, decorators: [{
|
|
1436
1313
|
type: Component,
|
|
1437
1314
|
args: [{ selector: 'matcha-modal', standalone: false, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
1438
1315
|
}], propDecorators: { class: [{
|
|
@@ -1471,10 +1348,10 @@ class MatchaMenuComponent {
|
|
|
1471
1348
|
toggleMenu() {
|
|
1472
1349
|
this.isOpen = !this.isOpen;
|
|
1473
1350
|
}
|
|
1474
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1475
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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"] }] }); }
|
|
1476
1353
|
}
|
|
1477
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1354
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMenuComponent, decorators: [{
|
|
1478
1355
|
type: Component,
|
|
1479
1356
|
args: [{ selector: 'matcha-menu', exportAs: 'matchaMenu', standalone: false, template: "<div class=\"menu\" [ngClass]=\"{'show': isOpen}\">\n <ng-content></ng-content>\n </div>\n" }]
|
|
1480
1357
|
}], ctorParameters: () => [{ type: i0.ElementRef, decorators: [{
|
|
@@ -1513,10 +1390,10 @@ class MatchaToolbarComponent {
|
|
|
1513
1390
|
ngOnDestroy() {
|
|
1514
1391
|
clearTimeout(this.resizeTimeout);
|
|
1515
1392
|
}
|
|
1516
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1517
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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"] }] }); }
|
|
1518
1395
|
}
|
|
1519
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1396
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarComponent, decorators: [{
|
|
1520
1397
|
type: Component,
|
|
1521
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" }]
|
|
1522
1399
|
}], propDecorators: { onResize: [{
|
|
@@ -1536,10 +1413,10 @@ class MatchaToolbarButtonComponent {
|
|
|
1536
1413
|
emitButtonClick() {
|
|
1537
1414
|
this.buttonClick.emit();
|
|
1538
1415
|
}
|
|
1539
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1540
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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"] }] }); }
|
|
1541
1418
|
}
|
|
1542
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1419
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarButtonComponent, decorators: [{
|
|
1543
1420
|
type: Component,
|
|
1544
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" }]
|
|
1545
1422
|
}], propDecorators: { icon: [{
|
|
@@ -1550,10 +1427,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
1550
1427
|
}] } });
|
|
1551
1428
|
|
|
1552
1429
|
class MatchaToolbarContentComponent {
|
|
1553
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1554
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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: [""] }); }
|
|
1555
1432
|
}
|
|
1556
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1433
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarContentComponent, decorators: [{
|
|
1557
1434
|
type: Component,
|
|
1558
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" }]
|
|
1559
1436
|
}] });
|
|
@@ -1565,10 +1442,10 @@ class MatchaToolbarMainButtonComponent {
|
|
|
1565
1442
|
emitButtonClick() {
|
|
1566
1443
|
this.buttonClick.emit();
|
|
1567
1444
|
}
|
|
1568
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1569
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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"] }] }); }
|
|
1570
1447
|
}
|
|
1571
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1448
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarMainButtonComponent, decorators: [{
|
|
1572
1449
|
type: Component,
|
|
1573
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" }]
|
|
1574
1451
|
}], propDecorators: { buttonClick: [{
|
|
@@ -1591,10 +1468,10 @@ class MatchaFormFieldComponent {
|
|
|
1591
1468
|
get showError() {
|
|
1592
1469
|
return !!this.control?.invalid && (this.control?.touched || this.control?.dirty);
|
|
1593
1470
|
}
|
|
1594
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1595
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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"] }] }); }
|
|
1596
1473
|
}
|
|
1597
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1474
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaFormFieldComponent, decorators: [{
|
|
1598
1475
|
type: Component,
|
|
1599
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" }]
|
|
1600
1477
|
}], propDecorators: { color: [{
|
|
@@ -1626,10 +1503,10 @@ class MatchaLabelComponent {
|
|
|
1626
1503
|
constructor() {
|
|
1627
1504
|
this.color = 'blue-grey';
|
|
1628
1505
|
}
|
|
1629
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1630
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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: [""] }); }
|
|
1631
1508
|
}
|
|
1632
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1509
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaLabelComponent, decorators: [{
|
|
1633
1510
|
type: Component,
|
|
1634
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>" }]
|
|
1635
1512
|
}], propDecorators: { color: [{
|
|
@@ -1637,10 +1514,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
1637
1514
|
}] } });
|
|
1638
1515
|
|
|
1639
1516
|
class MatchaErrorComponent {
|
|
1640
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1641
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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"] }] }); }
|
|
1642
1519
|
}
|
|
1643
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1520
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaErrorComponent, decorators: [{
|
|
1644
1521
|
type: Component,
|
|
1645
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>" }]
|
|
1646
1523
|
}] });
|
|
@@ -1698,10 +1575,10 @@ class MatchaRippleDirective {
|
|
|
1698
1575
|
});
|
|
1699
1576
|
this.ripples = [];
|
|
1700
1577
|
}
|
|
1701
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1702
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
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 }); }
|
|
1703
1580
|
}
|
|
1704
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1581
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRippleDirective, decorators: [{
|
|
1705
1582
|
type: Directive,
|
|
1706
1583
|
args: [{
|
|
1707
1584
|
selector: '[matchaRipple]',
|
|
@@ -1761,8 +1638,8 @@ class MatchaCheckboxComponent {
|
|
|
1761
1638
|
this.onTouched();
|
|
1762
1639
|
this.change.emit({ checked: this.checked });
|
|
1763
1640
|
}
|
|
1764
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1765
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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: [
|
|
1766
1643
|
{
|
|
1767
1644
|
provide: NG_VALUE_ACCESSOR,
|
|
1768
1645
|
useExisting: forwardRef(() => MatchaCheckboxComponent),
|
|
@@ -1770,7 +1647,7 @@ class MatchaCheckboxComponent {
|
|
|
1770
1647
|
}
|
|
1771
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"] }] }); }
|
|
1772
1649
|
}
|
|
1773
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1650
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCheckboxComponent, decorators: [{
|
|
1774
1651
|
type: Component,
|
|
1775
1652
|
args: [{ selector: 'matcha-checkbox', standalone: false, providers: [
|
|
1776
1653
|
{
|
|
@@ -1838,10 +1715,10 @@ class MatchaSpinComponent {
|
|
|
1838
1715
|
const progress = Math.min(Math.max(Number(this.progress), 0), 100);
|
|
1839
1716
|
return this.circumference - (progress / 100) * this.circumference;
|
|
1840
1717
|
}
|
|
1841
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1842
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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: [""] }); }
|
|
1843
1720
|
}
|
|
1844
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1721
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSpinComponent, decorators: [{
|
|
1845
1722
|
type: Component,
|
|
1846
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" }]
|
|
1847
1724
|
}], ctorParameters: () => [{ type: i0.ElementRef, decorators: [{
|
|
@@ -1895,10 +1772,10 @@ class MatchaHintTextComponent {
|
|
|
1895
1772
|
default: return 'red';
|
|
1896
1773
|
}
|
|
1897
1774
|
}
|
|
1898
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1899
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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"] }] }); }
|
|
1900
1777
|
}
|
|
1901
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1778
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaHintTextComponent, decorators: [{
|
|
1902
1779
|
type: Component,
|
|
1903
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" }]
|
|
1904
1781
|
}], propDecorators: { type: [{
|
|
@@ -1909,6 +1786,254 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
1909
1786
|
args: ['size']
|
|
1910
1787
|
}] } });
|
|
1911
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
|
+
|
|
1912
2037
|
class MatchaTooltipDirective {
|
|
1913
2038
|
constructor(el, renderer) {
|
|
1914
2039
|
this.el = el;
|
|
@@ -2050,10 +2175,10 @@ class MatchaTooltipDirective {
|
|
|
2050
2175
|
this.documentClickListener = null;
|
|
2051
2176
|
}
|
|
2052
2177
|
}
|
|
2053
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2054
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
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 }); }
|
|
2055
2180
|
}
|
|
2056
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2181
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTooltipDirective, decorators: [{
|
|
2057
2182
|
type: Directive,
|
|
2058
2183
|
args: [{
|
|
2059
2184
|
selector: '[matchaTooltip]',
|
|
@@ -2092,11 +2217,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2092
2217
|
}] } });
|
|
2093
2218
|
|
|
2094
2219
|
class MatchaTooltipModule {
|
|
2095
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2096
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
2097
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
2098
2223
|
}
|
|
2099
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2224
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTooltipModule, decorators: [{
|
|
2100
2225
|
type: NgModule,
|
|
2101
2226
|
args: [{
|
|
2102
2227
|
declarations: [MatchaTooltipDirective],
|
|
@@ -2105,31 +2230,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2105
2230
|
}]
|
|
2106
2231
|
}] });
|
|
2107
2232
|
|
|
2108
|
-
class MatchaButtonGroupModule {
|
|
2109
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2110
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonGroupModule, declarations: [MatchaButtonGroupComponent, MatchaButtonItemComponent], imports: [CommonModule,
|
|
2111
|
-
MatchaTooltipModule], exports: [MatchaButtonGroupComponent, MatchaButtonItemComponent] }); }
|
|
2112
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonGroupModule, imports: [CommonModule,
|
|
2113
|
-
MatchaTooltipModule] }); }
|
|
2114
|
-
}
|
|
2115
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonGroupModule, decorators: [{
|
|
2116
|
-
type: NgModule,
|
|
2117
|
-
args: [{
|
|
2118
|
-
declarations: [MatchaButtonGroupComponent, MatchaButtonItemComponent],
|
|
2119
|
-
imports: [
|
|
2120
|
-
CommonModule,
|
|
2121
|
-
MatchaTooltipModule
|
|
2122
|
-
],
|
|
2123
|
-
exports: [MatchaButtonGroupComponent, MatchaButtonItemComponent]
|
|
2124
|
-
}]
|
|
2125
|
-
}] });
|
|
2126
|
-
|
|
2127
2233
|
class MatchaIconModule {
|
|
2128
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2129
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
2130
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
2131
2237
|
}
|
|
2132
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2238
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaIconModule, decorators: [{
|
|
2133
2239
|
type: NgModule,
|
|
2134
2240
|
args: [{
|
|
2135
2241
|
declarations: [MatchaIconComponent],
|
|
@@ -2139,11 +2245,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2139
2245
|
}] });
|
|
2140
2246
|
|
|
2141
2247
|
class MatchaTitleModule {
|
|
2142
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2143
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
2144
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
2145
2251
|
}
|
|
2146
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2252
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTitleModule, decorators: [{
|
|
2147
2253
|
type: NgModule,
|
|
2148
2254
|
args: [{
|
|
2149
2255
|
declarations: [MatchaTitleComponent],
|
|
@@ -2153,11 +2259,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2153
2259
|
}] });
|
|
2154
2260
|
|
|
2155
2261
|
class MatchaDividerModule {
|
|
2156
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2157
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
2158
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
2159
2265
|
}
|
|
2160
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2266
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDividerModule, decorators: [{
|
|
2161
2267
|
type: NgModule,
|
|
2162
2268
|
args: [{
|
|
2163
2269
|
declarations: [
|
|
@@ -2171,11 +2277,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2171
2277
|
}] });
|
|
2172
2278
|
|
|
2173
2279
|
class MatchaButtonModule {
|
|
2174
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2175
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
2176
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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 }); }
|
|
2177
2283
|
}
|
|
2178
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2284
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonModule, decorators: [{
|
|
2179
2285
|
type: NgModule,
|
|
2180
2286
|
args: [{
|
|
2181
2287
|
declarations: [MatchaButtonComponent],
|
|
@@ -2185,8 +2291,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2185
2291
|
}] });
|
|
2186
2292
|
|
|
2187
2293
|
class MatchaAccordionModule {
|
|
2188
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2189
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
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,
|
|
2190
2296
|
MatchaAccordionItemComponent,
|
|
2191
2297
|
MatchaAccordionHeaderComponent,
|
|
2192
2298
|
MatchaAccordionContentComponent], imports: [CommonModule,
|
|
@@ -2198,14 +2304,14 @@ class MatchaAccordionModule {
|
|
|
2198
2304
|
MatchaAccordionItemComponent,
|
|
2199
2305
|
MatchaAccordionHeaderComponent,
|
|
2200
2306
|
MatchaAccordionContentComponent] }); }
|
|
2201
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
2307
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionModule, imports: [CommonModule,
|
|
2202
2308
|
MatchaIconModule,
|
|
2203
2309
|
MatchaTitleModule,
|
|
2204
2310
|
MatchaDividerModule,
|
|
2205
2311
|
MatchaTooltipModule,
|
|
2206
2312
|
MatchaButtonModule] }); }
|
|
2207
2313
|
}
|
|
2208
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2314
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAccordionModule, decorators: [{
|
|
2209
2315
|
type: NgModule,
|
|
2210
2316
|
args: [{
|
|
2211
2317
|
declarations: [
|
|
@@ -2232,11 +2338,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2232
2338
|
}] });
|
|
2233
2339
|
|
|
2234
2340
|
class MatchaInfiniteScrollModule {
|
|
2235
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2236
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
2237
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
2238
2344
|
}
|
|
2239
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2345
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInfiniteScrollModule, decorators: [{
|
|
2240
2346
|
type: NgModule,
|
|
2241
2347
|
args: [{
|
|
2242
2348
|
declarations: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent],
|
|
@@ -2270,10 +2376,10 @@ class MatchaElevationDirective {
|
|
|
2270
2376
|
this._renderer.addClass(this._elementRef.nativeElement, `elevation-z-0`);
|
|
2271
2377
|
}
|
|
2272
2378
|
}
|
|
2273
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2274
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
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 }); }
|
|
2275
2381
|
}
|
|
2276
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2382
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaElevationDirective, decorators: [{
|
|
2277
2383
|
type: Directive,
|
|
2278
2384
|
args: [{
|
|
2279
2385
|
selector: '[elevation]',
|
|
@@ -2285,11 +2391,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2285
2391
|
}] } });
|
|
2286
2392
|
|
|
2287
2393
|
class MatchaElevationModule {
|
|
2288
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2289
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
2290
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
2291
2397
|
}
|
|
2292
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2398
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaElevationModule, decorators: [{
|
|
2293
2399
|
type: NgModule,
|
|
2294
2400
|
args: [{
|
|
2295
2401
|
declarations: [MatchaElevationDirective],
|
|
@@ -2299,8 +2405,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2299
2405
|
}] });
|
|
2300
2406
|
|
|
2301
2407
|
class MatchaModalModule {
|
|
2302
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2303
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
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,
|
|
2304
2410
|
MatchaModalContentComponent,
|
|
2305
2411
|
MatchaModalFooterComponent,
|
|
2306
2412
|
MatchaModalOptionsComponent,
|
|
@@ -2314,14 +2420,14 @@ class MatchaModalModule {
|
|
|
2314
2420
|
MatchaModalFooterComponent,
|
|
2315
2421
|
MatchaModalOptionsComponent,
|
|
2316
2422
|
MatchaModalComponent] }); }
|
|
2317
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
2423
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalModule, imports: [CommonModule,
|
|
2318
2424
|
MatchaIconModule,
|
|
2319
2425
|
MatchaTitleModule,
|
|
2320
2426
|
MatchaDividerModule,
|
|
2321
2427
|
MatchaTooltipModule,
|
|
2322
2428
|
MatchaElevationModule] }); }
|
|
2323
2429
|
}
|
|
2324
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2430
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaModalModule, decorators: [{
|
|
2325
2431
|
type: NgModule,
|
|
2326
2432
|
args: [{
|
|
2327
2433
|
declarations: [
|
|
@@ -2350,21 +2456,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2350
2456
|
}] });
|
|
2351
2457
|
|
|
2352
2458
|
class MatchaCardModule {
|
|
2353
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2354
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
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,
|
|
2355
2461
|
MatchaElevationModule,
|
|
2356
2462
|
MatchaIconModule,
|
|
2357
2463
|
MatchaTitleModule,
|
|
2358
2464
|
MatchaDividerModule,
|
|
2359
2465
|
MatchaTooltipModule], exports: [MatchaCardComponent] }); }
|
|
2360
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
2466
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCardModule, imports: [CommonModule,
|
|
2361
2467
|
MatchaElevationModule,
|
|
2362
2468
|
MatchaIconModule,
|
|
2363
2469
|
MatchaTitleModule,
|
|
2364
2470
|
MatchaDividerModule,
|
|
2365
2471
|
MatchaTooltipModule] }); }
|
|
2366
2472
|
}
|
|
2367
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2473
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCardModule, decorators: [{
|
|
2368
2474
|
type: NgModule,
|
|
2369
2475
|
args: [{
|
|
2370
2476
|
declarations: [MatchaCardComponent],
|
|
@@ -2381,11 +2487,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2381
2487
|
}] });
|
|
2382
2488
|
|
|
2383
2489
|
class MatchaMasonryModule {
|
|
2384
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2385
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
2386
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
2387
2493
|
}
|
|
2388
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2494
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMasonryModule, decorators: [{
|
|
2389
2495
|
type: NgModule,
|
|
2390
2496
|
args: [{
|
|
2391
2497
|
declarations: [MatchaMasonryComponent],
|
|
@@ -2394,9 +2500,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2394
2500
|
}]
|
|
2395
2501
|
}] });
|
|
2396
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
|
+
|
|
2397
2522
|
class MatchaToolbarModule {
|
|
2398
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2399
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
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,
|
|
2400
2525
|
MatchaToolbarButtonComponent,
|
|
2401
2526
|
MatchaToolbarContentComponent,
|
|
2402
2527
|
MatchaToolbarMainButtonComponent], imports: [CommonModule,
|
|
@@ -2407,12 +2532,12 @@ class MatchaToolbarModule {
|
|
|
2407
2532
|
MatchaToolbarContentComponent,
|
|
2408
2533
|
MatchaToolbarMainButtonComponent,
|
|
2409
2534
|
MatchaTitleModule] }); }
|
|
2410
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
2535
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarModule, imports: [CommonModule,
|
|
2411
2536
|
MatchaButtonModule,
|
|
2412
2537
|
MatchaTitleModule,
|
|
2413
2538
|
MatchaTooltipModule, MatchaTitleModule] }); }
|
|
2414
2539
|
}
|
|
2415
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2540
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarModule, decorators: [{
|
|
2416
2541
|
type: NgModule,
|
|
2417
2542
|
args: [{
|
|
2418
2543
|
declarations: [
|
|
@@ -2438,11 +2563,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2438
2563
|
}] });
|
|
2439
2564
|
|
|
2440
2565
|
class MatchaGridModule {
|
|
2441
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2442
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
2443
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
2444
2569
|
}
|
|
2445
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2570
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaGridModule, decorators: [{
|
|
2446
2571
|
type: NgModule,
|
|
2447
2572
|
args: [{
|
|
2448
2573
|
declarations: [MatchaGridComponent],
|
|
@@ -2452,11 +2577,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2452
2577
|
}] });
|
|
2453
2578
|
|
|
2454
2579
|
class MatchaFormFieldModule {
|
|
2455
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2456
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
2457
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
2458
2583
|
}
|
|
2459
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2584
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaFormFieldModule, decorators: [{
|
|
2460
2585
|
type: NgModule,
|
|
2461
2586
|
args: [{
|
|
2462
2587
|
declarations: [MatchaFormFieldComponent, MatchaLabelComponent, MatchaErrorComponent],
|
|
@@ -2471,10 +2596,10 @@ class MatchaAutocompleteDirective {
|
|
|
2471
2596
|
this._renderer = _renderer;
|
|
2472
2597
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-autocomplete');
|
|
2473
2598
|
}
|
|
2474
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2475
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
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 }); }
|
|
2476
2601
|
}
|
|
2477
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2602
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAutocompleteDirective, decorators: [{
|
|
2478
2603
|
type: Directive,
|
|
2479
2604
|
args: [{
|
|
2480
2605
|
selector: '[matcha-autocomplete]',
|
|
@@ -2489,10 +2614,10 @@ class MatchaAutocompleteOverviewDirective {
|
|
|
2489
2614
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
2490
2615
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-autocomplete-overview');
|
|
2491
2616
|
}
|
|
2492
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2493
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
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 }); }
|
|
2494
2619
|
}
|
|
2495
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2620
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAutocompleteOverviewDirective, decorators: [{
|
|
2496
2621
|
type: Directive,
|
|
2497
2622
|
args: [{
|
|
2498
2623
|
selector: '[matcha-autocomplete-overview]',
|
|
@@ -2501,12 +2626,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2501
2626
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
2502
2627
|
|
|
2503
2628
|
class MatchaAutocompleteModule {
|
|
2504
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2505
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
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,
|
|
2506
2631
|
MatchaAutocompleteOverviewDirective], exports: [MatchaAutocompleteDirective, MatchaAutocompleteOverviewDirective] }); }
|
|
2507
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
2632
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAutocompleteModule }); }
|
|
2508
2633
|
}
|
|
2509
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2634
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaAutocompleteModule, decorators: [{
|
|
2510
2635
|
type: NgModule,
|
|
2511
2636
|
args: [{
|
|
2512
2637
|
declarations: [
|
|
@@ -2525,10 +2650,10 @@ class MatchaBadgeDirective {
|
|
|
2525
2650
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
2526
2651
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-badge');
|
|
2527
2652
|
}
|
|
2528
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2529
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
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 }); }
|
|
2530
2655
|
}
|
|
2531
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2656
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaBadgeDirective, decorators: [{
|
|
2532
2657
|
type: Directive,
|
|
2533
2658
|
args: [{
|
|
2534
2659
|
selector: '[matcha-badge]',
|
|
@@ -2537,11 +2662,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2537
2662
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
2538
2663
|
|
|
2539
2664
|
class MatchaBadgeModule {
|
|
2540
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2541
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
2542
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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 }); }
|
|
2543
2668
|
}
|
|
2544
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2669
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaBadgeModule, decorators: [{
|
|
2545
2670
|
type: NgModule,
|
|
2546
2671
|
args: [{
|
|
2547
2672
|
declarations: [MatchaBadgeDirective],
|
|
@@ -2550,111 +2675,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2550
2675
|
}]
|
|
2551
2676
|
}] });
|
|
2552
2677
|
|
|
2553
|
-
class MatchaTabsDirective {
|
|
2554
|
-
constructor(_elementRef, _renderer) {
|
|
2555
|
-
this._elementRef = _elementRef;
|
|
2556
|
-
this._renderer = _renderer;
|
|
2557
|
-
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
2558
|
-
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-tabs');
|
|
2559
|
-
}
|
|
2560
|
-
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 }); }
|
|
2561
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaTabsDirective, isStandalone: false, selector: "[matchaTabs]", ngImport: i0 }); }
|
|
2562
|
-
}
|
|
2563
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTabsDirective, decorators: [{
|
|
2564
|
-
type: Directive,
|
|
2565
|
-
args: [{
|
|
2566
|
-
selector: '[matchaTabs]',
|
|
2567
|
-
standalone: false
|
|
2568
|
-
}]
|
|
2569
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
2570
|
-
|
|
2571
|
-
class MatchaTabsModule {
|
|
2572
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTabsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2573
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaTabsModule, declarations: [MatchaTabsDirective], imports: [CommonModule], exports: [MatchaTabsDirective] }); }
|
|
2574
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTabsModule, imports: [CommonModule] }); }
|
|
2575
|
-
}
|
|
2576
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaTabsModule, decorators: [{
|
|
2577
|
-
type: NgModule,
|
|
2578
|
-
args: [{
|
|
2579
|
-
declarations: [MatchaTabsDirective],
|
|
2580
|
-
imports: [CommonModule],
|
|
2581
|
-
exports: [MatchaTabsDirective],
|
|
2582
|
-
}]
|
|
2583
|
-
}] });
|
|
2584
|
-
|
|
2585
|
-
class MatchaBottomSheetDirective {
|
|
2586
|
-
constructor(_elementRef, _renderer) {
|
|
2587
|
-
this._elementRef = _elementRef;
|
|
2588
|
-
this._renderer = _renderer;
|
|
2589
|
-
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
2590
|
-
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-bottom-sheet');
|
|
2591
|
-
}
|
|
2592
|
-
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 }); }
|
|
2593
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaBottomSheetDirective, isStandalone: false, selector: "[matcha-bottom-sheet]", ngImport: i0 }); }
|
|
2594
|
-
}
|
|
2595
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaBottomSheetDirective, decorators: [{
|
|
2596
|
-
type: Directive,
|
|
2597
|
-
args: [{
|
|
2598
|
-
selector: '[matcha-bottom-sheet]',
|
|
2599
|
-
standalone: false
|
|
2600
|
-
}]
|
|
2601
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
2602
|
-
|
|
2603
|
-
class MatchaBottomSheetModule {
|
|
2604
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaBottomSheetModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2605
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaBottomSheetModule, declarations: [MatchaBottomSheetDirective], exports: [MatchaBottomSheetDirective] }); }
|
|
2606
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaBottomSheetModule }); }
|
|
2607
|
-
}
|
|
2608
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaBottomSheetModule, decorators: [{
|
|
2609
|
-
type: NgModule,
|
|
2610
|
-
args: [{
|
|
2611
|
-
declarations: [MatchaBottomSheetDirective],
|
|
2612
|
-
imports: [],
|
|
2613
|
-
exports: [MatchaBottomSheetDirective],
|
|
2614
|
-
}]
|
|
2615
|
-
}] });
|
|
2616
|
-
|
|
2617
|
-
class MatchaButtonToggleDirective {
|
|
2618
|
-
constructor(_elementRef, _renderer) {
|
|
2619
|
-
this._elementRef = _elementRef;
|
|
2620
|
-
this._renderer = _renderer;
|
|
2621
|
-
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-button-toggle');
|
|
2622
|
-
}
|
|
2623
|
-
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 }); }
|
|
2624
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaButtonToggleDirective, isStandalone: false, selector: "[matcha-button-toggle]", ngImport: i0 }); }
|
|
2625
|
-
}
|
|
2626
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonToggleDirective, decorators: [{
|
|
2627
|
-
type: Directive,
|
|
2628
|
-
args: [{
|
|
2629
|
-
selector: '[matcha-button-toggle]',
|
|
2630
|
-
standalone: false
|
|
2631
|
-
}]
|
|
2632
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
2633
|
-
|
|
2634
|
-
class MatchaButtonToggleModule {
|
|
2635
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2636
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonToggleModule, declarations: [MatchaButtonToggleDirective], exports: [MatchaButtonToggleDirective] }); }
|
|
2637
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonToggleModule }); }
|
|
2638
|
-
}
|
|
2639
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaButtonToggleModule, decorators: [{
|
|
2640
|
-
type: NgModule,
|
|
2641
|
-
args: [{
|
|
2642
|
-
declarations: [
|
|
2643
|
-
MatchaButtonToggleDirective
|
|
2644
|
-
],
|
|
2645
|
-
imports: [],
|
|
2646
|
-
exports: [
|
|
2647
|
-
MatchaButtonToggleDirective
|
|
2648
|
-
]
|
|
2649
|
-
}]
|
|
2650
|
-
}] });
|
|
2651
|
-
|
|
2652
2678
|
class MatchaRippleModule {
|
|
2653
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2654
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
2655
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
2656
2682
|
}
|
|
2657
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2683
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRippleModule, decorators: [{
|
|
2658
2684
|
type: NgModule,
|
|
2659
2685
|
args: [{
|
|
2660
2686
|
declarations: [
|
|
@@ -2670,11 +2696,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2670
2696
|
}] });
|
|
2671
2697
|
|
|
2672
2698
|
class MatchaCheckboxModule {
|
|
2673
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2674
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
2675
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
2676
2702
|
}
|
|
2677
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2703
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCheckboxModule, decorators: [{
|
|
2678
2704
|
type: NgModule,
|
|
2679
2705
|
args: [{
|
|
2680
2706
|
declarations: [
|
|
@@ -2694,10 +2720,10 @@ class MatchaChipsDirective {
|
|
|
2694
2720
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
2695
2721
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-chips');
|
|
2696
2722
|
}
|
|
2697
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2698
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
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 }); }
|
|
2699
2725
|
}
|
|
2700
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2726
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaChipsDirective, decorators: [{
|
|
2701
2727
|
type: Directive,
|
|
2702
2728
|
args: [{
|
|
2703
2729
|
selector: '[matchaChips]',
|
|
@@ -2706,11 +2732,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2706
2732
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
2707
2733
|
|
|
2708
2734
|
class MatchaChipsModule {
|
|
2709
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2710
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
2711
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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 }); }
|
|
2712
2738
|
}
|
|
2713
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2739
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaChipsModule, decorators: [{
|
|
2714
2740
|
type: NgModule,
|
|
2715
2741
|
args: [{
|
|
2716
2742
|
declarations: [MatchaChipsDirective],
|
|
@@ -2728,10 +2754,10 @@ class MatchaDatepickerDirective {
|
|
|
2728
2754
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
2729
2755
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-datepicker');
|
|
2730
2756
|
}
|
|
2731
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2732
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
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 }); }
|
|
2733
2759
|
}
|
|
2734
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2760
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDatepickerDirective, decorators: [{
|
|
2735
2761
|
type: Directive,
|
|
2736
2762
|
args: [{
|
|
2737
2763
|
selector: '[matcha-datepicker]',
|
|
@@ -2740,11 +2766,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2740
2766
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
2741
2767
|
|
|
2742
2768
|
class MatchaDatepickerModule {
|
|
2743
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2744
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
2745
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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 }); }
|
|
2746
2772
|
}
|
|
2747
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2773
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaDatepickerModule, decorators: [{
|
|
2748
2774
|
type: NgModule,
|
|
2749
2775
|
args: [{
|
|
2750
2776
|
declarations: [MatchaDatepickerDirective],
|
|
@@ -2753,67 +2779,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2753
2779
|
}]
|
|
2754
2780
|
}] });
|
|
2755
2781
|
|
|
2756
|
-
class
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
}
|
|
2763
|
-
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 }); }
|
|
2764
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaExpansionDirective, isStandalone: false, selector: "[matchaExpansion]", ngImport: i0 }); }
|
|
2765
|
-
}
|
|
2766
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaExpansionDirective, decorators: [{
|
|
2767
|
-
type: Directive,
|
|
2768
|
-
args: [{
|
|
2769
|
-
selector: '[matchaExpansion]',
|
|
2770
|
-
standalone: false
|
|
2771
|
-
}]
|
|
2772
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
2773
|
-
|
|
2774
|
-
class MatchaExpansionModule {
|
|
2775
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaExpansionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2776
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaExpansionModule, declarations: [MatchaExpansionDirective], imports: [CommonModule], exports: [MatchaExpansionDirective] }); }
|
|
2777
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaExpansionModule, imports: [CommonModule] }); }
|
|
2778
|
-
}
|
|
2779
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaExpansionModule, decorators: [{
|
|
2780
|
-
type: NgModule,
|
|
2781
|
-
args: [{
|
|
2782
|
-
declarations: [MatchaExpansionDirective],
|
|
2783
|
-
imports: [CommonModule],
|
|
2784
|
-
exports: [MatchaExpansionDirective],
|
|
2785
|
-
}]
|
|
2786
|
-
}] });
|
|
2787
|
-
|
|
2788
|
-
class MatchaFormFieldDirective {
|
|
2789
|
-
constructor(_elementRef, _renderer) {
|
|
2790
|
-
this._elementRef = _elementRef;
|
|
2791
|
-
this._renderer = _renderer;
|
|
2792
|
-
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
2793
|
-
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-form-field');
|
|
2794
|
-
}
|
|
2795
|
-
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 }); }
|
|
2796
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaFormFieldDirective, isStandalone: false, selector: "[matchaFormField]", ngImport: i0 }); }
|
|
2797
|
-
}
|
|
2798
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaFormFieldDirective, decorators: [{
|
|
2799
|
-
type: Directive,
|
|
2800
|
-
args: [{
|
|
2801
|
-
selector: '[matchaFormField]',
|
|
2802
|
-
standalone: false
|
|
2803
|
-
}]
|
|
2804
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
2805
|
-
|
|
2806
|
-
class MatchaFormsModule {
|
|
2807
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaFormsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2808
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaFormsModule, declarations: [MatchaFormFieldDirective], imports: [CommonModule], exports: [MatchaFormFieldDirective] }); }
|
|
2809
|
-
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] }); }
|
|
2810
2788
|
}
|
|
2811
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2789
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaHintTextModule, decorators: [{
|
|
2812
2790
|
type: NgModule,
|
|
2813
2791
|
args: [{
|
|
2814
|
-
declarations: [
|
|
2815
|
-
imports: [
|
|
2816
|
-
|
|
2792
|
+
declarations: [MatchaHintTextComponent],
|
|
2793
|
+
imports: [
|
|
2794
|
+
CommonModule,
|
|
2795
|
+
MatchaIconModule,
|
|
2796
|
+
],
|
|
2797
|
+
exports: [MatchaHintTextComponent],
|
|
2817
2798
|
}]
|
|
2818
2799
|
}] });
|
|
2819
2800
|
|
|
@@ -2824,10 +2805,10 @@ class MatchaInputDirective {
|
|
|
2824
2805
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
2825
2806
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-input');
|
|
2826
2807
|
}
|
|
2827
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2828
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
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 }); }
|
|
2829
2810
|
}
|
|
2830
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2811
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInputDirective, decorators: [{
|
|
2831
2812
|
type: Directive,
|
|
2832
2813
|
args: [{
|
|
2833
2814
|
selector: '[matcha-input]',
|
|
@@ -2836,11 +2817,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2836
2817
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
2837
2818
|
|
|
2838
2819
|
class MatchaInputModule {
|
|
2839
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2840
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
2841
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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 }); }
|
|
2842
2823
|
}
|
|
2843
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2824
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaInputModule, decorators: [{
|
|
2844
2825
|
type: NgModule,
|
|
2845
2826
|
args: [{
|
|
2846
2827
|
declarations: [MatchaInputDirective],
|
|
@@ -2849,38 +2830,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2849
2830
|
}]
|
|
2850
2831
|
}] });
|
|
2851
2832
|
|
|
2852
|
-
class MatchaListDirective {
|
|
2853
|
-
constructor(_elementRef, _renderer) {
|
|
2854
|
-
this._elementRef = _elementRef;
|
|
2855
|
-
this._renderer = _renderer;
|
|
2856
|
-
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
2857
|
-
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-list');
|
|
2858
|
-
}
|
|
2859
|
-
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 }); }
|
|
2860
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.5", type: MatchaListDirective, isStandalone: false, selector: "[matchaList]", ngImport: i0 }); }
|
|
2861
|
-
}
|
|
2862
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaListDirective, decorators: [{
|
|
2863
|
-
type: Directive,
|
|
2864
|
-
args: [{
|
|
2865
|
-
selector: '[matchaList]',
|
|
2866
|
-
standalone: false
|
|
2867
|
-
}]
|
|
2868
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
2869
|
-
|
|
2870
|
-
class MatchaListModule {
|
|
2871
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2872
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaListModule, declarations: [MatchaListDirective], imports: [CommonModule], exports: [MatchaListDirective] }); }
|
|
2873
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaListModule, imports: [CommonModule] }); }
|
|
2874
|
-
}
|
|
2875
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaListModule, decorators: [{
|
|
2876
|
-
type: NgModule,
|
|
2877
|
-
args: [{
|
|
2878
|
-
declarations: [MatchaListDirective],
|
|
2879
|
-
imports: [CommonModule],
|
|
2880
|
-
exports: [MatchaListDirective],
|
|
2881
|
-
}]
|
|
2882
|
-
}] });
|
|
2883
|
-
|
|
2884
2833
|
class MatchaMenuTriggerForDirective {
|
|
2885
2834
|
constructor(_elementRef, _renderer) {
|
|
2886
2835
|
this._elementRef = _elementRef;
|
|
@@ -2902,10 +2851,10 @@ class MatchaMenuTriggerForDirective {
|
|
|
2902
2851
|
this.menu.closeMenu();
|
|
2903
2852
|
}
|
|
2904
2853
|
}
|
|
2905
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2906
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
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 }); }
|
|
2907
2856
|
}
|
|
2908
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2857
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMenuTriggerForDirective, decorators: [{
|
|
2909
2858
|
type: Directive,
|
|
2910
2859
|
args: [{
|
|
2911
2860
|
selector: '[matchaMenuTriggerFor]',
|
|
@@ -2933,13 +2882,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2933
2882
|
}] } });
|
|
2934
2883
|
|
|
2935
2884
|
class MatchaMenuModule {
|
|
2936
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2937
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
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,
|
|
2938
2887
|
MatchaMenuTriggerForDirective], imports: [CommonModule], exports: [MatchaMenuComponent,
|
|
2939
2888
|
MatchaMenuTriggerForDirective] }); }
|
|
2940
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
2889
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMenuModule, imports: [CommonModule] }); }
|
|
2941
2890
|
}
|
|
2942
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2891
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaMenuModule, decorators: [{
|
|
2943
2892
|
type: NgModule,
|
|
2944
2893
|
args: [{
|
|
2945
2894
|
declarations: [
|
|
@@ -2956,37 +2905,57 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
2956
2905
|
}]
|
|
2957
2906
|
}] });
|
|
2958
2907
|
|
|
2959
|
-
class
|
|
2960
|
-
constructor(
|
|
2961
|
-
this.
|
|
2962
|
-
this._renderer = _renderer;
|
|
2963
|
-
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
2964
|
-
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-sidenav');
|
|
2908
|
+
class MatchaOverflowDraggableComponent {
|
|
2909
|
+
constructor() {
|
|
2910
|
+
this.dragRef = '';
|
|
2965
2911
|
}
|
|
2966
|
-
|
|
2967
|
-
|
|
2968
|
-
|
|
2969
|
-
|
|
2970
|
-
|
|
2971
|
-
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
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: [""] }); }
|
|
2981
2952
|
}
|
|
2982
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2983
|
-
type:
|
|
2984
|
-
args: [{
|
|
2985
|
-
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
}]
|
|
2989
|
-
}] });
|
|
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
|
+
}] } });
|
|
2990
2959
|
|
|
2991
2960
|
class MatchaPaginatorDirective {
|
|
2992
2961
|
constructor(_elementRef, _renderer) {
|
|
@@ -2995,10 +2964,10 @@ class MatchaPaginatorDirective {
|
|
|
2995
2964
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
2996
2965
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-paginator');
|
|
2997
2966
|
}
|
|
2998
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2999
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
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 }); }
|
|
3000
2969
|
}
|
|
3001
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2970
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaPaginatorDirective, decorators: [{
|
|
3002
2971
|
type: Directive,
|
|
3003
2972
|
args: [{
|
|
3004
2973
|
selector: '[matchaPaginator]',
|
|
@@ -3007,11 +2976,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
3007
2976
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3008
2977
|
|
|
3009
2978
|
class MatchaPaginatorModule {
|
|
3010
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3011
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
3012
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
3013
2982
|
}
|
|
3014
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2983
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaPaginatorModule, decorators: [{
|
|
3015
2984
|
type: NgModule,
|
|
3016
2985
|
args: [{
|
|
3017
2986
|
declarations: [MatchaPaginatorDirective],
|
|
@@ -3027,10 +2996,10 @@ class MatchaProgressBarDirective {
|
|
|
3027
2996
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3028
2997
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-progress-bar');
|
|
3029
2998
|
}
|
|
3030
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3031
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
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 }); }
|
|
3032
3001
|
}
|
|
3033
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3002
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaProgressBarDirective, decorators: [{
|
|
3034
3003
|
type: Directive,
|
|
3035
3004
|
args: [{
|
|
3036
3005
|
selector: '[matcha-progress-bar]',
|
|
@@ -3039,11 +3008,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
3039
3008
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3040
3009
|
|
|
3041
3010
|
class MatchaProgressBarModule {
|
|
3042
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3043
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
3044
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
3045
3014
|
}
|
|
3046
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3015
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaProgressBarModule, decorators: [{
|
|
3047
3016
|
type: NgModule,
|
|
3048
3017
|
args: [{
|
|
3049
3018
|
declarations: [MatchaProgressBarDirective],
|
|
@@ -3063,10 +3032,10 @@ class MatchaRadioButtonDirective {
|
|
|
3063
3032
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3064
3033
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-radio-button');
|
|
3065
3034
|
}
|
|
3066
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3067
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
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 }); }
|
|
3068
3037
|
}
|
|
3069
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3038
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaRadioButtonDirective, decorators: [{
|
|
3070
3039
|
type: Directive,
|
|
3071
3040
|
args: [{
|
|
3072
3041
|
selector: '[matchaRadioButton]',
|
|
@@ -3074,51 +3043,83 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
3074
3043
|
}]
|
|
3075
3044
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3076
3045
|
|
|
3077
|
-
class MatchaRadioButtonModule {
|
|
3078
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3079
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
3080
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
3081
3084
|
}
|
|
3082
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3085
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSelectModule, decorators: [{
|
|
3083
3086
|
type: NgModule,
|
|
3084
3087
|
args: [{
|
|
3085
|
-
declarations: [
|
|
3086
|
-
imports: [
|
|
3087
|
-
|
|
3088
|
-
],
|
|
3089
|
-
exports: [MatchaRadioButtonDirective]
|
|
3088
|
+
declarations: [MatchaSelectDirective],
|
|
3089
|
+
imports: [CommonModule],
|
|
3090
|
+
exports: [MatchaSelectDirective],
|
|
3090
3091
|
}]
|
|
3091
3092
|
}] });
|
|
3092
3093
|
|
|
3093
|
-
class
|
|
3094
|
+
class MatchaSidenavDirective {
|
|
3094
3095
|
constructor(_elementRef, _renderer) {
|
|
3095
3096
|
this._elementRef = _elementRef;
|
|
3096
3097
|
this._renderer = _renderer;
|
|
3097
3098
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3098
|
-
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-
|
|
3099
|
+
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-sidenav');
|
|
3099
3100
|
}
|
|
3100
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3101
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
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 }); }
|
|
3102
3103
|
}
|
|
3103
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3104
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSidenavDirective, decorators: [{
|
|
3104
3105
|
type: Directive,
|
|
3105
3106
|
args: [{
|
|
3106
|
-
selector: '[matcha-
|
|
3107
|
+
selector: '[matcha-sidenav]',
|
|
3107
3108
|
standalone: false
|
|
3108
3109
|
}]
|
|
3109
3110
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3110
3111
|
|
|
3111
|
-
class
|
|
3112
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3113
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
3114
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
3115
3116
|
}
|
|
3116
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3117
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSidenavModule, decorators: [{
|
|
3117
3118
|
type: NgModule,
|
|
3118
3119
|
args: [{
|
|
3119
|
-
declarations: [
|
|
3120
|
+
declarations: [MatchaSidenavDirective],
|
|
3120
3121
|
imports: [CommonModule],
|
|
3121
|
-
exports: [
|
|
3122
|
+
exports: [MatchaSidenavDirective],
|
|
3122
3123
|
}]
|
|
3123
3124
|
}] });
|
|
3124
3125
|
|
|
@@ -3129,10 +3130,10 @@ class MatchaSlideToggleDirective {
|
|
|
3129
3130
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3130
3131
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-slide-toggle');
|
|
3131
3132
|
}
|
|
3132
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3133
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
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 }); }
|
|
3134
3135
|
}
|
|
3135
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3136
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSlideToggleDirective, decorators: [{
|
|
3136
3137
|
type: Directive,
|
|
3137
3138
|
args: [{
|
|
3138
3139
|
selector: '[slide-toggle]',
|
|
@@ -3141,11 +3142,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
3141
3142
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3142
3143
|
|
|
3143
3144
|
class MatchaSlideToggleModule {
|
|
3144
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3145
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
3146
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
3147
3148
|
}
|
|
3148
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3149
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSlideToggleModule, decorators: [{
|
|
3149
3150
|
type: NgModule,
|
|
3150
3151
|
args: [{
|
|
3151
3152
|
declarations: [MatchaSlideToggleDirective],
|
|
@@ -3163,10 +3164,10 @@ class MatchaSliderDirective {
|
|
|
3163
3164
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3164
3165
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-slider');
|
|
3165
3166
|
}
|
|
3166
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3167
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
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 }); }
|
|
3168
3169
|
}
|
|
3169
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3170
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSliderDirective, decorators: [{
|
|
3170
3171
|
type: Directive,
|
|
3171
3172
|
args: [{
|
|
3172
3173
|
selector: '[matchaSlider]',
|
|
@@ -3175,11 +3176,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
3175
3176
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3176
3177
|
|
|
3177
3178
|
class MatchaSliderModule {
|
|
3178
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3179
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
3180
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
3181
3182
|
}
|
|
3182
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3183
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSliderModule, decorators: [{
|
|
3183
3184
|
type: NgModule,
|
|
3184
3185
|
args: [{
|
|
3185
3186
|
declarations: [MatchaSliderDirective],
|
|
@@ -3197,10 +3198,10 @@ class MatchaSnackBarDirective {
|
|
|
3197
3198
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3198
3199
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-snackbar');
|
|
3199
3200
|
}
|
|
3200
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3201
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
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 }); }
|
|
3202
3203
|
}
|
|
3203
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3204
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSnackBarDirective, decorators: [{
|
|
3204
3205
|
type: Directive,
|
|
3205
3206
|
args: [{
|
|
3206
3207
|
selector: '[matchaSnackBar]',
|
|
@@ -3209,11 +3210,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
3209
3210
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3210
3211
|
|
|
3211
3212
|
class MatchaSnackBarModule {
|
|
3212
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3213
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
3214
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
3215
3216
|
}
|
|
3216
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3217
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSnackBarModule, decorators: [{
|
|
3217
3218
|
type: NgModule,
|
|
3218
3219
|
args: [{
|
|
3219
3220
|
declarations: [MatchaSnackBarDirective],
|
|
@@ -3229,10 +3230,10 @@ class MatchaSortHeaderDirective {
|
|
|
3229
3230
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3230
3231
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-sort-header');
|
|
3231
3232
|
}
|
|
3232
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3233
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
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 }); }
|
|
3234
3235
|
}
|
|
3235
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3236
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSortHeaderDirective, decorators: [{
|
|
3236
3237
|
type: Directive,
|
|
3237
3238
|
args: [{
|
|
3238
3239
|
selector: '[matchaSortHeader]',
|
|
@@ -3241,11 +3242,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
3241
3242
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3242
3243
|
|
|
3243
3244
|
class MatchaSortHeaderModule {
|
|
3244
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3245
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
3246
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
3247
3248
|
}
|
|
3248
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3249
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaSortHeaderModule, decorators: [{
|
|
3249
3250
|
type: NgModule,
|
|
3250
3251
|
args: [{
|
|
3251
3252
|
declarations: [MatchaSortHeaderDirective],
|
|
@@ -3254,6 +3255,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
3254
3255
|
}]
|
|
3255
3256
|
}] });
|
|
3256
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
|
+
|
|
3257
3274
|
class MatchaTableDirective {
|
|
3258
3275
|
constructor(_elementRef, _renderer) {
|
|
3259
3276
|
this._elementRef = _elementRef;
|
|
@@ -3261,10 +3278,10 @@ class MatchaTableDirective {
|
|
|
3261
3278
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3262
3279
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-table');
|
|
3263
3280
|
}
|
|
3264
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3265
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
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 }); }
|
|
3266
3283
|
}
|
|
3267
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3284
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTableDirective, decorators: [{
|
|
3268
3285
|
type: Directive,
|
|
3269
3286
|
args: [{
|
|
3270
3287
|
selector: '[matchaTable]',
|
|
@@ -3273,11 +3290,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
3273
3290
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3274
3291
|
|
|
3275
3292
|
class MatchaTableModule {
|
|
3276
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3277
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
3278
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
3279
3296
|
}
|
|
3280
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3297
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTableModule, decorators: [{
|
|
3281
3298
|
type: NgModule,
|
|
3282
3299
|
args: [{
|
|
3283
3300
|
declarations: [MatchaTableDirective],
|
|
@@ -3286,6 +3303,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
3286
3303
|
}]
|
|
3287
3304
|
}] });
|
|
3288
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
|
+
|
|
3289
3325
|
class MatchaTreeDirective {
|
|
3290
3326
|
constructor(_elementRef, _renderer) {
|
|
3291
3327
|
this._elementRef = _elementRef;
|
|
@@ -3293,10 +3329,10 @@ class MatchaTreeDirective {
|
|
|
3293
3329
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3294
3330
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-tree');
|
|
3295
3331
|
}
|
|
3296
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3297
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
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 }); }
|
|
3298
3334
|
}
|
|
3299
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3335
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTreeDirective, decorators: [{
|
|
3300
3336
|
type: Directive,
|
|
3301
3337
|
args: [{
|
|
3302
3338
|
selector: '[matchaTree]',
|
|
@@ -3305,11 +3341,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
3305
3341
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3306
3342
|
|
|
3307
3343
|
class MatchaTreeModule {
|
|
3308
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3309
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
3310
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
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] }); }
|
|
3311
3347
|
}
|
|
3312
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3348
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTreeModule, decorators: [{
|
|
3313
3349
|
type: NgModule,
|
|
3314
3350
|
args: [{
|
|
3315
3351
|
declarations: [MatchaTreeDirective],
|
|
@@ -3318,261 +3354,154 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
3318
3354
|
}]
|
|
3319
3355
|
}] });
|
|
3320
3356
|
|
|
3321
|
-
class MatchaOverflowDraggableComponent {
|
|
3322
|
-
constructor() {
|
|
3323
|
-
this.dragRef = '';
|
|
3324
|
-
}
|
|
3325
|
-
dragToScroll() {
|
|
3326
|
-
const ele = document.querySelector(`matchaDraggableReference${this.dragRef}`);
|
|
3327
|
-
if (ele) {
|
|
3328
|
-
let pos = { top: 0, left: 0, x: 0, y: 0 };
|
|
3329
|
-
const mouseDownHandler = function (e) {
|
|
3330
|
-
pos = {
|
|
3331
|
-
// The current scroll
|
|
3332
|
-
left: ele.scrollLeft,
|
|
3333
|
-
top: ele.scrollTop,
|
|
3334
|
-
// Get the current mouse position
|
|
3335
|
-
x: e.clientX,
|
|
3336
|
-
y: e.clientY,
|
|
3337
|
-
};
|
|
3338
|
-
ele.setAttribute('style', 'cursor: grabbing; user-select: none');
|
|
3339
|
-
document.addEventListener('mousemove', mouseMoveHandler);
|
|
3340
|
-
document.addEventListener('mouseup', mouseUpHandler);
|
|
3341
|
-
};
|
|
3342
|
-
const mouseMoveHandler = function (e) {
|
|
3343
|
-
// How far the mouse has been moved
|
|
3344
|
-
const dx = e.clientX - pos.x;
|
|
3345
|
-
const dy = e.clientY - pos.y;
|
|
3346
|
-
// Scroll the element
|
|
3347
|
-
ele.scrollTop = pos.top - dy;
|
|
3348
|
-
ele.scrollLeft = pos.left - dx;
|
|
3349
|
-
};
|
|
3350
|
-
const mouseUpHandler = function () {
|
|
3351
|
-
document.removeEventListener('mousemove', mouseMoveHandler);
|
|
3352
|
-
document.removeEventListener('mouseup', mouseUpHandler);
|
|
3353
|
-
ele.setAttribute('style', 'cursor: grab; user-select: initial');
|
|
3354
|
-
};
|
|
3355
|
-
ele.addEventListener('mousedown', mouseDownHandler);
|
|
3356
|
-
}
|
|
3357
|
-
}
|
|
3358
|
-
get classes() {
|
|
3359
|
-
const draggableReference = this.dragRef ? `matchaDraggableReference${this.dragRef}` : '';
|
|
3360
|
-
const activeClasses = `${draggableReference}`;
|
|
3361
|
-
return activeClasses;
|
|
3362
|
-
}
|
|
3363
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaOverflowDraggableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3364
|
-
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: [""] }); }
|
|
3365
|
-
}
|
|
3366
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaOverflowDraggableComponent, decorators: [{
|
|
3367
|
-
type: Component,
|
|
3368
|
-
args: [{ selector: 'matcha-overflow-draggable', standalone: false, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
3369
|
-
}], propDecorators: { dragRef: [{
|
|
3370
|
-
type: Input
|
|
3371
|
-
}] } });
|
|
3372
|
-
|
|
3373
|
-
class MatchaSpinModule {
|
|
3374
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSpinModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3375
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaSpinModule, declarations: [MatchaSpinComponent], imports: [CommonModule], exports: [MatchaSpinComponent] }); }
|
|
3376
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSpinModule, imports: [CommonModule] }); }
|
|
3377
|
-
}
|
|
3378
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaSpinModule, decorators: [{
|
|
3379
|
-
type: NgModule,
|
|
3380
|
-
args: [{
|
|
3381
|
-
declarations: [MatchaSpinComponent],
|
|
3382
|
-
imports: [
|
|
3383
|
-
CommonModule
|
|
3384
|
-
],
|
|
3385
|
-
exports: [MatchaSpinComponent]
|
|
3386
|
-
}]
|
|
3387
|
-
}] });
|
|
3388
|
-
|
|
3389
|
-
class MatchaHintTextModule {
|
|
3390
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaHintTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3391
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: MatchaHintTextModule, declarations: [MatchaHintTextComponent], imports: [CommonModule,
|
|
3392
|
-
MatchaIconModule], exports: [MatchaHintTextComponent] }); }
|
|
3393
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaHintTextModule, imports: [CommonModule,
|
|
3394
|
-
MatchaIconModule] }); }
|
|
3395
|
-
}
|
|
3396
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: MatchaHintTextModule, decorators: [{
|
|
3397
|
-
type: NgModule,
|
|
3398
|
-
args: [{
|
|
3399
|
-
declarations: [MatchaHintTextComponent],
|
|
3400
|
-
imports: [
|
|
3401
|
-
CommonModule,
|
|
3402
|
-
MatchaIconModule,
|
|
3403
|
-
],
|
|
3404
|
-
exports: [MatchaHintTextComponent],
|
|
3405
|
-
}]
|
|
3406
|
-
}] });
|
|
3407
|
-
|
|
3408
3357
|
class MatchaComponentsModule {
|
|
3409
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3410
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
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,
|
|
3411
3360
|
FormsModule,
|
|
3412
3361
|
ReactiveFormsModule,
|
|
3413
|
-
MatchaButtonGroupModule,
|
|
3414
3362
|
MatchaAccordionModule,
|
|
3415
|
-
MatchaFormFieldModule,
|
|
3416
|
-
MatchaInfiniteScrollModule,
|
|
3417
|
-
MatchaModalModule,
|
|
3418
|
-
MatchaMasonryModule,
|
|
3419
|
-
MatchaCardModule,
|
|
3420
|
-
MatchaTitleModule,
|
|
3421
3363
|
MatchaAutocompleteModule,
|
|
3422
3364
|
MatchaBadgeModule,
|
|
3423
|
-
MatchaTabsModule,
|
|
3424
|
-
MatchaBottomSheetModule,
|
|
3425
|
-
MatchaButtonToggleModule,
|
|
3426
3365
|
MatchaButtonModule,
|
|
3366
|
+
MatchaButtonToggleModule,
|
|
3367
|
+
MatchaCardModule,
|
|
3427
3368
|
MatchaCheckboxModule,
|
|
3428
3369
|
MatchaChipsModule,
|
|
3429
3370
|
MatchaDatepickerModule,
|
|
3430
3371
|
MatchaDividerModule,
|
|
3431
3372
|
MatchaElevationModule,
|
|
3432
|
-
|
|
3433
|
-
|
|
3373
|
+
MatchaFormFieldModule,
|
|
3374
|
+
MatchaHintTextModule,
|
|
3434
3375
|
MatchaIconModule,
|
|
3376
|
+
MatchaInfiniteScrollModule,
|
|
3435
3377
|
MatchaInputModule,
|
|
3436
|
-
|
|
3378
|
+
MatchaMasonryModule,
|
|
3437
3379
|
MatchaMenuModule,
|
|
3438
|
-
|
|
3380
|
+
MatchaModalModule,
|
|
3439
3381
|
MatchaPaginatorModule,
|
|
3440
3382
|
MatchaProgressBarModule,
|
|
3441
3383
|
MatchaRadioButtonModule,
|
|
3384
|
+
MatchaRippleModule,
|
|
3442
3385
|
MatchaSelectModule,
|
|
3386
|
+
MatchaSidenavModule,
|
|
3443
3387
|
MatchaSlideToggleModule,
|
|
3444
3388
|
MatchaSliderModule,
|
|
3445
3389
|
MatchaSnackBarModule,
|
|
3446
3390
|
MatchaSortHeaderModule,
|
|
3447
|
-
MatchaTableModule,
|
|
3448
|
-
MatchaTooltipModule,
|
|
3449
|
-
MatchaTreeModule,
|
|
3450
|
-
MatchaRippleModule,
|
|
3451
3391
|
MatchaSpinModule,
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
MatchaFormFieldModule,
|
|
3455
|
-
MatchaInfiniteScrollModule,
|
|
3456
|
-
MatchaModalModule,
|
|
3457
|
-
MatchaMasonryModule,
|
|
3458
|
-
MatchaCardModule,
|
|
3392
|
+
MatchaTableModule,
|
|
3393
|
+
MatchaTabsModule,
|
|
3459
3394
|
MatchaTitleModule,
|
|
3395
|
+
MatchaTooltipModule,
|
|
3396
|
+
MatchaTreeModule], exports: [MatchaAccordionModule,
|
|
3460
3397
|
MatchaAutocompleteModule,
|
|
3461
3398
|
MatchaBadgeModule,
|
|
3462
|
-
MatchaTabsModule,
|
|
3463
|
-
MatchaBottomSheetModule,
|
|
3464
|
-
MatchaButtonToggleModule,
|
|
3465
3399
|
MatchaButtonModule,
|
|
3400
|
+
MatchaButtonToggleModule,
|
|
3401
|
+
MatchaCardModule,
|
|
3466
3402
|
MatchaCheckboxModule,
|
|
3467
3403
|
MatchaChipsModule,
|
|
3468
3404
|
MatchaDatepickerModule,
|
|
3469
3405
|
MatchaDividerModule,
|
|
3470
3406
|
MatchaElevationModule,
|
|
3471
|
-
|
|
3472
|
-
|
|
3407
|
+
MatchaFormFieldModule,
|
|
3408
|
+
MatchaHintTextModule,
|
|
3473
3409
|
MatchaIconModule,
|
|
3410
|
+
MatchaInfiniteScrollModule,
|
|
3474
3411
|
MatchaInputModule,
|
|
3475
|
-
|
|
3412
|
+
MatchaMasonryModule,
|
|
3476
3413
|
MatchaMenuModule,
|
|
3477
|
-
|
|
3414
|
+
MatchaModalModule,
|
|
3478
3415
|
MatchaPaginatorModule,
|
|
3479
3416
|
MatchaProgressBarModule,
|
|
3480
3417
|
MatchaRadioButtonModule,
|
|
3418
|
+
MatchaRippleModule,
|
|
3481
3419
|
MatchaSelectModule,
|
|
3420
|
+
MatchaSidenavModule,
|
|
3482
3421
|
MatchaSlideToggleModule,
|
|
3483
3422
|
MatchaSliderModule,
|
|
3484
3423
|
MatchaSnackBarModule,
|
|
3485
3424
|
MatchaSortHeaderModule,
|
|
3425
|
+
MatchaSpinModule,
|
|
3486
3426
|
MatchaTableModule,
|
|
3427
|
+
MatchaTabsModule,
|
|
3428
|
+
MatchaTitleModule,
|
|
3487
3429
|
MatchaTooltipModule,
|
|
3488
|
-
MatchaTreeModule
|
|
3489
|
-
|
|
3490
|
-
MatchaSpinModule,
|
|
3491
|
-
MatchaHintTextModule] }); }
|
|
3492
|
-
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,
|
|
3493
3432
|
FormsModule,
|
|
3494
3433
|
ReactiveFormsModule,
|
|
3495
|
-
MatchaButtonGroupModule,
|
|
3496
3434
|
MatchaAccordionModule,
|
|
3497
|
-
MatchaFormFieldModule,
|
|
3498
|
-
MatchaInfiniteScrollModule,
|
|
3499
|
-
MatchaModalModule,
|
|
3500
|
-
MatchaMasonryModule,
|
|
3501
|
-
MatchaCardModule,
|
|
3502
|
-
MatchaTitleModule,
|
|
3503
3435
|
MatchaAutocompleteModule,
|
|
3504
3436
|
MatchaBadgeModule,
|
|
3505
|
-
MatchaTabsModule,
|
|
3506
|
-
MatchaBottomSheetModule,
|
|
3507
|
-
MatchaButtonToggleModule,
|
|
3508
3437
|
MatchaButtonModule,
|
|
3438
|
+
MatchaButtonToggleModule,
|
|
3439
|
+
MatchaCardModule,
|
|
3509
3440
|
MatchaCheckboxModule,
|
|
3510
3441
|
MatchaChipsModule,
|
|
3511
3442
|
MatchaDatepickerModule,
|
|
3512
3443
|
MatchaDividerModule,
|
|
3513
3444
|
MatchaElevationModule,
|
|
3514
|
-
|
|
3515
|
-
|
|
3445
|
+
MatchaFormFieldModule,
|
|
3446
|
+
MatchaHintTextModule,
|
|
3516
3447
|
MatchaIconModule,
|
|
3448
|
+
MatchaInfiniteScrollModule,
|
|
3517
3449
|
MatchaInputModule,
|
|
3518
|
-
|
|
3450
|
+
MatchaMasonryModule,
|
|
3519
3451
|
MatchaMenuModule,
|
|
3520
|
-
|
|
3452
|
+
MatchaModalModule,
|
|
3521
3453
|
MatchaPaginatorModule,
|
|
3522
3454
|
MatchaProgressBarModule,
|
|
3523
3455
|
MatchaRadioButtonModule,
|
|
3456
|
+
MatchaRippleModule,
|
|
3524
3457
|
MatchaSelectModule,
|
|
3458
|
+
MatchaSidenavModule,
|
|
3525
3459
|
MatchaSlideToggleModule,
|
|
3526
3460
|
MatchaSliderModule,
|
|
3527
3461
|
MatchaSnackBarModule,
|
|
3528
3462
|
MatchaSortHeaderModule,
|
|
3529
|
-
MatchaTableModule,
|
|
3530
|
-
MatchaTooltipModule,
|
|
3531
|
-
MatchaTreeModule,
|
|
3532
|
-
MatchaRippleModule,
|
|
3533
3463
|
MatchaSpinModule,
|
|
3534
|
-
|
|
3535
|
-
|
|
3536
|
-
MatchaFormFieldModule,
|
|
3537
|
-
MatchaInfiniteScrollModule,
|
|
3538
|
-
MatchaModalModule,
|
|
3539
|
-
MatchaMasonryModule,
|
|
3540
|
-
MatchaCardModule,
|
|
3464
|
+
MatchaTableModule,
|
|
3465
|
+
MatchaTabsModule,
|
|
3541
3466
|
MatchaTitleModule,
|
|
3467
|
+
MatchaTooltipModule,
|
|
3468
|
+
MatchaTreeModule, MatchaAccordionModule,
|
|
3542
3469
|
MatchaAutocompleteModule,
|
|
3543
3470
|
MatchaBadgeModule,
|
|
3544
|
-
MatchaTabsModule,
|
|
3545
|
-
MatchaBottomSheetModule,
|
|
3546
|
-
MatchaButtonToggleModule,
|
|
3547
3471
|
MatchaButtonModule,
|
|
3472
|
+
MatchaButtonToggleModule,
|
|
3473
|
+
MatchaCardModule,
|
|
3548
3474
|
MatchaCheckboxModule,
|
|
3549
3475
|
MatchaChipsModule,
|
|
3550
3476
|
MatchaDatepickerModule,
|
|
3551
3477
|
MatchaDividerModule,
|
|
3552
3478
|
MatchaElevationModule,
|
|
3553
|
-
|
|
3554
|
-
|
|
3479
|
+
MatchaFormFieldModule,
|
|
3480
|
+
MatchaHintTextModule,
|
|
3555
3481
|
MatchaIconModule,
|
|
3482
|
+
MatchaInfiniteScrollModule,
|
|
3556
3483
|
MatchaInputModule,
|
|
3557
|
-
|
|
3484
|
+
MatchaMasonryModule,
|
|
3558
3485
|
MatchaMenuModule,
|
|
3559
|
-
|
|
3486
|
+
MatchaModalModule,
|
|
3560
3487
|
MatchaPaginatorModule,
|
|
3561
3488
|
MatchaProgressBarModule,
|
|
3562
3489
|
MatchaRadioButtonModule,
|
|
3490
|
+
MatchaRippleModule,
|
|
3563
3491
|
MatchaSelectModule,
|
|
3492
|
+
MatchaSidenavModule,
|
|
3564
3493
|
MatchaSlideToggleModule,
|
|
3565
3494
|
MatchaSliderModule,
|
|
3566
3495
|
MatchaSnackBarModule,
|
|
3567
3496
|
MatchaSortHeaderModule,
|
|
3497
|
+
MatchaSpinModule,
|
|
3568
3498
|
MatchaTableModule,
|
|
3499
|
+
MatchaTabsModule,
|
|
3500
|
+
MatchaTitleModule,
|
|
3569
3501
|
MatchaTooltipModule,
|
|
3570
|
-
MatchaTreeModule
|
|
3571
|
-
MatchaRippleModule,
|
|
3572
|
-
MatchaSpinModule,
|
|
3573
|
-
MatchaHintTextModule] }); }
|
|
3502
|
+
MatchaTreeModule] }); }
|
|
3574
3503
|
}
|
|
3575
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3504
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaComponentsModule, decorators: [{
|
|
3576
3505
|
type: NgModule,
|
|
3577
3506
|
args: [{
|
|
3578
3507
|
declarations: [
|
|
@@ -3582,88 +3511,78 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
3582
3511
|
CommonModule,
|
|
3583
3512
|
FormsModule,
|
|
3584
3513
|
ReactiveFormsModule,
|
|
3585
|
-
MatchaButtonGroupModule,
|
|
3586
3514
|
MatchaAccordionModule,
|
|
3587
|
-
MatchaFormFieldModule,
|
|
3588
|
-
MatchaInfiniteScrollModule,
|
|
3589
|
-
MatchaModalModule,
|
|
3590
|
-
MatchaMasonryModule,
|
|
3591
|
-
MatchaCardModule,
|
|
3592
|
-
MatchaTitleModule,
|
|
3593
3515
|
MatchaAutocompleteModule,
|
|
3594
3516
|
MatchaBadgeModule,
|
|
3595
|
-
MatchaTabsModule,
|
|
3596
|
-
MatchaBottomSheetModule,
|
|
3597
|
-
MatchaButtonToggleModule,
|
|
3598
3517
|
MatchaButtonModule,
|
|
3518
|
+
MatchaButtonToggleModule,
|
|
3519
|
+
MatchaCardModule,
|
|
3599
3520
|
MatchaCheckboxModule,
|
|
3600
3521
|
MatchaChipsModule,
|
|
3601
3522
|
MatchaDatepickerModule,
|
|
3602
3523
|
MatchaDividerModule,
|
|
3603
3524
|
MatchaElevationModule,
|
|
3604
|
-
|
|
3605
|
-
|
|
3525
|
+
MatchaFormFieldModule,
|
|
3526
|
+
MatchaHintTextModule,
|
|
3606
3527
|
MatchaIconModule,
|
|
3528
|
+
MatchaInfiniteScrollModule,
|
|
3607
3529
|
MatchaInputModule,
|
|
3608
|
-
|
|
3530
|
+
MatchaMasonryModule,
|
|
3609
3531
|
MatchaMenuModule,
|
|
3610
|
-
|
|
3532
|
+
MatchaModalModule,
|
|
3611
3533
|
MatchaPaginatorModule,
|
|
3612
3534
|
MatchaProgressBarModule,
|
|
3613
3535
|
MatchaRadioButtonModule,
|
|
3536
|
+
MatchaRippleModule,
|
|
3614
3537
|
MatchaSelectModule,
|
|
3538
|
+
MatchaSidenavModule,
|
|
3615
3539
|
MatchaSlideToggleModule,
|
|
3616
3540
|
MatchaSliderModule,
|
|
3617
3541
|
MatchaSnackBarModule,
|
|
3618
3542
|
MatchaSortHeaderModule,
|
|
3543
|
+
MatchaSpinModule,
|
|
3619
3544
|
MatchaTableModule,
|
|
3545
|
+
MatchaTabsModule,
|
|
3546
|
+
MatchaTitleModule,
|
|
3620
3547
|
MatchaTooltipModule,
|
|
3621
|
-
MatchaTreeModule
|
|
3622
|
-
MatchaRippleModule,
|
|
3623
|
-
MatchaSpinModule,
|
|
3624
|
-
MatchaHintTextModule
|
|
3548
|
+
MatchaTreeModule
|
|
3625
3549
|
],
|
|
3626
3550
|
exports: [
|
|
3627
|
-
MatchaButtonGroupModule,
|
|
3628
3551
|
MatchaAccordionModule,
|
|
3629
|
-
MatchaFormFieldModule,
|
|
3630
|
-
MatchaInfiniteScrollModule,
|
|
3631
|
-
MatchaModalModule,
|
|
3632
|
-
MatchaMasonryModule,
|
|
3633
|
-
MatchaCardModule,
|
|
3634
|
-
MatchaTitleModule,
|
|
3635
3552
|
MatchaAutocompleteModule,
|
|
3636
3553
|
MatchaBadgeModule,
|
|
3637
|
-
MatchaTabsModule,
|
|
3638
|
-
MatchaBottomSheetModule,
|
|
3639
|
-
MatchaButtonToggleModule,
|
|
3640
3554
|
MatchaButtonModule,
|
|
3555
|
+
MatchaButtonToggleModule,
|
|
3556
|
+
MatchaCardModule,
|
|
3641
3557
|
MatchaCheckboxModule,
|
|
3642
3558
|
MatchaChipsModule,
|
|
3643
3559
|
MatchaDatepickerModule,
|
|
3644
3560
|
MatchaDividerModule,
|
|
3645
3561
|
MatchaElevationModule,
|
|
3646
|
-
|
|
3647
|
-
|
|
3562
|
+
MatchaFormFieldModule,
|
|
3563
|
+
MatchaHintTextModule,
|
|
3648
3564
|
MatchaIconModule,
|
|
3565
|
+
MatchaInfiniteScrollModule,
|
|
3649
3566
|
MatchaInputModule,
|
|
3650
|
-
|
|
3567
|
+
MatchaMasonryModule,
|
|
3651
3568
|
MatchaMenuModule,
|
|
3652
|
-
|
|
3569
|
+
MatchaModalModule,
|
|
3653
3570
|
MatchaPaginatorModule,
|
|
3654
3571
|
MatchaProgressBarModule,
|
|
3655
3572
|
MatchaRadioButtonModule,
|
|
3573
|
+
MatchaRippleModule,
|
|
3656
3574
|
MatchaSelectModule,
|
|
3575
|
+
MatchaSidenavModule,
|
|
3657
3576
|
MatchaSlideToggleModule,
|
|
3658
3577
|
MatchaSliderModule,
|
|
3659
3578
|
MatchaSnackBarModule,
|
|
3660
3579
|
MatchaSortHeaderModule,
|
|
3580
|
+
MatchaSpinModule,
|
|
3661
3581
|
MatchaTableModule,
|
|
3582
|
+
MatchaTabsModule,
|
|
3583
|
+
MatchaTitleModule,
|
|
3662
3584
|
MatchaTooltipModule,
|
|
3663
|
-
MatchaTreeModule
|
|
3664
|
-
MatchaRippleModule,
|
|
3665
|
-
MatchaSpinModule,
|
|
3666
|
-
MatchaHintTextModule
|
|
3585
|
+
MatchaTreeModule
|
|
3667
3586
|
]
|
|
3668
3587
|
}]
|
|
3669
3588
|
}] });
|
|
@@ -3687,5 +3606,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
3687
3606
|
* Generated bundle index. Do not edit.
|
|
3688
3607
|
*/
|
|
3689
3608
|
|
|
3690
|
-
export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaAutocompleteOverviewDirective, MatchaBadgeDirective, MatchaBadgeModule,
|
|
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 };
|
|
3691
3610
|
//# sourceMappingURL=matcha-components.mjs.map
|