matcha-components 19.30.0 → 19.33.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 +208 -37
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/lib/matcha-checkbox/checkbox/checkbox.component.d.ts +28 -0
- package/lib/matcha-checkbox/checkbox.module.d.ts +4 -2
- package/lib/matcha-components.module.d.ts +42 -39
- package/lib/matcha-ripple/ripple.directive.d.ts +12 -0
- package/lib/matcha-ripple/ripple.module.d.ts +8 -0
- package/package.json +1 -1
- package/public-api.d.ts +3 -1
- package/lib/matcha-checkbox/checkbox.directive.d.ts +0 -9
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { ElementRef, Renderer2, Component, Inject, Input, EventEmitter, Output, ContentChild, ContentChildren, HostBinding, HostListener, Directive, NgModule } from '@angular/core';
|
|
2
|
+
import { ElementRef, Renderer2, Component, Inject, Input, EventEmitter, Output, ContentChild, ContentChildren, HostBinding, HostListener, Directive, forwardRef, NgModule } from '@angular/core';
|
|
3
3
|
import { animation, style, animate, trigger, transition, useAnimation, state, query, stagger, animateChild, sequence, group } from '@angular/animations';
|
|
4
4
|
import { Subscription, Subject } from 'rxjs';
|
|
5
5
|
import { debounceTime } from 'rxjs/operators';
|
|
6
6
|
import * as i1 from '@angular/common';
|
|
7
7
|
import { CommonModule } from '@angular/common';
|
|
8
|
+
import { NG_VALUE_ACCESSOR, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
8
9
|
|
|
9
10
|
class MatchaButtonComponent {
|
|
10
11
|
constructor(_elementRef, _renderer) {
|
|
@@ -1556,11 +1557,11 @@ class MatchaLabelComponent {
|
|
|
1556
1557
|
this.color = 'blue-grey';
|
|
1557
1558
|
}
|
|
1558
1559
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaLabelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1559
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.4", 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-8 fs-12 lh-18 fw-
|
|
1560
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.4", 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-8 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: [""] }); }
|
|
1560
1561
|
}
|
|
1561
1562
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaLabelComponent, decorators: [{
|
|
1562
1563
|
type: Component,
|
|
1563
|
-
args: [{ selector: 'matcha-label', standalone: false, template: "<label\n class=\"d-flex d-flex-align-center position-relative text-nowrap px-8 fs-12 lh-18 fw-
|
|
1564
|
+
args: [{ selector: 'matcha-label', standalone: false, template: "<label\n class=\"d-flex d-flex-align-center position-relative text-nowrap px-8 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>" }]
|
|
1564
1565
|
}], propDecorators: { color: [{
|
|
1565
1566
|
type: Input
|
|
1566
1567
|
}] } });
|
|
@@ -1574,6 +1575,161 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImpor
|
|
|
1574
1575
|
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>" }]
|
|
1575
1576
|
}] });
|
|
1576
1577
|
|
|
1578
|
+
class MatchaRippleDirective {
|
|
1579
|
+
constructor(el) {
|
|
1580
|
+
this.el = el;
|
|
1581
|
+
this.rippleColor = 'rgba(0, 0, 0, 0.5)'; // Cor padrão do efeito
|
|
1582
|
+
this.ripples = [];
|
|
1583
|
+
// Garantir que o elemento tenha position relative
|
|
1584
|
+
this.el.nativeElement.style.position = 'relative';
|
|
1585
|
+
this.el.nativeElement.style.overflow = 'hidden';
|
|
1586
|
+
}
|
|
1587
|
+
onMouseDown(event) {
|
|
1588
|
+
const target = this.el.nativeElement;
|
|
1589
|
+
const rect = target.getBoundingClientRect();
|
|
1590
|
+
const ripple = document.createElement('span');
|
|
1591
|
+
ripple.className = 'ripple';
|
|
1592
|
+
// Definir o tamanho do ripple baseado no maior lado do elemento
|
|
1593
|
+
const size = Math.max(target.offsetWidth, target.offsetHeight);
|
|
1594
|
+
ripple.style.height = ripple.style.width = size * 2 + 'px';
|
|
1595
|
+
// Aplicar estilo básico ao ripple
|
|
1596
|
+
ripple.style.backgroundColor = this.rippleColor;
|
|
1597
|
+
ripple.style.position = 'absolute';
|
|
1598
|
+
ripple.style.borderRadius = '50%';
|
|
1599
|
+
ripple.style.opacity = '0.5';
|
|
1600
|
+
ripple.style.transform = 'scale(0)';
|
|
1601
|
+
ripple.style.transition = 'transform 0.6s, opacity 0.6s';
|
|
1602
|
+
ripple.style.pointerEvents = 'none';
|
|
1603
|
+
const top = event.pageY - rect.top - size + window.scrollY;
|
|
1604
|
+
const left = event.pageX - rect.left - size + window.scrollX;
|
|
1605
|
+
ripple.style.top = top + 'px';
|
|
1606
|
+
ripple.style.left = left + 'px';
|
|
1607
|
+
target.appendChild(ripple);
|
|
1608
|
+
this.ripples.push(ripple);
|
|
1609
|
+
// Inicia a animação no próximo frame
|
|
1610
|
+
requestAnimationFrame(() => {
|
|
1611
|
+
ripple.style.transform = 'scale(2)';
|
|
1612
|
+
ripple.style.opacity = '0';
|
|
1613
|
+
});
|
|
1614
|
+
// Remove o ripple após a animação
|
|
1615
|
+
setTimeout(() => {
|
|
1616
|
+
if (ripple && ripple.parentElement) {
|
|
1617
|
+
ripple.parentElement.removeChild(ripple);
|
|
1618
|
+
this.ripples = this.ripples.filter(r => r !== ripple);
|
|
1619
|
+
}
|
|
1620
|
+
}, 600);
|
|
1621
|
+
}
|
|
1622
|
+
ngOnDestroy() {
|
|
1623
|
+
// Limpa todos os ripples quando o componente é destruído
|
|
1624
|
+
this.ripples.forEach(ripple => {
|
|
1625
|
+
if (ripple && ripple.parentElement) {
|
|
1626
|
+
ripple.parentElement.removeChild(ripple);
|
|
1627
|
+
}
|
|
1628
|
+
});
|
|
1629
|
+
this.ripples = [];
|
|
1630
|
+
}
|
|
1631
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaRippleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1632
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.1.4", type: MatchaRippleDirective, isStandalone: false, selector: "[matchaRipple]", inputs: { rippleColor: "rippleColor" }, host: { listeners: { "mousedown": "onMouseDown($event)" } }, ngImport: i0 }); }
|
|
1633
|
+
}
|
|
1634
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaRippleDirective, decorators: [{
|
|
1635
|
+
type: Directive,
|
|
1636
|
+
args: [{
|
|
1637
|
+
selector: '[matchaRipple]',
|
|
1638
|
+
standalone: false
|
|
1639
|
+
}]
|
|
1640
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { rippleColor: [{
|
|
1641
|
+
type: Input
|
|
1642
|
+
}], onMouseDown: [{
|
|
1643
|
+
type: HostListener,
|
|
1644
|
+
args: ['mousedown', ['$event']]
|
|
1645
|
+
}] } });
|
|
1646
|
+
|
|
1647
|
+
class MatchaCheckboxComponent {
|
|
1648
|
+
constructor() {
|
|
1649
|
+
this.color = 'accent';
|
|
1650
|
+
this.indeterminate = false;
|
|
1651
|
+
this._labelClicable = false;
|
|
1652
|
+
this._disabled = false;
|
|
1653
|
+
this._checked = false;
|
|
1654
|
+
this.change = new EventEmitter();
|
|
1655
|
+
// ControlValueAccessor methods
|
|
1656
|
+
this.onChange = () => { };
|
|
1657
|
+
this.onTouched = () => { };
|
|
1658
|
+
}
|
|
1659
|
+
set labelClicable(value) {
|
|
1660
|
+
this._labelClicable = value != null && `${value}` !== 'false';
|
|
1661
|
+
}
|
|
1662
|
+
get labelClicable() {
|
|
1663
|
+
return this._labelClicable;
|
|
1664
|
+
}
|
|
1665
|
+
set disabled(value) {
|
|
1666
|
+
// Converte 'false' (string) ou false (boolean) para false, e qualquer outro valor para true.
|
|
1667
|
+
this._disabled = value != null && `${value}` !== 'false';
|
|
1668
|
+
}
|
|
1669
|
+
get disabled() {
|
|
1670
|
+
return this._disabled;
|
|
1671
|
+
}
|
|
1672
|
+
get checked() {
|
|
1673
|
+
return this._checked;
|
|
1674
|
+
}
|
|
1675
|
+
set checked(value) {
|
|
1676
|
+
if (value !== this._checked) {
|
|
1677
|
+
this._checked = value;
|
|
1678
|
+
this.onChange(this._checked);
|
|
1679
|
+
}
|
|
1680
|
+
}
|
|
1681
|
+
writeValue(value) {
|
|
1682
|
+
this._checked = value;
|
|
1683
|
+
}
|
|
1684
|
+
registerOnChange(fn) {
|
|
1685
|
+
this.onChange = fn;
|
|
1686
|
+
}
|
|
1687
|
+
registerOnTouched(fn) {
|
|
1688
|
+
this.onTouched = fn;
|
|
1689
|
+
}
|
|
1690
|
+
setDisabledState(isDisabled) {
|
|
1691
|
+
this.disabled = isDisabled;
|
|
1692
|
+
}
|
|
1693
|
+
onInputChange(event) {
|
|
1694
|
+
if (this.disabled)
|
|
1695
|
+
return;
|
|
1696
|
+
const input = event.target;
|
|
1697
|
+
this.checked = input.checked;
|
|
1698
|
+
this.onTouched();
|
|
1699
|
+
this.change.emit({ checked: this.checked });
|
|
1700
|
+
}
|
|
1701
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaCheckboxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1702
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.4", type: MatchaCheckboxComponent, isStandalone: false, selector: "matcha-checkbox", inputs: { color: "color", indeterminate: "indeterminate", labelClicable: "labelClicable", disabled: "disabled", checked: "checked" }, outputs: { change: "change" }, providers: [
|
|
1703
|
+
{
|
|
1704
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1705
|
+
useExisting: forwardRef(() => MatchaCheckboxComponent),
|
|
1706
|
+
multi: true
|
|
1707
|
+
}
|
|
1708
|
+
], 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"] }] }); }
|
|
1709
|
+
}
|
|
1710
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaCheckboxComponent, decorators: [{
|
|
1711
|
+
type: Component,
|
|
1712
|
+
args: [{ selector: 'matcha-checkbox', standalone: false, providers: [
|
|
1713
|
+
{
|
|
1714
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1715
|
+
useExisting: forwardRef(() => MatchaCheckboxComponent),
|
|
1716
|
+
multi: true
|
|
1717
|
+
}
|
|
1718
|
+
], 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>" }]
|
|
1719
|
+
}], propDecorators: { color: [{
|
|
1720
|
+
type: Input
|
|
1721
|
+
}], indeterminate: [{
|
|
1722
|
+
type: Input
|
|
1723
|
+
}], labelClicable: [{
|
|
1724
|
+
type: Input
|
|
1725
|
+
}], disabled: [{
|
|
1726
|
+
type: Input
|
|
1727
|
+
}], checked: [{
|
|
1728
|
+
type: Input
|
|
1729
|
+
}], change: [{
|
|
1730
|
+
type: Output
|
|
1731
|
+
}] } });
|
|
1732
|
+
|
|
1577
1733
|
class MatchaTooltipDirective {
|
|
1578
1734
|
constructor(el, renderer) {
|
|
1579
1735
|
this.el = el;
|
|
@@ -2314,35 +2470,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImpor
|
|
|
2314
2470
|
}]
|
|
2315
2471
|
}] });
|
|
2316
2472
|
|
|
2317
|
-
class
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
2322
|
-
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-checkbox');
|
|
2323
|
-
}
|
|
2324
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaCheckboxDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2325
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.1.4", type: MatchaCheckboxDirective, isStandalone: false, selector: "[matcha-checkbox]", ngImport: i0 }); }
|
|
2473
|
+
class MatchaRippleModule {
|
|
2474
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaRippleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2475
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.4", ngImport: i0, type: MatchaRippleModule, declarations: [MatchaRippleDirective], imports: [CommonModule], exports: [MatchaRippleDirective] }); }
|
|
2476
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaRippleModule, imports: [CommonModule] }); }
|
|
2326
2477
|
}
|
|
2327
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type:
|
|
2328
|
-
type:
|
|
2478
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaRippleModule, decorators: [{
|
|
2479
|
+
type: NgModule,
|
|
2329
2480
|
args: [{
|
|
2330
|
-
|
|
2331
|
-
|
|
2481
|
+
declarations: [
|
|
2482
|
+
MatchaRippleDirective
|
|
2483
|
+
],
|
|
2484
|
+
imports: [
|
|
2485
|
+
CommonModule
|
|
2486
|
+
],
|
|
2487
|
+
exports: [
|
|
2488
|
+
MatchaRippleDirective
|
|
2489
|
+
],
|
|
2332
2490
|
}]
|
|
2333
|
-
}]
|
|
2491
|
+
}] });
|
|
2334
2492
|
|
|
2335
2493
|
class MatchaCheckboxModule {
|
|
2336
2494
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaCheckboxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2337
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.4", ngImport: i0, type: MatchaCheckboxModule, declarations: [
|
|
2338
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaCheckboxModule }); }
|
|
2495
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.4", ngImport: i0, type: MatchaCheckboxModule, declarations: [MatchaCheckboxComponent], imports: [CommonModule, MatchaRippleModule], exports: [MatchaCheckboxComponent] }); }
|
|
2496
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaCheckboxModule, imports: [CommonModule, MatchaRippleModule] }); }
|
|
2339
2497
|
}
|
|
2340
2498
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaCheckboxModule, decorators: [{
|
|
2341
2499
|
type: NgModule,
|
|
2342
2500
|
args: [{
|
|
2343
|
-
declarations: [
|
|
2344
|
-
|
|
2345
|
-
|
|
2501
|
+
declarations: [
|
|
2502
|
+
MatchaCheckboxComponent,
|
|
2503
|
+
],
|
|
2504
|
+
imports: [CommonModule, MatchaRippleModule],
|
|
2505
|
+
exports: [
|
|
2506
|
+
MatchaCheckboxComponent,
|
|
2507
|
+
],
|
|
2346
2508
|
}]
|
|
2347
2509
|
}] });
|
|
2348
2510
|
|
|
@@ -3067,7 +3229,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImpor
|
|
|
3067
3229
|
|
|
3068
3230
|
class MatchaComponentsModule {
|
|
3069
3231
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3070
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.4", ngImport: i0, type: MatchaComponentsModule, declarations: [MatchaOverflowDraggableComponent], imports: [
|
|
3232
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.4", ngImport: i0, type: MatchaComponentsModule, declarations: [MatchaOverflowDraggableComponent], imports: [CommonModule,
|
|
3233
|
+
FormsModule,
|
|
3234
|
+
ReactiveFormsModule,
|
|
3235
|
+
MatchaButtonGroupModule,
|
|
3071
3236
|
MatchaAccordionModule,
|
|
3072
3237
|
MatchaFormFieldModule,
|
|
3073
3238
|
MatchaInfiniteScrollModule,
|
|
@@ -3103,9 +3268,9 @@ class MatchaComponentsModule {
|
|
|
3103
3268
|
MatchaSnackBarModule,
|
|
3104
3269
|
MatchaSortHeaderModule,
|
|
3105
3270
|
MatchaTableModule,
|
|
3106
|
-
MatchaTabsModule,
|
|
3107
3271
|
MatchaTooltipModule,
|
|
3108
|
-
MatchaTreeModule
|
|
3272
|
+
MatchaTreeModule,
|
|
3273
|
+
MatchaRippleModule], exports: [MatchaButtonGroupModule,
|
|
3109
3274
|
MatchaAccordionModule,
|
|
3110
3275
|
MatchaFormFieldModule,
|
|
3111
3276
|
MatchaInfiniteScrollModule,
|
|
@@ -3141,10 +3306,13 @@ class MatchaComponentsModule {
|
|
|
3141
3306
|
MatchaSnackBarModule,
|
|
3142
3307
|
MatchaSortHeaderModule,
|
|
3143
3308
|
MatchaTableModule,
|
|
3144
|
-
MatchaTabsModule,
|
|
3145
3309
|
MatchaTooltipModule,
|
|
3146
|
-
MatchaTreeModule
|
|
3147
|
-
|
|
3310
|
+
MatchaTreeModule,
|
|
3311
|
+
MatchaRippleModule] }); }
|
|
3312
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaComponentsModule, imports: [CommonModule,
|
|
3313
|
+
FormsModule,
|
|
3314
|
+
ReactiveFormsModule,
|
|
3315
|
+
MatchaButtonGroupModule,
|
|
3148
3316
|
MatchaAccordionModule,
|
|
3149
3317
|
MatchaFormFieldModule,
|
|
3150
3318
|
MatchaInfiniteScrollModule,
|
|
@@ -3180,9 +3348,9 @@ class MatchaComponentsModule {
|
|
|
3180
3348
|
MatchaSnackBarModule,
|
|
3181
3349
|
MatchaSortHeaderModule,
|
|
3182
3350
|
MatchaTableModule,
|
|
3183
|
-
MatchaTabsModule,
|
|
3184
3351
|
MatchaTooltipModule,
|
|
3185
|
-
MatchaTreeModule,
|
|
3352
|
+
MatchaTreeModule,
|
|
3353
|
+
MatchaRippleModule, MatchaButtonGroupModule,
|
|
3186
3354
|
MatchaAccordionModule,
|
|
3187
3355
|
MatchaFormFieldModule,
|
|
3188
3356
|
MatchaInfiniteScrollModule,
|
|
@@ -3218,9 +3386,9 @@ class MatchaComponentsModule {
|
|
|
3218
3386
|
MatchaSnackBarModule,
|
|
3219
3387
|
MatchaSortHeaderModule,
|
|
3220
3388
|
MatchaTableModule,
|
|
3221
|
-
MatchaTabsModule,
|
|
3222
3389
|
MatchaTooltipModule,
|
|
3223
|
-
MatchaTreeModule
|
|
3390
|
+
MatchaTreeModule,
|
|
3391
|
+
MatchaRippleModule] }); }
|
|
3224
3392
|
}
|
|
3225
3393
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: MatchaComponentsModule, decorators: [{
|
|
3226
3394
|
type: NgModule,
|
|
@@ -3229,6 +3397,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImpor
|
|
|
3229
3397
|
MatchaOverflowDraggableComponent
|
|
3230
3398
|
],
|
|
3231
3399
|
imports: [
|
|
3400
|
+
CommonModule,
|
|
3401
|
+
FormsModule,
|
|
3402
|
+
ReactiveFormsModule,
|
|
3232
3403
|
MatchaButtonGroupModule,
|
|
3233
3404
|
MatchaAccordionModule,
|
|
3234
3405
|
MatchaFormFieldModule,
|
|
@@ -3265,9 +3436,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImpor
|
|
|
3265
3436
|
MatchaSnackBarModule,
|
|
3266
3437
|
MatchaSortHeaderModule,
|
|
3267
3438
|
MatchaTableModule,
|
|
3268
|
-
MatchaTabsModule,
|
|
3269
3439
|
MatchaTooltipModule,
|
|
3270
|
-
MatchaTreeModule
|
|
3440
|
+
MatchaTreeModule,
|
|
3441
|
+
MatchaRippleModule
|
|
3271
3442
|
],
|
|
3272
3443
|
exports: [
|
|
3273
3444
|
MatchaButtonGroupModule,
|
|
@@ -3306,9 +3477,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImpor
|
|
|
3306
3477
|
MatchaSnackBarModule,
|
|
3307
3478
|
MatchaSortHeaderModule,
|
|
3308
3479
|
MatchaTableModule,
|
|
3309
|
-
MatchaTabsModule,
|
|
3310
3480
|
MatchaTooltipModule,
|
|
3311
|
-
MatchaTreeModule
|
|
3481
|
+
MatchaTreeModule,
|
|
3482
|
+
MatchaRippleModule
|
|
3312
3483
|
]
|
|
3313
3484
|
}]
|
|
3314
3485
|
}] });
|
|
@@ -3332,5 +3503,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImpor
|
|
|
3332
3503
|
* Generated bundle index. Do not edit.
|
|
3333
3504
|
*/
|
|
3334
3505
|
|
|
3335
|
-
export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaAutocompleteOverviewDirective, MatchaBadgeDirective, MatchaBadgeModule, MatchaBottomSheetDirective, MatchaBottomSheetModule, MatchaButtonComponent, MatchaButtonGroupComponent, MatchaButtonGroupModule, MatchaButtonItemComponent, MatchaButtonModule, MatchaButtonToggleDirective, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule,
|
|
3506
|
+
export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaAutocompleteOverviewDirective, MatchaBadgeDirective, MatchaBadgeModule, MatchaBottomSheetDirective, MatchaBottomSheetModule, MatchaButtonComponent, MatchaButtonGroupComponent, MatchaButtonGroupModule, MatchaButtonItemComponent, MatchaButtonModule, MatchaButtonToggleDirective, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaExpansionDirective, MatchaExpansionModule, MatchaFormFieldComponent, MatchaFormFieldDirective, MatchaFormFieldModule, MatchaFormsModule, MatchaGridComponent, MatchaGridModule, 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, MatchaRippleDirective, MatchaRippleModule, 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 };
|
|
3336
3507
|
//# sourceMappingURL=matcha-components.mjs.map
|