matcha-components 19.0.8 → 19.0.9
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 +178 -36
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/lib/matcha-accordion/accordion/accordion.component.d.ts +13 -0
- package/lib/matcha-accordion/accordion-content/accordion-content.component.d.ts +5 -0
- package/lib/matcha-accordion/accordion-header/accordion-header.component.d.ts +5 -0
- package/lib/matcha-accordion/accordion-item/accordion-item.component.d.ts +10 -0
- package/lib/matcha-accordion/matcha-accordion.module.d.ts +16 -0
- package/lib/matcha-components.module.d.ts +38 -36
- package/package.json +1 -1
- package/public-api.d.ts +5 -0
|
@@ -1,9 +1,92 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter, Component, Output,
|
|
2
|
+
import { EventEmitter, Component, Input, Output, ContentChildren, ElementRef, Renderer2, Inject, HostListener, Directive, NgModule } from '@angular/core';
|
|
3
3
|
import { Subscription } from 'rxjs';
|
|
4
4
|
import * as i1 from '@angular/common';
|
|
5
5
|
import { CommonModule } from '@angular/common';
|
|
6
6
|
|
|
7
|
+
class MatchaAccordionItemComponent {
|
|
8
|
+
constructor() {
|
|
9
|
+
this.title = '';
|
|
10
|
+
this.toggle = new EventEmitter();
|
|
11
|
+
this.isOpen = false;
|
|
12
|
+
}
|
|
13
|
+
toggleAccordion() {
|
|
14
|
+
this.isOpen = !this.isOpen;
|
|
15
|
+
this.toggle.emit(this.isOpen);
|
|
16
|
+
}
|
|
17
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaAccordionItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
18
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.4", type: MatchaAccordionItemComponent, isStandalone: false, selector: "matcha-accordion-item", inputs: { title: "title" }, outputs: { toggle: "openedChange" }, ngImport: i0, template: "<div class=\"accordion-item flex-column overflow-hidden\">\n <div class=\"accordion-header d-flex\" >\n <div class=\"d-flex\" (click)=\"toggleAccordion()\">\n <ng-content select=\"matcha-accordion-header\"></ng-content>\n </div>\n </div>\n <div class=\"accordion-content\" [class.open]=\"isOpen\">\n <ng-content select=\"matcha-accordion-content\"></ng-content>\n <ng-content></ng-content>\n </div>\n</div>\n", styles: ["@charset \"UTF-8\";.accordion-header{padding:10px}.accordion-content{overflow:hidden;max-height:0;opacity:0;transition:max-height .1s ease,opacity .1s ease,padding .3s ease;padding:0 10px}.accordion-content.open{max-height:500px;opacity:1;padding:10px}\n"] }); }
|
|
19
|
+
}
|
|
20
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaAccordionItemComponent, decorators: [{
|
|
21
|
+
type: Component,
|
|
22
|
+
args: [{ selector: 'matcha-accordion-item', standalone: false, template: "<div class=\"accordion-item flex-column overflow-hidden\">\n <div class=\"accordion-header d-flex\" >\n <div class=\"d-flex\" (click)=\"toggleAccordion()\">\n <ng-content select=\"matcha-accordion-header\"></ng-content>\n </div>\n </div>\n <div class=\"accordion-content\" [class.open]=\"isOpen\">\n <ng-content select=\"matcha-accordion-content\"></ng-content>\n <ng-content></ng-content>\n </div>\n</div>\n", styles: ["@charset \"UTF-8\";.accordion-header{padding:10px}.accordion-content{overflow:hidden;max-height:0;opacity:0;transition:max-height .1s ease,opacity .1s ease,padding .3s ease;padding:0 10px}.accordion-content.open{max-height:500px;opacity:1;padding:10px}\n"] }]
|
|
23
|
+
}], propDecorators: { title: [{
|
|
24
|
+
type: Input
|
|
25
|
+
}], toggle: [{
|
|
26
|
+
type: Output,
|
|
27
|
+
args: ['openedChange']
|
|
28
|
+
}] } });
|
|
29
|
+
|
|
30
|
+
class MatchaAccordionComponent {
|
|
31
|
+
constructor() {
|
|
32
|
+
this._multiple = false;
|
|
33
|
+
}
|
|
34
|
+
// Se multiple for true, permite abrir vários itens simultaneamente.
|
|
35
|
+
set multiple(value) {
|
|
36
|
+
// Converte 'false' (string) ou false (boolean) para false, e qualquer outro valor para true.
|
|
37
|
+
this._multiple = value != null && `${value}` !== 'false';
|
|
38
|
+
}
|
|
39
|
+
get multiple() {
|
|
40
|
+
return this._multiple;
|
|
41
|
+
}
|
|
42
|
+
ngAfterContentInit() {
|
|
43
|
+
this.items.forEach(item => {
|
|
44
|
+
item.toggle.subscribe(() => {
|
|
45
|
+
this.toggleItem(item);
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
toggleItem(selectedItem) {
|
|
50
|
+
// Se não permite múltiplos itens abertos e o item selecionado foi aberto, fecha os demais.
|
|
51
|
+
if (!this.multiple && selectedItem.isOpen) {
|
|
52
|
+
this.items.forEach(item => {
|
|
53
|
+
if (item !== selectedItem) {
|
|
54
|
+
item.isOpen = false;
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaAccordionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
60
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.4", type: MatchaAccordionComponent, isStandalone: false, selector: "matcha-accordion", inputs: { multiple: "multiple" }, queries: [{ propertyName: "items", predicate: MatchaAccordionItemComponent }], ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
|
|
61
|
+
}
|
|
62
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaAccordionComponent, decorators: [{
|
|
63
|
+
type: Component,
|
|
64
|
+
args: [{ selector: 'matcha-accordion', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
65
|
+
}], propDecorators: { multiple: [{
|
|
66
|
+
type: Input
|
|
67
|
+
}], items: [{
|
|
68
|
+
type: ContentChildren,
|
|
69
|
+
args: [MatchaAccordionItemComponent]
|
|
70
|
+
}] } });
|
|
71
|
+
|
|
72
|
+
class MatchaAccordionHeaderComponent {
|
|
73
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaAccordionHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
74
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.4", type: MatchaAccordionHeaderComponent, isStandalone: false, selector: "matcha-accordion-header", ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
|
|
75
|
+
}
|
|
76
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaAccordionHeaderComponent, decorators: [{
|
|
77
|
+
type: Component,
|
|
78
|
+
args: [{ selector: 'matcha-accordion-header', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
79
|
+
}] });
|
|
80
|
+
|
|
81
|
+
class MatchaAccordionContentComponent {
|
|
82
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaAccordionContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
83
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.4", type: MatchaAccordionContentComponent, isStandalone: false, selector: "matcha-accordion-content", ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
|
|
84
|
+
}
|
|
85
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaAccordionContentComponent, decorators: [{
|
|
86
|
+
type: Component,
|
|
87
|
+
args: [{ selector: 'matcha-accordion-content', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
88
|
+
}] });
|
|
89
|
+
|
|
7
90
|
/*
|
|
8
91
|
HOW TO USE ---------------------------------------------------------
|
|
9
92
|
TEMPLATE:
|
|
@@ -1009,22 +1092,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImpor
|
|
|
1009
1092
|
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>" }]
|
|
1010
1093
|
}] });
|
|
1011
1094
|
|
|
1012
|
-
class MatchaInfiniteScrollModule {
|
|
1013
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaInfiniteScrollModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1014
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.4", ngImport: i0, type: MatchaInfiniteScrollModule, declarations: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent], imports: [CommonModule], exports: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent] }); }
|
|
1015
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaInfiniteScrollModule, imports: [CommonModule] }); }
|
|
1016
|
-
}
|
|
1017
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaInfiniteScrollModule, decorators: [{
|
|
1018
|
-
type: NgModule,
|
|
1019
|
-
args: [{
|
|
1020
|
-
declarations: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent],
|
|
1021
|
-
imports: [
|
|
1022
|
-
CommonModule
|
|
1023
|
-
],
|
|
1024
|
-
exports: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent]
|
|
1025
|
-
}]
|
|
1026
|
-
}] });
|
|
1027
|
-
|
|
1028
1095
|
class MatchaTooltipDirective {
|
|
1029
1096
|
constructor(el, renderer) {
|
|
1030
1097
|
this.el = el;
|
|
@@ -1267,6 +1334,83 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImpor
|
|
|
1267
1334
|
}]
|
|
1268
1335
|
}] });
|
|
1269
1336
|
|
|
1337
|
+
class MatchaButtonModule {
|
|
1338
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1339
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.4", ngImport: i0, type: MatchaButtonModule, declarations: [MatchaButtonComponent], exports: [MatchaButtonComponent] }); }
|
|
1340
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaButtonModule }); }
|
|
1341
|
+
}
|
|
1342
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaButtonModule, decorators: [{
|
|
1343
|
+
type: NgModule,
|
|
1344
|
+
args: [{
|
|
1345
|
+
declarations: [MatchaButtonComponent],
|
|
1346
|
+
imports: [],
|
|
1347
|
+
exports: [MatchaButtonComponent],
|
|
1348
|
+
}]
|
|
1349
|
+
}] });
|
|
1350
|
+
|
|
1351
|
+
class MatchaAccordionModule {
|
|
1352
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaAccordionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1353
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.4", ngImport: i0, type: MatchaAccordionModule, declarations: [MatchaAccordionComponent,
|
|
1354
|
+
MatchaAccordionItemComponent,
|
|
1355
|
+
MatchaAccordionHeaderComponent,
|
|
1356
|
+
MatchaAccordionContentComponent], imports: [CommonModule,
|
|
1357
|
+
MatchaIconModule,
|
|
1358
|
+
MatchaTitleModule,
|
|
1359
|
+
MatchaDividerModule,
|
|
1360
|
+
MatchaTooltipModule,
|
|
1361
|
+
MatchaButtonModule], exports: [MatchaAccordionComponent,
|
|
1362
|
+
MatchaAccordionItemComponent,
|
|
1363
|
+
MatchaAccordionHeaderComponent,
|
|
1364
|
+
MatchaAccordionContentComponent] }); }
|
|
1365
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaAccordionModule, imports: [CommonModule,
|
|
1366
|
+
MatchaIconModule,
|
|
1367
|
+
MatchaTitleModule,
|
|
1368
|
+
MatchaDividerModule,
|
|
1369
|
+
MatchaTooltipModule,
|
|
1370
|
+
MatchaButtonModule] }); }
|
|
1371
|
+
}
|
|
1372
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaAccordionModule, decorators: [{
|
|
1373
|
+
type: NgModule,
|
|
1374
|
+
args: [{
|
|
1375
|
+
declarations: [
|
|
1376
|
+
MatchaAccordionComponent,
|
|
1377
|
+
MatchaAccordionItemComponent,
|
|
1378
|
+
MatchaAccordionHeaderComponent,
|
|
1379
|
+
MatchaAccordionContentComponent
|
|
1380
|
+
],
|
|
1381
|
+
imports: [
|
|
1382
|
+
CommonModule,
|
|
1383
|
+
MatchaIconModule,
|
|
1384
|
+
MatchaTitleModule,
|
|
1385
|
+
MatchaDividerModule,
|
|
1386
|
+
MatchaTooltipModule,
|
|
1387
|
+
MatchaButtonModule
|
|
1388
|
+
],
|
|
1389
|
+
exports: [
|
|
1390
|
+
MatchaAccordionComponent,
|
|
1391
|
+
MatchaAccordionItemComponent,
|
|
1392
|
+
MatchaAccordionHeaderComponent,
|
|
1393
|
+
MatchaAccordionContentComponent
|
|
1394
|
+
]
|
|
1395
|
+
}]
|
|
1396
|
+
}] });
|
|
1397
|
+
|
|
1398
|
+
class MatchaInfiniteScrollModule {
|
|
1399
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaInfiniteScrollModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1400
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.4", ngImport: i0, type: MatchaInfiniteScrollModule, declarations: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent], imports: [CommonModule], exports: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent] }); }
|
|
1401
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaInfiniteScrollModule, imports: [CommonModule] }); }
|
|
1402
|
+
}
|
|
1403
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaInfiniteScrollModule, decorators: [{
|
|
1404
|
+
type: NgModule,
|
|
1405
|
+
args: [{
|
|
1406
|
+
declarations: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent],
|
|
1407
|
+
imports: [
|
|
1408
|
+
CommonModule
|
|
1409
|
+
],
|
|
1410
|
+
exports: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent]
|
|
1411
|
+
}]
|
|
1412
|
+
}] });
|
|
1413
|
+
|
|
1270
1414
|
class MatchaModalModule {
|
|
1271
1415
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1272
1416
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.4", ngImport: i0, type: MatchaModalModule, declarations: [MatchaModalHeaderComponent,
|
|
@@ -1343,20 +1487,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImpor
|
|
|
1343
1487
|
}]
|
|
1344
1488
|
}] });
|
|
1345
1489
|
|
|
1346
|
-
class MatchaButtonModule {
|
|
1347
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1348
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.4", ngImport: i0, type: MatchaButtonModule, declarations: [MatchaButtonComponent], exports: [MatchaButtonComponent] }); }
|
|
1349
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaButtonModule }); }
|
|
1350
|
-
}
|
|
1351
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaButtonModule, decorators: [{
|
|
1352
|
-
type: NgModule,
|
|
1353
|
-
args: [{
|
|
1354
|
-
declarations: [MatchaButtonComponent],
|
|
1355
|
-
imports: [],
|
|
1356
|
-
exports: [MatchaButtonComponent],
|
|
1357
|
-
}]
|
|
1358
|
-
}] });
|
|
1359
|
-
|
|
1360
1490
|
class MatchaToolbarModule {
|
|
1361
1491
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaToolbarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1362
1492
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.4", ngImport: i0, type: MatchaToolbarModule, declarations: [MatchaToolbarComponent,
|
|
@@ -2412,7 +2542,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImpor
|
|
|
2412
2542
|
|
|
2413
2543
|
class MatchaComponentsModule {
|
|
2414
2544
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2415
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.4", ngImport: i0, type: MatchaComponentsModule, declarations: [MatchaOverflowDraggableComponent], imports: [
|
|
2545
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.4", ngImport: i0, type: MatchaComponentsModule, declarations: [MatchaOverflowDraggableComponent], imports: [MatchaAccordionModule,
|
|
2546
|
+
MatchaFormFieldModule,
|
|
2547
|
+
MatchaInfiniteScrollModule,
|
|
2416
2548
|
MatchaModalModule,
|
|
2417
2549
|
MatchaMasonryModule,
|
|
2418
2550
|
MatchaCardModule,
|
|
@@ -2447,7 +2579,9 @@ class MatchaComponentsModule {
|
|
|
2447
2579
|
MatchaTableModule,
|
|
2448
2580
|
MatchaTabsModule,
|
|
2449
2581
|
MatchaTooltipModule,
|
|
2450
|
-
MatchaTreeModule], exports: [
|
|
2582
|
+
MatchaTreeModule], exports: [MatchaAccordionModule,
|
|
2583
|
+
MatchaFormFieldModule,
|
|
2584
|
+
MatchaInfiniteScrollModule,
|
|
2451
2585
|
MatchaModalModule,
|
|
2452
2586
|
MatchaMasonryModule,
|
|
2453
2587
|
MatchaCardModule,
|
|
@@ -2483,7 +2617,9 @@ class MatchaComponentsModule {
|
|
|
2483
2617
|
MatchaTabsModule,
|
|
2484
2618
|
MatchaTooltipModule,
|
|
2485
2619
|
MatchaTreeModule] }); }
|
|
2486
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaComponentsModule, imports: [
|
|
2620
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaComponentsModule, imports: [MatchaAccordionModule,
|
|
2621
|
+
MatchaFormFieldModule,
|
|
2622
|
+
MatchaInfiniteScrollModule,
|
|
2487
2623
|
MatchaModalModule,
|
|
2488
2624
|
MatchaMasonryModule,
|
|
2489
2625
|
MatchaCardModule,
|
|
@@ -2518,7 +2654,9 @@ class MatchaComponentsModule {
|
|
|
2518
2654
|
MatchaTableModule,
|
|
2519
2655
|
MatchaTabsModule,
|
|
2520
2656
|
MatchaTooltipModule,
|
|
2521
|
-
MatchaTreeModule,
|
|
2657
|
+
MatchaTreeModule, MatchaAccordionModule,
|
|
2658
|
+
MatchaFormFieldModule,
|
|
2659
|
+
MatchaInfiniteScrollModule,
|
|
2522
2660
|
MatchaModalModule,
|
|
2523
2661
|
MatchaMasonryModule,
|
|
2524
2662
|
MatchaCardModule,
|
|
@@ -2562,6 +2700,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImpor
|
|
|
2562
2700
|
MatchaOverflowDraggableComponent
|
|
2563
2701
|
],
|
|
2564
2702
|
imports: [
|
|
2703
|
+
MatchaAccordionModule,
|
|
2704
|
+
MatchaFormFieldModule,
|
|
2565
2705
|
MatchaInfiniteScrollModule,
|
|
2566
2706
|
MatchaModalModule,
|
|
2567
2707
|
MatchaMasonryModule,
|
|
@@ -2600,6 +2740,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImpor
|
|
|
2600
2740
|
MatchaTreeModule
|
|
2601
2741
|
],
|
|
2602
2742
|
exports: [
|
|
2743
|
+
MatchaAccordionModule,
|
|
2744
|
+
MatchaFormFieldModule,
|
|
2603
2745
|
MatchaInfiniteScrollModule,
|
|
2604
2746
|
MatchaModalModule,
|
|
2605
2747
|
MatchaMasonryModule,
|
|
@@ -2659,5 +2801,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImpor
|
|
|
2659
2801
|
* Generated bundle index. Do not edit.
|
|
2660
2802
|
*/
|
|
2661
2803
|
|
|
2662
|
-
export { MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaAutocompleteOverviewDirective, MatchaBadgeDirective, MatchaBadgeModule, MatchaBottomSheetDirective, MatchaBottomSheetModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleDirective, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxDirective, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaExpansionDirective, MatchaExpansionModule, MatchaFormFieldComponent, MatchaFormFieldDirective, MatchaFormFieldModule, MatchaFormsModule, MatchaGridComponent, MatchaGridModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputDirective, MatchaInputModule, MatchaLabelComponent, MatchaListDirective, MatchaListModule, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaProgressSpinnerDirective, MatchaProgressSpinnerModule, MatchaRadioButtonDirective, MatchaRadioButtonModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSlideToggleDirective, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaTableDirective, MatchaTableModule, MatchaTabsDirective, MatchaTabsModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, MatchaTreeDirective, MatchaTreeModule };
|
|
2804
|
+
export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaAutocompleteOverviewDirective, MatchaBadgeDirective, MatchaBadgeModule, MatchaBottomSheetDirective, MatchaBottomSheetModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleDirective, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxDirective, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaExpansionDirective, MatchaExpansionModule, MatchaFormFieldComponent, MatchaFormFieldDirective, MatchaFormFieldModule, MatchaFormsModule, MatchaGridComponent, MatchaGridModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputDirective, MatchaInputModule, MatchaLabelComponent, MatchaListDirective, MatchaListModule, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaProgressSpinnerDirective, MatchaProgressSpinnerModule, MatchaRadioButtonDirective, MatchaRadioButtonModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSlideToggleDirective, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaTableDirective, MatchaTableModule, MatchaTabsDirective, MatchaTabsModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, MatchaTreeDirective, MatchaTreeModule };
|
|
2663
2805
|
//# sourceMappingURL=matcha-components.mjs.map
|