matcha-components 19.54.0 → 19.55.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 +72 -109
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/lib/matcha-button/button/button.component.d.ts +19 -7
- package/lib/matcha-button-toggle/button-toggle/button-toggle.component.d.ts +9 -6
- package/lib/matcha-button-toggle/button-toggle.module.d.ts +3 -4
- package/package.json +1 -1
- package/public-api.d.ts +0 -1
- package/lib/matcha-button-toggle/button-toggle-item/button-toggle-item.component.d.ts +0 -14
|
@@ -639,6 +639,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
639
639
|
}] } });
|
|
640
640
|
|
|
641
641
|
class MatchaButtonComponent {
|
|
642
|
+
get basic() { return this._basic; }
|
|
643
|
+
set basic(v) { this._basic = v === 'false' ? false : !!v; }
|
|
644
|
+
get outline() { return this._outline; }
|
|
645
|
+
set outline(v) { this._outline = v === 'false' ? false : !!v; }
|
|
646
|
+
get alpha() { return this._alpha; }
|
|
647
|
+
set alpha(v) { this._alpha = v === 'false' ? false : !!v; }
|
|
648
|
+
get pill() { return this._pill; }
|
|
649
|
+
set pill(v) { this._pill = v === 'false' ? false : !!v; }
|
|
650
|
+
get link() { return this._link; }
|
|
651
|
+
set link(v) { this._link = v === 'false' ? false : !!v; }
|
|
652
|
+
get icon() { return this._icon; }
|
|
653
|
+
set icon(v) { this._icon = v === 'false' ? false : !!v; }
|
|
642
654
|
constructor(_elementRef, _renderer) {
|
|
643
655
|
this._elementRef = _elementRef;
|
|
644
656
|
this._renderer = _renderer;
|
|
@@ -649,12 +661,12 @@ class MatchaButtonComponent {
|
|
|
649
661
|
this.sizeLg = null;
|
|
650
662
|
this.sizeXl = null;
|
|
651
663
|
this.color = 'basic';
|
|
652
|
-
this.
|
|
653
|
-
this.
|
|
654
|
-
this.
|
|
655
|
-
this.
|
|
656
|
-
this.
|
|
657
|
-
this.
|
|
664
|
+
this._basic = false;
|
|
665
|
+
this._outline = false;
|
|
666
|
+
this._alpha = false;
|
|
667
|
+
this._pill = false;
|
|
668
|
+
this._link = false;
|
|
669
|
+
this._icon = false;
|
|
658
670
|
this._config = {
|
|
659
671
|
sizeXs: 'tiny',
|
|
660
672
|
sizeSm: 'small',
|
|
@@ -777,7 +789,7 @@ class MatchaButtonComponent {
|
|
|
777
789
|
});
|
|
778
790
|
}
|
|
779
791
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonComponent, deps: [{ token: ElementRef }, { token: Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
780
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaButtonComponent, isStandalone: false, selector: "[matcha-button]", inputs: { size: "size", sizeXs: ["size-xs", "sizeXs"], sizeSm: ["size-sm", "sizeSm"], sizeMd: ["size-md", "sizeMd"], sizeLg: ["size-lg", "sizeLg"], sizeXl: ["size-xl", "sizeXl"], color: "color", basic: "basic", outline: "outline", alpha: "alpha", pill: "pill",
|
|
792
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaButtonComponent, isStandalone: false, selector: "[matcha-button]", inputs: { size: "size", sizeXs: ["size-xs", "sizeXs"], sizeSm: ["size-sm", "sizeSm"], sizeMd: ["size-md", "sizeMd"], sizeLg: ["size-lg", "sizeLg"], sizeXl: ["size-xl", "sizeXl"], color: "color", basic: "basic", outline: "outline", alpha: "alpha", pill: "pill", link: "link", icon: "icon" }, usesOnChanges: true, ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
|
|
781
793
|
}
|
|
782
794
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonComponent, decorators: [{
|
|
783
795
|
type: Component,
|
|
@@ -810,23 +822,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
810
822
|
type: Input,
|
|
811
823
|
args: ['color']
|
|
812
824
|
}], basic: [{
|
|
813
|
-
type: Input
|
|
814
|
-
args: ['basic']
|
|
825
|
+
type: Input
|
|
815
826
|
}], outline: [{
|
|
816
|
-
type: Input
|
|
817
|
-
args: ['outline']
|
|
827
|
+
type: Input
|
|
818
828
|
}], alpha: [{
|
|
819
|
-
type: Input
|
|
820
|
-
args: ['alpha']
|
|
829
|
+
type: Input
|
|
821
830
|
}], pill: [{
|
|
822
|
-
type: Input
|
|
823
|
-
args: ['pill']
|
|
824
|
-
}], icon: [{
|
|
825
|
-
type: Input,
|
|
826
|
-
args: ['icon']
|
|
831
|
+
type: Input
|
|
827
832
|
}], link: [{
|
|
828
|
-
type: Input
|
|
829
|
-
|
|
833
|
+
type: Input
|
|
834
|
+
}], icon: [{
|
|
835
|
+
type: Input
|
|
830
836
|
}] } });
|
|
831
837
|
|
|
832
838
|
class MatchaCardComponent {
|
|
@@ -1414,7 +1420,7 @@ class MatchaToolbarButtonComponent {
|
|
|
1414
1420
|
this.buttonClick.emit();
|
|
1415
1421
|
}
|
|
1416
1422
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1417
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaToolbarButtonComponent, isStandalone: false, selector: "matcha-toolbar-button", inputs: { icon: "icon" }, outputs: { buttonClick: "buttonClick" }, ngImport: i0, template: "<!-- HOW TO USE:\n<matcha-toolbar-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\" toolbar-button-tooltip=\"TOOLTIP-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n</matcha-toolbar-button>\n-->\n<button matcha-button outline=\"true\" size=\"small\" color=\"grey\" icon=\"true\" class=\"mt-16 mt-md-0\" (click)=\"emitButtonClick()\">\n <span [class]=\"classes\"></span>\n</button>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaButtonComponent, selector: "[matcha-button]", inputs: ["size", "size-xs", "size-sm", "size-md", "size-lg", "size-xl", "color", "basic", "outline", "alpha", "pill", "
|
|
1423
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaToolbarButtonComponent, isStandalone: false, selector: "matcha-toolbar-button", inputs: { icon: "icon" }, outputs: { buttonClick: "buttonClick" }, ngImport: i0, template: "<!-- HOW TO USE:\n<matcha-toolbar-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\" toolbar-button-tooltip=\"TOOLTIP-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n</matcha-toolbar-button>\n-->\n<button matcha-button outline=\"true\" size=\"small\" color=\"grey\" icon=\"true\" class=\"mt-16 mt-md-0\" (click)=\"emitButtonClick()\">\n <span [class]=\"classes\"></span>\n</button>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaButtonComponent, selector: "[matcha-button]", inputs: ["size", "size-xs", "size-sm", "size-md", "size-lg", "size-xl", "color", "basic", "outline", "alpha", "pill", "link", "icon"] }] }); }
|
|
1418
1424
|
}
|
|
1419
1425
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarButtonComponent, decorators: [{
|
|
1420
1426
|
type: Component,
|
|
@@ -1443,7 +1449,7 @@ class MatchaToolbarMainButtonComponent {
|
|
|
1443
1449
|
this.buttonClick.emit();
|
|
1444
1450
|
}
|
|
1445
1451
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarMainButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1446
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaToolbarMainButtonComponent, isStandalone: false, selector: "matcha-toolbar-main-button", outputs: { buttonClick: "buttonClick" }, ngImport: i0, template: "<!-- HOW TO USE:\n<matcha-toolbar-main-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n</matcha-toolbar-main-button>\n-->\n<button matcha-button size=\"tiny\" size-md=\"small\" color=\"accent\" (click)=\"emitButtonClick()\">\n <span class=\"i-matcha-action_plus i-size-sm ml--4\"></span>\n <span class=\"ml-8 fs-14\">\n <ng-content></ng-content>\n </span>\n</button>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaButtonComponent, selector: "[matcha-button]", inputs: ["size", "size-xs", "size-sm", "size-md", "size-lg", "size-xl", "color", "basic", "outline", "alpha", "pill", "
|
|
1452
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaToolbarMainButtonComponent, isStandalone: false, selector: "matcha-toolbar-main-button", outputs: { buttonClick: "buttonClick" }, ngImport: i0, template: "<!-- HOW TO USE:\n<matcha-toolbar-main-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n</matcha-toolbar-main-button>\n-->\n<button matcha-button size=\"tiny\" size-md=\"small\" color=\"accent\" (click)=\"emitButtonClick()\">\n <span class=\"i-matcha-action_plus i-size-sm ml--4\"></span>\n <span class=\"ml-8 fs-14\">\n <ng-content></ng-content>\n </span>\n</button>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaButtonComponent, selector: "[matcha-button]", inputs: ["size", "size-xs", "size-sm", "size-md", "size-lg", "size-xl", "color", "basic", "outline", "alpha", "pill", "link", "icon"] }] }); }
|
|
1447
1453
|
}
|
|
1448
1454
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaToolbarMainButtonComponent, decorators: [{
|
|
1449
1455
|
type: Component,
|
|
@@ -1786,62 +1792,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
1786
1792
|
args: ['size']
|
|
1787
1793
|
}] } });
|
|
1788
1794
|
|
|
1789
|
-
class MatchaButtonToggleItemComponent {
|
|
1790
|
-
constructor(_render) {
|
|
1791
|
-
this._render = _render;
|
|
1792
|
-
this.active = false;
|
|
1793
|
-
this.selected = new EventEmitter();
|
|
1794
|
-
}
|
|
1795
|
-
ngAfterContentInit() {
|
|
1796
|
-
if (!this.innerButton) {
|
|
1797
|
-
return;
|
|
1798
|
-
}
|
|
1799
|
-
/* considera <button … active-item> como ativo */
|
|
1800
|
-
if (this.innerButton.nativeElement.hasAttribute('active-item')) {
|
|
1801
|
-
this.active = true;
|
|
1802
|
-
}
|
|
1803
|
-
this._render.listen(this.innerButton.nativeElement, 'click', () => this.onClick());
|
|
1804
|
-
}
|
|
1805
|
-
onClick() {
|
|
1806
|
-
this.selected.emit();
|
|
1807
|
-
}
|
|
1808
|
-
setActiveState(isActive, inactiveColor, inactiveType) {
|
|
1809
|
-
this.active = isActive;
|
|
1810
|
-
if (this.innerButton) {
|
|
1811
|
-
/* liga/desliga atributo visual */
|
|
1812
|
-
if (isActive) {
|
|
1813
|
-
this._render.setAttribute(this.innerButton.nativeElement, 'active-item', 'true');
|
|
1814
|
-
}
|
|
1815
|
-
else {
|
|
1816
|
-
this._render.removeAttribute(this.innerButton.nativeElement, 'active-item');
|
|
1817
|
-
}
|
|
1818
|
-
}
|
|
1819
|
-
}
|
|
1820
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleItemComponent, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1821
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaButtonToggleItemComponent, isStandalone: false, selector: "matcha-button-toggle-item", inputs: { active: "active" }, outputs: { selected: "selected" }, queries: [{ propertyName: "innerButton", first: true, predicate: MatchaButtonComponent, descendants: true, read: ElementRef, static: true }], ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
|
|
1822
|
-
}
|
|
1823
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleItemComponent, decorators: [{
|
|
1824
|
-
type: Component,
|
|
1825
|
-
args: [{ selector: 'matcha-button-toggle-item', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
1826
|
-
}], ctorParameters: () => [{ type: i0.Renderer2 }], propDecorators: { active: [{
|
|
1827
|
-
type: Input
|
|
1828
|
-
}], selected: [{
|
|
1829
|
-
type: Output
|
|
1830
|
-
}], innerButton: [{
|
|
1831
|
-
type: ContentChild,
|
|
1832
|
-
args: [MatchaButtonComponent, { static: true, read: ElementRef }]
|
|
1833
|
-
}] } });
|
|
1834
|
-
|
|
1835
1795
|
class MatchaButtonToggleComponent {
|
|
1836
|
-
constructor() {
|
|
1837
|
-
/* entradas originais */
|
|
1838
|
-
this._multiple = false;
|
|
1839
|
-
this._disabled = false;
|
|
1840
|
-
this._required = false;
|
|
1841
|
-
this.inactiveColor = 'disabled';
|
|
1842
|
-
this.inactiveType = 'basic';
|
|
1843
|
-
this._gap = 16;
|
|
1844
|
-
}
|
|
1845
1796
|
get multiple() { return this._multiple; }
|
|
1846
1797
|
set multiple(v) { this._multiple = v === 'false' ? false : !!v; }
|
|
1847
1798
|
get disabled() { return this._disabled; }
|
|
@@ -1851,46 +1802,58 @@ class MatchaButtonToggleComponent {
|
|
|
1851
1802
|
set required(v) { this._required = v === 'false' ? false : !!v; }
|
|
1852
1803
|
set gap(v) { const n = +v; this._gap = isNaN(n) ? 16 : n; }
|
|
1853
1804
|
get gapClass() { return `gap-${this._gap}`; }
|
|
1854
|
-
|
|
1805
|
+
constructor(elementRef) {
|
|
1806
|
+
this.elementRef = elementRef;
|
|
1807
|
+
this._multiple = false;
|
|
1808
|
+
this._disabled = false;
|
|
1809
|
+
this._required = false;
|
|
1810
|
+
this.inactiveColor = 'primary';
|
|
1811
|
+
this.inactiveType = 'solid';
|
|
1812
|
+
this._gap = 16;
|
|
1813
|
+
}
|
|
1855
1814
|
ngAfterContentInit() {
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
item.selected.subscribe(() => this.onItemSelected(item));
|
|
1815
|
+
const buttons = this.elementRef.nativeElement.querySelectorAll('button[matcha-button]');
|
|
1816
|
+
buttons.forEach((button, index) => {
|
|
1817
|
+
const isActive = button.hasAttribute('active');
|
|
1818
|
+
this.setButtonState(button, isActive);
|
|
1819
|
+
button.addEventListener('click', () => this.onButtonSelected(button));
|
|
1862
1820
|
});
|
|
1863
1821
|
}
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1822
|
+
setButtonState(button, isActive) {
|
|
1823
|
+
if (isActive) {
|
|
1824
|
+
button.setAttribute('active', '');
|
|
1825
|
+
}
|
|
1826
|
+
else {
|
|
1827
|
+
button.removeAttribute('active');
|
|
1828
|
+
}
|
|
1829
|
+
}
|
|
1830
|
+
onButtonSelected(selectedButton) {
|
|
1831
|
+
const buttons = this.elementRef.nativeElement.querySelectorAll('button[matcha-button]');
|
|
1832
|
+
const activeButtons = Array.from(buttons).filter((button) => button.hasAttribute('active'));
|
|
1833
|
+
if (this.required && activeButtons.length === 1 && activeButtons[0] === selectedButton) {
|
|
1834
|
+
return;
|
|
1871
1835
|
}
|
|
1872
|
-
// Se multiple é true, permite ativar/desativar livremente
|
|
1873
1836
|
if (this.multiple) {
|
|
1874
|
-
|
|
1837
|
+
const isActive = selectedButton.hasAttribute('active');
|
|
1838
|
+
this.setButtonState(selectedButton, !isActive);
|
|
1875
1839
|
return;
|
|
1876
1840
|
}
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
// Se a tab já está ativa, permite desselecionar
|
|
1880
|
-
selectedItem.setActiveState(false, this.inactiveColor, this.inactiveType);
|
|
1841
|
+
if (selectedButton.hasAttribute('active')) {
|
|
1842
|
+
this.setButtonState(selectedButton, false);
|
|
1881
1843
|
}
|
|
1882
1844
|
else {
|
|
1883
|
-
|
|
1884
|
-
|
|
1845
|
+
buttons.forEach((button) => {
|
|
1846
|
+
this.setButtonState(button, button === selectedButton);
|
|
1847
|
+
});
|
|
1885
1848
|
}
|
|
1886
1849
|
}
|
|
1887
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1888
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaButtonToggleComponent, isStandalone: false, selector: "matcha-button-toggle", inputs: { multiple: "multiple", disabled: "disabled", required: "required", inactiveColor: "inactiveColor", inactiveType: "inactiveType", gap: "gap" }, host: { properties: { "attr.disabled": "this.isDisabled" } }, queries: [{ propertyName: "
|
|
1850
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1851
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaButtonToggleComponent, isStandalone: false, selector: "matcha-button-toggle", inputs: { multiple: "multiple", disabled: "disabled", required: "required", inactiveColor: "inactiveColor", inactiveType: "inactiveType", gap: "gap" }, host: { properties: { "attr.disabled": "this.isDisabled" } }, queries: [{ propertyName: "buttons", predicate: MatchaButtonComponent }], ngImport: i0, template: "<div class=\"button-group d-flex flex-wrap\" [ngClass]=\"gapClass\" role=\"group\"><ng-content></ng-content></div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] }); }
|
|
1889
1852
|
}
|
|
1890
1853
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleComponent, decorators: [{
|
|
1891
1854
|
type: Component,
|
|
1892
1855
|
args: [{ selector: 'matcha-button-toggle', standalone: false, template: "<div class=\"button-group d-flex flex-wrap\" [ngClass]=\"gapClass\" role=\"group\"><ng-content></ng-content></div>\n" }]
|
|
1893
|
-
}], propDecorators: { multiple: [{
|
|
1856
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { multiple: [{
|
|
1894
1857
|
type: Input
|
|
1895
1858
|
}], disabled: [{
|
|
1896
1859
|
type: Input
|
|
@@ -1905,9 +1868,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
1905
1868
|
type: Input
|
|
1906
1869
|
}], gap: [{
|
|
1907
1870
|
type: Input
|
|
1908
|
-
}],
|
|
1871
|
+
}], buttons: [{
|
|
1909
1872
|
type: ContentChildren,
|
|
1910
|
-
args: [
|
|
1873
|
+
args: [MatchaButtonComponent]
|
|
1911
1874
|
}] } });
|
|
1912
1875
|
|
|
1913
1876
|
class MatchaTabItemComponent {
|
|
@@ -2502,20 +2465,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
2502
2465
|
|
|
2503
2466
|
class MatchaButtonToggleModule {
|
|
2504
2467
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2505
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleModule, declarations: [MatchaButtonToggleComponent
|
|
2506
|
-
MatchaTooltipModule], exports: [MatchaButtonToggleComponent
|
|
2468
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleModule, declarations: [MatchaButtonToggleComponent], imports: [CommonModule,
|
|
2469
|
+
MatchaTooltipModule], exports: [MatchaButtonToggleComponent] }); }
|
|
2507
2470
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleModule, imports: [CommonModule,
|
|
2508
2471
|
MatchaTooltipModule] }); }
|
|
2509
2472
|
}
|
|
2510
2473
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaButtonToggleModule, decorators: [{
|
|
2511
2474
|
type: NgModule,
|
|
2512
2475
|
args: [{
|
|
2513
|
-
declarations: [MatchaButtonToggleComponent
|
|
2476
|
+
declarations: [MatchaButtonToggleComponent],
|
|
2514
2477
|
imports: [
|
|
2515
2478
|
CommonModule,
|
|
2516
2479
|
MatchaTooltipModule
|
|
2517
2480
|
],
|
|
2518
|
-
exports: [MatchaButtonToggleComponent
|
|
2481
|
+
exports: [MatchaButtonToggleComponent]
|
|
2519
2482
|
}]
|
|
2520
2483
|
}] });
|
|
2521
2484
|
|
|
@@ -3606,5 +3569,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
3606
3569
|
* Generated bundle index. Do not edit.
|
|
3607
3570
|
*/
|
|
3608
3571
|
|
|
3609
|
-
export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaAutocompleteOverviewDirective, MatchaBadgeDirective, MatchaBadgeModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent,
|
|
3572
|
+
export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaAutocompleteOverviewDirective, MatchaBadgeDirective, MatchaBadgeModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputDirective, MatchaInputModule, MatchaLabelComponent, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaRadioButtonDirective, MatchaRadioButtonModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSlideToggleDirective, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaSpinComponent, MatchaSpinModule, MatchaTabItemComponent, MatchaTableDirective, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, MatchaTreeDirective, MatchaTreeModule };
|
|
3610
3573
|
//# sourceMappingURL=matcha-components.mjs.map
|