matcha-components 19.74.0 → 19.76.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/esm2022/lib/matcha-accordion/accordion/accordion.component.mjs +49 -0
- package/esm2022/lib/matcha-accordion/accordion-content/accordion-content.component.mjs +11 -0
- package/esm2022/lib/matcha-accordion/accordion-header/accordion-header.component.mjs +11 -0
- package/esm2022/lib/matcha-accordion/accordion-item/accordion-item.component.mjs +42 -0
- package/esm2022/lib/matcha-accordion/accordion.module.mjs +59 -0
- package/esm2022/lib/matcha-animations/animations.mjs +352 -0
- package/esm2022/lib/matcha-autocomplete/matcha-autocomplete/matcha-autocomplete.component.mjs +46 -0
- package/esm2022/lib/matcha-autocomplete/matcha-autocomplete.directive.mjs +71 -0
- package/esm2022/lib/matcha-autocomplete/matcha-autocomplete.module.mjs +21 -0
- package/esm2022/lib/matcha-badge/badge.directive.mjs +20 -0
- package/esm2022/lib/matcha-badge/badge.module.mjs +17 -0
- package/esm2022/lib/matcha-button/button/button.component.mjs +205 -0
- package/esm2022/lib/matcha-button/button.module.mjs +17 -0
- package/esm2022/lib/matcha-button-toggle/button-toggle/button-toggle.component.mjs +88 -0
- package/esm2022/lib/matcha-button-toggle/button-toggle.module.mjs +24 -0
- package/esm2022/lib/matcha-card/card/card.component.mjs +81 -0
- package/esm2022/lib/matcha-card/card.module.mjs +40 -0
- package/esm2022/lib/matcha-checkbox/checkbox/checkbox.component.mjs +81 -0
- package/esm2022/lib/matcha-checkbox/checkbox.module.mjs +23 -0
- package/esm2022/lib/matcha-chips/chips.module.mjs +19 -0
- package/esm2022/lib/matcha-chips/matcha-chips.directive.mjs +20 -0
- package/esm2022/lib/matcha-components.module.mjs +55 -0
- package/esm2022/lib/matcha-datepicker/datepicker.directive.mjs +20 -0
- package/esm2022/lib/matcha-datepicker/datepicker.module.mjs +17 -0
- package/esm2022/lib/matcha-divider/divider/divider.component.mjs +66 -0
- package/esm2022/lib/matcha-divider/divider.module.mjs +22 -0
- package/esm2022/lib/matcha-elevation/elevation.directive.mjs +39 -0
- package/esm2022/lib/matcha-elevation/elevation.module.mjs +18 -0
- package/esm2022/lib/matcha-form-field/matcha-error/matcha-error.component.mjs +12 -0
- package/esm2022/lib/matcha-form-field/matcha-form-field/matcha-form-field.component.mjs +51 -0
- package/esm2022/lib/matcha-form-field/matcha-form-field.module.mjs +21 -0
- package/esm2022/lib/matcha-form-field/matcha-label/matcha-label.component.mjs +16 -0
- package/esm2022/lib/matcha-grid/grid.component.mjs +110 -0
- package/esm2022/lib/matcha-grid/grid.module.mjs +18 -0
- package/esm2022/lib/matcha-hint-text/hint/hint-text.component.mjs +38 -0
- package/esm2022/lib/matcha-hint-text/hint.module.mjs +24 -0
- package/esm2022/lib/matcha-icon/icon.component.mjs +36 -0
- package/esm2022/lib/matcha-icon/icon.module.mjs +19 -0
- package/esm2022/lib/matcha-infinite-scroll/matcha-infinite-scroll/matcha-infinite-scroll.component.mjs +46 -0
- package/esm2022/lib/matcha-infinite-scroll/matcha-infinite-scroll-data/matcha-infinite-scroll-data.component.mjs +137 -0
- package/esm2022/lib/matcha-infinite-scroll/matcha-infinite-scroll.module.mjs +21 -0
- package/esm2022/lib/matcha-input/input.directive.mjs +20 -0
- package/esm2022/lib/matcha-input/input.module.mjs +17 -0
- package/esm2022/lib/matcha-masonry/masonry/masonry.component.mjs +77 -0
- package/esm2022/lib/matcha-masonry/masonry.module.mjs +18 -0
- package/esm2022/lib/matcha-menu/menu.component.mjs +54 -0
- package/esm2022/lib/matcha-menu/menu.directive.mjs +53 -0
- package/esm2022/lib/matcha-menu/menu.module.mjs +29 -0
- package/esm2022/lib/matcha-modal/matcha-modal.module.mjs +73 -0
- package/esm2022/lib/matcha-modal/modal/modal.component.mjs +89 -0
- package/esm2022/lib/matcha-modal/modal-content/modal-content.component.mjs +11 -0
- package/esm2022/lib/matcha-modal/modal-footer/modal-footer.component.mjs +35 -0
- package/esm2022/lib/matcha-modal/modal-header/modal-header.component.mjs +12 -0
- package/esm2022/lib/matcha-modal/modal-options/modal-options.component.mjs +11 -0
- package/esm2022/lib/matcha-modal/modal.service.mjs +43 -0
- package/esm2022/lib/matcha-modal/overlay.service.mjs +131 -0
- package/esm2022/lib/matcha-option/matcha-option/matcha-option.component.mjs +33 -0
- package/esm2022/lib/matcha-option/matcha-option.module.mjs +18 -0
- package/esm2022/lib/matcha-option/matcha-option.service.mjs +73 -0
- package/esm2022/lib/matcha-overflow-draggable/matcha-overflow-draggable.component.mjs +54 -0
- package/esm2022/lib/matcha-paginator/paginator.directive.mjs +20 -0
- package/esm2022/lib/matcha-paginator/paginator.module.mjs +18 -0
- package/esm2022/lib/matcha-progress-bar/progress-bar.directive.mjs +20 -0
- package/esm2022/lib/matcha-progress-bar/progress-bar.module.mjs +22 -0
- package/esm2022/lib/matcha-radio-button/matcha-radio-button.directive.mjs +20 -0
- package/esm2022/lib/matcha-radio-button/radio-button.module.mjs +20 -0
- package/esm2022/lib/matcha-ripple/ripple.directive.mjs +71 -0
- package/esm2022/lib/matcha-ripple/ripple.module.mjs +24 -0
- package/esm2022/lib/matcha-select/select.directive.mjs +20 -0
- package/esm2022/lib/matcha-select/select.module.mjs +18 -0
- package/esm2022/lib/matcha-sidenav/sidenav.directive.mjs +20 -0
- package/esm2022/lib/matcha-sidenav/sidenav.module.mjs +18 -0
- package/esm2022/lib/matcha-slide-toggle/slide-toggle/slide-toggle.component.mjs +95 -0
- package/esm2022/lib/matcha-slide-toggle/slide-toggle.module.mjs +21 -0
- package/esm2022/lib/matcha-slider/matcha-slider.directive.mjs +20 -0
- package/esm2022/lib/matcha-slider/slider.module.mjs +20 -0
- package/esm2022/lib/matcha-snackbar/snack-bar.directive.mjs +20 -0
- package/esm2022/lib/matcha-snackbar/snack-bar.module.mjs +18 -0
- package/esm2022/lib/matcha-sort-header/sort-header.directive.mjs +20 -0
- package/esm2022/lib/matcha-sort-header/sort-header.module.mjs +18 -0
- package/esm2022/lib/matcha-spin/spin/spin.component.mjs +85 -0
- package/esm2022/lib/matcha-spin/spin.module.mjs +20 -0
- package/esm2022/lib/matcha-table/table.directive.mjs +20 -0
- package/esm2022/lib/matcha-table/table.module.mjs +18 -0
- package/esm2022/lib/matcha-tabs/tab-item/tab-item.component.mjs +29 -0
- package/esm2022/lib/matcha-tabs/tabs/tabs.component.mjs +68 -0
- package/esm2022/lib/matcha-tabs/tabs.module.mjs +29 -0
- package/esm2022/lib/matcha-title/title/title.component.mjs +66 -0
- package/esm2022/lib/matcha-title/title.module.mjs +18 -0
- package/esm2022/lib/matcha-toolbar/toolbar/toolbar.component.mjs +34 -0
- package/esm2022/lib/matcha-toolbar/toolbar-button/toolbar-button.component.mjs +28 -0
- package/esm2022/lib/matcha-toolbar/toolbar-content/toolbar-content.component.mjs +11 -0
- package/esm2022/lib/matcha-toolbar/toolbar-main-button/toolbar-main-button.component.mjs +20 -0
- package/esm2022/lib/matcha-toolbar/toolbar.module.mjs +53 -0
- package/esm2022/lib/matcha-tooltip/tooltip.directive.mjs +184 -0
- package/esm2022/lib/matcha-tooltip/tooltip.module.mjs +19 -0
- package/esm2022/lib/matcha-tree/tree.directive.mjs +20 -0
- package/esm2022/lib/matcha-tree/tree.module.mjs +18 -0
- package/esm2022/matcha-components.mjs +5 -0
- package/esm2022/public-api.mjs +119 -0
- package/fesm2022/matcha-components.mjs +536 -571
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/lib/matcha-autocomplete/matcha-autocomplete/matcha-autocomplete.component.d.ts +16 -0
- package/lib/matcha-autocomplete/matcha-autocomplete.directive.d.ts +19 -0
- package/lib/matcha-autocomplete/matcha-autocomplete.module.d.ts +11 -0
- package/lib/matcha-components.module.d.ts +19 -18
- package/lib/matcha-form-field/matcha-form-field/matcha-form-field.component.d.ts +1 -1
- package/lib/matcha-option/matcha-option/matcha-option.component.d.ts +14 -0
- package/lib/matcha-option/matcha-option.module.d.ts +8 -0
- package/lib/matcha-option/matcha-option.service.d.ts +24 -0
- package/package.json +3 -1
- package/public-api.d.ts +6 -3
- package/lib/matcha-autocomplete/autocomplete-overview.directive.d.ts +0 -9
- package/lib/matcha-autocomplete/autocomplete.directive.d.ts +0 -9
- package/lib/matcha-autocomplete/autocomplete.module.d.ts +0 -8
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter,
|
|
2
|
+
import { EventEmitter, Component, Input, Output, ContentChildren, ElementRef, Renderer2, Inject, HostBinding, HostListener, ContentChild, Directive, forwardRef, Injectable, ChangeDetectionStrategy, NgModule, createComponent } from '@angular/core';
|
|
3
3
|
import { animation, style, animate, trigger, transition, useAnimation, state, query, stagger, animateChild, sequence, group } from '@angular/animations';
|
|
4
|
-
import { Subscription, Subject } from 'rxjs';
|
|
4
|
+
import { Subscription, Subject, BehaviorSubject } 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 * as i1$1 from '@angular/forms';
|
|
8
9
|
import { FormControlName, NG_VALUE_ACCESSOR, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
9
10
|
|
|
10
11
|
const customAnimation = animation([
|
|
@@ -383,10 +384,10 @@ class MatchaAccordionItemComponent {
|
|
|
383
384
|
this.isOpen = !this.isOpen;
|
|
384
385
|
this.opened.emit(this.isOpen);
|
|
385
386
|
}
|
|
386
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
387
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
387
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAccordionItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
388
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaAccordionItemComponent, selector: "matcha-accordion-item", inputs: { stretch: "stretch", isOpen: "isOpen" }, outputs: { opened: "opened" }, ngImport: i0, template: "<div class=\"accordion-item flex-column overflow-hidden\">\n <div class=\"accordion-header d-flex\">\n <div class=\"d-flex accordion-header-wrapper\" (click)=\"toggleAccordion()\">\n <ng-content select=\"matcha-accordion-header\"></ng-content>\n </div>\n </div>\n <div class=\"accordion-content overflow-hidden\" [@expandCollapse]=\"isOpen ? '*' : 'void'\">\n <ng-content select=\"matcha-accordion-content\"></ng-content>\n <ng-content></ng-content>\n </div>\n</div>\n", styles: [""], animations: [...createAnimations] }); }
|
|
388
389
|
}
|
|
389
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
390
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAccordionItemComponent, decorators: [{
|
|
390
391
|
type: Component,
|
|
391
392
|
args: [{ selector: 'matcha-accordion-item', standalone: false, animations: [...createAnimations], template: "<div class=\"accordion-item flex-column overflow-hidden\">\n <div class=\"accordion-header d-flex\">\n <div class=\"d-flex accordion-header-wrapper\" (click)=\"toggleAccordion()\">\n <ng-content select=\"matcha-accordion-header\"></ng-content>\n </div>\n </div>\n <div class=\"accordion-content overflow-hidden\" [@expandCollapse]=\"isOpen ? '*' : 'void'\">\n <ng-content select=\"matcha-accordion-content\"></ng-content>\n <ng-content></ng-content>\n </div>\n</div>\n" }]
|
|
392
393
|
}], propDecorators: { stretch: [{
|
|
@@ -427,10 +428,10 @@ class MatchaAccordionComponent {
|
|
|
427
428
|
});
|
|
428
429
|
}
|
|
429
430
|
}
|
|
430
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
431
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
431
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAccordionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
432
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaAccordionComponent, selector: "matcha-accordion", inputs: { multiple: "multiple" }, outputs: { openedChange: "openedChange" }, queries: [{ propertyName: "items", predicate: MatchaAccordionItemComponent }], ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
|
|
432
433
|
}
|
|
433
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
434
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAccordionComponent, decorators: [{
|
|
434
435
|
type: Component,
|
|
435
436
|
args: [{ selector: 'matcha-accordion', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
436
437
|
}], propDecorators: { multiple: [{
|
|
@@ -444,19 +445,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
444
445
|
}] } });
|
|
445
446
|
|
|
446
447
|
class MatchaAccordionHeaderComponent {
|
|
447
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
448
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
448
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAccordionHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
449
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaAccordionHeaderComponent, selector: "matcha-accordion-header", ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
|
|
449
450
|
}
|
|
450
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
451
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAccordionHeaderComponent, decorators: [{
|
|
451
452
|
type: Component,
|
|
452
453
|
args: [{ selector: 'matcha-accordion-header', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
453
454
|
}] });
|
|
454
455
|
|
|
455
456
|
class MatchaAccordionContentComponent {
|
|
456
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
457
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
457
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAccordionContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
458
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaAccordionContentComponent, selector: "matcha-accordion-content", ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
|
|
458
459
|
}
|
|
459
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
460
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAccordionContentComponent, decorators: [{
|
|
460
461
|
type: Component,
|
|
461
462
|
args: [{ selector: 'matcha-accordion-content', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
462
463
|
}] });
|
|
@@ -495,10 +496,10 @@ class MatchaInfiniteScrollComponent {
|
|
|
495
496
|
ngOnDestroy() {
|
|
496
497
|
this.observer.disconnect();
|
|
497
498
|
}
|
|
498
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
499
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
499
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaInfiniteScrollComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
500
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaInfiniteScrollComponent, selector: "matcha-infinite-scroll", outputs: { scrolledToEnd: "scrolledToEnd" }, ngImport: i0, template: "", styles: [""] }); }
|
|
500
501
|
}
|
|
501
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaInfiniteScrollComponent, decorators: [{
|
|
502
503
|
type: Component,
|
|
503
504
|
args: [{ selector: 'matcha-infinite-scroll', standalone: false, template: "" }]
|
|
504
505
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { scrolledToEnd: [{
|
|
@@ -616,10 +617,10 @@ class MatchaInfiniteScrollDataComponent {
|
|
|
616
617
|
this.dataSubscription.unsubscribe();
|
|
617
618
|
this.searchSubscription.unsubscribe();
|
|
618
619
|
}
|
|
619
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
620
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
620
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaInfiniteScrollDataComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
621
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaInfiniteScrollDataComponent, selector: "matcha-infinite-scroll-data", inputs: { loadData: "loadData", initialList: "initialList", threshold: "threshold", resetKey: "resetKey", searchTerm: "searchTerm" }, outputs: { aggregatedData: "aggregatedData", exactMatch: "exactMatch" }, usesOnChanges: true, ngImport: i0, template: "", styles: ["", ":host{height:1px;opacity:0}\n"] }); }
|
|
621
622
|
}
|
|
622
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
623
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaInfiniteScrollDataComponent, decorators: [{
|
|
623
624
|
type: Component,
|
|
624
625
|
args: [{ selector: 'matcha-infinite-scroll-data', standalone: false, template: "", styles: [":host{height:1px;opacity:0}\n"] }]
|
|
625
626
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { loadData: [{
|
|
@@ -791,10 +792,10 @@ class MatchaButtonComponent {
|
|
|
791
792
|
button.removeEventListener('click', this.addRippleEffect, false);
|
|
792
793
|
});
|
|
793
794
|
}
|
|
794
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
795
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
795
|
+
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 }); }
|
|
796
|
+
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", alpha: "alpha", pill: "pill", link: "link", icon: "icon" }, host: { properties: { "attr.color": "this.colorAttr" } }, usesOnChanges: true, ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
|
|
796
797
|
}
|
|
797
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
798
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonComponent, decorators: [{
|
|
798
799
|
type: Component,
|
|
799
800
|
args: [{ selector: '[matcha-button]', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
800
801
|
}], ctorParameters: () => [{ type: i0.ElementRef, decorators: [{
|
|
@@ -892,10 +893,10 @@ class MatchaCardComponent {
|
|
|
892
893
|
hasBlockquotePosition() {
|
|
893
894
|
return this.blockquote === 'left' || this.blockquote === 'right';
|
|
894
895
|
}
|
|
895
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
896
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
896
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
897
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaCardComponent, selector: "matcha-card", inputs: { color: "color", blockquote: "blockquote", blockquoteColor: "blockquoteColor", class: "class", alpha: "alpha", tint: "tint", loading: "loading" }, host: { properties: { "attr.color": "this.colorAttr", "class": "this.classes" } }, ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
|
|
897
898
|
}
|
|
898
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
899
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaCardComponent, decorators: [{
|
|
899
900
|
type: Component,
|
|
900
901
|
args: [{ selector: 'matcha-card', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
901
902
|
}], propDecorators: { color: [{
|
|
@@ -958,10 +959,10 @@ class MatchaDividerComponent {
|
|
|
958
959
|
activeClasses += gapXl ? ` ${gapXl}` : '';
|
|
959
960
|
return activeClasses;
|
|
960
961
|
}
|
|
961
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
962
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
962
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaDividerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
963
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaDividerComponent, selector: "matcha-divider", inputs: { gap: "gap", gapSm: ["gap-sm", "gapSm"], gapMd: ["gap-md", "gapMd"], gapLg: ["gap-lg", "gapLg"], gapXl: ["gap-xl", "gapXl"], vertical: "vertical" }, ngImport: i0, template: "<div [class]=\"classes\"></div>\n", styles: [""] }); }
|
|
963
964
|
}
|
|
964
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
965
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaDividerComponent, decorators: [{
|
|
965
966
|
type: Component,
|
|
966
967
|
args: [{ selector: 'matcha-divider', standalone: false, template: "<div [class]=\"classes\"></div>\n" }]
|
|
967
968
|
}], propDecorators: { gap: [{
|
|
@@ -1028,10 +1029,10 @@ class MatchaTitleComponent {
|
|
|
1028
1029
|
hasIconClickOutput() {
|
|
1029
1030
|
return this.iconClick.observers.length > 0;
|
|
1030
1031
|
}
|
|
1031
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1032
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1032
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTitleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1033
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaTitleComponent, selector: "matcha-title", inputs: { color: "color", size: "size", loading: "loading", type: "type", icon: "icon" }, outputs: { iconClick: "iconClick" }, ngImport: i0, template: "<!-- <matcha-title size=\"1\" type=\"bullet\"></matcha-title> -->\n\n<div class=\"d-flex flex-align-center m-0\">\n <span [class]=\"signClasses\" [class.cursor-pointer]=\"hasIconClickOutput()\" (click)=\"emitIconAction()\"></span>\n <span [class]=\"textClasses\">\n <ng-content></ng-content>\n </span>\n</div>\n", styles: [""] }); }
|
|
1033
1034
|
}
|
|
1034
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1035
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTitleComponent, decorators: [{
|
|
1035
1036
|
type: Component,
|
|
1036
1037
|
args: [{ selector: 'matcha-title', standalone: false, template: "<!-- <matcha-title size=\"1\" type=\"bullet\"></matcha-title> -->\n\n<div class=\"d-flex flex-align-center m-0\">\n <span [class]=\"signClasses\" [class.cursor-pointer]=\"hasIconClickOutput()\" (click)=\"emitIconAction()\"></span>\n <span [class]=\"textClasses\">\n <ng-content></ng-content>\n </span>\n</div>\n" }]
|
|
1037
1038
|
}], propDecorators: { color: [{
|
|
@@ -1064,10 +1065,10 @@ class MatchaIconComponent {
|
|
|
1064
1065
|
const activeClasses = `${icon} ${color} ${size} ${loading} ${this.class}`;
|
|
1065
1066
|
return activeClasses;
|
|
1066
1067
|
}
|
|
1067
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1068
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1068
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1069
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaIconComponent, selector: "matcha-icon", inputs: { name: "name", size: "size", color: "color", class: "class", loading: "loading" }, ngImport: i0, template: "<span [class]=\"classes\">\n <ng-content></ng-content>\n</span>\n", styles: [""] }); }
|
|
1069
1070
|
}
|
|
1070
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1071
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaIconComponent, decorators: [{
|
|
1071
1072
|
type: Component,
|
|
1072
1073
|
args: [{ selector: 'matcha-icon', standalone: false, template: "<span [class]=\"classes\">\n <ng-content></ng-content>\n</span>\n" }]
|
|
1073
1074
|
}], propDecorators: { name: [{
|
|
@@ -1164,10 +1165,10 @@ class MatchaGridComponent {
|
|
|
1164
1165
|
this.setColspanClasses(this.colspan, this.breakpoint);
|
|
1165
1166
|
this.setRowspanClasses(this.rowspan, this.breakpoint);
|
|
1166
1167
|
}
|
|
1167
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1168
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1168
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaGridComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1169
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaGridComponent, selector: "matcha-grid", inputs: { breakpoint: "breakpoint", col: "col", gap: "gap", class: "class", span: "span", rowspan: "rowspan", colspan: "colspan", direction: "direction", loading: "loading" }, usesOnChanges: true, ngImport: i0, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
|
|
1169
1170
|
}
|
|
1170
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1171
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaGridComponent, decorators: [{
|
|
1171
1172
|
type: Component,
|
|
1172
1173
|
args: [{ selector: 'matcha-grid', standalone: false, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
1173
1174
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }], propDecorators: { breakpoint: [{
|
|
@@ -1227,10 +1228,10 @@ class MatchaMasonryComponent {
|
|
|
1227
1228
|
activeClasses += gapXl ? ` ${gapXl}` : '';
|
|
1228
1229
|
return activeClasses;
|
|
1229
1230
|
}
|
|
1230
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1231
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1231
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaMasonryComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1232
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaMasonryComponent, selector: "matcha-masonry", inputs: { colSize: ["col", "colSize"], smColSize: ["col-sm", "smColSize"], mdColSize: ["col-md", "mdColSize"], lgColSize: ["col-lg", "lgColSize"], xlColSize: ["col-xl", "xlColSize"], gap: "gap", gapSm: ["gap-sm", "gapSm"], gapMd: ["gap-md", "gapMd"], gapLg: ["gap-lg", "gapLg"], gapXl: ["gap-xl", "gapXl"] }, ngImport: i0, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
|
|
1232
1233
|
}
|
|
1233
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1234
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaMasonryComponent, decorators: [{
|
|
1234
1235
|
type: Component,
|
|
1235
1236
|
args: [{ selector: 'matcha-masonry', standalone: false, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
1236
1237
|
}], propDecorators: { colSize: [{
|
|
@@ -1266,19 +1267,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
1266
1267
|
}] } });
|
|
1267
1268
|
|
|
1268
1269
|
class MatchaModalContentComponent {
|
|
1269
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1270
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1270
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1271
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaModalContentComponent, selector: "matcha-modal-content", ngImport: i0, template: "\n<div class=\"py-24 pt-0 overflow-auto\" style=\"max-height: calc(100vh - 300px);\n\">\n <div class=\"matcha-card-flat matcha-background-transparent p-0 flex-column--force\">\n <div class=\"flex-column matcha-card-flat matcha-background-transparent px-24 py-0\">\n <ng-content></ng-content>\n </div>\n </div>\n</div>\n", styles: [""] }); }
|
|
1271
1272
|
}
|
|
1272
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1273
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalContentComponent, decorators: [{
|
|
1273
1274
|
type: Component,
|
|
1274
1275
|
args: [{ selector: 'matcha-modal-content', standalone: false, template: "\n<div class=\"py-24 pt-0 overflow-auto\" style=\"max-height: calc(100vh - 300px);\n\">\n <div class=\"matcha-card-flat matcha-background-transparent p-0 flex-column--force\">\n <div class=\"flex-column matcha-card-flat matcha-background-transparent px-24 py-0\">\n <ng-content></ng-content>\n </div>\n </div>\n</div>\n" }]
|
|
1275
1276
|
}] });
|
|
1276
1277
|
|
|
1277
1278
|
class MatchaModalHeaderComponent {
|
|
1278
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1279
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1279
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1280
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaModalHeaderComponent, selector: "matcha-modal-header", ngImport: i0, template: "<!-- [@animate]=\"{ value: '*', params: { delay: '100ms' } }\" -->\n<!-- MATCHA CHECK -->\n<div class=\"matcha-section pt-16 px-16 pt-md-24 px-md-24\">\n <div class=\"d-flex flex-wrap flex-space-between mb-16 mb-md-24\">\n <div class=\"flex-space-between flex-align-center\">\n <ng-content></ng-content>\n </div>\n <div class=\"flex-row flex-end gap-8\">\n <ng-content select=\"matcha-modal-options\"></ng-content>\n </div>\n </div>\n <matcha-divider></matcha-divider>\n</div>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaDividerComponent, selector: "matcha-divider", inputs: ["gap", "gap-sm", "gap-md", "gap-lg", "gap-xl", "vertical"] }] }); }
|
|
1280
1281
|
}
|
|
1281
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1282
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalHeaderComponent, decorators: [{
|
|
1282
1283
|
type: Component,
|
|
1283
1284
|
args: [{ selector: 'matcha-modal-header', standalone: false, template: "<!-- [@animate]=\"{ value: '*', params: { delay: '100ms' } }\" -->\n<!-- MATCHA CHECK -->\n<div class=\"matcha-section pt-16 px-16 pt-md-24 px-md-24\">\n <div class=\"d-flex flex-wrap flex-space-between mb-16 mb-md-24\">\n <div class=\"flex-space-between flex-align-center\">\n <ng-content></ng-content>\n </div>\n <div class=\"flex-row flex-end gap-8\">\n <ng-content select=\"matcha-modal-options\"></ng-content>\n </div>\n </div>\n <matcha-divider></matcha-divider>\n</div>\n" }]
|
|
1284
1285
|
}] });
|
|
@@ -1304,10 +1305,10 @@ class MatchaModalFooterComponent {
|
|
|
1304
1305
|
}
|
|
1305
1306
|
});
|
|
1306
1307
|
}
|
|
1307
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1308
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1308
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalFooterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1309
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaModalFooterComponent, selector: "matcha-modal-footer", inputs: { buttonType: ["", "buttonType"] }, ngImport: i0, template: "<div class=\"matcha-section pb-16 px-16 pb-md-24 px-md-24\">\n <matcha-divider></matcha-divider>\n <div class=\"flex-column flex-sm-row w-100-p flex-space-between gap-16\">\n <div class=\"flex-column flex-sm-row w-100-p flex-space-between mt-16 mt-md-24 gap-16\">\n <ng-content></ng-content>\n </div>\n </div>\n</div>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaDividerComponent, selector: "matcha-divider", inputs: ["gap", "gap-sm", "gap-md", "gap-lg", "gap-xl", "vertical"] }] }); }
|
|
1309
1310
|
}
|
|
1310
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1311
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalFooterComponent, decorators: [{
|
|
1311
1312
|
type: Component,
|
|
1312
1313
|
args: [{ selector: 'matcha-modal-footer', standalone: false, template: "<div class=\"matcha-section pb-16 px-16 pb-md-24 px-md-24\">\n <matcha-divider></matcha-divider>\n <div class=\"flex-column flex-sm-row w-100-p flex-space-between gap-16\">\n <div class=\"flex-column flex-sm-row w-100-p flex-space-between mt-16 mt-md-24 gap-16\">\n <ng-content></ng-content>\n </div>\n </div>\n</div>\n" }]
|
|
1313
1314
|
}], propDecorators: { buttonType: [{
|
|
@@ -1316,10 +1317,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
1316
1317
|
}] } });
|
|
1317
1318
|
|
|
1318
1319
|
class MatchaModalOptionsComponent {
|
|
1319
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1320
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1320
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1321
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaModalOptionsComponent, selector: "matcha-modal-options", ngImport: i0, template: "<div class=\"flex-row gap-8\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
|
|
1321
1322
|
}
|
|
1322
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1323
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalOptionsComponent, decorators: [{
|
|
1323
1324
|
type: Component,
|
|
1324
1325
|
args: [{ selector: 'matcha-modal-options', standalone: false, template: "<div class=\"flex-row gap-8\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
1325
1326
|
}] });
|
|
@@ -1358,10 +1359,10 @@ class MatchaModalComponent {
|
|
|
1358
1359
|
this.hasBackdrop = true;
|
|
1359
1360
|
this.backdropClass = '';
|
|
1360
1361
|
}
|
|
1361
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1362
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1362
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1363
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaModalComponent, selector: "matcha-modal", inputs: { size: "size", sizeXs: ["size-xs", "sizeXs"], sizeSm: ["size-sm", "sizeSm"], sizeMd: ["size-md", "sizeMd"], sizeLg: ["size-lg", "sizeLg"], sizeXl: ["size-xl", "sizeXl"], class: "class", hasBackdrop: "hasBackdrop", backdropClass: "backdropClass" }, host: { properties: { "attr.size": "this.sizeAttr", "attr.size-xs": "this.sizeAttrXs", "arrt.size-sm": "this.sizeAttrSm", "attr.size-md": "this.sizeAttrMd", "attr.size-lg": "this.sizeAttrLg", "attr.size-xl": "this.sizeAttrXl", "class": "this.classes" } }, ngImport: i0, template: "<div class=\"background-surface elevation-z-4 flex-column matcha-modal radius-8\">\n <ng-content></ng-content>\n</div>", styles: [""] }); }
|
|
1363
1364
|
}
|
|
1364
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1365
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalComponent, decorators: [{
|
|
1365
1366
|
type: Component,
|
|
1366
1367
|
args: [{ selector: 'matcha-modal', standalone: false, template: "<div class=\"background-surface elevation-z-4 flex-column matcha-modal radius-8\">\n <ng-content></ng-content>\n</div>" }]
|
|
1367
1368
|
}], ctorParameters: () => [], propDecorators: { size: [{
|
|
@@ -1440,10 +1441,10 @@ class MatchaMenuComponent {
|
|
|
1440
1441
|
toggleMenu() {
|
|
1441
1442
|
this.isOpen = !this.isOpen;
|
|
1442
1443
|
}
|
|
1443
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1444
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1444
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaMenuComponent, deps: [{ token: ElementRef }, { token: Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1445
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaMenuComponent, selector: "matcha-menu", inputs: { isParentMenu: "isParentMenu" }, host: { listeners: { "document:click": "handleOutsideClick($event)", "mouseleave": "handleMouseLeave($event)" } }, exportAs: ["matchaMenu"], ngImport: i0, template: "<div class=\"menu\" [ngClass]=\"{'show': isOpen}\">\n <ng-content></ng-content>\n </div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] }); }
|
|
1445
1446
|
}
|
|
1446
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1447
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaMenuComponent, decorators: [{
|
|
1447
1448
|
type: Component,
|
|
1448
1449
|
args: [{ selector: 'matcha-menu', exportAs: 'matchaMenu', standalone: false, template: "<div class=\"menu\" [ngClass]=\"{'show': isOpen}\">\n <ng-content></ng-content>\n </div>\n" }]
|
|
1449
1450
|
}], ctorParameters: () => [{ type: i0.ElementRef, decorators: [{
|
|
@@ -1482,10 +1483,10 @@ class MatchaToolbarComponent {
|
|
|
1482
1483
|
ngOnDestroy() {
|
|
1483
1484
|
clearTimeout(this.resizeTimeout);
|
|
1484
1485
|
}
|
|
1485
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1486
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1486
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaToolbarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1487
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaToolbarComponent, selector: "matcha-toolbar", host: { listeners: { "window:resize": "onResize()" } }, ngImport: i0, template: "<!-- HOW TO USE:\n<matcha-toolbar>\n <matcha-title type=\"icon\" icon=\"settings-out\" (iconClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-NO-ICONE-AQUI\">\n {{'FINANCIAL.CATEGORY.TITLE' | translate}}\n </matcha-title>\n <search-form toolbar-form-field (searchText)=\"searchText($event)\"></search-form>\n <matcha-toolbar-button icon=\"home-out\" (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n </matcha-toolbar-button>\n <matcha-toolbar-content>\n TEXTO DO BOT\u00C3O AQUI\n </matcha-toolbar-content>\n <matcha-toolbar-main-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n </matcha-toolbar-main-button>\n QUALQUER OUTRA FUNCIONALIDADE AQUI\n</matcha-toolbar>\n-->\n<ng-template #toolbarMainButton>\n <ng-content select=\"matcha-toolbar-main-button\"></ng-content>\n</ng-template>\n<!-- CONTENT HEADER -->\n<div class=\"flex-column background-surface radius-8 matcha-elevation-z1\">\n <div class=\"flex-column flex-md-row flex-wrap p-16 flex-align-center flex-space-between h-auto min-h-40 flex-wrap\">\n <div class=\"w-100-p--force w-md-auto--force flex-space-between flex-wrap\">\n <div class=\"min-h-32 flex-center-center\">\n <ng-content select=\"matcha-title\"></ng-content>\n </div>\n <ng-container *ngIf=\"isMobileScreen\">\n <ng-container *ngTemplateOutlet=\"toolbarMainButton\"></ng-container>\n </ng-container>\n </div>\n <div class=\"w-100-p--force w-md-auto--force flex-row flex-end gap-8\">\n <!-- ISSO DEVE SER SUBSTITUIDO PELO matcha-input-search FOR IMPLEMENTADO -->\n <ng-content select=\"search-form\"></ng-content>\n <!-- /ISSO DEVE SER SUBSTITUIDO PELO matcha-input-search FOR IMPLEMENTADO -->\n <div class=\"flex-row gap-8\">\n <ng-content select=\"matcha-toolbar-button\"></ng-content>\n <ng-content select=\"matcha-toolbar-content\"></ng-content>\n <ng-content></ng-content>\n <ng-container *ngIf=\"!isMobileScreen\">\n <ng-container *ngTemplateOutlet=\"toolbarMainButton\"></ng-container>\n </ng-container>\n </div>\n </div>\n </div>\n</div>\n<!-- / CONTENT HEADER -->\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
1487
1488
|
}
|
|
1488
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1489
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaToolbarComponent, decorators: [{
|
|
1489
1490
|
type: Component,
|
|
1490
1491
|
args: [{ selector: 'matcha-toolbar', standalone: false, template: "<!-- HOW TO USE:\n<matcha-toolbar>\n <matcha-title type=\"icon\" icon=\"settings-out\" (iconClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-NO-ICONE-AQUI\">\n {{'FINANCIAL.CATEGORY.TITLE' | translate}}\n </matcha-title>\n <search-form toolbar-form-field (searchText)=\"searchText($event)\"></search-form>\n <matcha-toolbar-button icon=\"home-out\" (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n </matcha-toolbar-button>\n <matcha-toolbar-content>\n TEXTO DO BOT\u00C3O AQUI\n </matcha-toolbar-content>\n <matcha-toolbar-main-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n </matcha-toolbar-main-button>\n QUALQUER OUTRA FUNCIONALIDADE AQUI\n</matcha-toolbar>\n-->\n<ng-template #toolbarMainButton>\n <ng-content select=\"matcha-toolbar-main-button\"></ng-content>\n</ng-template>\n<!-- CONTENT HEADER -->\n<div class=\"flex-column background-surface radius-8 matcha-elevation-z1\">\n <div class=\"flex-column flex-md-row flex-wrap p-16 flex-align-center flex-space-between h-auto min-h-40 flex-wrap\">\n <div class=\"w-100-p--force w-md-auto--force flex-space-between flex-wrap\">\n <div class=\"min-h-32 flex-center-center\">\n <ng-content select=\"matcha-title\"></ng-content>\n </div>\n <ng-container *ngIf=\"isMobileScreen\">\n <ng-container *ngTemplateOutlet=\"toolbarMainButton\"></ng-container>\n </ng-container>\n </div>\n <div class=\"w-100-p--force w-md-auto--force flex-row flex-end gap-8\">\n <!-- ISSO DEVE SER SUBSTITUIDO PELO matcha-input-search FOR IMPLEMENTADO -->\n <ng-content select=\"search-form\"></ng-content>\n <!-- /ISSO DEVE SER SUBSTITUIDO PELO matcha-input-search FOR IMPLEMENTADO -->\n <div class=\"flex-row gap-8\">\n <ng-content select=\"matcha-toolbar-button\"></ng-content>\n <ng-content select=\"matcha-toolbar-content\"></ng-content>\n <ng-content></ng-content>\n <ng-container *ngIf=\"!isMobileScreen\">\n <ng-container *ngTemplateOutlet=\"toolbarMainButton\"></ng-container>\n </ng-container>\n </div>\n </div>\n </div>\n</div>\n<!-- / CONTENT HEADER -->\n" }]
|
|
1491
1492
|
}], propDecorators: { onResize: [{
|
|
@@ -1505,10 +1506,10 @@ class MatchaToolbarButtonComponent {
|
|
|
1505
1506
|
emitButtonClick() {
|
|
1506
1507
|
this.buttonClick.emit();
|
|
1507
1508
|
}
|
|
1508
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1509
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1509
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaToolbarButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1510
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaToolbarButtonComponent, 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"] }] }); }
|
|
1510
1511
|
}
|
|
1511
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1512
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaToolbarButtonComponent, decorators: [{
|
|
1512
1513
|
type: Component,
|
|
1513
1514
|
args: [{ selector: 'matcha-toolbar-button', standalone: false, template: "<!-- HOW TO USE:\n<matcha-toolbar-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\" toolbar-button-tooltip=\"TOOLTIP-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n</matcha-toolbar-button>\n-->\n<button matcha-button outline=\"true\" size=\"small\" color=\"grey\" icon=\"true\" class=\"mt-16 mt-md-0\" (click)=\"emitButtonClick()\">\n <span [class]=\"classes\"></span>\n</button>\n" }]
|
|
1514
1515
|
}], propDecorators: { icon: [{
|
|
@@ -1519,10 +1520,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
1519
1520
|
}] } });
|
|
1520
1521
|
|
|
1521
1522
|
class MatchaToolbarContentComponent {
|
|
1522
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1523
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1523
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaToolbarContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1524
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaToolbarContentComponent, selector: "matcha-toolbar-content", ngImport: i0, template: "<!-- HOW TO USE:\n<matcha-toolbar-content>\n OUTROS CONTEUDOS CUSTOMIZADOS NA TOOLBAR\n</matcha-toolbar-content>\n-->\n<div class=\"d-flex flex-wrap gap-8 mt-16 mt-md-0\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
|
|
1524
1525
|
}
|
|
1525
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1526
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaToolbarContentComponent, decorators: [{
|
|
1526
1527
|
type: Component,
|
|
1527
1528
|
args: [{ selector: 'matcha-toolbar-content', standalone: false, template: "<!-- HOW TO USE:\n<matcha-toolbar-content>\n OUTROS CONTEUDOS CUSTOMIZADOS NA TOOLBAR\n</matcha-toolbar-content>\n-->\n<div class=\"d-flex flex-wrap gap-8 mt-16 mt-md-0\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
1528
1529
|
}] });
|
|
@@ -1534,10 +1535,10 @@ class MatchaToolbarMainButtonComponent {
|
|
|
1534
1535
|
emitButtonClick() {
|
|
1535
1536
|
this.buttonClick.emit();
|
|
1536
1537
|
}
|
|
1537
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1538
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1538
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaToolbarMainButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1539
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaToolbarMainButtonComponent, 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"] }] }); }
|
|
1539
1540
|
}
|
|
1540
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1541
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaToolbarMainButtonComponent, decorators: [{
|
|
1541
1542
|
type: Component,
|
|
1542
1543
|
args: [{ selector: 'matcha-toolbar-main-button', standalone: false, template: "<!-- HOW TO USE:\n<matcha-toolbar-main-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n</matcha-toolbar-main-button>\n-->\n<button matcha-button size=\"tiny\" size-md=\"small\" color=\"accent\" (click)=\"emitButtonClick()\">\n <span class=\"i-matcha-action_plus i-size-sm ml--4\"></span>\n <span class=\"ml-8 fs-14\">\n <ng-content></ng-content>\n </span>\n</button>\n" }]
|
|
1543
1544
|
}], propDecorators: { buttonClick: [{
|
|
@@ -1560,12 +1561,12 @@ class MatchaFormFieldComponent {
|
|
|
1560
1561
|
get showError() {
|
|
1561
1562
|
return !!this.control?.invalid && (this.control?.touched || this.control?.dirty);
|
|
1562
1563
|
}
|
|
1563
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1564
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1564
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaFormFieldComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1565
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaFormFieldComponent, selector: "matcha-form-field", inputs: { color: "color", size: "size", sizeXs: ["size-xs", "sizeXs"], sizeSm: ["size-sm", "sizeSm"], sizeMd: ["size-md", "sizeMd"], sizeLg: ["size-lg", "sizeLg"], sizeXl: ["size-xl", "sizeXl"] }, queries: [{ propertyName: "controlDir", first: true, predicate: FormControlName, descendants: true }], ngImport: i0, template: "<div class=\"flex-column gap-4\">\n <div class=\"matcha-form-field position-relative w-100-p min-h-40 flex-align-center\" #inputSelector>\n <div class=\"flex-row position-absolute w-100-p min-h-40 h-100-p\">\n <div class=\"bl-2 bt-2 bb-2 radius-left-8 min-w-8 border-color-{{color}}\"></div>\n <div class=\"bb-2 w-auto border-color-{{color}}\">\n <ng-content select=\"matcha-label\"></ng-content>\n </div>\n <div class=\"br-2 bt-2 bb-2 radius-right-8 w-100-p border-color-{{color}}\"></div>\n </div>\n <div class=\"flex-row position-relative py-8 px-12 gap-8 w-100-p\">\n <ng-content></ng-content>\n </div>\n </div>\n <ng-container *ngIf=\"showError\">\n <ng-content select=\"matcha-error\"></ng-content>\n </ng-container>\n <ng-content select=\"matcha-autocomplete\"></ng-content>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
|
|
1565
1566
|
}
|
|
1566
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1567
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaFormFieldComponent, decorators: [{
|
|
1567
1568
|
type: Component,
|
|
1568
|
-
args: [{ selector: 'matcha-form-field', standalone: false, template: "<div class=\"flex-column gap-4\">\n <div class=\"matcha-form-field position-relative w-100-p min-h-40 flex-align-center\" #inputSelector>\n <div class=\"flex-row position-absolute w-100-p min-h-40 h-100-p\">\n <div class=\"bl-2 bt-2 bb-2 radius-left-8 min-w-8 border-color-{{color}}\"></div>\n <div class=\"bb-2 w-auto border-color-{{color}}\">\n <ng-content select=\"matcha-label\"></ng-content>\n </div>\n <div class=\"br-2 bt-2 bb-2 radius-right-8 w-100-p border-color-{{color}}\"></div>\n </div>\n <div class=\"flex-row position-relative py-8 px-12 gap-8 w-100-p\">\n <ng-content></ng-content>\n </div>\n </div>\n <ng-container *ngIf=\"showError\">\n <ng-content select=\"matcha-error\"></ng-content>\n </ng-container>\n</div>\n" }]
|
|
1569
|
+
args: [{ selector: 'matcha-form-field', standalone: false, template: "<div class=\"flex-column gap-4\">\n <div class=\"matcha-form-field position-relative w-100-p min-h-40 flex-align-center\" #inputSelector>\n <div class=\"flex-row position-absolute w-100-p min-h-40 h-100-p\">\n <div class=\"bl-2 bt-2 bb-2 radius-left-8 min-w-8 border-color-{{color}}\"></div>\n <div class=\"bb-2 w-auto border-color-{{color}}\">\n <ng-content select=\"matcha-label\"></ng-content>\n </div>\n <div class=\"br-2 bt-2 bb-2 radius-right-8 w-100-p border-color-{{color}}\"></div>\n </div>\n <div class=\"flex-row position-relative py-8 px-12 gap-8 w-100-p\">\n <ng-content></ng-content>\n </div>\n </div>\n <ng-container *ngIf=\"showError\">\n <ng-content select=\"matcha-error\"></ng-content>\n </ng-container>\n <ng-content select=\"matcha-autocomplete\"></ng-content>\n</div>\n" }]
|
|
1569
1570
|
}], propDecorators: { color: [{
|
|
1570
1571
|
type: Input
|
|
1571
1572
|
}], size: [{
|
|
@@ -1595,10 +1596,10 @@ class MatchaLabelComponent {
|
|
|
1595
1596
|
constructor() {
|
|
1596
1597
|
this.color = 'blue-grey';
|
|
1597
1598
|
}
|
|
1598
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1599
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1599
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaLabelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1600
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaLabelComponent, selector: "matcha-label", inputs: { color: "color" }, ngImport: i0, template: "<label\n class=\"d-flex d-flex-align-center position-relative text-nowrap px-4 fs-12 lh-18 fw-700 color-{{color}}\"\n style=\"transform: translateY(-8px);\">\n <ng-content></ng-content>\n <!-- <span class=\"pl-4 fs-10 fw-400 lh-16 matcha-color-placeholder\">*</span>\n <span class=\"pl-4 fs-10 fw-400 lh-16 matcha-color-placeholder\">(Opcional)</span> -->\n</label>", styles: [""] }); }
|
|
1600
1601
|
}
|
|
1601
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1602
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaLabelComponent, decorators: [{
|
|
1602
1603
|
type: Component,
|
|
1603
1604
|
args: [{ selector: 'matcha-label', standalone: false, template: "<label\n class=\"d-flex d-flex-align-center position-relative text-nowrap px-4 fs-12 lh-18 fw-700 color-{{color}}\"\n style=\"transform: translateY(-8px);\">\n <ng-content></ng-content>\n <!-- <span class=\"pl-4 fs-10 fw-400 lh-16 matcha-color-placeholder\">*</span>\n <span class=\"pl-4 fs-10 fw-400 lh-16 matcha-color-placeholder\">(Opcional)</span> -->\n</label>" }]
|
|
1604
1605
|
}], propDecorators: { color: [{
|
|
@@ -1606,10 +1607,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
1606
1607
|
}] } });
|
|
1607
1608
|
|
|
1608
1609
|
class MatchaErrorComponent {
|
|
1609
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1610
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1610
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaErrorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1611
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaErrorComponent, selector: "matcha-error", ngImport: i0, template: "<p class=\"w-100-p color-red fs-12 lh-16 flex-row flex-align-center gap-4 m-0\">\n <matcha-icon name=\"action_sign_warning-out\" size=\"sm\"></matcha-icon>\n <ng-content></ng-content>\n</p>", styles: [""], dependencies: [{ kind: "component", type: MatchaIconComponent, selector: "matcha-icon", inputs: ["name", "size", "color", "class", "loading"] }] }); }
|
|
1611
1612
|
}
|
|
1612
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1613
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaErrorComponent, decorators: [{
|
|
1613
1614
|
type: Component,
|
|
1614
1615
|
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>" }]
|
|
1615
1616
|
}] });
|
|
@@ -1667,10 +1668,10 @@ class MatchaRippleDirective {
|
|
|
1667
1668
|
});
|
|
1668
1669
|
this.ripples = [];
|
|
1669
1670
|
}
|
|
1670
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1671
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1671
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaRippleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1672
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaRippleDirective, selector: "[matchaRipple]", inputs: { rippleColor: "rippleColor" }, host: { listeners: { "mousedown": "onMouseDown($event)" } }, ngImport: i0 }); }
|
|
1672
1673
|
}
|
|
1673
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1674
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaRippleDirective, decorators: [{
|
|
1674
1675
|
type: Directive,
|
|
1675
1676
|
args: [{
|
|
1676
1677
|
selector: '[matchaRipple]',
|
|
@@ -1730,8 +1731,8 @@ class MatchaCheckboxComponent {
|
|
|
1730
1731
|
this.onTouched();
|
|
1731
1732
|
this.change.emit({ checked: this.checked });
|
|
1732
1733
|
}
|
|
1733
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1734
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1734
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaCheckboxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1735
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaCheckboxComponent, selector: "matcha-checkbox", inputs: { color: "color", indeterminate: "indeterminate", disabled: "disabled", checked: "checked" }, outputs: { change: "change" }, providers: [
|
|
1735
1736
|
{
|
|
1736
1737
|
provide: NG_VALUE_ACCESSOR,
|
|
1737
1738
|
useExisting: forwardRef(() => MatchaCheckboxComponent),
|
|
@@ -1739,7 +1740,7 @@ class MatchaCheckboxComponent {
|
|
|
1739
1740
|
}
|
|
1740
1741
|
], 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"] }] }); }
|
|
1741
1742
|
}
|
|
1742
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1743
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaCheckboxComponent, decorators: [{
|
|
1743
1744
|
type: Component,
|
|
1744
1745
|
args: [{ selector: 'matcha-checkbox', standalone: false, providers: [
|
|
1745
1746
|
{
|
|
@@ -1807,10 +1808,10 @@ class MatchaSpinComponent {
|
|
|
1807
1808
|
const progress = Math.min(Math.max(Number(this.progress), 0), 100);
|
|
1808
1809
|
return this.circumference - (progress / 100) * this.circumference;
|
|
1809
1810
|
}
|
|
1810
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1811
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1811
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSpinComponent, deps: [{ token: ElementRef }, { token: Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1812
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaSpinComponent, selector: "matcha-spin", inputs: { progress: "progress", color: "color", size: "size", sizeXs: ["size-xs", "sizeXs"], sizeSm: ["size-sm", "sizeSm"], sizeMd: ["size-md", "sizeMd"], sizeLg: ["size-lg", "sizeLg"], sizeXl: ["size-xl", "sizeXl"] }, ngImport: i0, template: "<div\n class=\"matcha-spin\"\n role=\"progressbar\"\n [attr.aria-valuemin]=\"0\"\n [attr.aria-valuemax]=\"100\"\n [attr.aria-valuenow]=\"progress\"\n>\n <svg [attr.viewBox]=\"'0 0 ' + diameter + ' ' + diameter\">\n <circle\n class=\"spin-placeholder\"\n [attr.cx]=\"diameter / 2\"\n [attr.cy]=\"diameter / 2\"\n [attr.r]=\"radius\"\n [attr.stroke-width]=\"strokeWidth\"\n />\n <circle\n class=\"spin-progress\"\n [attr.cx]=\"diameter / 2\"\n [attr.cy]=\"diameter / 2\"\n [attr.r]=\"radius\"\n [attr.stroke-width]=\"strokeWidth\"\n [attr.stroke]=\"color\"\n [attr.stroke-dasharray]=\"circumference\"\n [attr.stroke-dashoffset]=\"progress ? dashOffset : null\"\n />\n </svg>\n</div>\n", styles: [""] }); }
|
|
1812
1813
|
}
|
|
1813
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1814
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSpinComponent, decorators: [{
|
|
1814
1815
|
type: Component,
|
|
1815
1816
|
args: [{ selector: 'matcha-spin', standalone: false, template: "<div\n class=\"matcha-spin\"\n role=\"progressbar\"\n [attr.aria-valuemin]=\"0\"\n [attr.aria-valuemax]=\"100\"\n [attr.aria-valuenow]=\"progress\"\n>\n <svg [attr.viewBox]=\"'0 0 ' + diameter + ' ' + diameter\">\n <circle\n class=\"spin-placeholder\"\n [attr.cx]=\"diameter / 2\"\n [attr.cy]=\"diameter / 2\"\n [attr.r]=\"radius\"\n [attr.stroke-width]=\"strokeWidth\"\n />\n <circle\n class=\"spin-progress\"\n [attr.cx]=\"diameter / 2\"\n [attr.cy]=\"diameter / 2\"\n [attr.r]=\"radius\"\n [attr.stroke-width]=\"strokeWidth\"\n [attr.stroke]=\"color\"\n [attr.stroke-dasharray]=\"circumference\"\n [attr.stroke-dashoffset]=\"progress ? dashOffset : null\"\n />\n </svg>\n</div>\n" }]
|
|
1816
1817
|
}], ctorParameters: () => [{ type: i0.ElementRef, decorators: [{
|
|
@@ -1864,10 +1865,10 @@ class MatchaHintTextComponent {
|
|
|
1864
1865
|
default: return 'red';
|
|
1865
1866
|
}
|
|
1866
1867
|
}
|
|
1867
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1868
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1868
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaHintTextComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1869
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaHintTextComponent, selector: "matcha-hint-text", inputs: { type: "type", size: "size" }, ngImport: i0, template: "<div class=\"d-flex gap-4\">\n <matcha-icon color=\"{{ iconColor }}\" name=\"{{ iconName }}\"> </matcha-icon>\n <span class=\"text\"><ng-content></ng-content></span>\n</div>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaIconComponent, selector: "matcha-icon", inputs: ["name", "size", "color", "class", "loading"] }] }); }
|
|
1869
1870
|
}
|
|
1870
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1871
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaHintTextComponent, decorators: [{
|
|
1871
1872
|
type: Component,
|
|
1872
1873
|
args: [{ selector: 'matcha-hint-text', standalone: false, template: "<div class=\"d-flex gap-4\">\n <matcha-icon color=\"{{ iconColor }}\" name=\"{{ iconName }}\"> </matcha-icon>\n <span class=\"text\"><ng-content></ng-content></span>\n</div>\n" }]
|
|
1873
1874
|
}], propDecorators: { type: [{
|
|
@@ -1878,6 +1879,147 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
1878
1879
|
args: ['size']
|
|
1879
1880
|
}] } });
|
|
1880
1881
|
|
|
1882
|
+
class MatchaOptionService {
|
|
1883
|
+
constructor() {
|
|
1884
|
+
this._optionsSubject = new BehaviorSubject([]);
|
|
1885
|
+
this.options$ = this._optionsSubject.asObservable();
|
|
1886
|
+
this._activeOptionSubject = new BehaviorSubject(0);
|
|
1887
|
+
this.activeOption$ = this._activeOptionSubject.asObservable();
|
|
1888
|
+
this._canShowOptionsSubject = new BehaviorSubject(false);
|
|
1889
|
+
this.canShowOptions$ = this._canShowOptionsSubject.asObservable();
|
|
1890
|
+
this._selectedOptionSubject = new Subject();
|
|
1891
|
+
this.selectedOption$ = this._selectedOptionSubject.asObservable();
|
|
1892
|
+
}
|
|
1893
|
+
setSelectedOption(selectedOption) {
|
|
1894
|
+
this._selectedOptionSubject.next(selectedOption);
|
|
1895
|
+
}
|
|
1896
|
+
getCanShowOptions() {
|
|
1897
|
+
return this._canShowOptionsSubject.value;
|
|
1898
|
+
}
|
|
1899
|
+
setCanShowOptions(canShowOptions) {
|
|
1900
|
+
this._canShowOptionsSubject.next(canShowOptions);
|
|
1901
|
+
}
|
|
1902
|
+
updateOptions(options) {
|
|
1903
|
+
this._optionsSubject.next(options);
|
|
1904
|
+
}
|
|
1905
|
+
updateActiveOption(activeOption) {
|
|
1906
|
+
this._activeOptionSubject.next(activeOption);
|
|
1907
|
+
}
|
|
1908
|
+
resetActiveOption() {
|
|
1909
|
+
this.updateActiveOption(0);
|
|
1910
|
+
const currentOptions = this._optionsSubject.value;
|
|
1911
|
+
const activeOption = this._activeOptionSubject.value;
|
|
1912
|
+
currentOptions.forEach((option, index) => {
|
|
1913
|
+
index === activeOption ? option.setIsOptionActive(true, false) : option.setIsOptionActive(false, false);
|
|
1914
|
+
});
|
|
1915
|
+
return;
|
|
1916
|
+
}
|
|
1917
|
+
removeActiveOption() {
|
|
1918
|
+
const currentOptions = this._optionsSubject.value;
|
|
1919
|
+
currentOptions.forEach((option) => {
|
|
1920
|
+
option.isOptionActive = false;
|
|
1921
|
+
});
|
|
1922
|
+
this.updateActiveOption(-1);
|
|
1923
|
+
return;
|
|
1924
|
+
}
|
|
1925
|
+
changeActiveOption(stepsToMove) {
|
|
1926
|
+
const currentOptions = this._optionsSubject.value;
|
|
1927
|
+
const lastActiveOption = this._activeOptionSubject.value;
|
|
1928
|
+
this.updateActiveOption(Math.max(0, Math.min(currentOptions.length - 1, lastActiveOption + stepsToMove)));
|
|
1929
|
+
const currentActiveOption = this._activeOptionSubject.value;
|
|
1930
|
+
currentOptions.forEach((option, index) => {
|
|
1931
|
+
option.setIsOptionActive(index === currentActiveOption, false);
|
|
1932
|
+
});
|
|
1933
|
+
return;
|
|
1934
|
+
}
|
|
1935
|
+
selectActiveOption() {
|
|
1936
|
+
const currentOptions = this._optionsSubject.value;
|
|
1937
|
+
const activeOption = this._activeOptionSubject.value;
|
|
1938
|
+
if (currentOptions[activeOption]) {
|
|
1939
|
+
currentOptions[activeOption].selectOption();
|
|
1940
|
+
}
|
|
1941
|
+
}
|
|
1942
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaOptionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1943
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaOptionService, providedIn: 'root' }); }
|
|
1944
|
+
}
|
|
1945
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaOptionService, decorators: [{
|
|
1946
|
+
type: Injectable,
|
|
1947
|
+
args: [{
|
|
1948
|
+
providedIn: 'root',
|
|
1949
|
+
}]
|
|
1950
|
+
}], ctorParameters: () => [] });
|
|
1951
|
+
|
|
1952
|
+
class MatchaAutocompleteComponent {
|
|
1953
|
+
constructor(changeDetectorRef, matchaOptionService) {
|
|
1954
|
+
this.changeDetectorRef = changeDetectorRef;
|
|
1955
|
+
this.matchaOptionService = matchaOptionService;
|
|
1956
|
+
this.isDisplayAutocomplete = false;
|
|
1957
|
+
this.activeOption = 0;
|
|
1958
|
+
}
|
|
1959
|
+
ngOnInit() {
|
|
1960
|
+
this.matchaOptionService.canShowOptions$.subscribe((canShowOptions) => {
|
|
1961
|
+
if (!canShowOptions) {
|
|
1962
|
+
this.matchaOptionService.resetActiveOption();
|
|
1963
|
+
}
|
|
1964
|
+
this.isDisplayAutocomplete = canShowOptions;
|
|
1965
|
+
});
|
|
1966
|
+
}
|
|
1967
|
+
ngAfterContentInit() {
|
|
1968
|
+
const options = this.options.toArray();
|
|
1969
|
+
if (options.length > 0) {
|
|
1970
|
+
options[0].setIsOptionActive(true, false);
|
|
1971
|
+
}
|
|
1972
|
+
this.matchaOptionService.updateOptions(options);
|
|
1973
|
+
this.options.changes.subscribe((newOptions) => {
|
|
1974
|
+
this.matchaOptionService.updateOptions(newOptions.toArray());
|
|
1975
|
+
this.matchaOptionService.resetActiveOption();
|
|
1976
|
+
});
|
|
1977
|
+
this.matchaOptionService.activeOption$.subscribe((currentActiveOption) => {
|
|
1978
|
+
this.activeOption = currentActiveOption;
|
|
1979
|
+
this.changeDetectorRef.detectChanges();
|
|
1980
|
+
});
|
|
1981
|
+
}
|
|
1982
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: MatchaOptionService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1983
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaAutocompleteComponent, selector: "matcha-autocomplete", queries: [{ propertyName: "options", predicate: MatchaOptionComponent }], ngImport: i0, template: "<ng-container *ngIf=\"isDisplayAutocomplete\">\n <div class=\"background-bg pt-24 position-absolute z-index-2 w-100-p\">\n <ul class=\"background-surface m-0 radius-8 elevation-z-1 p-0\">\n <ng-content></ng-content>\n </ul>\n </div>\n</ng-container>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
|
|
1984
|
+
}
|
|
1985
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteComponent, decorators: [{
|
|
1986
|
+
type: Component,
|
|
1987
|
+
args: [{ selector: 'matcha-autocomplete', standalone: false, template: "<ng-container *ngIf=\"isDisplayAutocomplete\">\n <div class=\"background-bg pt-24 position-absolute z-index-2 w-100-p\">\n <ul class=\"background-surface m-0 radius-8 elevation-z-1 p-0\">\n <ng-content></ng-content>\n </ul>\n </div>\n</ng-container>\n" }]
|
|
1988
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: MatchaOptionService }], propDecorators: { options: [{
|
|
1989
|
+
type: ContentChildren,
|
|
1990
|
+
args: [MatchaOptionComponent]
|
|
1991
|
+
}] } });
|
|
1992
|
+
|
|
1993
|
+
class MatchaOptionComponent {
|
|
1994
|
+
constructor(changeDetectorRef, matchaOptionService) {
|
|
1995
|
+
this.changeDetectorRef = changeDetectorRef;
|
|
1996
|
+
this.matchaOptionService = matchaOptionService;
|
|
1997
|
+
this.isOptionActive = false;
|
|
1998
|
+
}
|
|
1999
|
+
selectOption() {
|
|
2000
|
+
this.matchaOptionService.setCanShowOptions(true);
|
|
2001
|
+
this.matchaOptionService.setSelectedOption(this.value);
|
|
2002
|
+
setTimeout(() => {
|
|
2003
|
+
this.matchaOptionService.setCanShowOptions(false);
|
|
2004
|
+
}, 300);
|
|
2005
|
+
}
|
|
2006
|
+
setIsOptionActive(isOptionActive, isMouseEvent) {
|
|
2007
|
+
if (isMouseEvent) {
|
|
2008
|
+
this.matchaOptionService.removeActiveOption();
|
|
2009
|
+
}
|
|
2010
|
+
this.isOptionActive = isOptionActive;
|
|
2011
|
+
this.changeDetectorRef.detectChanges();
|
|
2012
|
+
}
|
|
2013
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaOptionComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: MatchaOptionService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2014
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaOptionComponent, selector: "matcha-option", inputs: { value: "value" }, ngImport: i0, template: "<span\n (click)=\"selectOption()\"\n (mouseenter)=\"setIsOptionActive(true, true)\"\n (mouseleave)=\"setIsOptionActive(false, true)\"\n [class.background-bg]=\"isOptionActive\"\n class=\"d-block py-8 cursor-pointer px-16 w-100-p\">\n <ng-content></ng-content>\n</span>\n", styles: [""] }); }
|
|
2015
|
+
}
|
|
2016
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaOptionComponent, decorators: [{
|
|
2017
|
+
type: Component,
|
|
2018
|
+
args: [{ selector: 'matcha-option', standalone: false, template: "<span\n (click)=\"selectOption()\"\n (mouseenter)=\"setIsOptionActive(true, true)\"\n (mouseleave)=\"setIsOptionActive(false, true)\"\n [class.background-bg]=\"isOptionActive\"\n class=\"d-block py-8 cursor-pointer px-16 w-100-p\">\n <ng-content></ng-content>\n</span>\n" }]
|
|
2019
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: MatchaOptionService }], propDecorators: { value: [{
|
|
2020
|
+
type: Input
|
|
2021
|
+
}] } });
|
|
2022
|
+
|
|
1881
2023
|
class MatchaSlideToggleComponent {
|
|
1882
2024
|
set checked(value) {
|
|
1883
2025
|
const newCheckedState = value === '' ? true : !!value;
|
|
@@ -1942,8 +2084,8 @@ class MatchaSlideToggleComponent {
|
|
|
1942
2084
|
this.onTouched();
|
|
1943
2085
|
this.change.emit({ checked: newCheckedState });
|
|
1944
2086
|
}
|
|
1945
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1946
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2087
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSlideToggleComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2088
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaSlideToggleComponent, selector: "matcha-slide-toggle", inputs: { color: "color", checked: "checked", disabled: "disabled" }, outputs: { change: "change" }, providers: [
|
|
1947
2089
|
{
|
|
1948
2090
|
provide: NG_VALUE_ACCESSOR,
|
|
1949
2091
|
useExisting: forwardRef(() => MatchaSlideToggleComponent),
|
|
@@ -1951,7 +2093,7 @@ class MatchaSlideToggleComponent {
|
|
|
1951
2093
|
},
|
|
1952
2094
|
], usesOnChanges: true, ngImport: i0, template: "<label\n class=\"matcha-slide-toggle-wrapper flex-align-center\"\n [class.matcha-slide-toggle-disabled]=\"disabled\"\n >\n <input\n type=\"checkbox\"\n [checked]=\"checked\"\n [disabled]=\"disabled\"\n (change)=\"onInputChange($event)\"\n />\n\n <span class=\"matcha-slide-toggle-label ml-8 fw-500 fs-16 lh-20\">\n <ng-content></ng-content>\n </span>\n</label>\n", styles: [""], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1953
2095
|
}
|
|
1954
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2096
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSlideToggleComponent, decorators: [{
|
|
1955
2097
|
type: Component,
|
|
1956
2098
|
args: [{ selector: 'matcha-slide-toggle', standalone: false, providers: [
|
|
1957
2099
|
{
|
|
@@ -2028,10 +2170,10 @@ class MatchaButtonToggleComponent {
|
|
|
2028
2170
|
});
|
|
2029
2171
|
}
|
|
2030
2172
|
}
|
|
2031
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2032
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2173
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonToggleComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2174
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaButtonToggleComponent, 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\n class=\"button-group d-flex\"\n [ngClass]=\"gapClass\"\n [class.flex-wrap]=\"gap !== 0\"\n role=\"group\"\n>\n <ng-content></ng-content>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] }); }
|
|
2033
2175
|
}
|
|
2034
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2176
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonToggleComponent, decorators: [{
|
|
2035
2177
|
type: Component,
|
|
2036
2178
|
args: [{ selector: 'matcha-button-toggle', standalone: false, template: "<div\n class=\"button-group d-flex\"\n [ngClass]=\"gapClass\"\n [class.flex-wrap]=\"gap !== 0\"\n role=\"group\"\n>\n <ng-content></ng-content>\n</div>\n" }]
|
|
2037
2179
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { multiple: [{
|
|
@@ -2066,10 +2208,10 @@ class MatchaTabItemComponent {
|
|
|
2066
2208
|
get active() {
|
|
2067
2209
|
return this._active;
|
|
2068
2210
|
}
|
|
2069
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2070
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2211
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTabItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2212
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaTabItemComponent, selector: "matcha-tab", inputs: { title: "title", icon: "icon", active: "active" }, ngImport: i0, template: "<ng-content *ngIf=\"active\"></ng-content>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
|
|
2071
2213
|
}
|
|
2072
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2214
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTabItemComponent, decorators: [{
|
|
2073
2215
|
type: Component,
|
|
2074
2216
|
args: [{ selector: 'matcha-tab', standalone: false, template: "<ng-content *ngIf=\"active\"></ng-content>\n" }]
|
|
2075
2217
|
}], propDecorators: { title: [{
|
|
@@ -2124,10 +2266,10 @@ class MatchaTabsComponent {
|
|
|
2124
2266
|
this.selectTabByIndex(tabsArray.length - 1);
|
|
2125
2267
|
}
|
|
2126
2268
|
}
|
|
2127
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2128
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2269
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTabsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2270
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaTabsComponent, selector: "matcha-tabs", inputs: { activeTabIndex: "activeTabIndex" }, outputs: { tabSelected: "tabSelected" }, host: { listeners: { "keydown": "handleKeyboardEvent($event)" } }, queries: [{ propertyName: "tabs", predicate: MatchaTabItemComponent }], ngImport: i0, template: "<div class=\"flex-column gap-24 w-100-p\">\n <nav class=\"button-group grid-2 grid-sm-3 grid-md-6 gap-8 list-style-none pl-0\" role=\"tablist\">\n <button *ngFor=\"let tab of tabs; let i = index\" (click)=\"selectTabByIndex(i)\" \n [attr.aria-selected]=\"tab.active\" \n [attr.aria-controls]=\"'tab-content-' + i\" \n [ngClass]=\"{'active': tab.active}\"\n class=\"\n border-color-{{tab.active?'accent':'surface'}} background-surface\n cursor-pointer w-100-p b-2 radius-8 p-8 flex-column flex-align-center gap-4 flex-space-between\"\n role=\"tab\"\n tabindex=\"{{tab.active ? 0 : -1}}\">\n <matcha-icon [name]=\"tab.icon\" color=\"accent\" size=\"md\"></matcha-icon>\n <span class=\"text-label fw-900 fs-14 lh-16 line-clamp-2\">\n {{ tab.title }}\n </span>\n </button>\n </nav>\n\n <div>\n <ng-content></ng-content>\n </div>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: MatchaIconComponent, selector: "matcha-icon", inputs: ["name", "size", "color", "class", "loading"] }], animations: [...createAnimations] }); }
|
|
2129
2271
|
}
|
|
2130
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2272
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTabsComponent, decorators: [{
|
|
2131
2273
|
type: Component,
|
|
2132
2274
|
args: [{ selector: 'matcha-tabs', animations: [...createAnimations], standalone: false, template: "<div class=\"flex-column gap-24 w-100-p\">\n <nav class=\"button-group grid-2 grid-sm-3 grid-md-6 gap-8 list-style-none pl-0\" role=\"tablist\">\n <button *ngFor=\"let tab of tabs; let i = index\" (click)=\"selectTabByIndex(i)\" \n [attr.aria-selected]=\"tab.active\" \n [attr.aria-controls]=\"'tab-content-' + i\" \n [ngClass]=\"{'active': tab.active}\"\n class=\"\n border-color-{{tab.active?'accent':'surface'}} background-surface\n cursor-pointer w-100-p b-2 radius-8 p-8 flex-column flex-align-center gap-4 flex-space-between\"\n role=\"tab\"\n tabindex=\"{{tab.active ? 0 : -1}}\">\n <matcha-icon [name]=\"tab.icon\" color=\"accent\" size=\"md\"></matcha-icon>\n <span class=\"text-label fw-900 fs-14 lh-16 line-clamp-2\">\n {{ tab.title }}\n </span>\n </button>\n </nav>\n\n <div>\n <ng-content></ng-content>\n </div>\n</div>\n" }]
|
|
2133
2275
|
}], propDecorators: { tabs: [{
|
|
@@ -2283,10 +2425,10 @@ class MatchaTooltipDirective {
|
|
|
2283
2425
|
this.documentClickListener = null;
|
|
2284
2426
|
}
|
|
2285
2427
|
}
|
|
2286
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2287
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2428
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTooltipDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2429
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaTooltipDirective, selector: "[matchaTooltip]", inputs: { tooltipText: ["matchaTooltip", "tooltipText"], tooltipDisabled: ["matchaTooltipDisabled", "tooltipDisabled"], preferAbove: ["matchaTooltipAbove", "preferAbove"], preferBelow: ["matchaTooltipBelow", "preferBelow"], preferLeft: ["matchaTooltipLeft", "preferLeft"], preferRight: ["matchaTooltipRight", "preferRight"], tooltipEnableClose: ["matchaTooltipEnableClose", "tooltipEnableClose"] }, host: { listeners: { "mouseenter": "onMouseEnter()", "mouseleave": "onMouseLeave()", "click": "onClick($event)" } }, ngImport: i0 }); }
|
|
2288
2430
|
}
|
|
2289
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2431
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTooltipDirective, decorators: [{
|
|
2290
2432
|
type: Directive,
|
|
2291
2433
|
args: [{
|
|
2292
2434
|
selector: '[matchaTooltip]',
|
|
@@ -2325,11 +2467,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
2325
2467
|
}] } });
|
|
2326
2468
|
|
|
2327
2469
|
class MatchaTooltipModule {
|
|
2328
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2329
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2330
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2470
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTooltipModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2471
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaTooltipModule, declarations: [MatchaTooltipDirective], imports: [CommonModule], exports: [MatchaTooltipDirective] }); }
|
|
2472
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTooltipModule, imports: [CommonModule] }); }
|
|
2331
2473
|
}
|
|
2332
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2474
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTooltipModule, decorators: [{
|
|
2333
2475
|
type: NgModule,
|
|
2334
2476
|
args: [{
|
|
2335
2477
|
declarations: [MatchaTooltipDirective],
|
|
@@ -2339,11 +2481,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
2339
2481
|
}] });
|
|
2340
2482
|
|
|
2341
2483
|
class MatchaIconModule {
|
|
2342
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2343
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2344
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2484
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2485
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaIconModule, declarations: [MatchaIconComponent], imports: [CommonModule, MatchaTooltipModule], exports: [MatchaIconComponent] }); }
|
|
2486
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaIconModule, imports: [CommonModule, MatchaTooltipModule] }); }
|
|
2345
2487
|
}
|
|
2346
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2488
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaIconModule, decorators: [{
|
|
2347
2489
|
type: NgModule,
|
|
2348
2490
|
args: [{
|
|
2349
2491
|
declarations: [MatchaIconComponent],
|
|
@@ -2353,11 +2495,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
2353
2495
|
}] });
|
|
2354
2496
|
|
|
2355
2497
|
class MatchaTitleModule {
|
|
2356
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2357
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2358
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2498
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTitleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2499
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaTitleModule, declarations: [MatchaTitleComponent], imports: [CommonModule], exports: [MatchaTitleComponent] }); }
|
|
2500
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTitleModule, imports: [CommonModule] }); }
|
|
2359
2501
|
}
|
|
2360
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTitleModule, decorators: [{
|
|
2361
2503
|
type: NgModule,
|
|
2362
2504
|
args: [{
|
|
2363
2505
|
declarations: [MatchaTitleComponent],
|
|
@@ -2367,11 +2509,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
2367
2509
|
}] });
|
|
2368
2510
|
|
|
2369
2511
|
class MatchaDividerModule {
|
|
2370
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2371
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2372
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2512
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaDividerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2513
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaDividerModule, declarations: [MatchaDividerComponent], imports: [CommonModule], exports: [MatchaDividerComponent] }); }
|
|
2514
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaDividerModule, imports: [CommonModule] }); }
|
|
2373
2515
|
}
|
|
2374
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2516
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaDividerModule, decorators: [{
|
|
2375
2517
|
type: NgModule,
|
|
2376
2518
|
args: [{
|
|
2377
2519
|
declarations: [
|
|
@@ -2385,11 +2527,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
2385
2527
|
}] });
|
|
2386
2528
|
|
|
2387
2529
|
class MatchaButtonModule {
|
|
2388
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2389
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2390
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2530
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2531
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonModule, declarations: [MatchaButtonComponent], exports: [MatchaButtonComponent] }); }
|
|
2532
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonModule }); }
|
|
2391
2533
|
}
|
|
2392
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2534
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonModule, decorators: [{
|
|
2393
2535
|
type: NgModule,
|
|
2394
2536
|
args: [{
|
|
2395
2537
|
declarations: [MatchaButtonComponent],
|
|
@@ -2399,8 +2541,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
2399
2541
|
}] });
|
|
2400
2542
|
|
|
2401
2543
|
class MatchaAccordionModule {
|
|
2402
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2403
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2544
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAccordionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2545
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaAccordionModule, declarations: [MatchaAccordionComponent,
|
|
2404
2546
|
MatchaAccordionItemComponent,
|
|
2405
2547
|
MatchaAccordionHeaderComponent,
|
|
2406
2548
|
MatchaAccordionContentComponent], imports: [CommonModule,
|
|
@@ -2412,14 +2554,14 @@ class MatchaAccordionModule {
|
|
|
2412
2554
|
MatchaAccordionItemComponent,
|
|
2413
2555
|
MatchaAccordionHeaderComponent,
|
|
2414
2556
|
MatchaAccordionContentComponent] }); }
|
|
2415
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2557
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAccordionModule, imports: [CommonModule,
|
|
2416
2558
|
MatchaIconModule,
|
|
2417
2559
|
MatchaTitleModule,
|
|
2418
2560
|
MatchaDividerModule,
|
|
2419
2561
|
MatchaTooltipModule,
|
|
2420
2562
|
MatchaButtonModule] }); }
|
|
2421
2563
|
}
|
|
2422
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2564
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAccordionModule, decorators: [{
|
|
2423
2565
|
type: NgModule,
|
|
2424
2566
|
args: [{
|
|
2425
2567
|
declarations: [
|
|
@@ -2446,11 +2588,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
2446
2588
|
}] });
|
|
2447
2589
|
|
|
2448
2590
|
class MatchaInfiniteScrollModule {
|
|
2449
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2450
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2451
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2591
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaInfiniteScrollModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2592
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaInfiniteScrollModule, declarations: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent], imports: [CommonModule], exports: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent] }); }
|
|
2593
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaInfiniteScrollModule, imports: [CommonModule] }); }
|
|
2452
2594
|
}
|
|
2453
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2595
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaInfiniteScrollModule, decorators: [{
|
|
2454
2596
|
type: NgModule,
|
|
2455
2597
|
args: [{
|
|
2456
2598
|
declarations: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent],
|
|
@@ -2484,10 +2626,10 @@ class MatchaElevationDirective {
|
|
|
2484
2626
|
this._renderer.addClass(this._elementRef.nativeElement, `elevation-z-0`);
|
|
2485
2627
|
}
|
|
2486
2628
|
}
|
|
2487
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2488
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2629
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaElevationDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2630
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaElevationDirective, selector: "[elevation]", inputs: { elevation: "elevation" }, usesOnChanges: true, ngImport: i0 }); }
|
|
2489
2631
|
}
|
|
2490
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2632
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaElevationDirective, decorators: [{
|
|
2491
2633
|
type: Directive,
|
|
2492
2634
|
args: [{
|
|
2493
2635
|
selector: '[elevation]',
|
|
@@ -2499,11 +2641,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
2499
2641
|
}] } });
|
|
2500
2642
|
|
|
2501
2643
|
class MatchaElevationModule {
|
|
2502
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2503
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2504
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2644
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaElevationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2645
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaElevationModule, declarations: [MatchaElevationDirective], imports: [CommonModule], exports: [MatchaElevationDirective] }); }
|
|
2646
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaElevationModule, imports: [CommonModule] }); }
|
|
2505
2647
|
}
|
|
2506
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2648
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaElevationModule, decorators: [{
|
|
2507
2649
|
type: NgModule,
|
|
2508
2650
|
args: [{
|
|
2509
2651
|
declarations: [MatchaElevationDirective],
|
|
@@ -2631,10 +2773,10 @@ class MatchaOverlayService {
|
|
|
2631
2773
|
this.removeOverlayContainer();
|
|
2632
2774
|
}
|
|
2633
2775
|
}
|
|
2634
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2635
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2776
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaOverlayService, deps: [{ token: i0.ApplicationRef }, { token: i0.Injector }, { token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2777
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaOverlayService, providedIn: 'root' }); }
|
|
2636
2778
|
}
|
|
2637
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2779
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaOverlayService, decorators: [{
|
|
2638
2780
|
type: Injectable,
|
|
2639
2781
|
args: [{
|
|
2640
2782
|
providedIn: 'root'
|
|
@@ -2670,10 +2812,10 @@ class MatchaModalService {
|
|
|
2670
2812
|
getData() {
|
|
2671
2813
|
return this.currentData;
|
|
2672
2814
|
}
|
|
2673
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2674
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2815
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalService, deps: [{ token: MatchaOverlayService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2816
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalService, providedIn: 'root' }); }
|
|
2675
2817
|
}
|
|
2676
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2818
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalService, decorators: [{
|
|
2677
2819
|
type: Injectable,
|
|
2678
2820
|
args: [{
|
|
2679
2821
|
providedIn: 'root'
|
|
@@ -2681,8 +2823,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
2681
2823
|
}], ctorParameters: () => [{ type: MatchaOverlayService }] });
|
|
2682
2824
|
|
|
2683
2825
|
class MatchaModalModule {
|
|
2684
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2685
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2826
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2827
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalModule, declarations: [MatchaModalHeaderComponent,
|
|
2686
2828
|
MatchaModalContentComponent,
|
|
2687
2829
|
MatchaModalFooterComponent,
|
|
2688
2830
|
MatchaModalOptionsComponent,
|
|
@@ -2696,7 +2838,7 @@ class MatchaModalModule {
|
|
|
2696
2838
|
MatchaModalFooterComponent,
|
|
2697
2839
|
MatchaModalOptionsComponent,
|
|
2698
2840
|
MatchaModalComponent] }); }
|
|
2699
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2841
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalModule, providers: [
|
|
2700
2842
|
MatchaModalService,
|
|
2701
2843
|
MatchaOverlayService
|
|
2702
2844
|
], imports: [CommonModule,
|
|
@@ -2706,7 +2848,7 @@ class MatchaModalModule {
|
|
|
2706
2848
|
MatchaTooltipModule,
|
|
2707
2849
|
MatchaElevationModule] }); }
|
|
2708
2850
|
}
|
|
2709
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2851
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalModule, decorators: [{
|
|
2710
2852
|
type: NgModule,
|
|
2711
2853
|
args: [{
|
|
2712
2854
|
declarations: [
|
|
@@ -2739,21 +2881,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
2739
2881
|
}] });
|
|
2740
2882
|
|
|
2741
2883
|
class MatchaCardModule {
|
|
2742
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2743
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2884
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaCardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2885
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaCardModule, declarations: [MatchaCardComponent], imports: [CommonModule,
|
|
2744
2886
|
MatchaElevationModule,
|
|
2745
2887
|
MatchaIconModule,
|
|
2746
2888
|
MatchaTitleModule,
|
|
2747
2889
|
MatchaDividerModule,
|
|
2748
2890
|
MatchaTooltipModule], exports: [MatchaCardComponent] }); }
|
|
2749
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2891
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaCardModule, imports: [CommonModule,
|
|
2750
2892
|
MatchaElevationModule,
|
|
2751
2893
|
MatchaIconModule,
|
|
2752
2894
|
MatchaTitleModule,
|
|
2753
2895
|
MatchaDividerModule,
|
|
2754
2896
|
MatchaTooltipModule] }); }
|
|
2755
2897
|
}
|
|
2756
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2898
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaCardModule, decorators: [{
|
|
2757
2899
|
type: NgModule,
|
|
2758
2900
|
args: [{
|
|
2759
2901
|
declarations: [MatchaCardComponent],
|
|
@@ -2770,11 +2912,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
2770
2912
|
}] });
|
|
2771
2913
|
|
|
2772
2914
|
class MatchaMasonryModule {
|
|
2773
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2774
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2775
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2915
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaMasonryModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2916
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaMasonryModule, declarations: [MatchaMasonryComponent], imports: [CommonModule], exports: [MatchaMasonryComponent] }); }
|
|
2917
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaMasonryModule, imports: [CommonModule] }); }
|
|
2776
2918
|
}
|
|
2777
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2919
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaMasonryModule, decorators: [{
|
|
2778
2920
|
type: NgModule,
|
|
2779
2921
|
args: [{
|
|
2780
2922
|
declarations: [MatchaMasonryComponent],
|
|
@@ -2784,13 +2926,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
2784
2926
|
}] });
|
|
2785
2927
|
|
|
2786
2928
|
class MatchaButtonToggleModule {
|
|
2787
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2788
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2929
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2930
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonToggleModule, declarations: [MatchaButtonToggleComponent], imports: [CommonModule,
|
|
2789
2931
|
MatchaTooltipModule], exports: [MatchaButtonToggleComponent] }); }
|
|
2790
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2932
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonToggleModule, imports: [CommonModule,
|
|
2791
2933
|
MatchaTooltipModule] }); }
|
|
2792
2934
|
}
|
|
2793
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2935
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaButtonToggleModule, decorators: [{
|
|
2794
2936
|
type: NgModule,
|
|
2795
2937
|
args: [{
|
|
2796
2938
|
declarations: [MatchaButtonToggleComponent],
|
|
@@ -2803,8 +2945,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
2803
2945
|
}] });
|
|
2804
2946
|
|
|
2805
2947
|
class MatchaToolbarModule {
|
|
2806
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2807
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2948
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaToolbarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2949
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaToolbarModule, declarations: [MatchaToolbarComponent,
|
|
2808
2950
|
MatchaToolbarButtonComponent,
|
|
2809
2951
|
MatchaToolbarContentComponent,
|
|
2810
2952
|
MatchaToolbarMainButtonComponent], imports: [CommonModule,
|
|
@@ -2815,12 +2957,12 @@ class MatchaToolbarModule {
|
|
|
2815
2957
|
MatchaToolbarContentComponent,
|
|
2816
2958
|
MatchaToolbarMainButtonComponent,
|
|
2817
2959
|
MatchaTitleModule] }); }
|
|
2818
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2960
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaToolbarModule, imports: [CommonModule,
|
|
2819
2961
|
MatchaButtonModule,
|
|
2820
2962
|
MatchaTitleModule,
|
|
2821
2963
|
MatchaTooltipModule, MatchaTitleModule] }); }
|
|
2822
2964
|
}
|
|
2823
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2965
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaToolbarModule, decorators: [{
|
|
2824
2966
|
type: NgModule,
|
|
2825
2967
|
args: [{
|
|
2826
2968
|
declarations: [
|
|
@@ -2846,11 +2988,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
2846
2988
|
}] });
|
|
2847
2989
|
|
|
2848
2990
|
class MatchaGridModule {
|
|
2849
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2850
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2851
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2991
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaGridModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2992
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaGridModule, declarations: [MatchaGridComponent], imports: [CommonModule], exports: [MatchaGridComponent] }); }
|
|
2993
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaGridModule, imports: [CommonModule] }); }
|
|
2852
2994
|
}
|
|
2853
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2995
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaGridModule, decorators: [{
|
|
2854
2996
|
type: NgModule,
|
|
2855
2997
|
args: [{
|
|
2856
2998
|
declarations: [MatchaGridComponent],
|
|
@@ -2860,11 +3002,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
2860
3002
|
}] });
|
|
2861
3003
|
|
|
2862
3004
|
class MatchaFormFieldModule {
|
|
2863
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2864
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2865
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3005
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaFormFieldModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3006
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaFormFieldModule, declarations: [MatchaFormFieldComponent, MatchaLabelComponent, MatchaErrorComponent], imports: [CommonModule, MatchaIconModule], exports: [MatchaFormFieldComponent, MatchaLabelComponent, MatchaErrorComponent] }); }
|
|
3007
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaFormFieldModule, imports: [CommonModule, MatchaIconModule] }); }
|
|
2866
3008
|
}
|
|
2867
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3009
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaFormFieldModule, decorators: [{
|
|
2868
3010
|
type: NgModule,
|
|
2869
3011
|
args: [{
|
|
2870
3012
|
declarations: [MatchaFormFieldComponent, MatchaLabelComponent, MatchaErrorComponent],
|
|
@@ -2873,56 +3015,98 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
2873
3015
|
}]
|
|
2874
3016
|
}] });
|
|
2875
3017
|
|
|
2876
|
-
class
|
|
2877
|
-
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-autocomplete');
|
|
2881
|
-
}
|
|
2882
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaAutocompleteDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2883
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.12", type: MatchaAutocompleteDirective, isStandalone: false, selector: "[matcha-autocomplete]", ngImport: i0 }); }
|
|
3018
|
+
class MatchaOptionModule {
|
|
3019
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaOptionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3020
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaOptionModule, declarations: [MatchaOptionComponent], imports: [CommonModule], exports: [MatchaOptionComponent] }); }
|
|
3021
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaOptionModule, imports: [CommonModule] }); }
|
|
2884
3022
|
}
|
|
2885
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2886
|
-
type:
|
|
3023
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaOptionModule, decorators: [{
|
|
3024
|
+
type: NgModule,
|
|
2887
3025
|
args: [{
|
|
2888
|
-
|
|
2889
|
-
|
|
3026
|
+
declarations: [MatchaOptionComponent],
|
|
3027
|
+
imports: [CommonModule],
|
|
3028
|
+
exports: [MatchaOptionComponent],
|
|
2890
3029
|
}]
|
|
2891
|
-
}]
|
|
3030
|
+
}] });
|
|
2892
3031
|
|
|
2893
|
-
class
|
|
2894
|
-
|
|
3032
|
+
class MatchaAutocompleteDirective {
|
|
3033
|
+
displayAutocomplete() {
|
|
3034
|
+
this.matchaOptionService.setCanShowOptions(true);
|
|
3035
|
+
}
|
|
3036
|
+
hideAutocomplete() {
|
|
3037
|
+
setTimeout(() => {
|
|
3038
|
+
const canShowAutocomplete = this.matchaOptionService.getCanShowOptions();
|
|
3039
|
+
if (canShowAutocomplete) {
|
|
3040
|
+
this.matchaOptionService.setCanShowOptions(false);
|
|
3041
|
+
}
|
|
3042
|
+
}, 300);
|
|
3043
|
+
}
|
|
3044
|
+
onArrowDown(event) {
|
|
3045
|
+
switch (event.key) {
|
|
3046
|
+
case 'ArrowDown':
|
|
3047
|
+
this.matchaOptionService.changeActiveOption(1);
|
|
3048
|
+
break;
|
|
3049
|
+
case 'ArrowUp':
|
|
3050
|
+
this.matchaOptionService.changeActiveOption(-1);
|
|
3051
|
+
break;
|
|
3052
|
+
case 'Enter':
|
|
3053
|
+
this.matchaOptionService.selectActiveOption();
|
|
3054
|
+
break;
|
|
3055
|
+
default:
|
|
3056
|
+
break;
|
|
3057
|
+
}
|
|
3058
|
+
}
|
|
3059
|
+
constructor(ngControl, _elementRef, matchaOptionService) {
|
|
3060
|
+
this.ngControl = ngControl;
|
|
2895
3061
|
this._elementRef = _elementRef;
|
|
2896
|
-
this.
|
|
2897
|
-
|
|
2898
|
-
|
|
3062
|
+
this.matchaOptionService = matchaOptionService;
|
|
3063
|
+
}
|
|
3064
|
+
ngOnInit() {
|
|
3065
|
+
this.matchaOptionService.selectedOption$.subscribe((option) => {
|
|
3066
|
+
this._updateInputValue(option);
|
|
3067
|
+
});
|
|
2899
3068
|
}
|
|
2900
|
-
|
|
2901
|
-
|
|
3069
|
+
_updateInputValue(selectedOption) {
|
|
3070
|
+
if (this.ngControl.control) {
|
|
3071
|
+
this.ngControl.control.setValue(selectedOption);
|
|
3072
|
+
this.ngControl.control.markAsDirty();
|
|
3073
|
+
this.matchaOptionService.setCanShowOptions(false);
|
|
3074
|
+
this._elementRef.nativeElement.blur();
|
|
3075
|
+
}
|
|
3076
|
+
}
|
|
3077
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteDirective, deps: [{ token: i1$1.NgControl }, { token: i0.ElementRef }, { token: MatchaOptionService }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3078
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaAutocompleteDirective, selector: "[matchaAutocomplete]", inputs: { matchaAutocomplete: "matchaAutocomplete" }, host: { listeners: { "focus": "displayAutocomplete()", "focusout": "hideAutocomplete()", "keydown": "onArrowDown($event)" } }, ngImport: i0 }); }
|
|
2902
3079
|
}
|
|
2903
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3080
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteDirective, decorators: [{
|
|
2904
3081
|
type: Directive,
|
|
2905
3082
|
args: [{
|
|
2906
|
-
selector: '[
|
|
2907
|
-
standalone: false
|
|
3083
|
+
selector: '[matchaAutocomplete]',
|
|
3084
|
+
standalone: false,
|
|
2908
3085
|
}]
|
|
2909
|
-
}], ctorParameters: () => [{ type:
|
|
3086
|
+
}], ctorParameters: () => [{ type: i1$1.NgControl }, { type: i0.ElementRef }, { type: MatchaOptionService }], propDecorators: { matchaAutocomplete: [{
|
|
3087
|
+
type: Input
|
|
3088
|
+
}], displayAutocomplete: [{
|
|
3089
|
+
type: HostListener,
|
|
3090
|
+
args: ['focus']
|
|
3091
|
+
}], hideAutocomplete: [{
|
|
3092
|
+
type: HostListener,
|
|
3093
|
+
args: ['focusout']
|
|
3094
|
+
}], onArrowDown: [{
|
|
3095
|
+
type: HostListener,
|
|
3096
|
+
args: ['keydown', ['$event']]
|
|
3097
|
+
}] } });
|
|
2910
3098
|
|
|
2911
3099
|
class MatchaAutocompleteModule {
|
|
2912
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2913
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2914
|
-
|
|
2915
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaAutocompleteModule }); }
|
|
3100
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3101
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteModule, declarations: [MatchaAutocompleteComponent, MatchaAutocompleteDirective], imports: [CommonModule, FormsModule, MatchaOptionModule], exports: [MatchaAutocompleteComponent, MatchaAutocompleteDirective] }); }
|
|
3102
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteModule, imports: [CommonModule, FormsModule, MatchaOptionModule] }); }
|
|
2916
3103
|
}
|
|
2917
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3104
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaAutocompleteModule, decorators: [{
|
|
2918
3105
|
type: NgModule,
|
|
2919
3106
|
args: [{
|
|
2920
|
-
declarations: [
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
],
|
|
2924
|
-
imports: [],
|
|
2925
|
-
exports: [MatchaAutocompleteDirective, MatchaAutocompleteOverviewDirective],
|
|
3107
|
+
declarations: [MatchaAutocompleteComponent, MatchaAutocompleteDirective],
|
|
3108
|
+
imports: [CommonModule, FormsModule, MatchaOptionModule],
|
|
3109
|
+
exports: [MatchaAutocompleteComponent, MatchaAutocompleteDirective],
|
|
2926
3110
|
}]
|
|
2927
3111
|
}] });
|
|
2928
3112
|
|
|
@@ -2933,10 +3117,10 @@ class MatchaBadgeDirective {
|
|
|
2933
3117
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
2934
3118
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-badge');
|
|
2935
3119
|
}
|
|
2936
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2937
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3120
|
+
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 }); }
|
|
3121
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaBadgeDirective, selector: "[matcha-badge]", ngImport: i0 }); }
|
|
2938
3122
|
}
|
|
2939
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3123
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBadgeDirective, decorators: [{
|
|
2940
3124
|
type: Directive,
|
|
2941
3125
|
args: [{
|
|
2942
3126
|
selector: '[matcha-badge]',
|
|
@@ -2945,11 +3129,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
2945
3129
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
2946
3130
|
|
|
2947
3131
|
class MatchaBadgeModule {
|
|
2948
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2949
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2950
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3132
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBadgeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3133
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaBadgeModule, declarations: [MatchaBadgeDirective], exports: [MatchaBadgeDirective] }); }
|
|
3134
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBadgeModule }); }
|
|
2951
3135
|
}
|
|
2952
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3136
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaBadgeModule, decorators: [{
|
|
2953
3137
|
type: NgModule,
|
|
2954
3138
|
args: [{
|
|
2955
3139
|
declarations: [MatchaBadgeDirective],
|
|
@@ -2959,11 +3143,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
2959
3143
|
}] });
|
|
2960
3144
|
|
|
2961
3145
|
class MatchaRippleModule {
|
|
2962
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2963
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2964
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3146
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaRippleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3147
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaRippleModule, declarations: [MatchaRippleDirective], imports: [CommonModule], exports: [MatchaRippleDirective] }); }
|
|
3148
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaRippleModule, imports: [CommonModule] }); }
|
|
2965
3149
|
}
|
|
2966
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3150
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaRippleModule, decorators: [{
|
|
2967
3151
|
type: NgModule,
|
|
2968
3152
|
args: [{
|
|
2969
3153
|
declarations: [
|
|
@@ -2979,11 +3163,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
2979
3163
|
}] });
|
|
2980
3164
|
|
|
2981
3165
|
class MatchaCheckboxModule {
|
|
2982
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2983
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2984
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3166
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaCheckboxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3167
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaCheckboxModule, declarations: [MatchaCheckboxComponent], imports: [CommonModule, MatchaRippleModule], exports: [MatchaCheckboxComponent] }); }
|
|
3168
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaCheckboxModule, imports: [CommonModule, MatchaRippleModule] }); }
|
|
2985
3169
|
}
|
|
2986
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3170
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaCheckboxModule, decorators: [{
|
|
2987
3171
|
type: NgModule,
|
|
2988
3172
|
args: [{
|
|
2989
3173
|
declarations: [
|
|
@@ -3003,10 +3187,10 @@ class MatchaChipsDirective {
|
|
|
3003
3187
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3004
3188
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-chips');
|
|
3005
3189
|
}
|
|
3006
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3007
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3190
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaChipsDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3191
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaChipsDirective, selector: "[matchaChips]", ngImport: i0 }); }
|
|
3008
3192
|
}
|
|
3009
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3193
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaChipsDirective, decorators: [{
|
|
3010
3194
|
type: Directive,
|
|
3011
3195
|
args: [{
|
|
3012
3196
|
selector: '[matchaChips]',
|
|
@@ -3015,11 +3199,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3015
3199
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3016
3200
|
|
|
3017
3201
|
class MatchaChipsModule {
|
|
3018
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3019
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3020
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3202
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaChipsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3203
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaChipsModule, declarations: [MatchaChipsDirective], exports: [MatchaChipsDirective] }); }
|
|
3204
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaChipsModule }); }
|
|
3021
3205
|
}
|
|
3022
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3206
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaChipsModule, decorators: [{
|
|
3023
3207
|
type: NgModule,
|
|
3024
3208
|
args: [{
|
|
3025
3209
|
declarations: [MatchaChipsDirective],
|
|
@@ -3037,10 +3221,10 @@ class MatchaDatepickerDirective {
|
|
|
3037
3221
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3038
3222
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-datepicker');
|
|
3039
3223
|
}
|
|
3040
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3041
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3224
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaDatepickerDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3225
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaDatepickerDirective, selector: "[matcha-datepicker]", ngImport: i0 }); }
|
|
3042
3226
|
}
|
|
3043
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3227
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaDatepickerDirective, decorators: [{
|
|
3044
3228
|
type: Directive,
|
|
3045
3229
|
args: [{
|
|
3046
3230
|
selector: '[matcha-datepicker]',
|
|
@@ -3049,11 +3233,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3049
3233
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3050
3234
|
|
|
3051
3235
|
class MatchaDatepickerModule {
|
|
3052
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3053
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3054
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3236
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaDatepickerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3237
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaDatepickerModule, declarations: [MatchaDatepickerDirective], exports: [MatchaDatepickerDirective] }); }
|
|
3238
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaDatepickerModule }); }
|
|
3055
3239
|
}
|
|
3056
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3240
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaDatepickerModule, decorators: [{
|
|
3057
3241
|
type: NgModule,
|
|
3058
3242
|
args: [{
|
|
3059
3243
|
declarations: [MatchaDatepickerDirective],
|
|
@@ -3063,13 +3247,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3063
3247
|
}] });
|
|
3064
3248
|
|
|
3065
3249
|
class MatchaHintTextModule {
|
|
3066
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3067
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3250
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaHintTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3251
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaHintTextModule, declarations: [MatchaHintTextComponent], imports: [CommonModule,
|
|
3068
3252
|
MatchaIconModule], exports: [MatchaHintTextComponent] }); }
|
|
3069
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3253
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaHintTextModule, imports: [CommonModule,
|
|
3070
3254
|
MatchaIconModule] }); }
|
|
3071
3255
|
}
|
|
3072
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3256
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaHintTextModule, decorators: [{
|
|
3073
3257
|
type: NgModule,
|
|
3074
3258
|
args: [{
|
|
3075
3259
|
declarations: [MatchaHintTextComponent],
|
|
@@ -3088,10 +3272,10 @@ class MatchaInputDirective {
|
|
|
3088
3272
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3089
3273
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-input');
|
|
3090
3274
|
}
|
|
3091
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3092
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3275
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaInputDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3276
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaInputDirective, selector: "[matcha-input]", ngImport: i0 }); }
|
|
3093
3277
|
}
|
|
3094
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3278
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaInputDirective, decorators: [{
|
|
3095
3279
|
type: Directive,
|
|
3096
3280
|
args: [{
|
|
3097
3281
|
selector: '[matcha-input]',
|
|
@@ -3100,11 +3284,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3100
3284
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3101
3285
|
|
|
3102
3286
|
class MatchaInputModule {
|
|
3103
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3104
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3105
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3287
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaInputModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3288
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaInputModule, declarations: [MatchaInputDirective], exports: [MatchaInputDirective] }); }
|
|
3289
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaInputModule }); }
|
|
3106
3290
|
}
|
|
3107
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3291
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaInputModule, decorators: [{
|
|
3108
3292
|
type: NgModule,
|
|
3109
3293
|
args: [{
|
|
3110
3294
|
declarations: [MatchaInputDirective],
|
|
@@ -3134,10 +3318,10 @@ class MatchaMenuTriggerForDirective {
|
|
|
3134
3318
|
this.menu.closeMenu();
|
|
3135
3319
|
}
|
|
3136
3320
|
}
|
|
3137
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3138
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3321
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaMenuTriggerForDirective, deps: [{ token: ElementRef }, { token: Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3322
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaMenuTriggerForDirective, selector: "[matchaMenuTriggerFor]", inputs: { menu: ["matchaMenuTriggerFor", "menu"] }, host: { listeners: { "click": "onClick($event)", "mouseenter": "onMouseEnter()", "mouseleave": "onMouseLeave()" } }, exportAs: ["matchaMenuTriggerFor"], ngImport: i0 }); }
|
|
3139
3323
|
}
|
|
3140
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3324
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaMenuTriggerForDirective, decorators: [{
|
|
3141
3325
|
type: Directive,
|
|
3142
3326
|
args: [{
|
|
3143
3327
|
selector: '[matchaMenuTriggerFor]',
|
|
@@ -3165,13 +3349,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3165
3349
|
}] } });
|
|
3166
3350
|
|
|
3167
3351
|
class MatchaMenuModule {
|
|
3168
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3169
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3352
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3353
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaMenuModule, declarations: [MatchaMenuComponent,
|
|
3170
3354
|
MatchaMenuTriggerForDirective], imports: [CommonModule], exports: [MatchaMenuComponent,
|
|
3171
3355
|
MatchaMenuTriggerForDirective] }); }
|
|
3172
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3356
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaMenuModule, imports: [CommonModule] }); }
|
|
3173
3357
|
}
|
|
3174
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3358
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaMenuModule, decorators: [{
|
|
3175
3359
|
type: NgModule,
|
|
3176
3360
|
args: [{
|
|
3177
3361
|
declarations: [
|
|
@@ -3230,10 +3414,10 @@ class MatchaOverflowDraggableComponent {
|
|
|
3230
3414
|
const activeClasses = `${draggableReference}`;
|
|
3231
3415
|
return activeClasses;
|
|
3232
3416
|
}
|
|
3233
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3234
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
3417
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaOverflowDraggableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3418
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaOverflowDraggableComponent, selector: "matcha-overflow-draggable", inputs: { dragRef: "dragRef" }, ngImport: i0, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
|
|
3235
3419
|
}
|
|
3236
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3420
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaOverflowDraggableComponent, decorators: [{
|
|
3237
3421
|
type: Component,
|
|
3238
3422
|
args: [{ selector: 'matcha-overflow-draggable', standalone: false, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
3239
3423
|
}], propDecorators: { dragRef: [{
|
|
@@ -3247,10 +3431,10 @@ class MatchaPaginatorDirective {
|
|
|
3247
3431
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3248
3432
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-paginator');
|
|
3249
3433
|
}
|
|
3250
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3251
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3434
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaPaginatorDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3435
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaPaginatorDirective, selector: "[matchaPaginator]", ngImport: i0 }); }
|
|
3252
3436
|
}
|
|
3253
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3437
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaPaginatorDirective, decorators: [{
|
|
3254
3438
|
type: Directive,
|
|
3255
3439
|
args: [{
|
|
3256
3440
|
selector: '[matchaPaginator]',
|
|
@@ -3259,11 +3443,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3259
3443
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3260
3444
|
|
|
3261
3445
|
class MatchaPaginatorModule {
|
|
3262
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3263
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3264
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3446
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaPaginatorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3447
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaPaginatorModule, declarations: [MatchaPaginatorDirective], imports: [CommonModule], exports: [MatchaPaginatorDirective] }); }
|
|
3448
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaPaginatorModule, imports: [CommonModule] }); }
|
|
3265
3449
|
}
|
|
3266
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3450
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaPaginatorModule, decorators: [{
|
|
3267
3451
|
type: NgModule,
|
|
3268
3452
|
args: [{
|
|
3269
3453
|
declarations: [MatchaPaginatorDirective],
|
|
@@ -3279,10 +3463,10 @@ class MatchaProgressBarDirective {
|
|
|
3279
3463
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3280
3464
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-progress-bar');
|
|
3281
3465
|
}
|
|
3282
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3283
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3466
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaProgressBarDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3467
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaProgressBarDirective, selector: "[matcha-progress-bar]", ngImport: i0 }); }
|
|
3284
3468
|
}
|
|
3285
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3469
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaProgressBarDirective, decorators: [{
|
|
3286
3470
|
type: Directive,
|
|
3287
3471
|
args: [{
|
|
3288
3472
|
selector: '[matcha-progress-bar]',
|
|
@@ -3291,11 +3475,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3291
3475
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3292
3476
|
|
|
3293
3477
|
class MatchaProgressBarModule {
|
|
3294
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3295
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3296
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3478
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaProgressBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3479
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaProgressBarModule, declarations: [MatchaProgressBarDirective], imports: [CommonModule], exports: [MatchaProgressBarDirective] }); }
|
|
3480
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaProgressBarModule, imports: [CommonModule] }); }
|
|
3297
3481
|
}
|
|
3298
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3482
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaProgressBarModule, decorators: [{
|
|
3299
3483
|
type: NgModule,
|
|
3300
3484
|
args: [{
|
|
3301
3485
|
declarations: [MatchaProgressBarDirective],
|
|
@@ -3315,10 +3499,10 @@ class MatchaRadioButtonDirective {
|
|
|
3315
3499
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3316
3500
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-radio-button');
|
|
3317
3501
|
}
|
|
3318
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3319
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3502
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaRadioButtonDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3503
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaRadioButtonDirective, selector: "[matchaRadioButton]", ngImport: i0 }); }
|
|
3320
3504
|
}
|
|
3321
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3505
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaRadioButtonDirective, decorators: [{
|
|
3322
3506
|
type: Directive,
|
|
3323
3507
|
args: [{
|
|
3324
3508
|
selector: '[matchaRadioButton]',
|
|
@@ -3327,11 +3511,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3327
3511
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3328
3512
|
|
|
3329
3513
|
class MatchaRadioButtonModule {
|
|
3330
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3331
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3332
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3514
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaRadioButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3515
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaRadioButtonModule, declarations: [MatchaRadioButtonDirective], imports: [CommonModule], exports: [MatchaRadioButtonDirective] }); }
|
|
3516
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaRadioButtonModule, imports: [CommonModule] }); }
|
|
3333
3517
|
}
|
|
3334
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3518
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaRadioButtonModule, decorators: [{
|
|
3335
3519
|
type: NgModule,
|
|
3336
3520
|
args: [{
|
|
3337
3521
|
declarations: [MatchaRadioButtonDirective],
|
|
@@ -3349,10 +3533,10 @@ class MatchaSelectDirective {
|
|
|
3349
3533
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3350
3534
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-select');
|
|
3351
3535
|
}
|
|
3352
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3353
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3536
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSelectDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3537
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaSelectDirective, selector: "[matcha-select]", ngImport: i0 }); }
|
|
3354
3538
|
}
|
|
3355
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3539
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSelectDirective, decorators: [{
|
|
3356
3540
|
type: Directive,
|
|
3357
3541
|
args: [{
|
|
3358
3542
|
selector: '[matcha-select]',
|
|
@@ -3361,11 +3545,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3361
3545
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3362
3546
|
|
|
3363
3547
|
class MatchaSelectModule {
|
|
3364
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3365
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3366
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3548
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSelectModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3549
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaSelectModule, declarations: [MatchaSelectDirective], imports: [CommonModule], exports: [MatchaSelectDirective] }); }
|
|
3550
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSelectModule, imports: [CommonModule] }); }
|
|
3367
3551
|
}
|
|
3368
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3552
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSelectModule, decorators: [{
|
|
3369
3553
|
type: NgModule,
|
|
3370
3554
|
args: [{
|
|
3371
3555
|
declarations: [MatchaSelectDirective],
|
|
@@ -3381,10 +3565,10 @@ class MatchaSidenavDirective {
|
|
|
3381
3565
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3382
3566
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-sidenav');
|
|
3383
3567
|
}
|
|
3384
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3385
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3568
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSidenavDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3569
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaSidenavDirective, selector: "[matcha-sidenav]", ngImport: i0 }); }
|
|
3386
3570
|
}
|
|
3387
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3571
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSidenavDirective, decorators: [{
|
|
3388
3572
|
type: Directive,
|
|
3389
3573
|
args: [{
|
|
3390
3574
|
selector: '[matcha-sidenav]',
|
|
@@ -3393,11 +3577,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3393
3577
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3394
3578
|
|
|
3395
3579
|
class MatchaSidenavModule {
|
|
3396
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3397
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3398
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3580
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSidenavModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3581
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaSidenavModule, declarations: [MatchaSidenavDirective], imports: [CommonModule], exports: [MatchaSidenavDirective] }); }
|
|
3582
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSidenavModule, imports: [CommonModule] }); }
|
|
3399
3583
|
}
|
|
3400
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3584
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSidenavModule, decorators: [{
|
|
3401
3585
|
type: NgModule,
|
|
3402
3586
|
args: [{
|
|
3403
3587
|
declarations: [MatchaSidenavDirective],
|
|
@@ -3407,11 +3591,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3407
3591
|
}] });
|
|
3408
3592
|
|
|
3409
3593
|
class MatchaSlideToggleModule {
|
|
3410
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3411
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3412
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3594
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSlideToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3595
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaSlideToggleModule, declarations: [MatchaSlideToggleComponent], imports: [CommonModule, FormsModule], exports: [MatchaSlideToggleComponent] }); }
|
|
3596
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSlideToggleModule, imports: [CommonModule, FormsModule] }); }
|
|
3413
3597
|
}
|
|
3414
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3598
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSlideToggleModule, decorators: [{
|
|
3415
3599
|
type: NgModule,
|
|
3416
3600
|
args: [{
|
|
3417
3601
|
declarations: [MatchaSlideToggleComponent],
|
|
@@ -3429,10 +3613,10 @@ class MatchaSliderDirective {
|
|
|
3429
3613
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3430
3614
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-slider');
|
|
3431
3615
|
}
|
|
3432
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3433
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3616
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSliderDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3617
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaSliderDirective, selector: "[matchaSlider]", ngImport: i0 }); }
|
|
3434
3618
|
}
|
|
3435
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3619
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSliderDirective, decorators: [{
|
|
3436
3620
|
type: Directive,
|
|
3437
3621
|
args: [{
|
|
3438
3622
|
selector: '[matchaSlider]',
|
|
@@ -3441,11 +3625,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3441
3625
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3442
3626
|
|
|
3443
3627
|
class MatchaSliderModule {
|
|
3444
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3445
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3446
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3628
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSliderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3629
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaSliderModule, declarations: [MatchaSliderDirective], imports: [CommonModule], exports: [MatchaSliderDirective] }); }
|
|
3630
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSliderModule, imports: [CommonModule] }); }
|
|
3447
3631
|
}
|
|
3448
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3632
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSliderModule, decorators: [{
|
|
3449
3633
|
type: NgModule,
|
|
3450
3634
|
args: [{
|
|
3451
3635
|
declarations: [MatchaSliderDirective],
|
|
@@ -3463,10 +3647,10 @@ class MatchaSnackBarDirective {
|
|
|
3463
3647
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3464
3648
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-snackbar');
|
|
3465
3649
|
}
|
|
3466
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3467
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3650
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSnackBarDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3651
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaSnackBarDirective, selector: "[matchaSnackBar]", ngImport: i0 }); }
|
|
3468
3652
|
}
|
|
3469
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3653
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSnackBarDirective, decorators: [{
|
|
3470
3654
|
type: Directive,
|
|
3471
3655
|
args: [{
|
|
3472
3656
|
selector: '[matchaSnackBar]',
|
|
@@ -3475,11 +3659,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3475
3659
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3476
3660
|
|
|
3477
3661
|
class MatchaSnackBarModule {
|
|
3478
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3479
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3480
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3662
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSnackBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3663
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaSnackBarModule, declarations: [MatchaSnackBarDirective], imports: [CommonModule], exports: [MatchaSnackBarDirective] }); }
|
|
3664
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSnackBarModule, imports: [CommonModule] }); }
|
|
3481
3665
|
}
|
|
3482
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3666
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSnackBarModule, decorators: [{
|
|
3483
3667
|
type: NgModule,
|
|
3484
3668
|
args: [{
|
|
3485
3669
|
declarations: [MatchaSnackBarDirective],
|
|
@@ -3495,10 +3679,10 @@ class MatchaSortHeaderDirective {
|
|
|
3495
3679
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3496
3680
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-sort-header');
|
|
3497
3681
|
}
|
|
3498
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3499
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3682
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSortHeaderDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3683
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaSortHeaderDirective, selector: "[matchaSortHeader]", ngImport: i0 }); }
|
|
3500
3684
|
}
|
|
3501
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3685
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSortHeaderDirective, decorators: [{
|
|
3502
3686
|
type: Directive,
|
|
3503
3687
|
args: [{
|
|
3504
3688
|
selector: '[matchaSortHeader]',
|
|
@@ -3507,11 +3691,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3507
3691
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3508
3692
|
|
|
3509
3693
|
class MatchaSortHeaderModule {
|
|
3510
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3511
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3512
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3694
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSortHeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3695
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaSortHeaderModule, declarations: [MatchaSortHeaderDirective], imports: [CommonModule], exports: [MatchaSortHeaderDirective] }); }
|
|
3696
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSortHeaderModule, imports: [CommonModule] }); }
|
|
3513
3697
|
}
|
|
3514
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3698
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSortHeaderModule, decorators: [{
|
|
3515
3699
|
type: NgModule,
|
|
3516
3700
|
args: [{
|
|
3517
3701
|
declarations: [MatchaSortHeaderDirective],
|
|
@@ -3521,11 +3705,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3521
3705
|
}] });
|
|
3522
3706
|
|
|
3523
3707
|
class MatchaSpinModule {
|
|
3524
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3525
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3526
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3708
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSpinModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3709
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaSpinModule, declarations: [MatchaSpinComponent], imports: [CommonModule], exports: [MatchaSpinComponent] }); }
|
|
3710
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSpinModule, imports: [CommonModule] }); }
|
|
3527
3711
|
}
|
|
3528
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3712
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaSpinModule, decorators: [{
|
|
3529
3713
|
type: NgModule,
|
|
3530
3714
|
args: [{
|
|
3531
3715
|
declarations: [MatchaSpinComponent],
|
|
@@ -3543,10 +3727,10 @@ class MatchaTableDirective {
|
|
|
3543
3727
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3544
3728
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-table');
|
|
3545
3729
|
}
|
|
3546
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3547
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3730
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTableDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3731
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaTableDirective, selector: "[matchaTable]", ngImport: i0 }); }
|
|
3548
3732
|
}
|
|
3549
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3733
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTableDirective, decorators: [{
|
|
3550
3734
|
type: Directive,
|
|
3551
3735
|
args: [{
|
|
3552
3736
|
selector: '[matchaTable]',
|
|
@@ -3555,11 +3739,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3555
3739
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3556
3740
|
|
|
3557
3741
|
class MatchaTableModule {
|
|
3558
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3559
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3560
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3742
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3743
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaTableModule, declarations: [MatchaTableDirective], imports: [CommonModule], exports: [MatchaTableDirective] }); }
|
|
3744
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTableModule, imports: [CommonModule] }); }
|
|
3561
3745
|
}
|
|
3562
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3746
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTableModule, decorators: [{
|
|
3563
3747
|
type: NgModule,
|
|
3564
3748
|
args: [{
|
|
3565
3749
|
declarations: [MatchaTableDirective],
|
|
@@ -3569,15 +3753,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3569
3753
|
}] });
|
|
3570
3754
|
|
|
3571
3755
|
class MatchaTabsModule {
|
|
3572
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3573
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3756
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTabsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3757
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaTabsModule, declarations: [MatchaTabsComponent, MatchaTabItemComponent], imports: [CommonModule,
|
|
3574
3758
|
MatchaTooltipModule,
|
|
3575
3759
|
MatchaIconModule], exports: [MatchaTabsComponent, MatchaTabItemComponent] }); }
|
|
3576
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3760
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTabsModule, imports: [CommonModule,
|
|
3577
3761
|
MatchaTooltipModule,
|
|
3578
3762
|
MatchaIconModule] }); }
|
|
3579
3763
|
}
|
|
3580
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3764
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTabsModule, decorators: [{
|
|
3581
3765
|
type: NgModule,
|
|
3582
3766
|
args: [{
|
|
3583
3767
|
declarations: [MatchaTabsComponent, MatchaTabItemComponent],
|
|
@@ -3597,10 +3781,10 @@ class MatchaTreeDirective {
|
|
|
3597
3781
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
3598
3782
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-tree');
|
|
3599
3783
|
}
|
|
3600
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3601
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3784
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTreeDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3785
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaTreeDirective, selector: "[matchaTree]", ngImport: i0 }); }
|
|
3602
3786
|
}
|
|
3603
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3787
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTreeDirective, decorators: [{
|
|
3604
3788
|
type: Directive,
|
|
3605
3789
|
args: [{
|
|
3606
3790
|
selector: '[matchaTree]',
|
|
@@ -3609,11 +3793,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3609
3793
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
3610
3794
|
|
|
3611
3795
|
class MatchaTreeModule {
|
|
3612
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3613
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3614
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3796
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTreeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3797
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaTreeModule, declarations: [MatchaTreeDirective], imports: [CommonModule], exports: [MatchaTreeDirective] }); }
|
|
3798
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTreeModule, imports: [CommonModule] }); }
|
|
3615
3799
|
}
|
|
3616
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3800
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTreeModule, decorators: [{
|
|
3617
3801
|
type: NgModule,
|
|
3618
3802
|
args: [{
|
|
3619
3803
|
declarations: [MatchaTreeDirective],
|
|
@@ -3623,235 +3807,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3623
3807
|
}] });
|
|
3624
3808
|
|
|
3625
3809
|
class MatchaComponentsModule {
|
|
3626
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3627
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3628
|
-
|
|
3629
|
-
ReactiveFormsModule,
|
|
3630
|
-
MatchaAccordionModule,
|
|
3631
|
-
MatchaAutocompleteModule,
|
|
3632
|
-
MatchaBadgeModule,
|
|
3633
|
-
MatchaButtonModule,
|
|
3634
|
-
MatchaButtonToggleModule,
|
|
3635
|
-
MatchaCardModule,
|
|
3636
|
-
MatchaCheckboxModule,
|
|
3637
|
-
MatchaChipsModule,
|
|
3638
|
-
MatchaDatepickerModule,
|
|
3639
|
-
MatchaDividerModule,
|
|
3640
|
-
MatchaElevationModule,
|
|
3641
|
-
MatchaFormFieldModule,
|
|
3642
|
-
MatchaHintTextModule,
|
|
3643
|
-
MatchaIconModule,
|
|
3644
|
-
MatchaInfiniteScrollModule,
|
|
3645
|
-
MatchaInputModule,
|
|
3646
|
-
MatchaMasonryModule,
|
|
3647
|
-
MatchaMenuModule,
|
|
3648
|
-
MatchaModalModule,
|
|
3649
|
-
MatchaPaginatorModule,
|
|
3650
|
-
MatchaProgressBarModule,
|
|
3651
|
-
MatchaRadioButtonModule,
|
|
3652
|
-
MatchaRippleModule,
|
|
3653
|
-
MatchaSelectModule,
|
|
3654
|
-
MatchaSidenavModule,
|
|
3655
|
-
MatchaSlideToggleModule,
|
|
3656
|
-
MatchaSliderModule,
|
|
3657
|
-
MatchaSnackBarModule,
|
|
3658
|
-
MatchaSortHeaderModule,
|
|
3659
|
-
MatchaSpinModule,
|
|
3660
|
-
MatchaTableModule,
|
|
3661
|
-
MatchaTabsModule,
|
|
3662
|
-
MatchaTitleModule,
|
|
3663
|
-
MatchaTooltipModule,
|
|
3664
|
-
MatchaTreeModule], exports: [MatchaAccordionModule,
|
|
3665
|
-
MatchaAutocompleteModule,
|
|
3666
|
-
MatchaBadgeModule,
|
|
3667
|
-
MatchaButtonModule,
|
|
3668
|
-
MatchaButtonToggleModule,
|
|
3669
|
-
MatchaCardModule,
|
|
3670
|
-
MatchaCheckboxModule,
|
|
3671
|
-
MatchaChipsModule,
|
|
3672
|
-
MatchaDatepickerModule,
|
|
3673
|
-
MatchaDividerModule,
|
|
3674
|
-
MatchaElevationModule,
|
|
3675
|
-
MatchaFormFieldModule,
|
|
3676
|
-
MatchaHintTextModule,
|
|
3677
|
-
MatchaIconModule,
|
|
3678
|
-
MatchaInfiniteScrollModule,
|
|
3679
|
-
MatchaInputModule,
|
|
3680
|
-
MatchaMasonryModule,
|
|
3681
|
-
MatchaMenuModule,
|
|
3682
|
-
MatchaModalModule,
|
|
3683
|
-
MatchaPaginatorModule,
|
|
3684
|
-
MatchaProgressBarModule,
|
|
3685
|
-
MatchaRadioButtonModule,
|
|
3686
|
-
MatchaRippleModule,
|
|
3687
|
-
MatchaSelectModule,
|
|
3688
|
-
MatchaSidenavModule,
|
|
3689
|
-
MatchaSlideToggleModule,
|
|
3690
|
-
MatchaSliderModule,
|
|
3691
|
-
MatchaSnackBarModule,
|
|
3692
|
-
MatchaSortHeaderModule,
|
|
3693
|
-
MatchaSpinModule,
|
|
3694
|
-
MatchaTableModule,
|
|
3695
|
-
MatchaTabsModule,
|
|
3696
|
-
MatchaTitleModule,
|
|
3697
|
-
MatchaTooltipModule,
|
|
3698
|
-
MatchaTreeModule] }); }
|
|
3699
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaComponentsModule, imports: [CommonModule,
|
|
3700
|
-
FormsModule,
|
|
3701
|
-
ReactiveFormsModule,
|
|
3702
|
-
MatchaAccordionModule,
|
|
3703
|
-
MatchaAutocompleteModule,
|
|
3704
|
-
MatchaBadgeModule,
|
|
3705
|
-
MatchaButtonModule,
|
|
3706
|
-
MatchaButtonToggleModule,
|
|
3707
|
-
MatchaCardModule,
|
|
3708
|
-
MatchaCheckboxModule,
|
|
3709
|
-
MatchaChipsModule,
|
|
3710
|
-
MatchaDatepickerModule,
|
|
3711
|
-
MatchaDividerModule,
|
|
3712
|
-
MatchaElevationModule,
|
|
3713
|
-
MatchaFormFieldModule,
|
|
3714
|
-
MatchaHintTextModule,
|
|
3715
|
-
MatchaIconModule,
|
|
3716
|
-
MatchaInfiniteScrollModule,
|
|
3717
|
-
MatchaInputModule,
|
|
3718
|
-
MatchaMasonryModule,
|
|
3719
|
-
MatchaMenuModule,
|
|
3720
|
-
MatchaModalModule,
|
|
3721
|
-
MatchaPaginatorModule,
|
|
3722
|
-
MatchaProgressBarModule,
|
|
3723
|
-
MatchaRadioButtonModule,
|
|
3724
|
-
MatchaRippleModule,
|
|
3725
|
-
MatchaSelectModule,
|
|
3726
|
-
MatchaSidenavModule,
|
|
3727
|
-
MatchaSlideToggleModule,
|
|
3728
|
-
MatchaSliderModule,
|
|
3729
|
-
MatchaSnackBarModule,
|
|
3730
|
-
MatchaSortHeaderModule,
|
|
3731
|
-
MatchaSpinModule,
|
|
3732
|
-
MatchaTableModule,
|
|
3733
|
-
MatchaTabsModule,
|
|
3734
|
-
MatchaTitleModule,
|
|
3735
|
-
MatchaTooltipModule,
|
|
3736
|
-
MatchaTreeModule, MatchaAccordionModule,
|
|
3737
|
-
MatchaAutocompleteModule,
|
|
3738
|
-
MatchaBadgeModule,
|
|
3739
|
-
MatchaButtonModule,
|
|
3740
|
-
MatchaButtonToggleModule,
|
|
3741
|
-
MatchaCardModule,
|
|
3742
|
-
MatchaCheckboxModule,
|
|
3743
|
-
MatchaChipsModule,
|
|
3744
|
-
MatchaDatepickerModule,
|
|
3745
|
-
MatchaDividerModule,
|
|
3746
|
-
MatchaElevationModule,
|
|
3747
|
-
MatchaFormFieldModule,
|
|
3748
|
-
MatchaHintTextModule,
|
|
3749
|
-
MatchaIconModule,
|
|
3750
|
-
MatchaInfiniteScrollModule,
|
|
3751
|
-
MatchaInputModule,
|
|
3752
|
-
MatchaMasonryModule,
|
|
3753
|
-
MatchaMenuModule,
|
|
3754
|
-
MatchaModalModule,
|
|
3755
|
-
MatchaPaginatorModule,
|
|
3756
|
-
MatchaProgressBarModule,
|
|
3757
|
-
MatchaRadioButtonModule,
|
|
3758
|
-
MatchaRippleModule,
|
|
3759
|
-
MatchaSelectModule,
|
|
3760
|
-
MatchaSidenavModule,
|
|
3761
|
-
MatchaSlideToggleModule,
|
|
3762
|
-
MatchaSliderModule,
|
|
3763
|
-
MatchaSnackBarModule,
|
|
3764
|
-
MatchaSortHeaderModule,
|
|
3765
|
-
MatchaSpinModule,
|
|
3766
|
-
MatchaTableModule,
|
|
3767
|
-
MatchaTabsModule,
|
|
3768
|
-
MatchaTitleModule,
|
|
3769
|
-
MatchaTooltipModule,
|
|
3770
|
-
MatchaTreeModule] }); }
|
|
3810
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3811
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaComponentsModule, declarations: [MatchaOverflowDraggableComponent], imports: [CommonModule, FormsModule, ReactiveFormsModule, MatchaAccordionModule, MatchaAutocompleteModule, MatchaBadgeModule, MatchaButtonModule, MatchaButtonToggleModule, MatchaCardModule, MatchaCheckboxModule, MatchaChipsModule, MatchaDatepickerModule, MatchaDividerModule, MatchaElevationModule, MatchaFormFieldModule, MatchaHintTextModule, MatchaIconModule, MatchaInfiniteScrollModule, MatchaInputModule, MatchaMasonryModule, MatchaMenuModule, MatchaModalModule, MatchaOptionModule, MatchaPaginatorModule, MatchaProgressBarModule, MatchaRadioButtonModule, MatchaRippleModule, MatchaSelectModule, MatchaSidenavModule, MatchaSlideToggleModule, MatchaSliderModule, MatchaSnackBarModule, MatchaSortHeaderModule, MatchaSpinModule, MatchaTableModule, MatchaTabsModule, MatchaTitleModule, MatchaTooltipModule, MatchaTreeModule], exports: [MatchaAccordionModule, MatchaAutocompleteModule, MatchaBadgeModule, MatchaButtonModule, MatchaButtonToggleModule, MatchaCardModule, MatchaCheckboxModule, MatchaChipsModule, MatchaDatepickerModule, MatchaDividerModule, MatchaElevationModule, MatchaFormFieldModule, MatchaHintTextModule, MatchaIconModule, MatchaInfiniteScrollModule, MatchaInputModule, MatchaMasonryModule, MatchaMenuModule, MatchaModalModule, MatchaOptionModule, MatchaPaginatorModule, MatchaProgressBarModule, MatchaRadioButtonModule, MatchaRippleModule, MatchaSelectModule, MatchaSidenavModule, MatchaSlideToggleModule, MatchaSliderModule, MatchaSnackBarModule, MatchaSortHeaderModule, MatchaSpinModule, MatchaTableModule, MatchaTabsModule, MatchaTitleModule, MatchaTooltipModule, MatchaTreeModule] }); }
|
|
3812
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaComponentsModule, imports: [CommonModule, FormsModule, ReactiveFormsModule, MatchaAccordionModule, MatchaAutocompleteModule, MatchaBadgeModule, MatchaButtonModule, MatchaButtonToggleModule, MatchaCardModule, MatchaCheckboxModule, MatchaChipsModule, MatchaDatepickerModule, MatchaDividerModule, MatchaElevationModule, MatchaFormFieldModule, MatchaHintTextModule, MatchaIconModule, MatchaInfiniteScrollModule, MatchaInputModule, MatchaMasonryModule, MatchaMenuModule, MatchaModalModule, MatchaOptionModule, MatchaPaginatorModule, MatchaProgressBarModule, MatchaRadioButtonModule, MatchaRippleModule, MatchaSelectModule, MatchaSidenavModule, MatchaSlideToggleModule, MatchaSliderModule, MatchaSnackBarModule, MatchaSortHeaderModule, MatchaSpinModule, MatchaTableModule, MatchaTabsModule, MatchaTitleModule, MatchaTooltipModule, MatchaTreeModule, MatchaAccordionModule, MatchaAutocompleteModule, MatchaBadgeModule, MatchaButtonModule, MatchaButtonToggleModule, MatchaCardModule, MatchaCheckboxModule, MatchaChipsModule, MatchaDatepickerModule, MatchaDividerModule, MatchaElevationModule, MatchaFormFieldModule, MatchaHintTextModule, MatchaIconModule, MatchaInfiniteScrollModule, MatchaInputModule, MatchaMasonryModule, MatchaMenuModule, MatchaModalModule, MatchaOptionModule, MatchaPaginatorModule, MatchaProgressBarModule, MatchaRadioButtonModule, MatchaRippleModule, MatchaSelectModule, MatchaSidenavModule, MatchaSlideToggleModule, MatchaSliderModule, MatchaSnackBarModule, MatchaSortHeaderModule, MatchaSpinModule, MatchaTableModule, MatchaTabsModule, MatchaTitleModule, MatchaTooltipModule, MatchaTreeModule] }); }
|
|
3771
3813
|
}
|
|
3772
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3814
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaComponentsModule, decorators: [{
|
|
3773
3815
|
type: NgModule,
|
|
3774
3816
|
args: [{
|
|
3775
|
-
declarations: [
|
|
3776
|
-
|
|
3777
|
-
],
|
|
3778
|
-
imports: [
|
|
3779
|
-
CommonModule,
|
|
3780
|
-
FormsModule,
|
|
3781
|
-
ReactiveFormsModule,
|
|
3782
|
-
MatchaAccordionModule,
|
|
3783
|
-
MatchaAutocompleteModule,
|
|
3784
|
-
MatchaBadgeModule,
|
|
3785
|
-
MatchaButtonModule,
|
|
3786
|
-
MatchaButtonToggleModule,
|
|
3787
|
-
MatchaCardModule,
|
|
3788
|
-
MatchaCheckboxModule,
|
|
3789
|
-
MatchaChipsModule,
|
|
3790
|
-
MatchaDatepickerModule,
|
|
3791
|
-
MatchaDividerModule,
|
|
3792
|
-
MatchaElevationModule,
|
|
3793
|
-
MatchaFormFieldModule,
|
|
3794
|
-
MatchaHintTextModule,
|
|
3795
|
-
MatchaIconModule,
|
|
3796
|
-
MatchaInfiniteScrollModule,
|
|
3797
|
-
MatchaInputModule,
|
|
3798
|
-
MatchaMasonryModule,
|
|
3799
|
-
MatchaMenuModule,
|
|
3800
|
-
MatchaModalModule,
|
|
3801
|
-
MatchaPaginatorModule,
|
|
3802
|
-
MatchaProgressBarModule,
|
|
3803
|
-
MatchaRadioButtonModule,
|
|
3804
|
-
MatchaRippleModule,
|
|
3805
|
-
MatchaSelectModule,
|
|
3806
|
-
MatchaSidenavModule,
|
|
3807
|
-
MatchaSlideToggleModule,
|
|
3808
|
-
MatchaSliderModule,
|
|
3809
|
-
MatchaSnackBarModule,
|
|
3810
|
-
MatchaSortHeaderModule,
|
|
3811
|
-
MatchaSpinModule,
|
|
3812
|
-
MatchaTableModule,
|
|
3813
|
-
MatchaTabsModule,
|
|
3814
|
-
MatchaTitleModule,
|
|
3815
|
-
MatchaTooltipModule,
|
|
3816
|
-
MatchaTreeModule
|
|
3817
|
-
],
|
|
3818
|
-
exports: [
|
|
3819
|
-
MatchaAccordionModule,
|
|
3820
|
-
MatchaAutocompleteModule,
|
|
3821
|
-
MatchaBadgeModule,
|
|
3822
|
-
MatchaButtonModule,
|
|
3823
|
-
MatchaButtonToggleModule,
|
|
3824
|
-
MatchaCardModule,
|
|
3825
|
-
MatchaCheckboxModule,
|
|
3826
|
-
MatchaChipsModule,
|
|
3827
|
-
MatchaDatepickerModule,
|
|
3828
|
-
MatchaDividerModule,
|
|
3829
|
-
MatchaElevationModule,
|
|
3830
|
-
MatchaFormFieldModule,
|
|
3831
|
-
MatchaHintTextModule,
|
|
3832
|
-
MatchaIconModule,
|
|
3833
|
-
MatchaInfiniteScrollModule,
|
|
3834
|
-
MatchaInputModule,
|
|
3835
|
-
MatchaMasonryModule,
|
|
3836
|
-
MatchaMenuModule,
|
|
3837
|
-
MatchaModalModule,
|
|
3838
|
-
MatchaPaginatorModule,
|
|
3839
|
-
MatchaProgressBarModule,
|
|
3840
|
-
MatchaRadioButtonModule,
|
|
3841
|
-
MatchaRippleModule,
|
|
3842
|
-
MatchaSelectModule,
|
|
3843
|
-
MatchaSidenavModule,
|
|
3844
|
-
MatchaSlideToggleModule,
|
|
3845
|
-
MatchaSliderModule,
|
|
3846
|
-
MatchaSnackBarModule,
|
|
3847
|
-
MatchaSortHeaderModule,
|
|
3848
|
-
MatchaSpinModule,
|
|
3849
|
-
MatchaTableModule,
|
|
3850
|
-
MatchaTabsModule,
|
|
3851
|
-
MatchaTitleModule,
|
|
3852
|
-
MatchaTooltipModule,
|
|
3853
|
-
MatchaTreeModule
|
|
3854
|
-
]
|
|
3817
|
+
declarations: [MatchaOverflowDraggableComponent],
|
|
3818
|
+
imports: [CommonModule, FormsModule, ReactiveFormsModule, MatchaAccordionModule, MatchaAutocompleteModule, MatchaBadgeModule, MatchaButtonModule, MatchaButtonToggleModule, MatchaCardModule, MatchaCheckboxModule, MatchaChipsModule, MatchaDatepickerModule, MatchaDividerModule, MatchaElevationModule, MatchaFormFieldModule, MatchaHintTextModule, MatchaIconModule, MatchaInfiniteScrollModule, MatchaInputModule, MatchaMasonryModule, MatchaMenuModule, MatchaModalModule, MatchaOptionModule, MatchaPaginatorModule, MatchaProgressBarModule, MatchaRadioButtonModule, MatchaRippleModule, MatchaSelectModule, MatchaSidenavModule, MatchaSlideToggleModule, MatchaSliderModule, MatchaSnackBarModule, MatchaSortHeaderModule, MatchaSpinModule, MatchaTableModule, MatchaTabsModule, MatchaTitleModule, MatchaTooltipModule, MatchaTreeModule],
|
|
3819
|
+
exports: [MatchaAccordionModule, MatchaAutocompleteModule, MatchaBadgeModule, MatchaButtonModule, MatchaButtonToggleModule, MatchaCardModule, MatchaCheckboxModule, MatchaChipsModule, MatchaDatepickerModule, MatchaDividerModule, MatchaElevationModule, MatchaFormFieldModule, MatchaHintTextModule, MatchaIconModule, MatchaInfiniteScrollModule, MatchaInputModule, MatchaMasonryModule, MatchaMenuModule, MatchaModalModule, MatchaOptionModule, MatchaPaginatorModule, MatchaProgressBarModule, MatchaRadioButtonModule, MatchaRippleModule, MatchaSelectModule, MatchaSidenavModule, MatchaSlideToggleModule, MatchaSliderModule, MatchaSnackBarModule, MatchaSortHeaderModule, MatchaSpinModule, MatchaTableModule, MatchaTabsModule, MatchaTitleModule, MatchaTooltipModule, MatchaTreeModule],
|
|
3855
3820
|
}]
|
|
3856
3821
|
}] });
|
|
3857
3822
|
|
|
@@ -3874,5 +3839,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3874
3839
|
* Generated bundle index. Do not edit.
|
|
3875
3840
|
*/
|
|
3876
3841
|
|
|
3877
|
-
export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteDirective, MatchaAutocompleteModule,
|
|
3842
|
+
export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteDirective, MatchaAutocompleteModule, 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, MatchaModalService, MatchaOptionComponent, MatchaOptionModule, MatchaOptionService, MatchaOverlayService, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaRadioButtonDirective, MatchaRadioButtonModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSlideToggleComponent, 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 };
|
|
3878
3843
|
//# sourceMappingURL=matcha-components.mjs.map
|