matcha-components 18.0.41 → 18.0.43
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/esm2022/lib/matcha-button/button/button.component.mjs +201 -0
- package/esm2022/lib/matcha-button/button.directive.mjs +1 -2
- package/esm2022/lib/matcha-button/button.module.mjs +5 -4
- package/esm2022/lib/matcha-components.module.mjs +220 -6
- package/esm2022/public-api.mjs +4 -3
- package/fesm2022/matcha-components.mjs +625 -213
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/lib/matcha-button/button/button.component.d.ts +35 -0
- package/lib/matcha-button/button.module.d.ts +2 -1
- package/package.json +1 -1
- package/public-api.d.ts +3 -2
|
@@ -1,8 +1,207 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { ElementRef, Renderer2, Component, Inject, Input, EventEmitter, Output, HostListener, NgModule, Directive } from '@angular/core';
|
|
3
3
|
import * as i1 from '@angular/common';
|
|
4
4
|
import { CommonModule } from '@angular/common';
|
|
5
5
|
|
|
6
|
+
class MatchaButtonComponent {
|
|
7
|
+
constructor(_elementRef, _renderer) {
|
|
8
|
+
this._elementRef = _elementRef;
|
|
9
|
+
this._renderer = _renderer;
|
|
10
|
+
this.size = null;
|
|
11
|
+
this.sizeXs = null;
|
|
12
|
+
this.sizeSm = null;
|
|
13
|
+
this.sizeMd = null;
|
|
14
|
+
this.sizeLg = null;
|
|
15
|
+
this.sizeXl = null;
|
|
16
|
+
this.color = 'basic';
|
|
17
|
+
this.basic = false;
|
|
18
|
+
this.outline = false;
|
|
19
|
+
this.pill = false;
|
|
20
|
+
this.icon = false;
|
|
21
|
+
this.link = false;
|
|
22
|
+
this._config = {
|
|
23
|
+
sizeXs: 'tiny',
|
|
24
|
+
sizeSm: 'small',
|
|
25
|
+
sizeMd: 'medium',
|
|
26
|
+
sizeLg: 'large',
|
|
27
|
+
sizeXl: 'huge',
|
|
28
|
+
size: 'medium',
|
|
29
|
+
color: 'primary',
|
|
30
|
+
basic: false,
|
|
31
|
+
outline: false,
|
|
32
|
+
pill: false,
|
|
33
|
+
icon: false,
|
|
34
|
+
link: false
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
ngOnInit() {
|
|
38
|
+
this._renderer.addClass(this._elementRef.nativeElement, `matcha-button`);
|
|
39
|
+
this.setConfig();
|
|
40
|
+
// Adicione o evento de clique apenas a elementos com a classe "matcha-button"
|
|
41
|
+
const buttons = document.querySelectorAll('.matcha-button');
|
|
42
|
+
buttons.forEach(button => {
|
|
43
|
+
// mouse down event
|
|
44
|
+
button.addEventListener('mousedown', this.addRippleEffect, false);
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
ngOnChanges() {
|
|
48
|
+
this.setConfig();
|
|
49
|
+
}
|
|
50
|
+
clearConfig() {
|
|
51
|
+
// BG colors and FG contrast
|
|
52
|
+
this._renderer.removeClass(this._elementRef.nativeElement, `${this._config.color}`);
|
|
53
|
+
// FG colors only
|
|
54
|
+
this._renderer.removeClass(this._elementRef.nativeElement, `color-${this._config.color}`);
|
|
55
|
+
//size
|
|
56
|
+
this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-${this._config.size}`);
|
|
57
|
+
this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-xs-${this._config.sizeXs}`);
|
|
58
|
+
this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-sm-${this._config.sizeSm}`);
|
|
59
|
+
this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-md-${this._config.sizeMd}`);
|
|
60
|
+
this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-lg-${this._config.sizeLg}`);
|
|
61
|
+
this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-xl-${this._config.sizeXl}`);
|
|
62
|
+
//basic
|
|
63
|
+
this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-icon`);
|
|
64
|
+
//outline
|
|
65
|
+
this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-outline`);
|
|
66
|
+
//pill
|
|
67
|
+
this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-pill`);
|
|
68
|
+
//icon
|
|
69
|
+
this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-basic`);
|
|
70
|
+
//link
|
|
71
|
+
this._renderer.removeClass(this._elementRef.nativeElement, `matcha-button-link`);
|
|
72
|
+
}
|
|
73
|
+
setConfig() {
|
|
74
|
+
this.clearConfig();
|
|
75
|
+
this.size ? this.setSize() : null;
|
|
76
|
+
this.color ? this.setColor() : null;
|
|
77
|
+
(this.outline === true || this.outline === 'true') ? this.setOutline() : null;
|
|
78
|
+
(this.pill === true || this.pill === 'true') ? this.setPill() : null;
|
|
79
|
+
(this.link === true || this.link === 'true') ? this.setLink() : null;
|
|
80
|
+
(this.basic === true || this.basic === 'true') ? this.setBasic() : null;
|
|
81
|
+
(this.icon === true || this.icon === 'true') ? this.setIcon() : null;
|
|
82
|
+
}
|
|
83
|
+
setSize() {
|
|
84
|
+
this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-${this.size}`);
|
|
85
|
+
this._config.size = this.size;
|
|
86
|
+
if (this.sizeXs) {
|
|
87
|
+
this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-xs-${this.sizeXs}`);
|
|
88
|
+
this._config.sizeXs = this.sizeXs;
|
|
89
|
+
}
|
|
90
|
+
if (this.sizeSm) {
|
|
91
|
+
this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-sm-${this.sizeSm}`);
|
|
92
|
+
this._config.sizeSm = this.sizeSm;
|
|
93
|
+
}
|
|
94
|
+
if (this.sizeMd) {
|
|
95
|
+
this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-md-${this.sizeMd}`);
|
|
96
|
+
this._config.sizeMd = this.sizeMd;
|
|
97
|
+
}
|
|
98
|
+
if (this.sizeLg) {
|
|
99
|
+
this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-lg-${this.sizeLg}`);
|
|
100
|
+
this._config.sizeLg = this.sizeLg;
|
|
101
|
+
}
|
|
102
|
+
if (this.sizeXl) {
|
|
103
|
+
this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-xl-${this.sizeXl}`);
|
|
104
|
+
this._config.sizeXl = this.sizeXl;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
setColor() {
|
|
108
|
+
this._renderer.addClass(this._elementRef.nativeElement, `${this.color}`);
|
|
109
|
+
this._config.color = this.color;
|
|
110
|
+
}
|
|
111
|
+
setOutline() {
|
|
112
|
+
this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-outline`);
|
|
113
|
+
this._renderer.addClass(this._elementRef.nativeElement, `color-${this.color}`);
|
|
114
|
+
}
|
|
115
|
+
setPill() {
|
|
116
|
+
this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-pill`);
|
|
117
|
+
}
|
|
118
|
+
setLink() {
|
|
119
|
+
this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-link`);
|
|
120
|
+
}
|
|
121
|
+
setBasic() {
|
|
122
|
+
this._renderer.removeClass(this._elementRef.nativeElement, `${this._config.color}`);
|
|
123
|
+
this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-basic`);
|
|
124
|
+
this._renderer.addClass(this._elementRef.nativeElement, `color-${this.color}`);
|
|
125
|
+
}
|
|
126
|
+
setIcon() {
|
|
127
|
+
this._renderer.addClass(this._elementRef.nativeElement, `matcha-button-icon`);
|
|
128
|
+
}
|
|
129
|
+
addRippleEffect(e) {
|
|
130
|
+
var target = e.target;
|
|
131
|
+
if (target.tagName.toLowerCase() !== 'button')
|
|
132
|
+
return false;
|
|
133
|
+
var rect = target.getBoundingClientRect();
|
|
134
|
+
var ripple = target.querySelector('.ripple');
|
|
135
|
+
if (!ripple) {
|
|
136
|
+
ripple = document.createElement('span');
|
|
137
|
+
ripple.className = `ripple`;
|
|
138
|
+
ripple.style.height = ripple.style.width = target.offsetWidth + 'px';
|
|
139
|
+
target.appendChild(ripple);
|
|
140
|
+
}
|
|
141
|
+
ripple.classList.remove('show');
|
|
142
|
+
var top = e.pageY - rect.top - ripple.offsetHeight / 2 - window.scrollY;
|
|
143
|
+
var left = e.pageX - rect.left - ripple.offsetWidth / 2 - window.scrollX;
|
|
144
|
+
ripple.style.top = top + 'px';
|
|
145
|
+
ripple.style.left = left + 'px';
|
|
146
|
+
ripple.classList.add('show');
|
|
147
|
+
return false;
|
|
148
|
+
}
|
|
149
|
+
ngOnDestroy() {
|
|
150
|
+
const buttons = document.querySelectorAll('.matcha-button');
|
|
151
|
+
buttons.forEach(button => {
|
|
152
|
+
button.removeEventListener('click', this.addRippleEffect, false);
|
|
153
|
+
});
|
|
154
|
+
}
|
|
155
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonComponent, deps: [{ token: ElementRef }, { token: Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
156
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaButtonComponent, selector: "matcha-button", inputs: { size: "size", sizeXs: ["size-xs", "sizeXs"], sizeSm: ["size-sm", "sizeSm"], sizeMd: ["size-md", "sizeMd"], sizeLg: ["size-lg", "sizeLg"], sizeXl: ["size-xl", "sizeXl"], color: "color", basic: "basic", outline: "outline", pill: "pill", icon: "icon", link: "link" }, usesOnChanges: true, ngImport: i0, template: "<button>\n <ng-content></ng-content>\n</button>\n", styles: [""] }); }
|
|
157
|
+
}
|
|
158
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonComponent, decorators: [{
|
|
159
|
+
type: Component,
|
|
160
|
+
args: [{ selector: 'matcha-button', template: "<button>\n <ng-content></ng-content>\n</button>\n" }]
|
|
161
|
+
}], ctorParameters: () => [{ type: i0.ElementRef, decorators: [{
|
|
162
|
+
type: Inject,
|
|
163
|
+
args: [ElementRef]
|
|
164
|
+
}] }, { type: i0.Renderer2, decorators: [{
|
|
165
|
+
type: Inject,
|
|
166
|
+
args: [Renderer2]
|
|
167
|
+
}] }], propDecorators: { size: [{
|
|
168
|
+
type: Input,
|
|
169
|
+
args: ['size']
|
|
170
|
+
}], sizeXs: [{
|
|
171
|
+
type: Input,
|
|
172
|
+
args: ['size-xs']
|
|
173
|
+
}], sizeSm: [{
|
|
174
|
+
type: Input,
|
|
175
|
+
args: ['size-sm']
|
|
176
|
+
}], sizeMd: [{
|
|
177
|
+
type: Input,
|
|
178
|
+
args: ['size-md']
|
|
179
|
+
}], sizeLg: [{
|
|
180
|
+
type: Input,
|
|
181
|
+
args: ['size-lg']
|
|
182
|
+
}], sizeXl: [{
|
|
183
|
+
type: Input,
|
|
184
|
+
args: ['size-xl']
|
|
185
|
+
}], color: [{
|
|
186
|
+
type: Input,
|
|
187
|
+
args: ['color']
|
|
188
|
+
}], basic: [{
|
|
189
|
+
type: Input,
|
|
190
|
+
args: ['basic']
|
|
191
|
+
}], outline: [{
|
|
192
|
+
type: Input,
|
|
193
|
+
args: ['outline']
|
|
194
|
+
}], pill: [{
|
|
195
|
+
type: Input,
|
|
196
|
+
args: ['pill']
|
|
197
|
+
}], icon: [{
|
|
198
|
+
type: Input,
|
|
199
|
+
args: ['icon']
|
|
200
|
+
}], link: [{
|
|
201
|
+
type: Input,
|
|
202
|
+
args: ['link']
|
|
203
|
+
}] } });
|
|
204
|
+
|
|
6
205
|
class MatchaCardComponent {
|
|
7
206
|
constructor() {
|
|
8
207
|
this.elevation = 0;
|
|
@@ -616,220 +815,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
616
815
|
MatchaIconModule,
|
|
617
816
|
MatchaTitleModule,
|
|
618
817
|
MatchaDividerModule
|
|
619
|
-
],
|
|
620
|
-
exports: [
|
|
621
|
-
MatchaModalHeaderComponent,
|
|
622
|
-
MatchaModalContentComponent,
|
|
623
|
-
MatchaModalFooterComponent,
|
|
624
|
-
MatchaModalOptionsComponent,
|
|
625
|
-
MatchaModalComponent
|
|
626
|
-
]
|
|
627
|
-
}]
|
|
628
|
-
}] });
|
|
629
|
-
|
|
630
|
-
class MatchaCardModule {
|
|
631
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaCardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
632
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaCardModule, declarations: [MatchaCardComponent], imports: [CommonModule], exports: [MatchaCardComponent] }); }
|
|
633
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaCardModule, imports: [CommonModule] }); }
|
|
634
|
-
}
|
|
635
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaCardModule, decorators: [{
|
|
636
|
-
type: NgModule,
|
|
637
|
-
args: [{
|
|
638
|
-
declarations: [MatchaCardComponent],
|
|
639
|
-
imports: [CommonModule],
|
|
640
|
-
exports: [MatchaCardComponent],
|
|
641
|
-
}]
|
|
642
|
-
}] });
|
|
643
|
-
|
|
644
|
-
class MatchaMasonryModule {
|
|
645
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaMasonryModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
646
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaMasonryModule, declarations: [MatchaMasonryComponent], imports: [CommonModule], exports: [MatchaMasonryComponent] }); }
|
|
647
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaMasonryModule, imports: [CommonModule] }); }
|
|
648
|
-
}
|
|
649
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaMasonryModule, decorators: [{
|
|
650
|
-
type: NgModule,
|
|
651
|
-
args: [{
|
|
652
|
-
declarations: [MatchaMasonryComponent],
|
|
653
|
-
imports: [CommonModule],
|
|
654
|
-
exports: [MatchaMasonryComponent]
|
|
655
|
-
}]
|
|
656
|
-
}] });
|
|
657
|
-
|
|
658
|
-
class MatchaAutocompleteDirective {
|
|
659
|
-
constructor(_elementRef, _renderer) {
|
|
660
|
-
this._elementRef = _elementRef;
|
|
661
|
-
this._renderer = _renderer;
|
|
662
|
-
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-autocomplete');
|
|
663
|
-
}
|
|
664
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
665
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaAutocompleteDirective, selector: "[matcha-autocomplete]", ngImport: i0 }); }
|
|
666
|
-
}
|
|
667
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteDirective, decorators: [{
|
|
668
|
-
type: Directive,
|
|
669
|
-
args: [{
|
|
670
|
-
selector: '[matcha-autocomplete]'
|
|
671
|
-
}]
|
|
672
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
673
|
-
|
|
674
|
-
class MatchaAutocompleteOverviewDirective {
|
|
675
|
-
constructor(_elementRef, _renderer) {
|
|
676
|
-
this._elementRef = _elementRef;
|
|
677
|
-
this._renderer = _renderer;
|
|
678
|
-
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
679
|
-
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-autocomplete-overview');
|
|
680
|
-
}
|
|
681
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteOverviewDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
682
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaAutocompleteOverviewDirective, selector: "[matcha-autocomplete-overview]", ngImport: i0 }); }
|
|
683
|
-
}
|
|
684
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteOverviewDirective, decorators: [{
|
|
685
|
-
type: Directive,
|
|
686
|
-
args: [{
|
|
687
|
-
selector: '[matcha-autocomplete-overview]'
|
|
688
|
-
}]
|
|
689
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
690
|
-
|
|
691
|
-
class MatchaAutocompleteModule {
|
|
692
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
693
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteModule, declarations: [MatchaAutocompleteDirective,
|
|
694
|
-
MatchaAutocompleteOverviewDirective], exports: [MatchaAutocompleteDirective, MatchaAutocompleteOverviewDirective] }); }
|
|
695
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteModule }); }
|
|
696
|
-
}
|
|
697
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteModule, decorators: [{
|
|
698
|
-
type: NgModule,
|
|
699
|
-
args: [{
|
|
700
|
-
declarations: [
|
|
701
|
-
MatchaAutocompleteDirective,
|
|
702
|
-
MatchaAutocompleteOverviewDirective,
|
|
703
|
-
],
|
|
704
|
-
imports: [],
|
|
705
|
-
exports: [MatchaAutocompleteDirective, MatchaAutocompleteOverviewDirective],
|
|
706
|
-
}]
|
|
707
|
-
}] });
|
|
708
|
-
|
|
709
|
-
class MatchaBadgeDirective {
|
|
710
|
-
constructor(_elementRef, _renderer) {
|
|
711
|
-
this._elementRef = _elementRef;
|
|
712
|
-
this._renderer = _renderer;
|
|
713
|
-
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
714
|
-
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-badge');
|
|
715
|
-
}
|
|
716
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBadgeDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
717
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaBadgeDirective, selector: "[matcha-badge]", ngImport: i0 }); }
|
|
718
|
-
}
|
|
719
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBadgeDirective, decorators: [{
|
|
720
|
-
type: Directive,
|
|
721
|
-
args: [{
|
|
722
|
-
selector: '[matcha-badge]',
|
|
723
|
-
}]
|
|
724
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
725
|
-
|
|
726
|
-
class MatchaBadgeModule {
|
|
727
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBadgeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
728
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaBadgeModule, declarations: [MatchaBadgeDirective], exports: [MatchaBadgeDirective] }); }
|
|
729
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBadgeModule }); }
|
|
730
|
-
}
|
|
731
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBadgeModule, decorators: [{
|
|
732
|
-
type: NgModule,
|
|
733
|
-
args: [{
|
|
734
|
-
declarations: [MatchaBadgeDirective],
|
|
735
|
-
imports: [],
|
|
736
|
-
exports: [MatchaBadgeDirective],
|
|
737
|
-
}]
|
|
738
|
-
}] });
|
|
739
|
-
|
|
740
|
-
class MatchaTabsDirective {
|
|
741
|
-
constructor(_elementRef, _renderer) {
|
|
742
|
-
this._elementRef = _elementRef;
|
|
743
|
-
this._renderer = _renderer;
|
|
744
|
-
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
745
|
-
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-tabs');
|
|
746
|
-
}
|
|
747
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTabsDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
748
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaTabsDirective, selector: "[matchaTabs]", ngImport: i0 }); }
|
|
749
|
-
}
|
|
750
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTabsDirective, decorators: [{
|
|
751
|
-
type: Directive,
|
|
752
|
-
args: [{
|
|
753
|
-
selector: '[matchaTabs]'
|
|
754
|
-
}]
|
|
755
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
756
|
-
|
|
757
|
-
class MatchaTabsModule {
|
|
758
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTabsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
759
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaTabsModule, declarations: [MatchaTabsDirective], imports: [CommonModule], exports: [MatchaTabsDirective] }); }
|
|
760
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTabsModule, imports: [CommonModule] }); }
|
|
761
|
-
}
|
|
762
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTabsModule, decorators: [{
|
|
763
|
-
type: NgModule,
|
|
764
|
-
args: [{
|
|
765
|
-
declarations: [MatchaTabsDirective],
|
|
766
|
-
imports: [CommonModule],
|
|
767
|
-
exports: [MatchaTabsDirective],
|
|
768
|
-
}]
|
|
769
|
-
}] });
|
|
770
|
-
|
|
771
|
-
class MatchaBottomSheetDirective {
|
|
772
|
-
constructor(_elementRef, _renderer) {
|
|
773
|
-
this._elementRef = _elementRef;
|
|
774
|
-
this._renderer = _renderer;
|
|
775
|
-
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
776
|
-
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-bottom-sheet');
|
|
777
|
-
}
|
|
778
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBottomSheetDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
779
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaBottomSheetDirective, selector: "[matcha-bottom-sheet]", ngImport: i0 }); }
|
|
780
|
-
}
|
|
781
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBottomSheetDirective, decorators: [{
|
|
782
|
-
type: Directive,
|
|
783
|
-
args: [{
|
|
784
|
-
selector: '[matcha-bottom-sheet]'
|
|
818
|
+
],
|
|
819
|
+
exports: [
|
|
820
|
+
MatchaModalHeaderComponent,
|
|
821
|
+
MatchaModalContentComponent,
|
|
822
|
+
MatchaModalFooterComponent,
|
|
823
|
+
MatchaModalOptionsComponent,
|
|
824
|
+
MatchaModalComponent
|
|
825
|
+
]
|
|
785
826
|
}]
|
|
786
|
-
}]
|
|
827
|
+
}] });
|
|
787
828
|
|
|
788
|
-
class
|
|
789
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type:
|
|
790
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type:
|
|
791
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type:
|
|
829
|
+
class MatchaCardModule {
|
|
830
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaCardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
831
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaCardModule, declarations: [MatchaCardComponent], imports: [CommonModule], exports: [MatchaCardComponent] }); }
|
|
832
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaCardModule, imports: [CommonModule] }); }
|
|
792
833
|
}
|
|
793
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type:
|
|
834
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaCardModule, decorators: [{
|
|
794
835
|
type: NgModule,
|
|
795
836
|
args: [{
|
|
796
|
-
declarations: [
|
|
797
|
-
imports: [],
|
|
798
|
-
exports: [
|
|
837
|
+
declarations: [MatchaCardComponent],
|
|
838
|
+
imports: [CommonModule],
|
|
839
|
+
exports: [MatchaCardComponent],
|
|
799
840
|
}]
|
|
800
841
|
}] });
|
|
801
842
|
|
|
802
|
-
class
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-button-toggle');
|
|
807
|
-
}
|
|
808
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonToggleDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
809
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaButtonToggleDirective, selector: "[matcha-button-toggle]", ngImport: i0 }); }
|
|
810
|
-
}
|
|
811
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonToggleDirective, decorators: [{
|
|
812
|
-
type: Directive,
|
|
813
|
-
args: [{
|
|
814
|
-
selector: '[matcha-button-toggle]'
|
|
815
|
-
}]
|
|
816
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
817
|
-
|
|
818
|
-
class MatchaButtonToggleModule {
|
|
819
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
820
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonToggleModule, declarations: [MatchaButtonToggleDirective], exports: [MatchaButtonToggleDirective] }); }
|
|
821
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonToggleModule }); }
|
|
843
|
+
class MatchaMasonryModule {
|
|
844
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaMasonryModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
845
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaMasonryModule, declarations: [MatchaMasonryComponent], imports: [CommonModule], exports: [MatchaMasonryComponent] }); }
|
|
846
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaMasonryModule, imports: [CommonModule] }); }
|
|
822
847
|
}
|
|
823
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type:
|
|
848
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaMasonryModule, decorators: [{
|
|
824
849
|
type: NgModule,
|
|
825
850
|
args: [{
|
|
826
|
-
declarations: [
|
|
827
|
-
|
|
828
|
-
]
|
|
829
|
-
imports: [],
|
|
830
|
-
exports: [
|
|
831
|
-
MatchaButtonToggleDirective
|
|
832
|
-
]
|
|
851
|
+
declarations: [MatchaMasonryComponent],
|
|
852
|
+
imports: [CommonModule],
|
|
853
|
+
exports: [MatchaMasonryComponent]
|
|
833
854
|
}]
|
|
834
855
|
}] });
|
|
835
856
|
|
|
@@ -967,7 +988,6 @@ class MatchaButtonDirective {
|
|
|
967
988
|
ripple.className = `ripple`;
|
|
968
989
|
ripple.style.height = ripple.style.width = target.offsetWidth + 'px';
|
|
969
990
|
target.appendChild(ripple);
|
|
970
|
-
;
|
|
971
991
|
}
|
|
972
992
|
ripple.classList.remove('show');
|
|
973
993
|
var top = e.pageY - rect.top - ripple.offsetHeight / 2 - window.scrollY;
|
|
@@ -1037,15 +1057,193 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1037
1057
|
|
|
1038
1058
|
class MatchaButtonModule {
|
|
1039
1059
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1040
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonModule, declarations: [MatchaButtonDirective], exports: [MatchaButtonDirective] }); }
|
|
1060
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonModule, declarations: [MatchaButtonDirective, MatchaButtonComponent], exports: [MatchaButtonDirective, MatchaButtonComponent] }); }
|
|
1041
1061
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonModule }); }
|
|
1042
1062
|
}
|
|
1043
1063
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonModule, decorators: [{
|
|
1044
1064
|
type: NgModule,
|
|
1045
1065
|
args: [{
|
|
1046
|
-
declarations: [MatchaButtonDirective],
|
|
1066
|
+
declarations: [MatchaButtonDirective, MatchaButtonComponent],
|
|
1067
|
+
imports: [],
|
|
1068
|
+
exports: [MatchaButtonDirective, MatchaButtonComponent],
|
|
1069
|
+
}]
|
|
1070
|
+
}] });
|
|
1071
|
+
|
|
1072
|
+
class MatchaAutocompleteDirective {
|
|
1073
|
+
constructor(_elementRef, _renderer) {
|
|
1074
|
+
this._elementRef = _elementRef;
|
|
1075
|
+
this._renderer = _renderer;
|
|
1076
|
+
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-autocomplete');
|
|
1077
|
+
}
|
|
1078
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1079
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaAutocompleteDirective, selector: "[matcha-autocomplete]", ngImport: i0 }); }
|
|
1080
|
+
}
|
|
1081
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteDirective, decorators: [{
|
|
1082
|
+
type: Directive,
|
|
1083
|
+
args: [{
|
|
1084
|
+
selector: '[matcha-autocomplete]'
|
|
1085
|
+
}]
|
|
1086
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
1087
|
+
|
|
1088
|
+
class MatchaAutocompleteOverviewDirective {
|
|
1089
|
+
constructor(_elementRef, _renderer) {
|
|
1090
|
+
this._elementRef = _elementRef;
|
|
1091
|
+
this._renderer = _renderer;
|
|
1092
|
+
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
1093
|
+
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-autocomplete-overview');
|
|
1094
|
+
}
|
|
1095
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteOverviewDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1096
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaAutocompleteOverviewDirective, selector: "[matcha-autocomplete-overview]", ngImport: i0 }); }
|
|
1097
|
+
}
|
|
1098
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteOverviewDirective, decorators: [{
|
|
1099
|
+
type: Directive,
|
|
1100
|
+
args: [{
|
|
1101
|
+
selector: '[matcha-autocomplete-overview]'
|
|
1102
|
+
}]
|
|
1103
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
1104
|
+
|
|
1105
|
+
class MatchaAutocompleteModule {
|
|
1106
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1107
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteModule, declarations: [MatchaAutocompleteDirective,
|
|
1108
|
+
MatchaAutocompleteOverviewDirective], exports: [MatchaAutocompleteDirective, MatchaAutocompleteOverviewDirective] }); }
|
|
1109
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteModule }); }
|
|
1110
|
+
}
|
|
1111
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteModule, decorators: [{
|
|
1112
|
+
type: NgModule,
|
|
1113
|
+
args: [{
|
|
1114
|
+
declarations: [
|
|
1115
|
+
MatchaAutocompleteDirective,
|
|
1116
|
+
MatchaAutocompleteOverviewDirective,
|
|
1117
|
+
],
|
|
1118
|
+
imports: [],
|
|
1119
|
+
exports: [MatchaAutocompleteDirective, MatchaAutocompleteOverviewDirective],
|
|
1120
|
+
}]
|
|
1121
|
+
}] });
|
|
1122
|
+
|
|
1123
|
+
class MatchaBadgeDirective {
|
|
1124
|
+
constructor(_elementRef, _renderer) {
|
|
1125
|
+
this._elementRef = _elementRef;
|
|
1126
|
+
this._renderer = _renderer;
|
|
1127
|
+
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
1128
|
+
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-badge');
|
|
1129
|
+
}
|
|
1130
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBadgeDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1131
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaBadgeDirective, selector: "[matcha-badge]", ngImport: i0 }); }
|
|
1132
|
+
}
|
|
1133
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBadgeDirective, decorators: [{
|
|
1134
|
+
type: Directive,
|
|
1135
|
+
args: [{
|
|
1136
|
+
selector: '[matcha-badge]',
|
|
1137
|
+
}]
|
|
1138
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
1139
|
+
|
|
1140
|
+
class MatchaBadgeModule {
|
|
1141
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBadgeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1142
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaBadgeModule, declarations: [MatchaBadgeDirective], exports: [MatchaBadgeDirective] }); }
|
|
1143
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBadgeModule }); }
|
|
1144
|
+
}
|
|
1145
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBadgeModule, decorators: [{
|
|
1146
|
+
type: NgModule,
|
|
1147
|
+
args: [{
|
|
1148
|
+
declarations: [MatchaBadgeDirective],
|
|
1149
|
+
imports: [],
|
|
1150
|
+
exports: [MatchaBadgeDirective],
|
|
1151
|
+
}]
|
|
1152
|
+
}] });
|
|
1153
|
+
|
|
1154
|
+
class MatchaTabsDirective {
|
|
1155
|
+
constructor(_elementRef, _renderer) {
|
|
1156
|
+
this._elementRef = _elementRef;
|
|
1157
|
+
this._renderer = _renderer;
|
|
1158
|
+
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
1159
|
+
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-tabs');
|
|
1160
|
+
}
|
|
1161
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTabsDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1162
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaTabsDirective, selector: "[matchaTabs]", ngImport: i0 }); }
|
|
1163
|
+
}
|
|
1164
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTabsDirective, decorators: [{
|
|
1165
|
+
type: Directive,
|
|
1166
|
+
args: [{
|
|
1167
|
+
selector: '[matchaTabs]'
|
|
1168
|
+
}]
|
|
1169
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
1170
|
+
|
|
1171
|
+
class MatchaTabsModule {
|
|
1172
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTabsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1173
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaTabsModule, declarations: [MatchaTabsDirective], imports: [CommonModule], exports: [MatchaTabsDirective] }); }
|
|
1174
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTabsModule, imports: [CommonModule] }); }
|
|
1175
|
+
}
|
|
1176
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTabsModule, decorators: [{
|
|
1177
|
+
type: NgModule,
|
|
1178
|
+
args: [{
|
|
1179
|
+
declarations: [MatchaTabsDirective],
|
|
1180
|
+
imports: [CommonModule],
|
|
1181
|
+
exports: [MatchaTabsDirective],
|
|
1182
|
+
}]
|
|
1183
|
+
}] });
|
|
1184
|
+
|
|
1185
|
+
class MatchaBottomSheetDirective {
|
|
1186
|
+
constructor(_elementRef, _renderer) {
|
|
1187
|
+
this._elementRef = _elementRef;
|
|
1188
|
+
this._renderer = _renderer;
|
|
1189
|
+
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
1190
|
+
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-bottom-sheet');
|
|
1191
|
+
}
|
|
1192
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBottomSheetDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1193
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaBottomSheetDirective, selector: "[matcha-bottom-sheet]", ngImport: i0 }); }
|
|
1194
|
+
}
|
|
1195
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBottomSheetDirective, decorators: [{
|
|
1196
|
+
type: Directive,
|
|
1197
|
+
args: [{
|
|
1198
|
+
selector: '[matcha-bottom-sheet]'
|
|
1199
|
+
}]
|
|
1200
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
1201
|
+
|
|
1202
|
+
class MatchaBottomSheetModule {
|
|
1203
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBottomSheetModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1204
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaBottomSheetModule, declarations: [MatchaBottomSheetDirective], exports: [MatchaBottomSheetDirective] }); }
|
|
1205
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBottomSheetModule }); }
|
|
1206
|
+
}
|
|
1207
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBottomSheetModule, decorators: [{
|
|
1208
|
+
type: NgModule,
|
|
1209
|
+
args: [{
|
|
1210
|
+
declarations: [MatchaBottomSheetDirective],
|
|
1211
|
+
imports: [],
|
|
1212
|
+
exports: [MatchaBottomSheetDirective],
|
|
1213
|
+
}]
|
|
1214
|
+
}] });
|
|
1215
|
+
|
|
1216
|
+
class MatchaButtonToggleDirective {
|
|
1217
|
+
constructor(_elementRef, _renderer) {
|
|
1218
|
+
this._elementRef = _elementRef;
|
|
1219
|
+
this._renderer = _renderer;
|
|
1220
|
+
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-button-toggle');
|
|
1221
|
+
}
|
|
1222
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonToggleDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1223
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaButtonToggleDirective, selector: "[matcha-button-toggle]", ngImport: i0 }); }
|
|
1224
|
+
}
|
|
1225
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonToggleDirective, decorators: [{
|
|
1226
|
+
type: Directive,
|
|
1227
|
+
args: [{
|
|
1228
|
+
selector: '[matcha-button-toggle]'
|
|
1229
|
+
}]
|
|
1230
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
1231
|
+
|
|
1232
|
+
class MatchaButtonToggleModule {
|
|
1233
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1234
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonToggleModule, declarations: [MatchaButtonToggleDirective], exports: [MatchaButtonToggleDirective] }); }
|
|
1235
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonToggleModule }); }
|
|
1236
|
+
}
|
|
1237
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonToggleModule, decorators: [{
|
|
1238
|
+
type: NgModule,
|
|
1239
|
+
args: [{
|
|
1240
|
+
declarations: [
|
|
1241
|
+
MatchaButtonToggleDirective
|
|
1242
|
+
],
|
|
1047
1243
|
imports: [],
|
|
1048
|
-
exports: [
|
|
1244
|
+
exports: [
|
|
1245
|
+
MatchaButtonToggleDirective
|
|
1246
|
+
]
|
|
1049
1247
|
}]
|
|
1050
1248
|
}] });
|
|
1051
1249
|
|
|
@@ -1890,8 +2088,148 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1890
2088
|
|
|
1891
2089
|
class MatchaComponentsModule {
|
|
1892
2090
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1893
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaComponentsModule, declarations: [MatchaOverflowDraggableComponent], imports: [MatchaModalModule,
|
|
1894
|
-
|
|
2091
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaComponentsModule, declarations: [MatchaOverflowDraggableComponent], imports: [MatchaModalModule,
|
|
2092
|
+
MatchaMasonryModule,
|
|
2093
|
+
MatchaCardModule,
|
|
2094
|
+
MatchaTitleModule,
|
|
2095
|
+
MatchaAutocompleteModule,
|
|
2096
|
+
MatchaBadgeModule,
|
|
2097
|
+
MatchaTabsModule,
|
|
2098
|
+
MatchaBottomSheetModule,
|
|
2099
|
+
MatchaButtonToggleModule,
|
|
2100
|
+
MatchaButtonModule,
|
|
2101
|
+
MatchaCheckboxModule,
|
|
2102
|
+
MatchaChipsModule,
|
|
2103
|
+
MatchaDatepickerModule,
|
|
2104
|
+
MatchaDividerModule,
|
|
2105
|
+
MatchaElevationModule,
|
|
2106
|
+
MatchaExpansionModule,
|
|
2107
|
+
MatchaFormsModule,
|
|
2108
|
+
MatchaIconModule,
|
|
2109
|
+
MatchaInputModule,
|
|
2110
|
+
MatchaListModule,
|
|
2111
|
+
MatchaMenuModule,
|
|
2112
|
+
MatchaSidenavModule,
|
|
2113
|
+
MatchaPaginatorModule,
|
|
2114
|
+
MatchaProgressBarModule,
|
|
2115
|
+
MatchaProgressSpinnerModule,
|
|
2116
|
+
MatchaRadioButtonModule,
|
|
2117
|
+
MatchaSelectModule,
|
|
2118
|
+
MatchaSlideToggleModule,
|
|
2119
|
+
MatchaSliderModule,
|
|
2120
|
+
MatchaSnackBarModule,
|
|
2121
|
+
MatchaSortHeaderModule,
|
|
2122
|
+
MatchaStepperModule,
|
|
2123
|
+
MatchaTableModule,
|
|
2124
|
+
MatchaTabsModule,
|
|
2125
|
+
MatchaTooltipModule,
|
|
2126
|
+
MatchaTreeModule], exports: [MatchaModalModule,
|
|
2127
|
+
MatchaMasonryModule,
|
|
2128
|
+
MatchaCardModule,
|
|
2129
|
+
MatchaTitleModule,
|
|
2130
|
+
MatchaAutocompleteModule,
|
|
2131
|
+
MatchaBadgeModule,
|
|
2132
|
+
MatchaTabsModule,
|
|
2133
|
+
MatchaBottomSheetModule,
|
|
2134
|
+
MatchaButtonToggleModule,
|
|
2135
|
+
MatchaButtonModule,
|
|
2136
|
+
MatchaCheckboxModule,
|
|
2137
|
+
MatchaChipsModule,
|
|
2138
|
+
MatchaDatepickerModule,
|
|
2139
|
+
MatchaDividerModule,
|
|
2140
|
+
MatchaElevationModule,
|
|
2141
|
+
MatchaExpansionModule,
|
|
2142
|
+
MatchaFormsModule,
|
|
2143
|
+
MatchaIconModule,
|
|
2144
|
+
MatchaInputModule,
|
|
2145
|
+
MatchaListModule,
|
|
2146
|
+
MatchaMenuModule,
|
|
2147
|
+
MatchaSidenavModule,
|
|
2148
|
+
MatchaPaginatorModule,
|
|
2149
|
+
MatchaProgressBarModule,
|
|
2150
|
+
MatchaProgressSpinnerModule,
|
|
2151
|
+
MatchaRadioButtonModule,
|
|
2152
|
+
MatchaSelectModule,
|
|
2153
|
+
MatchaSlideToggleModule,
|
|
2154
|
+
MatchaSliderModule,
|
|
2155
|
+
MatchaSnackBarModule,
|
|
2156
|
+
MatchaSortHeaderModule,
|
|
2157
|
+
MatchaStepperModule,
|
|
2158
|
+
MatchaTableModule,
|
|
2159
|
+
MatchaTabsModule,
|
|
2160
|
+
MatchaTooltipModule,
|
|
2161
|
+
MatchaTreeModule] }); }
|
|
2162
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaComponentsModule, imports: [MatchaModalModule,
|
|
2163
|
+
MatchaMasonryModule,
|
|
2164
|
+
MatchaCardModule,
|
|
2165
|
+
MatchaTitleModule,
|
|
2166
|
+
MatchaAutocompleteModule,
|
|
2167
|
+
MatchaBadgeModule,
|
|
2168
|
+
MatchaTabsModule,
|
|
2169
|
+
MatchaBottomSheetModule,
|
|
2170
|
+
MatchaButtonToggleModule,
|
|
2171
|
+
MatchaButtonModule,
|
|
2172
|
+
MatchaCheckboxModule,
|
|
2173
|
+
MatchaChipsModule,
|
|
2174
|
+
MatchaDatepickerModule,
|
|
2175
|
+
MatchaDividerModule,
|
|
2176
|
+
MatchaElevationModule,
|
|
2177
|
+
MatchaExpansionModule,
|
|
2178
|
+
MatchaFormsModule,
|
|
2179
|
+
MatchaIconModule,
|
|
2180
|
+
MatchaInputModule,
|
|
2181
|
+
MatchaListModule,
|
|
2182
|
+
MatchaMenuModule,
|
|
2183
|
+
MatchaSidenavModule,
|
|
2184
|
+
MatchaPaginatorModule,
|
|
2185
|
+
MatchaProgressBarModule,
|
|
2186
|
+
MatchaProgressSpinnerModule,
|
|
2187
|
+
MatchaRadioButtonModule,
|
|
2188
|
+
MatchaSelectModule,
|
|
2189
|
+
MatchaSlideToggleModule,
|
|
2190
|
+
MatchaSliderModule,
|
|
2191
|
+
MatchaSnackBarModule,
|
|
2192
|
+
MatchaSortHeaderModule,
|
|
2193
|
+
MatchaStepperModule,
|
|
2194
|
+
MatchaTableModule,
|
|
2195
|
+
MatchaTabsModule,
|
|
2196
|
+
MatchaTooltipModule,
|
|
2197
|
+
MatchaTreeModule, MatchaModalModule,
|
|
2198
|
+
MatchaMasonryModule,
|
|
2199
|
+
MatchaCardModule,
|
|
2200
|
+
MatchaTitleModule,
|
|
2201
|
+
MatchaAutocompleteModule,
|
|
2202
|
+
MatchaBadgeModule,
|
|
2203
|
+
MatchaTabsModule,
|
|
2204
|
+
MatchaBottomSheetModule,
|
|
2205
|
+
MatchaButtonToggleModule,
|
|
2206
|
+
MatchaButtonModule,
|
|
2207
|
+
MatchaCheckboxModule,
|
|
2208
|
+
MatchaChipsModule,
|
|
2209
|
+
MatchaDatepickerModule,
|
|
2210
|
+
MatchaDividerModule,
|
|
2211
|
+
MatchaElevationModule,
|
|
2212
|
+
MatchaExpansionModule,
|
|
2213
|
+
MatchaFormsModule,
|
|
2214
|
+
MatchaIconModule,
|
|
2215
|
+
MatchaInputModule,
|
|
2216
|
+
MatchaListModule,
|
|
2217
|
+
MatchaMenuModule,
|
|
2218
|
+
MatchaSidenavModule,
|
|
2219
|
+
MatchaPaginatorModule,
|
|
2220
|
+
MatchaProgressBarModule,
|
|
2221
|
+
MatchaProgressSpinnerModule,
|
|
2222
|
+
MatchaRadioButtonModule,
|
|
2223
|
+
MatchaSelectModule,
|
|
2224
|
+
MatchaSlideToggleModule,
|
|
2225
|
+
MatchaSliderModule,
|
|
2226
|
+
MatchaSnackBarModule,
|
|
2227
|
+
MatchaSortHeaderModule,
|
|
2228
|
+
MatchaStepperModule,
|
|
2229
|
+
MatchaTableModule,
|
|
2230
|
+
MatchaTabsModule,
|
|
2231
|
+
MatchaTooltipModule,
|
|
2232
|
+
MatchaTreeModule] }); }
|
|
1895
2233
|
}
|
|
1896
2234
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaComponentsModule, decorators: [{
|
|
1897
2235
|
type: NgModule,
|
|
@@ -1899,8 +2237,82 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1899
2237
|
declarations: [
|
|
1900
2238
|
MatchaOverflowDraggableComponent
|
|
1901
2239
|
],
|
|
1902
|
-
imports: [
|
|
1903
|
-
|
|
2240
|
+
imports: [
|
|
2241
|
+
MatchaModalModule,
|
|
2242
|
+
MatchaMasonryModule,
|
|
2243
|
+
MatchaCardModule,
|
|
2244
|
+
MatchaTitleModule,
|
|
2245
|
+
MatchaAutocompleteModule,
|
|
2246
|
+
MatchaBadgeModule,
|
|
2247
|
+
MatchaTabsModule,
|
|
2248
|
+
MatchaBottomSheetModule,
|
|
2249
|
+
MatchaButtonToggleModule,
|
|
2250
|
+
MatchaButtonModule,
|
|
2251
|
+
MatchaCheckboxModule,
|
|
2252
|
+
MatchaChipsModule,
|
|
2253
|
+
MatchaDatepickerModule,
|
|
2254
|
+
MatchaDividerModule,
|
|
2255
|
+
MatchaElevationModule,
|
|
2256
|
+
MatchaExpansionModule,
|
|
2257
|
+
MatchaFormsModule,
|
|
2258
|
+
MatchaIconModule,
|
|
2259
|
+
MatchaInputModule,
|
|
2260
|
+
MatchaListModule,
|
|
2261
|
+
MatchaMenuModule,
|
|
2262
|
+
MatchaSidenavModule,
|
|
2263
|
+
MatchaPaginatorModule,
|
|
2264
|
+
MatchaProgressBarModule,
|
|
2265
|
+
MatchaProgressSpinnerModule,
|
|
2266
|
+
MatchaRadioButtonModule,
|
|
2267
|
+
MatchaSelectModule,
|
|
2268
|
+
MatchaSlideToggleModule,
|
|
2269
|
+
MatchaSliderModule,
|
|
2270
|
+
MatchaSnackBarModule,
|
|
2271
|
+
MatchaSortHeaderModule,
|
|
2272
|
+
MatchaStepperModule,
|
|
2273
|
+
MatchaTableModule,
|
|
2274
|
+
MatchaTabsModule,
|
|
2275
|
+
MatchaTooltipModule,
|
|
2276
|
+
MatchaTreeModule
|
|
2277
|
+
],
|
|
2278
|
+
exports: [
|
|
2279
|
+
MatchaModalModule,
|
|
2280
|
+
MatchaMasonryModule,
|
|
2281
|
+
MatchaCardModule,
|
|
2282
|
+
MatchaTitleModule,
|
|
2283
|
+
MatchaAutocompleteModule,
|
|
2284
|
+
MatchaBadgeModule,
|
|
2285
|
+
MatchaTabsModule,
|
|
2286
|
+
MatchaBottomSheetModule,
|
|
2287
|
+
MatchaButtonToggleModule,
|
|
2288
|
+
MatchaButtonModule,
|
|
2289
|
+
MatchaCheckboxModule,
|
|
2290
|
+
MatchaChipsModule,
|
|
2291
|
+
MatchaDatepickerModule,
|
|
2292
|
+
MatchaDividerModule,
|
|
2293
|
+
MatchaElevationModule,
|
|
2294
|
+
MatchaExpansionModule,
|
|
2295
|
+
MatchaFormsModule,
|
|
2296
|
+
MatchaIconModule,
|
|
2297
|
+
MatchaInputModule,
|
|
2298
|
+
MatchaListModule,
|
|
2299
|
+
MatchaMenuModule,
|
|
2300
|
+
MatchaSidenavModule,
|
|
2301
|
+
MatchaPaginatorModule,
|
|
2302
|
+
MatchaProgressBarModule,
|
|
2303
|
+
MatchaProgressSpinnerModule,
|
|
2304
|
+
MatchaRadioButtonModule,
|
|
2305
|
+
MatchaSelectModule,
|
|
2306
|
+
MatchaSlideToggleModule,
|
|
2307
|
+
MatchaSliderModule,
|
|
2308
|
+
MatchaSnackBarModule,
|
|
2309
|
+
MatchaSortHeaderModule,
|
|
2310
|
+
MatchaStepperModule,
|
|
2311
|
+
MatchaTableModule,
|
|
2312
|
+
MatchaTabsModule,
|
|
2313
|
+
MatchaTooltipModule,
|
|
2314
|
+
MatchaTreeModule
|
|
2315
|
+
]
|
|
1904
2316
|
}]
|
|
1905
2317
|
}] });
|
|
1906
2318
|
|
|
@@ -1937,5 +2349,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1937
2349
|
* Generated bundle index. Do not edit.
|
|
1938
2350
|
*/
|
|
1939
2351
|
|
|
1940
|
-
export { MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaAutocompleteOverviewDirective, MatchaBadgeDirective, MatchaBadgeModule, MatchaBottomSheetDirective, MatchaBottomSheetModule, MatchaButtonDirective, MatchaButtonModule, MatchaButtonToggleDirective, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxDirective, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaElevationDirective, MatchaElevationModule, MatchaExpansionDirective, MatchaExpansionModule, MatchaFormFieldDirective, MatchaFormsModule, MatchaGridComponent, MatchaGridModule, MatchaIconComponent, MatchaIconModule, MatchaInputDirective, MatchaInputModule, MatchaListDirective, MatchaListModule, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaProgressSpinnerDirective, MatchaProgressSpinnerModule, MatchaRadioButtonDirective, MatchaRadioButtonModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSlideToggleDirective, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaStepperDirective, MatchaStepperModule, MatchaTableDirective, MatchaTableModule, MatchaTabsDirective, MatchaTabsModule, MatchaTitleComponent, MatchaTitleModule, MatchaTooltipDirective, MatchaTooltipModule, MatchaTreeDirective, MatchaTreeModule };
|
|
2352
|
+
export { MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaAutocompleteOverviewDirective, MatchaBadgeDirective, MatchaBadgeModule, MatchaBottomSheetDirective, MatchaBottomSheetModule, MatchaButtonComponent, MatchaButtonDirective, MatchaButtonModule, MatchaButtonToggleDirective, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxDirective, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaElevationDirective, MatchaElevationModule, MatchaExpansionDirective, MatchaExpansionModule, MatchaFormFieldDirective, MatchaFormsModule, MatchaGridComponent, MatchaGridModule, MatchaIconComponent, MatchaIconModule, MatchaInputDirective, MatchaInputModule, MatchaListDirective, MatchaListModule, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaProgressSpinnerDirective, MatchaProgressSpinnerModule, MatchaRadioButtonDirective, MatchaRadioButtonModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSlideToggleDirective, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaStepperDirective, MatchaStepperModule, MatchaTableDirective, MatchaTableModule, MatchaTabsDirective, MatchaTabsModule, MatchaTitleComponent, MatchaTitleModule, MatchaTooltipDirective, MatchaTooltipModule, MatchaTreeDirective, MatchaTreeModule };
|
|
1941
2353
|
//# sourceMappingURL=matcha-components.mjs.map
|