matcha-components 20.9.0 → 20.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/matcha-components.mjs +1504 -712
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/index.d.ts +289 -106
- package/package.json +1 -1
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter, Output, Input, Component, ContentChildren, ElementRef, Renderer2,
|
|
2
|
+
import { EventEmitter, Output, HostBinding, Input, Component, ContentChildren, ElementRef, Renderer2, Inject, ViewChild, ContentChild, HostListener, Directive, forwardRef, ChangeDetectionStrategy, TemplateRef, Injectable, Optional, ViewEncapsulation, 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, BehaviorSubject } from 'rxjs';
|
|
5
|
-
import { debounceTime } from 'rxjs/operators';
|
|
4
|
+
import { Subscription, Subject, BehaviorSubject, fromEvent } from 'rxjs';
|
|
5
|
+
import { debounceTime, filter } 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';
|
|
9
8
|
import { FormControlName, NG_VALUE_ACCESSOR, NgControl, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
10
9
|
|
|
10
|
+
/**
|
|
11
|
+
* Token de injeção para MatchaOptionParent
|
|
12
|
+
* Usado para injetar o componente pai no matcha-option
|
|
13
|
+
*/
|
|
14
|
+
const MATCHA_OPTION_PARENT = Symbol('MatchaOptionParent');
|
|
15
|
+
|
|
11
16
|
const customAnimation = animation([
|
|
12
17
|
style({
|
|
13
18
|
opacity: '{{opacity}}',
|
|
@@ -363,7 +368,9 @@ class MatchaAccordionItemComponent {
|
|
|
363
368
|
constructor() {
|
|
364
369
|
this._stretch = false;
|
|
365
370
|
this._isOpen = false;
|
|
371
|
+
this._clickableHeader = true;
|
|
366
372
|
this.opened = new EventEmitter();
|
|
373
|
+
this.toggleRequested = new EventEmitter();
|
|
367
374
|
}
|
|
368
375
|
set stretch(value) {
|
|
369
376
|
this._stretch = value != null && `${value}` !== 'false';
|
|
@@ -371,37 +378,65 @@ class MatchaAccordionItemComponent {
|
|
|
371
378
|
get stretch() {
|
|
372
379
|
return this._stretch;
|
|
373
380
|
}
|
|
381
|
+
get stretchClass() {
|
|
382
|
+
return this._stretch;
|
|
383
|
+
}
|
|
384
|
+
set clickableHeader(value) {
|
|
385
|
+
this._clickableHeader = value != null && `${value}` !== 'false';
|
|
386
|
+
}
|
|
387
|
+
get clickableHeader() {
|
|
388
|
+
return this._clickableHeader;
|
|
389
|
+
}
|
|
374
390
|
set isOpen(value) {
|
|
375
391
|
this._isOpen = value != null && `${value}` !== 'false';
|
|
376
392
|
}
|
|
377
393
|
get isOpen() {
|
|
378
394
|
return this._isOpen;
|
|
379
395
|
}
|
|
396
|
+
get isOpenClass() {
|
|
397
|
+
return this._isOpen;
|
|
398
|
+
}
|
|
380
399
|
ngOnInit() {
|
|
381
400
|
this.opened.emit(this.isOpen);
|
|
382
401
|
}
|
|
402
|
+
ngOnChanges(changes) {
|
|
403
|
+
if (changes['isOpen']) {
|
|
404
|
+
this.opened.emit(this.isOpen);
|
|
405
|
+
}
|
|
406
|
+
}
|
|
383
407
|
toggleAccordion() {
|
|
384
|
-
|
|
385
|
-
this.
|
|
408
|
+
// Emite evento para o accordion pai controlar o estado
|
|
409
|
+
this.toggleRequested.emit();
|
|
386
410
|
}
|
|
387
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
388
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
411
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAccordionItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
412
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaAccordionItemComponent, isStandalone: false, selector: "matcha-accordion-item", inputs: { stretch: "stretch", clickableHeader: "clickableHeader", isOpen: "isOpen" }, outputs: { opened: "opened", toggleRequested: "toggleRequested" }, host: { properties: { "class.stretch": "this.stretchClass", "class.is-open": "this.isOpenClass" } }, usesOnChanges: true, 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\"\n [class.cursor-pointer]=\"clickableHeader\"\n (click)=\"clickableHeader ? toggleAccordion() : null\">\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] }); }
|
|
389
413
|
}
|
|
390
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
414
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAccordionItemComponent, decorators: [{
|
|
391
415
|
type: Component,
|
|
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\"
|
|
416
|
+
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\"\n [class.cursor-pointer]=\"clickableHeader\"\n (click)=\"clickableHeader ? toggleAccordion() : null\">\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" }]
|
|
393
417
|
}], propDecorators: { stretch: [{
|
|
394
418
|
type: Input
|
|
419
|
+
}], stretchClass: [{
|
|
420
|
+
type: HostBinding,
|
|
421
|
+
args: ['class.stretch']
|
|
422
|
+
}], clickableHeader: [{
|
|
423
|
+
type: Input
|
|
395
424
|
}], isOpen: [{
|
|
396
425
|
type: Input
|
|
426
|
+
}], isOpenClass: [{
|
|
427
|
+
type: HostBinding,
|
|
428
|
+
args: ['class.is-open']
|
|
397
429
|
}], opened: [{
|
|
398
430
|
type: Output
|
|
431
|
+
}], toggleRequested: [{
|
|
432
|
+
type: Output
|
|
399
433
|
}] } });
|
|
400
434
|
|
|
401
435
|
class MatchaAccordionComponent {
|
|
402
436
|
constructor() {
|
|
403
437
|
this._multiple = false;
|
|
404
438
|
this.openedChange = new EventEmitter();
|
|
439
|
+
this.subscriptions = [];
|
|
405
440
|
}
|
|
406
441
|
set multiple(value) {
|
|
407
442
|
// Converte 'false' (string) ou false (boolean) para false, e qualquer outro valor para true.
|
|
@@ -411,15 +446,34 @@ class MatchaAccordionComponent {
|
|
|
411
446
|
return this._multiple;
|
|
412
447
|
}
|
|
413
448
|
ngAfterContentInit() {
|
|
449
|
+
this.setupItems();
|
|
450
|
+
// Escuta mudanças na lista de itens (para casos dinâmicos)
|
|
451
|
+
this.items.changes.subscribe(() => {
|
|
452
|
+
this.setupItems();
|
|
453
|
+
});
|
|
454
|
+
}
|
|
455
|
+
ngOnDestroy() {
|
|
456
|
+
this.subscriptions.forEach(sub => sub.unsubscribe());
|
|
457
|
+
}
|
|
458
|
+
setupItems() {
|
|
459
|
+
// Limpa subscriptions anteriores
|
|
460
|
+
this.subscriptions.forEach(sub => sub.unsubscribe());
|
|
461
|
+
this.subscriptions = [];
|
|
414
462
|
this.items.forEach(item => {
|
|
415
|
-
item.
|
|
463
|
+
const toggleSub = item.toggleRequested.subscribe(() => {
|
|
416
464
|
this.toggleItem(item);
|
|
465
|
+
});
|
|
466
|
+
this.subscriptions.push(toggleSub);
|
|
467
|
+
const openedSub = item.opened.subscribe((isOpen) => {
|
|
417
468
|
this.openedChange.emit(isOpen);
|
|
418
469
|
});
|
|
470
|
+
this.subscriptions.push(openedSub);
|
|
419
471
|
});
|
|
420
472
|
}
|
|
421
473
|
toggleItem(selectedItem) {
|
|
422
|
-
//
|
|
474
|
+
// Toggle o item selecionado
|
|
475
|
+
selectedItem.isOpen = !selectedItem.isOpen;
|
|
476
|
+
// Se não permite múltiplos itens abertos e o item foi aberto, fecha os demais
|
|
423
477
|
if (!this.multiple && selectedItem.isOpen) {
|
|
424
478
|
this.items.forEach(item => {
|
|
425
479
|
if (item !== selectedItem) {
|
|
@@ -428,10 +482,10 @@ class MatchaAccordionComponent {
|
|
|
428
482
|
});
|
|
429
483
|
}
|
|
430
484
|
}
|
|
431
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
432
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
485
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAccordionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
486
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaAccordionComponent, isStandalone: false, selector: "matcha-accordion", inputs: { multiple: "multiple" }, outputs: { openedChange: "openedChange" }, queries: [{ propertyName: "items", predicate: MatchaAccordionItemComponent }], ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
|
|
433
487
|
}
|
|
434
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
488
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAccordionComponent, decorators: [{
|
|
435
489
|
type: Component,
|
|
436
490
|
args: [{ selector: 'matcha-accordion', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
437
491
|
}], propDecorators: { multiple: [{
|
|
@@ -445,19 +499,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
445
499
|
}] } });
|
|
446
500
|
|
|
447
501
|
class MatchaAccordionHeaderComponent {
|
|
448
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
449
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
502
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAccordionHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
503
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaAccordionHeaderComponent, isStandalone: false, selector: "matcha-accordion-header", ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
|
|
450
504
|
}
|
|
451
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
505
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAccordionHeaderComponent, decorators: [{
|
|
452
506
|
type: Component,
|
|
453
507
|
args: [{ selector: 'matcha-accordion-header', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
454
508
|
}] });
|
|
455
509
|
|
|
456
510
|
class MatchaAccordionContentComponent {
|
|
457
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
458
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
511
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAccordionContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
512
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaAccordionContentComponent, isStandalone: false, selector: "matcha-accordion-content", ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
|
|
459
513
|
}
|
|
460
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
514
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAccordionContentComponent, decorators: [{
|
|
461
515
|
type: Component,
|
|
462
516
|
args: [{ selector: 'matcha-accordion-content', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
463
517
|
}] });
|
|
@@ -496,10 +550,10 @@ class MatchaInfiniteScrollComponent {
|
|
|
496
550
|
ngOnDestroy() {
|
|
497
551
|
this.observer.disconnect();
|
|
498
552
|
}
|
|
499
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
500
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
553
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaInfiniteScrollComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
554
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaInfiniteScrollComponent, isStandalone: false, selector: "matcha-infinite-scroll", outputs: { scrolledToEnd: "scrolledToEnd" }, ngImport: i0, template: "", styles: [""] }); }
|
|
501
555
|
}
|
|
502
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
556
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaInfiniteScrollComponent, decorators: [{
|
|
503
557
|
type: Component,
|
|
504
558
|
args: [{ selector: 'matcha-infinite-scroll', standalone: false, template: "" }]
|
|
505
559
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { scrolledToEnd: [{
|
|
@@ -617,10 +671,10 @@ class MatchaInfiniteScrollDataComponent {
|
|
|
617
671
|
this.dataSubscription.unsubscribe();
|
|
618
672
|
this.searchSubscription.unsubscribe();
|
|
619
673
|
}
|
|
620
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
621
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
674
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaInfiniteScrollDataComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
675
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaInfiniteScrollDataComponent, isStandalone: false, 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"] }); }
|
|
622
676
|
}
|
|
623
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
677
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaInfiniteScrollDataComponent, decorators: [{
|
|
624
678
|
type: Component,
|
|
625
679
|
args: [{ selector: 'matcha-infinite-scroll-data', standalone: false, template: "", styles: [":host{height:1px;opacity:0}\n"] }]
|
|
626
680
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { loadData: [{
|
|
@@ -673,10 +727,10 @@ class MatchaLazyloadComponent {
|
|
|
673
727
|
ngOnDestroy() {
|
|
674
728
|
this.observer.disconnect();
|
|
675
729
|
}
|
|
676
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
677
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
730
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaLazyloadComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
731
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaLazyloadComponent, isStandalone: false, selector: "matcha-lazyload", outputs: { scrolledToEnd: "scrolledToEnd" }, ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
|
|
678
732
|
}
|
|
679
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
733
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaLazyloadComponent, decorators: [{
|
|
680
734
|
type: Component,
|
|
681
735
|
args: [{ selector: 'matcha-lazyload', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
682
736
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { scrolledToEnd: [{
|
|
@@ -800,10 +854,10 @@ class MatchaLazyloadDataComponent {
|
|
|
800
854
|
this.dataSubscription.unsubscribe();
|
|
801
855
|
this.searchSubscription.unsubscribe();
|
|
802
856
|
}
|
|
803
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
804
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
857
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaLazyloadDataComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
858
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaLazyloadDataComponent, isStandalone: false, selector: "matcha-lazyload-data", inputs: { loadData: "loadData", initialList: "initialList", threshold: "threshold", rootMargin: "rootMargin", resetKey: "resetKey", searchTerm: "searchTerm" }, outputs: { aggregatedData: "aggregatedData", exactMatch: "exactMatch" }, usesOnChanges: true, ngImport: i0, template: "<ng-content></ng-content>\n", styles: ["", ":host{height:1px;opacity:0}\n"] }); }
|
|
805
859
|
}
|
|
806
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
860
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaLazyloadDataComponent, decorators: [{
|
|
807
861
|
type: Component,
|
|
808
862
|
args: [{ selector: 'matcha-lazyload-data', standalone: false, template: "<ng-content></ng-content>\n", styles: [":host{height:1px;opacity:0}\n"] }]
|
|
809
863
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { loadData: [{
|
|
@@ -977,10 +1031,10 @@ class MatchaButtonComponent {
|
|
|
977
1031
|
button.removeEventListener('click', this.addRippleEffect, false);
|
|
978
1032
|
});
|
|
979
1033
|
}
|
|
980
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
981
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
1034
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaButtonComponent, deps: [{ token: ElementRef }, { token: Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1035
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaButtonComponent, isStandalone: false, selector: "[matcha-button]", inputs: { size: "size", sizeXs: ["size-xs", "sizeXs"], sizeSm: ["size-sm", "sizeSm"], sizeMd: ["size-md", "sizeMd"], sizeLg: ["size-lg", "sizeLg"], sizeXl: ["size-xl", "sizeXl"], color: "color", basic: "basic", outline: "outline", alpha: "alpha", pill: "pill", link: "link", icon: "icon" }, host: { properties: { "attr.color": "this.colorAttr" } }, usesOnChanges: true, ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
|
|
982
1036
|
}
|
|
983
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
1037
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaButtonComponent, decorators: [{
|
|
984
1038
|
type: Component,
|
|
985
1039
|
args: [{ selector: '[matcha-button]', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
986
1040
|
}], ctorParameters: () => [{ type: i0.ElementRef, decorators: [{
|
|
@@ -1044,8 +1098,14 @@ class MatchaCardComponent {
|
|
|
1044
1098
|
}
|
|
1045
1099
|
get alpha() { return this._alpha; }
|
|
1046
1100
|
set alpha(v) { this._alpha = v === 'false' ? false : !!v; }
|
|
1101
|
+
get alphaAttr() {
|
|
1102
|
+
return this.alpha ? 'true' : 'false';
|
|
1103
|
+
}
|
|
1047
1104
|
get tint() { return this._tint; }
|
|
1048
1105
|
set tint(v) { this._tint = v === 'false' ? false : !!v; }
|
|
1106
|
+
get tintAttr() {
|
|
1107
|
+
return this.tint ? 'true' : 'false';
|
|
1108
|
+
}
|
|
1049
1109
|
get loading() { return this._loading; }
|
|
1050
1110
|
set loading(v) { this._loading = v === 'false' ? false : !!v; }
|
|
1051
1111
|
get classes() {
|
|
@@ -1078,10 +1138,10 @@ class MatchaCardComponent {
|
|
|
1078
1138
|
hasBlockquotePosition() {
|
|
1079
1139
|
return this.blockquote === 'left' || this.blockquote === 'right';
|
|
1080
1140
|
}
|
|
1081
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1082
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
1141
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1142
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaCardComponent, isStandalone: false, selector: "matcha-card", inputs: { color: "color", blockquote: "blockquote", blockquoteColor: "blockquoteColor", class: "class", alpha: "alpha", tint: "tint", loading: "loading" }, host: { properties: { "attr.color": "this.colorAttr", "attr.alpha": "this.alphaAttr", "attr.tint": "this.tintAttr", "class": "this.classes" } }, ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
|
|
1083
1143
|
}
|
|
1084
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
1144
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaCardComponent, decorators: [{
|
|
1085
1145
|
type: Component,
|
|
1086
1146
|
args: [{ selector: 'matcha-card', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
1087
1147
|
}], propDecorators: { color: [{
|
|
@@ -1097,8 +1157,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
1097
1157
|
type: Input
|
|
1098
1158
|
}], alpha: [{
|
|
1099
1159
|
type: Input
|
|
1160
|
+
}], alphaAttr: [{
|
|
1161
|
+
type: HostBinding,
|
|
1162
|
+
args: ['attr.alpha']
|
|
1100
1163
|
}], tint: [{
|
|
1101
1164
|
type: Input
|
|
1165
|
+
}], tintAttr: [{
|
|
1166
|
+
type: HostBinding,
|
|
1167
|
+
args: ['attr.tint']
|
|
1102
1168
|
}], loading: [{
|
|
1103
1169
|
type: Input
|
|
1104
1170
|
}], classes: [{
|
|
@@ -1144,10 +1210,10 @@ class MatchaDividerComponent {
|
|
|
1144
1210
|
activeClasses += gapXl ? ` ${gapXl}` : '';
|
|
1145
1211
|
return activeClasses;
|
|
1146
1212
|
}
|
|
1147
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1148
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
1213
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDividerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1214
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaDividerComponent, isStandalone: false, 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: [""] }); }
|
|
1149
1215
|
}
|
|
1150
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
1216
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDividerComponent, decorators: [{
|
|
1151
1217
|
type: Component,
|
|
1152
1218
|
args: [{ selector: 'matcha-divider', standalone: false, template: "<div [class]=\"classes\"></div>\n" }]
|
|
1153
1219
|
}], propDecorators: { gap: [{
|
|
@@ -1214,10 +1280,10 @@ class MatchaTitleComponent {
|
|
|
1214
1280
|
hasIconClickOutput() {
|
|
1215
1281
|
return this.iconClick.observers.length > 0;
|
|
1216
1282
|
}
|
|
1217
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1218
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
1283
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTitleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1284
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaTitleComponent, isStandalone: false, 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: [""] }); }
|
|
1219
1285
|
}
|
|
1220
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
1286
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTitleComponent, decorators: [{
|
|
1221
1287
|
type: Component,
|
|
1222
1288
|
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" }]
|
|
1223
1289
|
}], propDecorators: { color: [{
|
|
@@ -1234,6 +1300,288 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
1234
1300
|
type: Output
|
|
1235
1301
|
}] } });
|
|
1236
1302
|
|
|
1303
|
+
class MatchaDrawerComponent {
|
|
1304
|
+
get drawerClasses() {
|
|
1305
|
+
return `matcha-drawer matcha-drawer-${this.mode} matcha-drawer-${this.position} ${this.isOpen ? 'matcha-drawer-open' : 'matcha-drawer-closed'}`;
|
|
1306
|
+
}
|
|
1307
|
+
get drawerWidth() {
|
|
1308
|
+
if (this.mode === 'overlay') {
|
|
1309
|
+
// Modo overlay: sempre 0px para não empurrar o conteúdo
|
|
1310
|
+
return '0px';
|
|
1311
|
+
}
|
|
1312
|
+
// Modo push: ocupa espaço apenas quando aberto
|
|
1313
|
+
return this.isOpen ? this.width : '0px';
|
|
1314
|
+
}
|
|
1315
|
+
get drawerHeight() {
|
|
1316
|
+
return '100vh';
|
|
1317
|
+
}
|
|
1318
|
+
constructor(elementRef, renderer, cdr) {
|
|
1319
|
+
this.elementRef = elementRef;
|
|
1320
|
+
this.renderer = renderer;
|
|
1321
|
+
this.cdr = cdr;
|
|
1322
|
+
this.isOpen = false;
|
|
1323
|
+
this.mode = 'push';
|
|
1324
|
+
this.position = 'left';
|
|
1325
|
+
this.width = '300px';
|
|
1326
|
+
this.hasBackdrop = true;
|
|
1327
|
+
this.disableClose = false;
|
|
1328
|
+
this.autoCloseOnMobile = true;
|
|
1329
|
+
this.breakpoint = 1024;
|
|
1330
|
+
this.elevation = 8;
|
|
1331
|
+
this.hasFooter = false;
|
|
1332
|
+
this.isOpenChange = new EventEmitter();
|
|
1333
|
+
this.drawerToggle = new EventEmitter();
|
|
1334
|
+
this.drawerOpened = new EventEmitter();
|
|
1335
|
+
this.drawerClosed = new EventEmitter();
|
|
1336
|
+
this.isMobile = false;
|
|
1337
|
+
this.bodyScrollLocked = false;
|
|
1338
|
+
this.setupResizeObserver();
|
|
1339
|
+
}
|
|
1340
|
+
ngOnInit() {
|
|
1341
|
+
this.checkScreenSize();
|
|
1342
|
+
this.setupBodyScrollLock();
|
|
1343
|
+
}
|
|
1344
|
+
ngOnDestroy() {
|
|
1345
|
+
if (this.resizeObserver) {
|
|
1346
|
+
this.resizeObserver.disconnect();
|
|
1347
|
+
}
|
|
1348
|
+
this.unlockBodyScroll();
|
|
1349
|
+
}
|
|
1350
|
+
setupResizeObserver() {
|
|
1351
|
+
if (typeof ResizeObserver !== 'undefined') {
|
|
1352
|
+
this.resizeObserver = new ResizeObserver(() => {
|
|
1353
|
+
this.checkScreenSize();
|
|
1354
|
+
});
|
|
1355
|
+
if (this.elementRef.nativeElement.parentElement) {
|
|
1356
|
+
this.resizeObserver.observe(this.elementRef.nativeElement.parentElement);
|
|
1357
|
+
}
|
|
1358
|
+
}
|
|
1359
|
+
}
|
|
1360
|
+
checkScreenSize() {
|
|
1361
|
+
const wasMobile = this.isMobile;
|
|
1362
|
+
this.isMobile = window.innerWidth < this.breakpoint;
|
|
1363
|
+
if (wasMobile !== this.isMobile) {
|
|
1364
|
+
this.cdr.detectChanges();
|
|
1365
|
+
if (!this.isMobile && this.autoCloseOnMobile && this.isOpen) {
|
|
1366
|
+
this.close();
|
|
1367
|
+
}
|
|
1368
|
+
}
|
|
1369
|
+
}
|
|
1370
|
+
setupBodyScrollLock() {
|
|
1371
|
+
if (this.mode === 'overlay' && this.isOpen) {
|
|
1372
|
+
this.lockBodyScroll();
|
|
1373
|
+
}
|
|
1374
|
+
}
|
|
1375
|
+
lockBodyScroll() {
|
|
1376
|
+
if (!this.bodyScrollLocked) {
|
|
1377
|
+
document.body.style.overflow = 'hidden';
|
|
1378
|
+
this.bodyScrollLocked = true;
|
|
1379
|
+
}
|
|
1380
|
+
}
|
|
1381
|
+
unlockBodyScroll() {
|
|
1382
|
+
if (this.bodyScrollLocked) {
|
|
1383
|
+
document.body.style.overflow = '';
|
|
1384
|
+
this.bodyScrollLocked = false;
|
|
1385
|
+
}
|
|
1386
|
+
}
|
|
1387
|
+
toggle() {
|
|
1388
|
+
if (this.disableClose && this.isOpen) {
|
|
1389
|
+
return;
|
|
1390
|
+
}
|
|
1391
|
+
this.isOpen = !this.isOpen;
|
|
1392
|
+
this.isOpenChange.emit(this.isOpen);
|
|
1393
|
+
this.drawerToggle.emit();
|
|
1394
|
+
if (this.isOpen) {
|
|
1395
|
+
this.drawerOpened.emit();
|
|
1396
|
+
if (this.mode === 'overlay') {
|
|
1397
|
+
this.lockBodyScroll();
|
|
1398
|
+
}
|
|
1399
|
+
}
|
|
1400
|
+
else {
|
|
1401
|
+
this.drawerClosed.emit();
|
|
1402
|
+
this.unlockBodyScroll();
|
|
1403
|
+
}
|
|
1404
|
+
if (this.isMobile && this.autoCloseOnMobile && this.isOpen) {
|
|
1405
|
+
setTimeout(() => this.close(), 300);
|
|
1406
|
+
}
|
|
1407
|
+
}
|
|
1408
|
+
open() {
|
|
1409
|
+
if (!this.isOpen && !this.disableClose) {
|
|
1410
|
+
this.isOpen = true;
|
|
1411
|
+
this.isOpenChange.emit(this.isOpen);
|
|
1412
|
+
this.drawerToggle.emit();
|
|
1413
|
+
this.drawerOpened.emit();
|
|
1414
|
+
if (this.mode === 'overlay') {
|
|
1415
|
+
this.lockBodyScroll();
|
|
1416
|
+
}
|
|
1417
|
+
}
|
|
1418
|
+
}
|
|
1419
|
+
close() {
|
|
1420
|
+
if (this.isOpen && !this.disableClose) {
|
|
1421
|
+
this.isOpen = false;
|
|
1422
|
+
this.isOpenChange.emit(this.isOpen);
|
|
1423
|
+
this.drawerToggle.emit();
|
|
1424
|
+
this.drawerClosed.emit();
|
|
1425
|
+
this.unlockBodyScroll();
|
|
1426
|
+
}
|
|
1427
|
+
}
|
|
1428
|
+
onBackdropClick() {
|
|
1429
|
+
if (this.hasBackdrop && this.mode === 'overlay' && !this.disableClose) {
|
|
1430
|
+
this.close();
|
|
1431
|
+
}
|
|
1432
|
+
}
|
|
1433
|
+
onKeyDown(event) {
|
|
1434
|
+
if (event.key === 'Escape' && this.isOpen && !this.disableClose) {
|
|
1435
|
+
this.close();
|
|
1436
|
+
}
|
|
1437
|
+
}
|
|
1438
|
+
getDrawerTransform() {
|
|
1439
|
+
// Centralização em telas grandes
|
|
1440
|
+
if (window.innerWidth >= 1920) {
|
|
1441
|
+
return `translateX(calc(50vw - 960px))`;
|
|
1442
|
+
}
|
|
1443
|
+
return 'none';
|
|
1444
|
+
}
|
|
1445
|
+
get animationState() {
|
|
1446
|
+
return this.isOpen ? 'open' : 'closed';
|
|
1447
|
+
}
|
|
1448
|
+
get isOverlayMode() {
|
|
1449
|
+
return this.mode === 'overlay';
|
|
1450
|
+
}
|
|
1451
|
+
get isPushMode() {
|
|
1452
|
+
return this.mode === 'push';
|
|
1453
|
+
}
|
|
1454
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDrawerComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1455
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaDrawerComponent, isStandalone: false, selector: "matcha-drawer", inputs: { isOpen: "isOpen", mode: "mode", position: "position", width: "width", hasBackdrop: "hasBackdrop", disableClose: "disableClose", autoCloseOnMobile: "autoCloseOnMobile", breakpoint: "breakpoint", elevation: "elevation", hasFooter: "hasFooter" }, outputs: { isOpenChange: "isOpenChange", drawerToggle: "drawerToggle", drawerOpened: "drawerOpened", drawerClosed: "drawerClosed" }, host: { properties: { "class": "this.drawerClasses", "style.width": "this.drawerWidth", "style.height": "this.drawerHeight" } }, viewQueries: [{ propertyName: "drawerContent", first: true, predicate: ["drawerContent"], descendants: true }], ngImport: i0, template: "<!-- Backdrop para modo overlay -->\n<div *ngIf=\"isOverlayMode && isOpen && hasBackdrop\"\n class=\"matcha-backdrop\"\n [@fadeInOut]=\"isOpen ? '1' : '0'\"\n (click)=\"onBackdropClick()\">\n</div>\n\n<!-- Drawer Container Principal -->\n<div *ngIf=\"(isOpen && mode === 'overlay') || mode === 'push'\"\n class=\"matcha-drawer-container\"\n [class.matcha-drawer-overlay-mode]=\"isOverlayMode\"\n [class.matcha-drawer-push-mode]=\"isPushMode\"\n [class.matcha-drawer-left]=\"position === 'left'\"\n [class.matcha-drawer-right]=\"position === 'right'\"\n [@slideInLeft]=\"animationState\"\n [style.transform]=\"getDrawerTransform()\"\n [style.width]=\"drawerWidth\"\n [style.overflow]=\"isOpen ? 'visible' : 'hidden'\"\n (keydown)=\"onKeyDown($event)\"\n tabindex=\"0\">\n\n <!-- Drawer Content -->\n <div class=\"matcha-drawer-content\"\n [style.min-width]=\"width\">\n\n <!-- Header do drawer -->\n <div class=\"matcha-drawer-header\">\n <ng-content select=\"[drawer-header]\"></ng-content>\n\n </div>\n\n <!-- Conte\u00FAdo principal do drawer -->\n <div class=\"matcha-drawer-main-content\">\n <ng-content select=\"[drawer-content]\"></ng-content>\n <ng-content></ng-content>\n </div>\n\n <!-- Footer do drawer -->\n <div *ngIf=\"hasFooter\" class=\"matcha-drawer-footer\">\n <ng-content select=\"[drawer-footer]\"></ng-content>\n </div>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], animations: createAnimations }); }
|
|
1456
|
+
}
|
|
1457
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDrawerComponent, decorators: [{
|
|
1458
|
+
type: Component,
|
|
1459
|
+
args: [{ selector: 'matcha-drawer', animations: createAnimations, standalone: false, template: "<!-- Backdrop para modo overlay -->\n<div *ngIf=\"isOverlayMode && isOpen && hasBackdrop\"\n class=\"matcha-backdrop\"\n [@fadeInOut]=\"isOpen ? '1' : '0'\"\n (click)=\"onBackdropClick()\">\n</div>\n\n<!-- Drawer Container Principal -->\n<div *ngIf=\"(isOpen && mode === 'overlay') || mode === 'push'\"\n class=\"matcha-drawer-container\"\n [class.matcha-drawer-overlay-mode]=\"isOverlayMode\"\n [class.matcha-drawer-push-mode]=\"isPushMode\"\n [class.matcha-drawer-left]=\"position === 'left'\"\n [class.matcha-drawer-right]=\"position === 'right'\"\n [@slideInLeft]=\"animationState\"\n [style.transform]=\"getDrawerTransform()\"\n [style.width]=\"drawerWidth\"\n [style.overflow]=\"isOpen ? 'visible' : 'hidden'\"\n (keydown)=\"onKeyDown($event)\"\n tabindex=\"0\">\n\n <!-- Drawer Content -->\n <div class=\"matcha-drawer-content\"\n [style.min-width]=\"width\">\n\n <!-- Header do drawer -->\n <div class=\"matcha-drawer-header\">\n <ng-content select=\"[drawer-header]\"></ng-content>\n\n </div>\n\n <!-- Conte\u00FAdo principal do drawer -->\n <div class=\"matcha-drawer-main-content\">\n <ng-content select=\"[drawer-content]\"></ng-content>\n <ng-content></ng-content>\n </div>\n\n <!-- Footer do drawer -->\n <div *ngIf=\"hasFooter\" class=\"matcha-drawer-footer\">\n <ng-content select=\"[drawer-footer]\"></ng-content>\n </div>\n </div>\n</div>\n" }]
|
|
1460
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ChangeDetectorRef }], propDecorators: { isOpen: [{
|
|
1461
|
+
type: Input
|
|
1462
|
+
}], mode: [{
|
|
1463
|
+
type: Input
|
|
1464
|
+
}], position: [{
|
|
1465
|
+
type: Input
|
|
1466
|
+
}], width: [{
|
|
1467
|
+
type: Input
|
|
1468
|
+
}], hasBackdrop: [{
|
|
1469
|
+
type: Input
|
|
1470
|
+
}], disableClose: [{
|
|
1471
|
+
type: Input
|
|
1472
|
+
}], autoCloseOnMobile: [{
|
|
1473
|
+
type: Input
|
|
1474
|
+
}], breakpoint: [{
|
|
1475
|
+
type: Input
|
|
1476
|
+
}], elevation: [{
|
|
1477
|
+
type: Input
|
|
1478
|
+
}], hasFooter: [{
|
|
1479
|
+
type: Input
|
|
1480
|
+
}], isOpenChange: [{
|
|
1481
|
+
type: Output
|
|
1482
|
+
}], drawerToggle: [{
|
|
1483
|
+
type: Output
|
|
1484
|
+
}], drawerOpened: [{
|
|
1485
|
+
type: Output
|
|
1486
|
+
}], drawerClosed: [{
|
|
1487
|
+
type: Output
|
|
1488
|
+
}], drawerContent: [{
|
|
1489
|
+
type: ViewChild,
|
|
1490
|
+
args: ['drawerContent', { static: false }]
|
|
1491
|
+
}], drawerClasses: [{
|
|
1492
|
+
type: HostBinding,
|
|
1493
|
+
args: ['class']
|
|
1494
|
+
}], drawerWidth: [{
|
|
1495
|
+
type: HostBinding,
|
|
1496
|
+
args: ['style.width']
|
|
1497
|
+
}], drawerHeight: [{
|
|
1498
|
+
type: HostBinding,
|
|
1499
|
+
args: ['style.height']
|
|
1500
|
+
}] } });
|
|
1501
|
+
|
|
1502
|
+
class MatchaDrawerContainerComponent {
|
|
1503
|
+
constructor() {
|
|
1504
|
+
this.hasBackdrop = true;
|
|
1505
|
+
this.autoFocus = true;
|
|
1506
|
+
}
|
|
1507
|
+
ngOnInit() {
|
|
1508
|
+
if (this.drawer) {
|
|
1509
|
+
this.setupDrawerEvents();
|
|
1510
|
+
}
|
|
1511
|
+
}
|
|
1512
|
+
ngOnDestroy() {
|
|
1513
|
+
// Cleanup se necessário
|
|
1514
|
+
}
|
|
1515
|
+
setupDrawerEvents() {
|
|
1516
|
+
if (this.drawer) {
|
|
1517
|
+
this.drawer.drawerOpened.subscribe(() => {
|
|
1518
|
+
if (this.autoFocus) {
|
|
1519
|
+
setTimeout(() => {
|
|
1520
|
+
// Focus será gerenciado pelo próprio drawer component
|
|
1521
|
+
}, 100);
|
|
1522
|
+
}
|
|
1523
|
+
});
|
|
1524
|
+
}
|
|
1525
|
+
}
|
|
1526
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDrawerContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1527
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaDrawerContainerComponent, isStandalone: false, selector: "matcha-drawer-container", inputs: { hasBackdrop: "hasBackdrop", autoFocus: "autoFocus" }, queries: [{ propertyName: "drawer", first: true, predicate: MatchaDrawerComponent, descendants: true }], ngImport: i0, template: "<div class=\"matcha-drawer-container-wrapper\">\n <ng-content></ng-content>\n</div>\n" }); }
|
|
1528
|
+
}
|
|
1529
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDrawerContainerComponent, decorators: [{
|
|
1530
|
+
type: Component,
|
|
1531
|
+
args: [{ selector: 'matcha-drawer-container', standalone: false, template: "<div class=\"matcha-drawer-container-wrapper\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
1532
|
+
}], propDecorators: { hasBackdrop: [{
|
|
1533
|
+
type: Input
|
|
1534
|
+
}], autoFocus: [{
|
|
1535
|
+
type: Input
|
|
1536
|
+
}], drawer: [{
|
|
1537
|
+
type: ContentChild,
|
|
1538
|
+
args: [MatchaDrawerComponent]
|
|
1539
|
+
}] } });
|
|
1540
|
+
|
|
1541
|
+
class MatchaDrawerContentComponent {
|
|
1542
|
+
constructor() {
|
|
1543
|
+
this.padding = '24px';
|
|
1544
|
+
this.scrollable = true;
|
|
1545
|
+
this.maxHeight = 'auto';
|
|
1546
|
+
}
|
|
1547
|
+
get contentClasses() {
|
|
1548
|
+
return `matcha-drawer-content ${this.scrollable ? 'scrollable' : 'no-scroll'}`;
|
|
1549
|
+
}
|
|
1550
|
+
get maxHeightStyle() {
|
|
1551
|
+
return this.maxHeight;
|
|
1552
|
+
}
|
|
1553
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDrawerContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1554
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaDrawerContentComponent, isStandalone: false, selector: "matcha-drawer-content", inputs: { padding: "padding", scrollable: "scrollable", maxHeight: "maxHeight" }, host: { properties: { "class": "this.contentClasses", "style.max-height": "this.maxHeightStyle" } }, ngImport: i0, template: `
|
|
1555
|
+
<div class="matcha-drawer-content-wrapper">
|
|
1556
|
+
<ng-content></ng-content>
|
|
1557
|
+
</div>
|
|
1558
|
+
`, isInline: true }); }
|
|
1559
|
+
}
|
|
1560
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDrawerContentComponent, decorators: [{
|
|
1561
|
+
type: Component,
|
|
1562
|
+
args: [{
|
|
1563
|
+
selector: 'matcha-drawer-content',
|
|
1564
|
+
template: `
|
|
1565
|
+
<div class="matcha-drawer-content-wrapper">
|
|
1566
|
+
<ng-content></ng-content>
|
|
1567
|
+
</div>
|
|
1568
|
+
`,
|
|
1569
|
+
standalone: false
|
|
1570
|
+
}]
|
|
1571
|
+
}], propDecorators: { padding: [{
|
|
1572
|
+
type: Input
|
|
1573
|
+
}], scrollable: [{
|
|
1574
|
+
type: Input
|
|
1575
|
+
}], maxHeight: [{
|
|
1576
|
+
type: Input
|
|
1577
|
+
}], contentClasses: [{
|
|
1578
|
+
type: HostBinding,
|
|
1579
|
+
args: ['class']
|
|
1580
|
+
}], maxHeightStyle: [{
|
|
1581
|
+
type: HostBinding,
|
|
1582
|
+
args: ['style.max-height']
|
|
1583
|
+
}] } });
|
|
1584
|
+
|
|
1237
1585
|
class MatchaIconComponent {
|
|
1238
1586
|
constructor() {
|
|
1239
1587
|
this.name = '';
|
|
@@ -1250,10 +1598,10 @@ class MatchaIconComponent {
|
|
|
1250
1598
|
const activeClasses = `${icon} ${color} ${size} ${loading} ${this.class}`;
|
|
1251
1599
|
return activeClasses;
|
|
1252
1600
|
}
|
|
1253
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1254
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
1601
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1602
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaIconComponent, isStandalone: false, 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: [""] }); }
|
|
1255
1603
|
}
|
|
1256
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
1604
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaIconComponent, decorators: [{
|
|
1257
1605
|
type: Component,
|
|
1258
1606
|
args: [{ selector: 'matcha-icon', standalone: false, template: "<span [class]=\"classes\">\n <ng-content></ng-content>\n</span>\n" }]
|
|
1259
1607
|
}], propDecorators: { name: [{
|
|
@@ -1350,10 +1698,10 @@ class MatchaGridComponent {
|
|
|
1350
1698
|
this.setColspanClasses(this.colspan, this.breakpoint);
|
|
1351
1699
|
this.setRowspanClasses(this.rowspan, this.breakpoint);
|
|
1352
1700
|
}
|
|
1353
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1354
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
1701
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaGridComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1702
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaGridComponent, isStandalone: false, 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: [""] }); }
|
|
1355
1703
|
}
|
|
1356
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
1704
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaGridComponent, decorators: [{
|
|
1357
1705
|
type: Component,
|
|
1358
1706
|
args: [{ selector: 'matcha-grid', standalone: false, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
1359
1707
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }], propDecorators: { breakpoint: [{
|
|
@@ -1413,10 +1761,10 @@ class MatchaMasonryComponent {
|
|
|
1413
1761
|
activeClasses += gapXl ? ` ${gapXl}` : '';
|
|
1414
1762
|
return activeClasses;
|
|
1415
1763
|
}
|
|
1416
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1417
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
1764
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaMasonryComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1765
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaMasonryComponent, isStandalone: false, 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: [""] }); }
|
|
1418
1766
|
}
|
|
1419
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
1767
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaMasonryComponent, decorators: [{
|
|
1420
1768
|
type: Component,
|
|
1421
1769
|
args: [{ selector: 'matcha-masonry', standalone: false, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
1422
1770
|
}], propDecorators: { colSize: [{
|
|
@@ -1452,19 +1800,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
1452
1800
|
}] } });
|
|
1453
1801
|
|
|
1454
1802
|
class MatchaModalContentComponent {
|
|
1455
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1456
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
1803
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaModalContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1804
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaModalContentComponent, isStandalone: false, 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: [""] }); }
|
|
1457
1805
|
}
|
|
1458
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
1806
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaModalContentComponent, decorators: [{
|
|
1459
1807
|
type: Component,
|
|
1460
1808
|
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" }]
|
|
1461
1809
|
}] });
|
|
1462
1810
|
|
|
1463
1811
|
class MatchaModalHeaderComponent {
|
|
1464
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1465
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
1812
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaModalHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1813
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaModalHeaderComponent, isStandalone: false, 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"] }] }); }
|
|
1466
1814
|
}
|
|
1467
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
1815
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaModalHeaderComponent, decorators: [{
|
|
1468
1816
|
type: Component,
|
|
1469
1817
|
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" }]
|
|
1470
1818
|
}] });
|
|
@@ -1490,10 +1838,10 @@ class MatchaModalFooterComponent {
|
|
|
1490
1838
|
}
|
|
1491
1839
|
});
|
|
1492
1840
|
}
|
|
1493
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1494
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
1841
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaModalFooterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1842
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaModalFooterComponent, isStandalone: false, 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"] }] }); }
|
|
1495
1843
|
}
|
|
1496
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
1844
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaModalFooterComponent, decorators: [{
|
|
1497
1845
|
type: Component,
|
|
1498
1846
|
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" }]
|
|
1499
1847
|
}], propDecorators: { buttonType: [{
|
|
@@ -1502,10 +1850,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
1502
1850
|
}] } });
|
|
1503
1851
|
|
|
1504
1852
|
class MatchaModalOptionsComponent {
|
|
1505
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1506
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
1853
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaModalOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1854
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaModalOptionsComponent, isStandalone: false, selector: "matcha-modal-options", ngImport: i0, template: "<div class=\"flex-row gap-8\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
|
|
1507
1855
|
}
|
|
1508
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
1856
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaModalOptionsComponent, decorators: [{
|
|
1509
1857
|
type: Component,
|
|
1510
1858
|
args: [{ selector: 'matcha-modal-options', standalone: false, template: "<div class=\"flex-row gap-8\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
1511
1859
|
}] });
|
|
@@ -1544,10 +1892,10 @@ class MatchaModalComponent {
|
|
|
1544
1892
|
this.hasBackdrop = true;
|
|
1545
1893
|
this.backdropClass = '';
|
|
1546
1894
|
}
|
|
1547
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1548
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
1895
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1896
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaModalComponent, isStandalone: false, 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: [""] }); }
|
|
1549
1897
|
}
|
|
1550
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
1898
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaModalComponent, decorators: [{
|
|
1551
1899
|
type: Component,
|
|
1552
1900
|
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>" }]
|
|
1553
1901
|
}], ctorParameters: () => [], propDecorators: { size: [{
|
|
@@ -1626,10 +1974,10 @@ class MatchaMenuComponent {
|
|
|
1626
1974
|
toggleMenu() {
|
|
1627
1975
|
this.isOpen = !this.isOpen;
|
|
1628
1976
|
}
|
|
1629
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1630
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
1977
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaMenuComponent, deps: [{ token: ElementRef }, { token: Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1978
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaMenuComponent, isStandalone: false, 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"] }] }); }
|
|
1631
1979
|
}
|
|
1632
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
1980
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaMenuComponent, decorators: [{
|
|
1633
1981
|
type: Component,
|
|
1634
1982
|
args: [{ selector: 'matcha-menu', exportAs: 'matchaMenu', standalone: false, template: "<div class=\"menu\" [ngClass]=\"{'show': isOpen}\">\n <ng-content></ng-content>\n </div>\n" }]
|
|
1635
1983
|
}], ctorParameters: () => [{ type: i0.ElementRef, decorators: [{
|
|
@@ -1650,9 +1998,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
1650
1998
|
|
|
1651
1999
|
class MatchaToolbarComponent {
|
|
1652
2000
|
constructor() {
|
|
2001
|
+
this.elevation = 1;
|
|
1653
2002
|
this.isMobileScreen = false;
|
|
1654
2003
|
this.mobileBreakpoint = 1024;
|
|
1655
2004
|
}
|
|
2005
|
+
get elevationClass() {
|
|
2006
|
+
return `elevation-z-${this.elevation}`;
|
|
2007
|
+
}
|
|
1656
2008
|
ngOnInit() {
|
|
1657
2009
|
this.checkScreenWidth();
|
|
1658
2010
|
}
|
|
@@ -1668,13 +2020,15 @@ class MatchaToolbarComponent {
|
|
|
1668
2020
|
ngOnDestroy() {
|
|
1669
2021
|
clearTimeout(this.resizeTimeout);
|
|
1670
2022
|
}
|
|
1671
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1672
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
2023
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaToolbarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2024
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaToolbarComponent, isStandalone: false, selector: "matcha-toolbar", inputs: { elevation: "elevation" }, 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\n<ng-template #toolbarCustomButton>\n <ng-content select=\"matcha-toolbar-custom-button\"></ng-content>\n</ng-template>\n<!-- CONTENT HEADER -->\n<div class=\"flex-column background-surface radius-8\" [ngClass]=\"elevationClass\">\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 *ngTemplateOutlet=\"toolbarCustomButton\"></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 *ngTemplateOutlet=\"toolbarCustomButton\"></ng-container>\n </ng-container>\n </div>\n </div>\n </div>\n</div>\n<!-- / CONTENT HEADER -->\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
1673
2025
|
}
|
|
1674
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
2026
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaToolbarComponent, decorators: [{
|
|
1675
2027
|
type: Component,
|
|
1676
|
-
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\n<ng-template #toolbarCustomButton>\n <ng-content select=\"matcha-toolbar-custom-button\"></ng-content>\n</ng-template>\n<!-- CONTENT HEADER -->\n<div class=\"flex-column background-surface radius-8
|
|
1677
|
-
}], propDecorators: {
|
|
2028
|
+
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\n<ng-template #toolbarCustomButton>\n <ng-content select=\"matcha-toolbar-custom-button\"></ng-content>\n</ng-template>\n<!-- CONTENT HEADER -->\n<div class=\"flex-column background-surface radius-8\" [ngClass]=\"elevationClass\">\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 *ngTemplateOutlet=\"toolbarCustomButton\"></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 *ngTemplateOutlet=\"toolbarCustomButton\"></ng-container>\n </ng-container>\n </div>\n </div>\n </div>\n</div>\n<!-- / CONTENT HEADER -->\n" }]
|
|
2029
|
+
}], propDecorators: { elevation: [{
|
|
2030
|
+
type: Input
|
|
2031
|
+
}], onResize: [{
|
|
1678
2032
|
type: HostListener,
|
|
1679
2033
|
args: ['window:resize', []]
|
|
1680
2034
|
}] } });
|
|
@@ -1691,10 +2045,10 @@ class MatchaToolbarButtonComponent {
|
|
|
1691
2045
|
emitButtonClick() {
|
|
1692
2046
|
this.buttonClick.emit();
|
|
1693
2047
|
}
|
|
1694
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1695
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
2048
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaToolbarButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2049
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaToolbarButtonComponent, isStandalone: false, selector: "matcha-toolbar-button", inputs: { icon: "icon" }, outputs: { buttonClick: "buttonClick" }, ngImport: i0, template: "<!-- HOW TO USE:\n<matcha-toolbar-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\" toolbar-button-tooltip=\"TOOLTIP-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n</matcha-toolbar-button>\n-->\n<button matcha-button outline=\"true\" size=\"small\" color=\"grey\" icon=\"true\" class=\"mt-16 mt-md-0\" (click)=\"emitButtonClick()\">\n <span [class]=\"classes\"></span>\n</button>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaButtonComponent, selector: "[matcha-button]", inputs: ["size", "size-xs", "size-sm", "size-md", "size-lg", "size-xl", "color", "basic", "outline", "alpha", "pill", "link", "icon"] }] }); }
|
|
1696
2050
|
}
|
|
1697
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
2051
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaToolbarButtonComponent, decorators: [{
|
|
1698
2052
|
type: Component,
|
|
1699
2053
|
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" }]
|
|
1700
2054
|
}], propDecorators: { icon: [{
|
|
@@ -1705,10 +2059,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
1705
2059
|
}] } });
|
|
1706
2060
|
|
|
1707
2061
|
class MatchaToolbarContentComponent {
|
|
1708
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1709
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
2062
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaToolbarContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2063
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaToolbarContentComponent, isStandalone: false, 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: [""] }); }
|
|
1710
2064
|
}
|
|
1711
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
2065
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaToolbarContentComponent, decorators: [{
|
|
1712
2066
|
type: Component,
|
|
1713
2067
|
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" }]
|
|
1714
2068
|
}] });
|
|
@@ -1720,10 +2074,10 @@ class MatchaToolbarMainButtonComponent {
|
|
|
1720
2074
|
emitButtonClick() {
|
|
1721
2075
|
this.buttonClick.emit();
|
|
1722
2076
|
}
|
|
1723
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1724
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
2077
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaToolbarMainButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2078
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaToolbarMainButtonComponent, isStandalone: false, selector: "matcha-toolbar-main-button", outputs: { buttonClick: "buttonClick" }, ngImport: i0, template: "<!-- HOW TO USE:\n<matcha-toolbar-main-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n</matcha-toolbar-main-button>\n-->\n<button matcha-button size=\"tiny\" size-md=\"small\" color=\"accent\" (click)=\"emitButtonClick()\">\n <span class=\"i-matcha-action_plus i-size-sm ml--4\"></span>\n <span class=\"ml-8 fs-14\">\n <ng-content></ng-content>\n </span>\n</button>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaButtonComponent, selector: "[matcha-button]", inputs: ["size", "size-xs", "size-sm", "size-md", "size-lg", "size-xl", "color", "basic", "outline", "alpha", "pill", "link", "icon"] }] }); }
|
|
1725
2079
|
}
|
|
1726
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
2080
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaToolbarMainButtonComponent, decorators: [{
|
|
1727
2081
|
type: Component,
|
|
1728
2082
|
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" }]
|
|
1729
2083
|
}], propDecorators: { buttonClick: [{
|
|
@@ -1731,10 +2085,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
1731
2085
|
}] } });
|
|
1732
2086
|
|
|
1733
2087
|
class MatchaToolbarCustomButtonComponent {
|
|
1734
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1735
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
2088
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaToolbarCustomButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2089
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaToolbarCustomButtonComponent, isStandalone: false, selector: "matcha-toolbar-custom-button", ngImport: i0, template: "<!-- HOW TO USE:\n<matcha-toolbar-custom-button>\n Bot\u00E3o customizado aqui\n</matcha-toolbar-custom-button>\n-->\n<ng-content></ng-content>\n", styles: [""] }); }
|
|
1736
2090
|
}
|
|
1737
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
2091
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaToolbarCustomButtonComponent, decorators: [{
|
|
1738
2092
|
type: Component,
|
|
1739
2093
|
args: [{ selector: 'matcha-toolbar-custom-button', standalone: false, template: "<!-- HOW TO USE:\n<matcha-toolbar-custom-button>\n Bot\u00E3o customizado aqui\n</matcha-toolbar-custom-button>\n-->\n<ng-content></ng-content>\n" }]
|
|
1740
2094
|
}] });
|
|
@@ -1755,12 +2109,12 @@ class MatchaFormFieldComponent {
|
|
|
1755
2109
|
get showError() {
|
|
1756
2110
|
return !!this.control?.invalid && (this.control?.touched || this.control?.dirty);
|
|
1757
2111
|
}
|
|
1758
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1759
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
2112
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaFormFieldComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2113
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaFormFieldComponent, isStandalone: false, 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<ng-content select=\"matcha-hint-text\"></ng-content>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
|
|
1760
2114
|
}
|
|
1761
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
2115
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaFormFieldComponent, decorators: [{
|
|
1762
2116
|
type: Component,
|
|
1763
|
-
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" }]
|
|
2117
|
+
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<ng-content select=\"matcha-hint-text\"></ng-content>\n" }]
|
|
1764
2118
|
}], propDecorators: { color: [{
|
|
1765
2119
|
type: Input
|
|
1766
2120
|
}], size: [{
|
|
@@ -1790,10 +2144,10 @@ class MatchaLabelComponent {
|
|
|
1790
2144
|
constructor() {
|
|
1791
2145
|
this.color = 'blue-grey';
|
|
1792
2146
|
}
|
|
1793
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1794
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
2147
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaLabelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2148
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaLabelComponent, isStandalone: false, selector: "matcha-label", inputs: { color: "color" }, ngImport: i0, template: "<label\n class=\"d-flex d-flex-align-center position-relative text-nowrap px-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: [""] }); }
|
|
1795
2149
|
}
|
|
1796
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
2150
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaLabelComponent, decorators: [{
|
|
1797
2151
|
type: Component,
|
|
1798
2152
|
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>" }]
|
|
1799
2153
|
}], propDecorators: { color: [{
|
|
@@ -1801,10 +2155,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
1801
2155
|
}] } });
|
|
1802
2156
|
|
|
1803
2157
|
class MatchaErrorComponent {
|
|
1804
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1805
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
2158
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaErrorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2159
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaErrorComponent, isStandalone: false, 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"] }] }); }
|
|
1806
2160
|
}
|
|
1807
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
2161
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaErrorComponent, decorators: [{
|
|
1808
2162
|
type: Component,
|
|
1809
2163
|
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>" }]
|
|
1810
2164
|
}] });
|
|
@@ -1862,10 +2216,10 @@ class MatchaRippleDirective {
|
|
|
1862
2216
|
});
|
|
1863
2217
|
this.ripples = [];
|
|
1864
2218
|
}
|
|
1865
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1866
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.
|
|
2219
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaRippleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2220
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.1", type: MatchaRippleDirective, isStandalone: false, selector: "[matchaRipple]", inputs: { rippleColor: "rippleColor" }, host: { listeners: { "mousedown": "onMouseDown($event)" } }, ngImport: i0 }); }
|
|
1867
2221
|
}
|
|
1868
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
2222
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaRippleDirective, decorators: [{
|
|
1869
2223
|
type: Directive,
|
|
1870
2224
|
args: [{
|
|
1871
2225
|
selector: '[matchaRipple]',
|
|
@@ -1890,19 +2244,21 @@ class MatchaCheckboxComponent {
|
|
|
1890
2244
|
this.onChange = () => { };
|
|
1891
2245
|
this.onTouched = () => { };
|
|
1892
2246
|
}
|
|
2247
|
+
get disabled() {
|
|
2248
|
+
return this._disabled;
|
|
2249
|
+
}
|
|
1893
2250
|
set disabled(value) {
|
|
1894
2251
|
// Converte 'false' (string) ou false (boolean) para false, e qualquer outro valor para true.
|
|
1895
2252
|
this._disabled = value != null && `${value}` !== 'false';
|
|
1896
2253
|
}
|
|
1897
|
-
get disabled() {
|
|
1898
|
-
return this._disabled;
|
|
1899
|
-
}
|
|
1900
2254
|
get checked() {
|
|
1901
2255
|
return this._checked;
|
|
1902
2256
|
}
|
|
1903
2257
|
set checked(value) {
|
|
1904
|
-
|
|
1905
|
-
|
|
2258
|
+
// Converte string para boolean: 'false' (string) ou false (boolean) para false, qualquer outro valor para true
|
|
2259
|
+
const booleanValue = value != null && `${value}` !== 'false';
|
|
2260
|
+
if (booleanValue !== this._checked) {
|
|
2261
|
+
this._checked = booleanValue;
|
|
1906
2262
|
this.onChange(this._checked);
|
|
1907
2263
|
}
|
|
1908
2264
|
}
|
|
@@ -1928,8 +2284,8 @@ class MatchaCheckboxComponent {
|
|
|
1928
2284
|
this.checkedChange.emit(eventData);
|
|
1929
2285
|
this.change.emit(event);
|
|
1930
2286
|
}
|
|
1931
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
1932
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
2287
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaCheckboxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2288
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaCheckboxComponent, isStandalone: false, selector: "matcha-checkbox", inputs: { color: "color", indeterminate: "indeterminate", disabled: "disabled", checked: "checked" }, outputs: { checkedChange: "checkedChange", change: "change" }, providers: [
|
|
1933
2289
|
{
|
|
1934
2290
|
provide: NG_VALUE_ACCESSOR,
|
|
1935
2291
|
useExisting: forwardRef(() => MatchaCheckboxComponent),
|
|
@@ -1937,7 +2293,7 @@ class MatchaCheckboxComponent {
|
|
|
1937
2293
|
}
|
|
1938
2294
|
], ngImport: i0, template: "<label\n class=\"matcha-checkbox flex-align-center\"\n [class.matcha-checkbox-disabled]=\"disabled\">\n <div\n class=\"matcha-checkbox-container w-40 h-40 max-w-40 max-h-40 min-w-40 min-h-40 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"] }] }); }
|
|
1939
2295
|
}
|
|
1940
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
2296
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaCheckboxComponent, decorators: [{
|
|
1941
2297
|
type: Component,
|
|
1942
2298
|
args: [{ selector: 'matcha-checkbox', standalone: false, providers: [
|
|
1943
2299
|
{
|
|
@@ -2012,8 +2368,8 @@ class MatchaRadioComponent {
|
|
|
2012
2368
|
this.checkedChange.emit(eventData);
|
|
2013
2369
|
this.change.emit(event);
|
|
2014
2370
|
}
|
|
2015
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
2016
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
2371
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaRadioComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2372
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaRadioComponent, isStandalone: false, selector: "matcha-radio", inputs: { color: "color", value: "value", name: "name", disabled: "disabled", checked: "checked" }, outputs: { checkedChange: "checkedChange", change: "change" }, providers: [
|
|
2017
2373
|
{
|
|
2018
2374
|
provide: NG_VALUE_ACCESSOR,
|
|
2019
2375
|
useExisting: forwardRef(() => MatchaRadioComponent),
|
|
@@ -2021,7 +2377,7 @@ class MatchaRadioComponent {
|
|
|
2021
2377
|
}
|
|
2022
2378
|
], ngImport: i0, template: "<label\n class=\"matcha-radio flex-align-center\"\n [class.matcha-radio-disabled]=\"disabled\">\n <div\n class=\"matcha-radio-container w-40 h-40 max-w-40 max-h-40 min-w-40 min-h-40 flex-center-center radius-full cursor-pointer\"\n matchaRipple>\n <input\n type=\"radio\"\n class=\"matcha-radio-input\"\n [attr.name]=\"name\"\n [value]=\"value\"\n [checked]=\"checked\"\n [disabled]=\"disabled\"\n (change)=\"onInputChange($event)\">\n </div>\n\n <span class=\"matcha-radio-label fw-500 lh-20\">\n <ng-content></ng-content>\n </span>\n</label>", styles: [""], dependencies: [{ kind: "directive", type: MatchaRippleDirective, selector: "[matchaRipple]", inputs: ["rippleColor"] }] }); }
|
|
2023
2379
|
}
|
|
2024
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
2380
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaRadioComponent, decorators: [{
|
|
2025
2381
|
type: Component,
|
|
2026
2382
|
args: [{ selector: 'matcha-radio', standalone: false, providers: [
|
|
2027
2383
|
{
|
|
@@ -2093,10 +2449,10 @@ class MatchaSpinComponent {
|
|
|
2093
2449
|
const progress = Math.min(Math.max(Number(this.progress), 0), 100);
|
|
2094
2450
|
return this.circumference - (progress / 100) * this.circumference;
|
|
2095
2451
|
}
|
|
2096
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
2097
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
2452
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSpinComponent, deps: [{ token: ElementRef }, { token: Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2453
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaSpinComponent, isStandalone: false, 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: [""] }); }
|
|
2098
2454
|
}
|
|
2099
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
2455
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSpinComponent, decorators: [{
|
|
2100
2456
|
type: Component,
|
|
2101
2457
|
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" }]
|
|
2102
2458
|
}], ctorParameters: () => [{ type: i0.ElementRef, decorators: [{
|
|
@@ -2131,15 +2487,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
2131
2487
|
|
|
2132
2488
|
class MatchaSpinnerComponent {
|
|
2133
2489
|
set progress(value) {
|
|
2134
|
-
this.
|
|
2490
|
+
this._progressValue = Number(value);
|
|
2135
2491
|
}
|
|
2136
2492
|
get progress() {
|
|
2137
|
-
return this.
|
|
2493
|
+
return this._progressValue;
|
|
2494
|
+
}
|
|
2495
|
+
get _progress() { return this.progress; }
|
|
2496
|
+
get _color() { return this.color; }
|
|
2497
|
+
get hostSize() {
|
|
2498
|
+
return this.size;
|
|
2138
2499
|
}
|
|
2139
2500
|
constructor(_elementRef, _renderer) {
|
|
2140
2501
|
this._elementRef = _elementRef;
|
|
2141
2502
|
this._renderer = _renderer;
|
|
2142
|
-
this.
|
|
2503
|
+
this._progressValue = 0;
|
|
2143
2504
|
this.color = 'accent';
|
|
2144
2505
|
this.size = null;
|
|
2145
2506
|
this.sizeXs = null;
|
|
@@ -2173,10 +2534,10 @@ class MatchaSpinnerComponent {
|
|
|
2173
2534
|
const progress = Math.min(Math.max(Number(this.progress), 0), 100);
|
|
2174
2535
|
return this.circumference - (progress / 100) * this.circumference;
|
|
2175
2536
|
}
|
|
2176
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
2177
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
2537
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSpinnerComponent, deps: [{ token: ElementRef }, { token: Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2538
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaSpinnerComponent, isStandalone: false, selector: "matcha-spinner", 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"] }, host: { properties: { "attr.progress": "this._progress", "attr.color": "this._color", "attr.size": "this.hostSize" } }, ngImport: i0, template: "<div\n class=\"matcha-spinner\"\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\" class=\"spinner\">\n <circle\n class=\"spinner-placeholder\"\n [attr.cx]=\"center\"\n [attr.cy]=\"center\"\n [attr.r]=\"radius\"\n [attr.stroke-width]=\"strokeWidth\"\n stroke-linecap=\"round\"\n />\n <circle\n class=\"spinner-progress path\"\n [attr.cx]=\"center\"\n [attr.cy]=\"center\"\n [attr.r]=\"radius\"\n [attr.stroke-width]=\"strokeWidth\"\n [attr.stroke]=\"color\"\n [attr.stroke-dasharray]=\"circumference\"\n [attr.stroke-dashoffset]=\"dashOffset\"\n stroke-linecap=\"round\"\n />\n </svg>\n</div>\n", styles: [""] }); }
|
|
2178
2539
|
}
|
|
2179
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
2540
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSpinnerComponent, decorators: [{
|
|
2180
2541
|
type: Component,
|
|
2181
2542
|
args: [{ selector: 'matcha-spinner', standalone: false, template: "<div\n class=\"matcha-spinner\"\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\" class=\"spinner\">\n <circle\n class=\"spinner-placeholder\"\n [attr.cx]=\"center\"\n [attr.cy]=\"center\"\n [attr.r]=\"radius\"\n [attr.stroke-width]=\"strokeWidth\"\n stroke-linecap=\"round\"\n />\n <circle\n class=\"spinner-progress path\"\n [attr.cx]=\"center\"\n [attr.cy]=\"center\"\n [attr.r]=\"radius\"\n [attr.stroke-width]=\"strokeWidth\"\n [attr.stroke]=\"color\"\n [attr.stroke-dasharray]=\"circumference\"\n [attr.stroke-dashoffset]=\"dashOffset\"\n stroke-linecap=\"round\"\n />\n </svg>\n</div>\n" }]
|
|
2182
2543
|
}], ctorParameters: () => [{ type: i0.ElementRef, decorators: [{
|
|
@@ -2187,11 +2548,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
2187
2548
|
args: [Renderer2]
|
|
2188
2549
|
}] }], propDecorators: { progress: [{
|
|
2189
2550
|
type: Input
|
|
2551
|
+
}], _progress: [{
|
|
2552
|
+
type: HostBinding,
|
|
2553
|
+
args: ['attr.progress']
|
|
2190
2554
|
}], color: [{
|
|
2191
2555
|
type: Input
|
|
2556
|
+
}], _color: [{
|
|
2557
|
+
type: HostBinding,
|
|
2558
|
+
args: ['attr.color']
|
|
2192
2559
|
}], size: [{
|
|
2193
2560
|
type: Input,
|
|
2194
2561
|
args: ['size']
|
|
2562
|
+
}], hostSize: [{
|
|
2563
|
+
type: HostBinding,
|
|
2564
|
+
args: ['attr.size']
|
|
2195
2565
|
}], sizeXs: [{
|
|
2196
2566
|
type: Input,
|
|
2197
2567
|
args: ['size-xs']
|
|
@@ -2230,12 +2600,12 @@ class MatchaHintTextComponent {
|
|
|
2230
2600
|
default: return 'red';
|
|
2231
2601
|
}
|
|
2232
2602
|
}
|
|
2233
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
2234
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
2603
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaHintTextComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2604
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaHintTextComponent, isStandalone: false, selector: "matcha-hint-text", inputs: { type: "type", size: "size" }, ngImport: i0, template: "<div class=\"d-flex flex-align-center 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"] }] }); }
|
|
2235
2605
|
}
|
|
2236
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
2606
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaHintTextComponent, decorators: [{
|
|
2237
2607
|
type: Component,
|
|
2238
|
-
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" }]
|
|
2608
|
+
args: [{ selector: 'matcha-hint-text', standalone: false, template: "<div class=\"d-flex flex-align-center gap-4\">\n <matcha-icon color=\"{{ iconColor }}\" name=\"{{ iconName }}\"> </matcha-icon>\n <span class=\"text\"><ng-content></ng-content></span>\n</div>\n" }]
|
|
2239
2609
|
}], propDecorators: { type: [{
|
|
2240
2610
|
type: Input,
|
|
2241
2611
|
args: ['type']
|
|
@@ -2264,10 +2634,10 @@ class MatchaSkeletonComponent {
|
|
|
2264
2634
|
get heightClass() {
|
|
2265
2635
|
return `h-${this.height}`;
|
|
2266
2636
|
}
|
|
2267
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
2268
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
2637
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSkeletonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2638
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaSkeletonComponent, isStandalone: false, selector: "matcha-skeleton", inputs: { amount: "amount", grid: "grid", height: "height", model: "model", gap: "gap" }, ngImport: i0, template: "<ng-content></ng-content>\n<!-- CARD SKELETON -->\n<div [class]=\"classes\" *ngIf=\"model !== 'table'\">\n <div class=\"skeleton-animated-background flex-column--force p-0 radius-8 user-select-none overflow-hidden\" *ngFor=\"let i of [].constructor(amount)\">\n <ng-container *ngIf=\"model === 'profile'\"><span class=\"h8 title p-16 m-0\"> <span class=\"radius-full background-surface-alpha h-48 w-48\"></span> </span></ng-container>\n\n <div [class]=\"'h-'+ height + ' flex-column--force p-16 background-bg-alpha'\"></div>\n\n <ng-container *ngIf=\"model === 'profile'\">\n <div class=\"flex-column--force\">\n <div class=\"flex-column--force p-16 gap-16\">\n <div class=\"w-100-p h-16 background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p h-16 background-surface-alpha radius-full\"></div>\n </div>\n </div>\n </ng-container>\n </div>\n</div>\n<!-- CARD SKELETON -->\n\n<!-- TABLE SKELETON -->\n<div class=\"skeleton-animated-background w-100-p mr-16 flex-column--force p-0 radius-8 user-select-none\" *ngIf=\"model === 'table'\">\n\n <div class=\"flex-column--force h-64 background-surface-alpha\">\n <ng-container> </ng-container>\n </div>\n\n <ng-container *ngFor=\"let i of [].constructor(amount)\">\n <div class=\"grid-4 h-80 px-16 gap-16 flex-align-center--force\">\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"min-h-48 min-w-48 h-48 w-48 background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-60-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-60-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n </div>\n\n <div class=\"grid-4 h-80 px-16 gap-16 flex-align-center--force background-bg-alpha\">\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"min-h-48 min-w-48 h-48 w-48 background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-30-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-60-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n </div>\n\n </ng-container>\n\n</div>\n<!-- TABLE SKELETON -->", styles: [""], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
|
|
2269
2639
|
}
|
|
2270
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
2640
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSkeletonComponent, decorators: [{
|
|
2271
2641
|
type: Component,
|
|
2272
2642
|
args: [{ selector: 'matcha-skeleton', standalone: false, template: "<ng-content></ng-content>\n<!-- CARD SKELETON -->\n<div [class]=\"classes\" *ngIf=\"model !== 'table'\">\n <div class=\"skeleton-animated-background flex-column--force p-0 radius-8 user-select-none overflow-hidden\" *ngFor=\"let i of [].constructor(amount)\">\n <ng-container *ngIf=\"model === 'profile'\"><span class=\"h8 title p-16 m-0\"> <span class=\"radius-full background-surface-alpha h-48 w-48\"></span> </span></ng-container>\n\n <div [class]=\"'h-'+ height + ' flex-column--force p-16 background-bg-alpha'\"></div>\n\n <ng-container *ngIf=\"model === 'profile'\">\n <div class=\"flex-column--force\">\n <div class=\"flex-column--force p-16 gap-16\">\n <div class=\"w-100-p h-16 background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p h-16 background-surface-alpha radius-full\"></div>\n </div>\n </div>\n </ng-container>\n </div>\n</div>\n<!-- CARD SKELETON -->\n\n<!-- TABLE SKELETON -->\n<div class=\"skeleton-animated-background w-100-p mr-16 flex-column--force p-0 radius-8 user-select-none\" *ngIf=\"model === 'table'\">\n\n <div class=\"flex-column--force h-64 background-surface-alpha\">\n <ng-container> </ng-container>\n </div>\n\n <ng-container *ngFor=\"let i of [].constructor(amount)\">\n <div class=\"grid-4 h-80 px-16 gap-16 flex-align-center--force\">\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"min-h-48 min-w-48 h-48 w-48 background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-60-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-60-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n </div>\n\n <div class=\"grid-4 h-80 px-16 gap-16 flex-align-center--force background-bg-alpha\">\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"min-h-48 min-w-48 h-48 w-48 background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-30-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-60-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n </div>\n\n </ng-container>\n\n</div>\n<!-- TABLE SKELETON -->" }]
|
|
2273
2643
|
}], propDecorators: { amount: [{
|
|
@@ -2282,147 +2652,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
2282
2652
|
type: Input
|
|
2283
2653
|
}] } });
|
|
2284
2654
|
|
|
2285
|
-
class MatchaOptionService {
|
|
2286
|
-
constructor() {
|
|
2287
|
-
this._optionsSubject = new BehaviorSubject([]);
|
|
2288
|
-
this.options$ = this._optionsSubject.asObservable();
|
|
2289
|
-
this._activeOptionSubject = new BehaviorSubject(0);
|
|
2290
|
-
this.activeOption$ = this._activeOptionSubject.asObservable();
|
|
2291
|
-
this._canShowOptionsSubject = new BehaviorSubject(false);
|
|
2292
|
-
this.canShowOptions$ = this._canShowOptionsSubject.asObservable();
|
|
2293
|
-
this._selectedOptionSubject = new Subject();
|
|
2294
|
-
this.selectedOption$ = this._selectedOptionSubject.asObservable();
|
|
2295
|
-
}
|
|
2296
|
-
setSelectedOption(selectedOption) {
|
|
2297
|
-
this._selectedOptionSubject.next(selectedOption);
|
|
2298
|
-
}
|
|
2299
|
-
getCanShowOptions() {
|
|
2300
|
-
return this._canShowOptionsSubject.value;
|
|
2301
|
-
}
|
|
2302
|
-
setCanShowOptions(canShowOptions) {
|
|
2303
|
-
this._canShowOptionsSubject.next(canShowOptions);
|
|
2304
|
-
}
|
|
2305
|
-
updateOptions(options) {
|
|
2306
|
-
this._optionsSubject.next(options);
|
|
2307
|
-
}
|
|
2308
|
-
updateActiveOption(activeOption) {
|
|
2309
|
-
this._activeOptionSubject.next(activeOption);
|
|
2310
|
-
}
|
|
2311
|
-
resetActiveOption() {
|
|
2312
|
-
this.updateActiveOption(0);
|
|
2313
|
-
const currentOptions = this._optionsSubject.value;
|
|
2314
|
-
const activeOption = this._activeOptionSubject.value;
|
|
2315
|
-
currentOptions.forEach((option, index) => {
|
|
2316
|
-
index === activeOption ? option.setIsOptionActive(true, false) : option.setIsOptionActive(false, false);
|
|
2317
|
-
});
|
|
2318
|
-
return;
|
|
2319
|
-
}
|
|
2320
|
-
removeActiveOption() {
|
|
2321
|
-
const currentOptions = this._optionsSubject.value;
|
|
2322
|
-
currentOptions.forEach((option) => {
|
|
2323
|
-
option.isOptionActive = false;
|
|
2324
|
-
});
|
|
2325
|
-
this.updateActiveOption(-1);
|
|
2326
|
-
return;
|
|
2327
|
-
}
|
|
2328
|
-
changeActiveOption(stepsToMove) {
|
|
2329
|
-
const currentOptions = this._optionsSubject.value;
|
|
2330
|
-
const lastActiveOption = this._activeOptionSubject.value;
|
|
2331
|
-
this.updateActiveOption(Math.max(0, Math.min(currentOptions.length - 1, lastActiveOption + stepsToMove)));
|
|
2332
|
-
const currentActiveOption = this._activeOptionSubject.value;
|
|
2333
|
-
currentOptions.forEach((option, index) => {
|
|
2334
|
-
option.setIsOptionActive(index === currentActiveOption, false);
|
|
2335
|
-
});
|
|
2336
|
-
return;
|
|
2337
|
-
}
|
|
2338
|
-
selectActiveOption() {
|
|
2339
|
-
const currentOptions = this._optionsSubject.value;
|
|
2340
|
-
const activeOption = this._activeOptionSubject.value;
|
|
2341
|
-
if (currentOptions[activeOption]) {
|
|
2342
|
-
currentOptions[activeOption].selectOption();
|
|
2343
|
-
}
|
|
2344
|
-
}
|
|
2345
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MatchaOptionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2346
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MatchaOptionService, providedIn: 'root' }); }
|
|
2347
|
-
}
|
|
2348
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MatchaOptionService, decorators: [{
|
|
2349
|
-
type: Injectable,
|
|
2350
|
-
args: [{
|
|
2351
|
-
providedIn: 'root',
|
|
2352
|
-
}]
|
|
2353
|
-
}], ctorParameters: () => [] });
|
|
2354
|
-
|
|
2355
|
-
class MatchaOptionComponent {
|
|
2356
|
-
constructor(changeDetectorRef, matchaOptionService) {
|
|
2357
|
-
this.changeDetectorRef = changeDetectorRef;
|
|
2358
|
-
this.matchaOptionService = matchaOptionService;
|
|
2359
|
-
this.isOptionActive = false;
|
|
2360
|
-
}
|
|
2361
|
-
selectOption() {
|
|
2362
|
-
this.matchaOptionService.setCanShowOptions(true);
|
|
2363
|
-
this.matchaOptionService.setSelectedOption(this.value);
|
|
2364
|
-
setTimeout(() => {
|
|
2365
|
-
this.matchaOptionService.setCanShowOptions(false);
|
|
2366
|
-
}, 300);
|
|
2367
|
-
}
|
|
2368
|
-
setIsOptionActive(isOptionActive, isMouseEvent) {
|
|
2369
|
-
if (isMouseEvent) {
|
|
2370
|
-
this.matchaOptionService.removeActiveOption();
|
|
2371
|
-
}
|
|
2372
|
-
this.isOptionActive = isOptionActive;
|
|
2373
|
-
this.changeDetectorRef.detectChanges();
|
|
2374
|
-
}
|
|
2375
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MatchaOptionComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: MatchaOptionService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2376
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.4", type: MatchaOptionComponent, isStandalone: false, 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: [""] }); }
|
|
2377
|
-
}
|
|
2378
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MatchaOptionComponent, decorators: [{
|
|
2379
|
-
type: Component,
|
|
2380
|
-
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" }]
|
|
2381
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: MatchaOptionService }], propDecorators: { value: [{
|
|
2382
|
-
type: Input
|
|
2383
|
-
}] } });
|
|
2384
|
-
|
|
2385
|
-
class MatchaAutocompleteComponent {
|
|
2386
|
-
constructor(changeDetectorRef, matchaOptionService) {
|
|
2387
|
-
this.changeDetectorRef = changeDetectorRef;
|
|
2388
|
-
this.matchaOptionService = matchaOptionService;
|
|
2389
|
-
this.isDisplayAutocomplete = false;
|
|
2390
|
-
this.activeOption = 0;
|
|
2391
|
-
}
|
|
2392
|
-
ngOnInit() {
|
|
2393
|
-
this.matchaOptionService.canShowOptions$.subscribe((canShowOptions) => {
|
|
2394
|
-
if (!canShowOptions) {
|
|
2395
|
-
this.matchaOptionService.resetActiveOption();
|
|
2396
|
-
}
|
|
2397
|
-
this.isDisplayAutocomplete = canShowOptions;
|
|
2398
|
-
});
|
|
2399
|
-
}
|
|
2400
|
-
ngAfterContentInit() {
|
|
2401
|
-
const options = this.options.toArray();
|
|
2402
|
-
if (options.length > 0) {
|
|
2403
|
-
options[0].setIsOptionActive(true, false);
|
|
2404
|
-
}
|
|
2405
|
-
this.matchaOptionService.updateOptions(options);
|
|
2406
|
-
this.options.changes.subscribe((newOptions) => {
|
|
2407
|
-
this.matchaOptionService.updateOptions(newOptions.toArray());
|
|
2408
|
-
this.matchaOptionService.resetActiveOption();
|
|
2409
|
-
});
|
|
2410
|
-
this.matchaOptionService.activeOption$.subscribe((currentActiveOption) => {
|
|
2411
|
-
this.activeOption = currentActiveOption;
|
|
2412
|
-
this.changeDetectorRef.detectChanges();
|
|
2413
|
-
});
|
|
2414
|
-
}
|
|
2415
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MatchaAutocompleteComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: MatchaOptionService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2416
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.4", type: MatchaAutocompleteComponent, isStandalone: false, 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"] }] }); }
|
|
2417
|
-
}
|
|
2418
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MatchaAutocompleteComponent, decorators: [{
|
|
2419
|
-
type: Component,
|
|
2420
|
-
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" }]
|
|
2421
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: MatchaOptionService }], propDecorators: { options: [{
|
|
2422
|
-
type: ContentChildren,
|
|
2423
|
-
args: [MatchaOptionComponent]
|
|
2424
|
-
}] } });
|
|
2425
|
-
|
|
2426
2655
|
class MatchaSlideToggleComponent {
|
|
2427
2656
|
set checked(value) {
|
|
2428
2657
|
const newCheckedState = value === '' ? true : !!value;
|
|
@@ -2487,8 +2716,8 @@ class MatchaSlideToggleComponent {
|
|
|
2487
2716
|
this.onTouched();
|
|
2488
2717
|
this.change.emit({ checked: newCheckedState });
|
|
2489
2718
|
}
|
|
2490
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
2491
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
2719
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSlideToggleComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2720
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaSlideToggleComponent, isStandalone: false, selector: "matcha-slide-toggle", inputs: { color: "color", checked: "checked", disabled: "disabled" }, outputs: { change: "change" }, providers: [
|
|
2492
2721
|
{
|
|
2493
2722
|
provide: NG_VALUE_ACCESSOR,
|
|
2494
2723
|
useExisting: forwardRef(() => MatchaSlideToggleComponent),
|
|
@@ -2496,7 +2725,7 @@ class MatchaSlideToggleComponent {
|
|
|
2496
2725
|
},
|
|
2497
2726
|
], 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 }); }
|
|
2498
2727
|
}
|
|
2499
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
2728
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSlideToggleComponent, decorators: [{
|
|
2500
2729
|
type: Component,
|
|
2501
2730
|
args: [{ selector: 'matcha-slide-toggle', standalone: false, providers: [
|
|
2502
2731
|
{
|
|
@@ -2573,10 +2802,10 @@ class MatchaButtonToggleComponent {
|
|
|
2573
2802
|
});
|
|
2574
2803
|
}
|
|
2575
2804
|
}
|
|
2576
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
2577
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
2805
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaButtonToggleComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2806
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaButtonToggleComponent, isStandalone: false, selector: "matcha-button-toggle", inputs: { multiple: "multiple", disabled: "disabled", required: "required", inactiveColor: "inactiveColor", inactiveType: "inactiveType", gap: "gap" }, host: { properties: { "attr.disabled": "this.isDisabled" } }, queries: [{ propertyName: "buttons", predicate: MatchaButtonComponent }], ngImport: i0, template: "<div\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"] }] }); }
|
|
2578
2807
|
}
|
|
2579
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
2808
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaButtonToggleComponent, decorators: [{
|
|
2580
2809
|
type: Component,
|
|
2581
2810
|
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" }]
|
|
2582
2811
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { multiple: [{
|
|
@@ -2611,10 +2840,10 @@ class MatchaTabItemComponent {
|
|
|
2611
2840
|
get active() {
|
|
2612
2841
|
return this._active;
|
|
2613
2842
|
}
|
|
2614
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
2615
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
2843
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTabItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2844
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaTabItemComponent, isStandalone: false, 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"] }] }); }
|
|
2616
2845
|
}
|
|
2617
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
2846
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTabItemComponent, decorators: [{
|
|
2618
2847
|
type: Component,
|
|
2619
2848
|
args: [{ selector: 'matcha-tab', standalone: false, template: "<ng-content *ngIf=\"active\"></ng-content>\n" }]
|
|
2620
2849
|
}], propDecorators: { title: [{
|
|
@@ -2669,12 +2898,12 @@ class MatchaTabsComponent {
|
|
|
2669
2898
|
this.selectTabByIndex(tabsArray.length - 1);
|
|
2670
2899
|
}
|
|
2671
2900
|
}
|
|
2672
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
2673
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
2901
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTabsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2902
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaTabsComponent, isStandalone: false, 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 overflow-auto w-100-p flex-row gap-8 list-style-none pl-0 pb-4\" 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 min-w-88 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=\"color-fg 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] }); }
|
|
2674
2903
|
}
|
|
2675
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
2904
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTabsComponent, decorators: [{
|
|
2676
2905
|
type: Component,
|
|
2677
|
-
args: [{ selector: 'matcha-tabs', animations: [...createAnimations], standalone: false, template: "<div class=\"flex-column gap-24 w-100-p\">\n <nav class=\"button-group overflow-auto w-100-p flex-row gap-8 list-style-none pl-0 pb-4\" role=\"tablist\">\n <button *ngFor=\"let tab of tabs; let i = index\" (click)=\"selectTabByIndex(i)\"
|
|
2906
|
+
args: [{ selector: 'matcha-tabs', animations: [...createAnimations], standalone: false, template: "<div class=\"flex-column gap-24 w-100-p\">\n <nav class=\"button-group overflow-auto w-100-p flex-row gap-8 list-style-none pl-0 pb-4\" 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 min-w-88 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=\"color-fg 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" }]
|
|
2678
2907
|
}], propDecorators: { tabs: [{
|
|
2679
2908
|
type: ContentChildren,
|
|
2680
2909
|
args: [MatchaTabItemComponent]
|
|
@@ -2740,10 +2969,10 @@ class MatchaDateComponent {
|
|
|
2740
2969
|
control.setErrors(Object.keys(errors).length ? errors : null);
|
|
2741
2970
|
}
|
|
2742
2971
|
}
|
|
2743
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
2744
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
2972
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2973
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaDateComponent, isStandalone: false, selector: "matcha-date", queries: [{ propertyName: "controls", predicate: NgControl, descendants: true }], ngImport: i0, template: "<div class=\"d-flex gap-16\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
|
|
2745
2974
|
}
|
|
2746
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
2975
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDateComponent, decorators: [{
|
|
2747
2976
|
type: Component,
|
|
2748
2977
|
args: [{ selector: 'matcha-date', standalone: false, template: "<div class=\"d-flex gap-16\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
2749
2978
|
}], propDecorators: { controls: [{
|
|
@@ -2859,10 +3088,10 @@ class MatchaTimeComponent {
|
|
|
2859
3088
|
control.setErrors(Object.keys(errors).length ? errors : null);
|
|
2860
3089
|
}
|
|
2861
3090
|
}
|
|
2862
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
2863
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
3091
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTimeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3092
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaTimeComponent, isStandalone: false, selector: "matcha-time", inputs: { startDateControlName: "startDateControlName", endDateControlName: "endDateControlName", allowCrossDays: "allowCrossDays" }, queries: [{ propertyName: "controls", predicate: NgControl, descendants: true }], ngImport: i0, template: "<div class=\"d-flex gap-16\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
|
|
2864
3093
|
}
|
|
2865
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
3094
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTimeComponent, decorators: [{
|
|
2866
3095
|
type: Component,
|
|
2867
3096
|
args: [{ selector: 'matcha-time', standalone: false, template: "<div class=\"d-flex gap-16\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
2868
3097
|
}], propDecorators: { controls: [{
|
|
@@ -2877,10 +3106,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
2877
3106
|
}] } });
|
|
2878
3107
|
|
|
2879
3108
|
class StepComponent {
|
|
2880
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
2881
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
3109
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: StepComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3110
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: StepComponent, isStandalone: false, selector: "matcha-step", inputs: { step: ["title", "step"] }, viewQueries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true, static: true }], ngImport: i0, template: `<ng-template><ng-content></ng-content></ng-template>`, isInline: true }); }
|
|
2882
3111
|
}
|
|
2883
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
3112
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: StepComponent, decorators: [{
|
|
2884
3113
|
type: Component,
|
|
2885
3114
|
args: [{
|
|
2886
3115
|
selector: 'matcha-step',
|
|
@@ -2935,10 +3164,10 @@ class MatchaStepperStateService {
|
|
|
2935
3164
|
this._activeStep$.next(current - 1);
|
|
2936
3165
|
}
|
|
2937
3166
|
}
|
|
2938
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
2939
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.
|
|
3167
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaStepperStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3168
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaStepperStateService }); }
|
|
2940
3169
|
}
|
|
2941
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
3170
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaStepperStateService, decorators: [{
|
|
2942
3171
|
type: Injectable
|
|
2943
3172
|
}] });
|
|
2944
3173
|
|
|
@@ -2952,10 +3181,10 @@ class MatchaStepperComponent {
|
|
|
2952
3181
|
this.stepperState.setActiveStep(this.active);
|
|
2953
3182
|
}
|
|
2954
3183
|
}
|
|
2955
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
2956
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
3184
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaStepperComponent, deps: [{ token: MatchaStepperStateService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3185
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaStepperComponent, isStandalone: false, selector: "matcha-stepper", inputs: { active: "active" }, providers: [MatchaStepperStateService], usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true }); }
|
|
2957
3186
|
}
|
|
2958
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
3187
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaStepperComponent, decorators: [{
|
|
2959
3188
|
type: Component,
|
|
2960
3189
|
args: [{
|
|
2961
3190
|
selector: 'matcha-stepper',
|
|
@@ -2988,14 +3217,14 @@ class MatchaStepperContentComponent {
|
|
|
2988
3217
|
prevStep() {
|
|
2989
3218
|
this.stepperState.prevStep();
|
|
2990
3219
|
}
|
|
2991
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
2992
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
3220
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaStepperContentComponent, deps: [{ token: MatchaStepperStateService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3221
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaStepperContentComponent, isStandalone: false, selector: "matcha-stepper-content", queries: [{ propertyName: "steps", predicate: StepComponent }], ngImport: i0, template: `
|
|
2993
3222
|
<ng-container *ngIf="stepsArray.length">
|
|
2994
3223
|
<ng-container *ngTemplateOutlet="stepsArray[activeStep]?.template || null"></ng-container>
|
|
2995
3224
|
</ng-container>
|
|
2996
3225
|
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
2997
3226
|
}
|
|
2998
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
3227
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaStepperContentComponent, decorators: [{
|
|
2999
3228
|
type: Component,
|
|
3000
3229
|
args: [{
|
|
3001
3230
|
selector: 'matcha-stepper-content',
|
|
@@ -3026,10 +3255,10 @@ class MatchaStepperControllerComponent {
|
|
|
3026
3255
|
return;
|
|
3027
3256
|
this.stepperState.setActiveStep(index);
|
|
3028
3257
|
}
|
|
3029
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
3030
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
3258
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaStepperControllerComponent, deps: [{ token: MatchaStepperStateService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3259
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaStepperControllerComponent, isStandalone: false, selector: "matcha-stepper-controller", inputs: { disableNext: "disableNext" }, providers: [], ngImport: i0, template: "<div class=\"flex-column flex-align-end gap-16\">\n <span class=\"fw-900 fs-12 lh-12\">{{steps[activeStep]}}</span>\n <div class=\"d-flex align-center gap-8\">\n <ng-container *ngFor=\"let step of steps; let i = index\">\n <div (click)=\"goToStep(i)\" class=\"cursor-pointer w-32 h-8 radius-8\" [class.background-accent]=\"i <= activeStep\" [class.background-disabled]=\"i > activeStep\"></div> \n </ng-container>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] }); }
|
|
3031
3260
|
}
|
|
3032
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
3261
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaStepperControllerComponent, decorators: [{
|
|
3033
3262
|
type: Component,
|
|
3034
3263
|
args: [{ selector: 'matcha-stepper-controller', providers: [], standalone: false, template: "<div class=\"flex-column flex-align-end gap-16\">\n <span class=\"fw-900 fs-12 lh-12\">{{steps[activeStep]}}</span>\n <div class=\"d-flex align-center gap-8\">\n <ng-container *ngFor=\"let step of steps; let i = index\">\n <div (click)=\"goToStep(i)\" class=\"cursor-pointer w-32 h-8 radius-8\" [class.background-accent]=\"i <= activeStep\" [class.background-disabled]=\"i > activeStep\"></div> \n </ng-container>\n </div>\n</div>\n" }]
|
|
3035
3264
|
}], ctorParameters: () => [{ type: MatchaStepperStateService }], propDecorators: { disableNext: [{
|
|
@@ -3058,10 +3287,10 @@ class MatchaDropListService {
|
|
|
3058
3287
|
getAllDropZones() {
|
|
3059
3288
|
return Array.from(this.dropZones.values());
|
|
3060
3289
|
}
|
|
3061
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
3062
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.
|
|
3290
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDropListService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3291
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDropListService, providedIn: 'root' }); }
|
|
3063
3292
|
}
|
|
3064
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
3293
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDropListService, decorators: [{
|
|
3065
3294
|
type: Injectable,
|
|
3066
3295
|
args: [{
|
|
3067
3296
|
providedIn: 'root'
|
|
@@ -3359,10 +3588,10 @@ class MatchaDragDirective {
|
|
|
3359
3588
|
this.listeners.forEach(cleanup => cleanup());
|
|
3360
3589
|
this.listeners = [];
|
|
3361
3590
|
}
|
|
3362
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
3363
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.
|
|
3591
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDragDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: MatchaDropListService }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3592
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.1", type: MatchaDragDirective, isStandalone: false, selector: "[matchaDrag]", inputs: { matchaDragData: "matchaDragData", matchaDragDisabled: "matchaDragDisabled" }, host: { properties: { "class.matcha-drag-item": "this.dragItemClass", "class.matcha-drag-disabled": "this.dragDisabledClass" } }, ngImport: i0 }); }
|
|
3364
3593
|
}
|
|
3365
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
3594
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDragDirective, decorators: [{
|
|
3366
3595
|
type: Directive,
|
|
3367
3596
|
args: [{
|
|
3368
3597
|
selector: '[matchaDrag]',
|
|
@@ -3662,10 +3891,10 @@ class MatchaDropListComponent {
|
|
|
3662
3891
|
this.transferItem(this.currentDragItem, this.sourceContainer, this, dropIndex);
|
|
3663
3892
|
}
|
|
3664
3893
|
}
|
|
3665
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
3666
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
3894
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDropListComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: MatchaDropListService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3895
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaDropListComponent, isStandalone: false, selector: "matcha-drop-list", inputs: { matchaDropListData: "matchaDropListData", matchaDropListDisabled: "matchaDropListDisabled", matchaDropListConnectedTo: "matchaDropListConnectedTo", matchaDropListSortingDisabled: "matchaDropListSortingDisabled", matchaDropListAcceptPredicate: "matchaDropListAcceptPredicate" }, outputs: { matchaDropListDropped: "matchaDropListDropped" }, host: { properties: { "class.matcha-drop-list": "this.dropListClass" } }, queries: [{ propertyName: "dragItems", predicate: MatchaDragDirective }], ngImport: i0, template: "<div class=\"matcha-drop-list-container\"\n [class.matcha-drop-list-receiving]=\"isReceivingDrag\"\n [class.matcha-drop-list-disabled]=\"matchaDropListDisabled\"\n [class.matcha-drop-list-can-accept]=\"isReceivingDrag && canAcceptDrop\"\n [class.matcha-drop-list-cannot-accept]=\"isReceivingDrag && !canAcceptDrop\">\n <ng-content></ng-content>\n\n <!-- Linha indicadora de drop -->\n <div class=\"matcha-drop-indicator\"\n [class.active]=\"showDropIndicator && canAcceptDrop\"\n [style.top.px]=\"dropIndicatorPosition\">\n </div>\n\n <!-- Placeholder para lista vazia -->\n <div *ngIf=\"isReceivingDrag && dragItems.length === 0\"\n class=\"matcha-drop-list-placeholder\">\n <div class=\"matcha-drop-list-empty-placeholder\"\n [class.can-accept]=\"canAcceptDrop\"\n [class.cannot-accept]=\"!canAcceptDrop\">\n <span [class.i-matcha-action_sign_success]=\"canAcceptDrop\"\n [class.i-matcha-action_sign_error]=\"!canAcceptDrop\"\n [class.color-green]=\"canAcceptDrop\"\n [class.color-red]=\"!canAcceptDrop\"\n class=\"i-size-lg\"></span>\n </div>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
|
|
3667
3896
|
}
|
|
3668
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
3897
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDropListComponent, decorators: [{
|
|
3669
3898
|
type: Component,
|
|
3670
3899
|
args: [{ selector: 'matcha-drop-list', standalone: false, template: "<div class=\"matcha-drop-list-container\"\n [class.matcha-drop-list-receiving]=\"isReceivingDrag\"\n [class.matcha-drop-list-disabled]=\"matchaDropListDisabled\"\n [class.matcha-drop-list-can-accept]=\"isReceivingDrag && canAcceptDrop\"\n [class.matcha-drop-list-cannot-accept]=\"isReceivingDrag && !canAcceptDrop\">\n <ng-content></ng-content>\n\n <!-- Linha indicadora de drop -->\n <div class=\"matcha-drop-indicator\"\n [class.active]=\"showDropIndicator && canAcceptDrop\"\n [style.top.px]=\"dropIndicatorPosition\">\n </div>\n\n <!-- Placeholder para lista vazia -->\n <div *ngIf=\"isReceivingDrag && dragItems.length === 0\"\n class=\"matcha-drop-list-placeholder\">\n <div class=\"matcha-drop-list-empty-placeholder\"\n [class.can-accept]=\"canAcceptDrop\"\n [class.cannot-accept]=\"!canAcceptDrop\">\n <span [class.i-matcha-action_sign_success]=\"canAcceptDrop\"\n [class.i-matcha-action_sign_error]=\"!canAcceptDrop\"\n [class.color-green]=\"canAcceptDrop\"\n [class.color-red]=\"!canAcceptDrop\"\n class=\"i-size-lg\"></span>\n </div>\n </div>\n</div>\n" }]
|
|
3671
3900
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: MatchaDropListService }], propDecorators: { matchaDropListData: [{
|
|
@@ -3689,10 +3918,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
3689
3918
|
}] } });
|
|
3690
3919
|
|
|
3691
3920
|
class MatchaPageLayoutComponent {
|
|
3692
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
3693
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
3921
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaPageLayoutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3922
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaPageLayoutComponent, isStandalone: false, selector: "matcha-page-layout", ngImport: i0, template: "<div class=\"page-layout carded fullwidth\">\n <!-- TOP BACKGROUND -->\n <div class=\"top-bg\"></div>\n <!--/ TOP BACKGROUND -->\n\n <!-- CENTER -->\n <div class=\"center pt-24 gap-16\">\n <!-- CONTENT CARD -->\n <div class=\"content-card flatten flex-column h-100-p\">\n <!-- CONTENT -->\n <div class=\"content flex-column h-100-p\">\n <div class=\"content-card card-flat flex-column h-100-p background-bg border-radius-0 pb-16\">\n <ng-content></ng-content>\n </div>\n </div>\n </div>\n </div>\n</div>", styles: [":host{display:flex;flex-direction:column;width:100%}\n"] }); }
|
|
3694
3923
|
}
|
|
3695
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
3924
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaPageLayoutComponent, decorators: [{
|
|
3696
3925
|
type: Component,
|
|
3697
3926
|
args: [{ selector: 'matcha-page-layout', standalone: false, template: "<div class=\"page-layout carded fullwidth\">\n <!-- TOP BACKGROUND -->\n <div class=\"top-bg\"></div>\n <!--/ TOP BACKGROUND -->\n\n <!-- CENTER -->\n <div class=\"center pt-24 gap-16\">\n <!-- CONTENT CARD -->\n <div class=\"content-card flatten flex-column h-100-p\">\n <!-- CONTENT -->\n <div class=\"content flex-column h-100-p\">\n <div class=\"content-card card-flat flex-column h-100-p background-bg border-radius-0 pb-16\">\n <ng-content></ng-content>\n </div>\n </div>\n </div>\n </div>\n</div>", styles: [":host{display:flex;flex-direction:column;width:100%}\n"] }]
|
|
3698
3927
|
}] });
|
|
@@ -3751,10 +3980,10 @@ class MatchaAvatarComponent {
|
|
|
3751
3980
|
}
|
|
3752
3981
|
return classes;
|
|
3753
3982
|
}
|
|
3754
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
3755
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
3983
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAvatarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3984
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaAvatarComponent, isStandalone: false, selector: "matcha-avatar", inputs: { src: "src", name: "name", size: "size", color: "color", disabled: "disabled" }, ngImport: i0, template: "<span [class]=\"avatarClasses\">\n <!-- Imagem do usu\u00E1rio -->\n <img \n *ngIf=\"hasImage\" \n [src]=\"src\" \n [alt]=\"name || 'Avatar'\"\n class=\"matcha-avatar-image\">\n \n <!-- Iniciais do nome -->\n <span \n *ngIf=\"!hasImage && hasName\" \n class=\"matcha-avatar-initials\">\n {{ initials }}\n </span>\n \n\n <svg \n *ngIf=\"showDefaultIcon\"\n class=\"matcha-avatar-icon\"\n viewBox=\"0 0 56 56\" \n fill=\"none\" \n xmlns=\"http://www.w3.org/2000/svg\">\n <path \n fill-rule=\"evenodd\" \n clip-rule=\"evenodd\" \n d=\"M28 0C12.544 0 0 12.544 0 28C0 43.456 12.544 56 28 56C43.456 56 56 43.456 56 28C56 12.544 43.456 0 28 0ZM28.0022 8.4C32.6502 8.4 36.4022 12.152 36.4022 16.8C36.4022 21.448 32.6502 25.2 28.0022 25.2C23.3542 25.2 19.6022 21.448 19.6022 16.8C19.6022 12.152 23.3542 8.4 28.0022 8.4ZM28.0022 48.1601C21.0022 48.1601 14.8142 44.5761 11.2022 39.1441C11.2862 33.5721 22.4022 30.5201 28.0022 30.5201C33.5742 30.5201 44.7182 33.5721 44.8022 39.1441C41.1902 44.5761 35.0022 48.1601 28.0022 48.1601Z\" \n fill=\"currentColor\"/>\n </svg>\n </span>", styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
|
|
3756
3985
|
}
|
|
3757
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
3986
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAvatarComponent, decorators: [{
|
|
3758
3987
|
type: Component,
|
|
3759
3988
|
args: [{ selector: 'matcha-avatar', standalone: false, template: "<span [class]=\"avatarClasses\">\n <!-- Imagem do usu\u00E1rio -->\n <img \n *ngIf=\"hasImage\" \n [src]=\"src\" \n [alt]=\"name || 'Avatar'\"\n class=\"matcha-avatar-image\">\n \n <!-- Iniciais do nome -->\n <span \n *ngIf=\"!hasImage && hasName\" \n class=\"matcha-avatar-initials\">\n {{ initials }}\n </span>\n \n\n <svg \n *ngIf=\"showDefaultIcon\"\n class=\"matcha-avatar-icon\"\n viewBox=\"0 0 56 56\" \n fill=\"none\" \n xmlns=\"http://www.w3.org/2000/svg\">\n <path \n fill-rule=\"evenodd\" \n clip-rule=\"evenodd\" \n d=\"M28 0C12.544 0 0 12.544 0 28C0 43.456 12.544 56 28 56C43.456 56 56 43.456 56 28C56 12.544 43.456 0 28 0ZM28.0022 8.4C32.6502 8.4 36.4022 12.152 36.4022 16.8C36.4022 21.448 32.6502 25.2 28.0022 25.2C23.3542 25.2 19.6022 21.448 19.6022 16.8C19.6022 12.152 23.3542 8.4 28.0022 8.4ZM28.0022 48.1601C21.0022 48.1601 14.8142 44.5761 11.2022 39.1441C11.2862 33.5721 22.4022 30.5201 28.0022 30.5201C33.5742 30.5201 44.7182 33.5721 44.8022 39.1441C41.1902 44.5761 35.0022 48.1601 28.0022 48.1601Z\" \n fill=\"currentColor\"/>\n </svg>\n </span>" }]
|
|
3760
3989
|
}], propDecorators: { src: [{
|
|
@@ -3769,6 +3998,489 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
3769
3998
|
type: Input
|
|
3770
3999
|
}] } });
|
|
3771
4000
|
|
|
4001
|
+
class MatchaOptionComponent {
|
|
4002
|
+
constructor(parent, elRef) {
|
|
4003
|
+
this.parent = parent;
|
|
4004
|
+
this.elRef = elRef;
|
|
4005
|
+
this.disabled = false;
|
|
4006
|
+
this.selected = false;
|
|
4007
|
+
// ✅ EventEmitters para uso standalone
|
|
4008
|
+
this.optionClick = new EventEmitter();
|
|
4009
|
+
this.optionSelect = new EventEmitter();
|
|
4010
|
+
}
|
|
4011
|
+
onClick() {
|
|
4012
|
+
if (this.disabled)
|
|
4013
|
+
return;
|
|
4014
|
+
console.log('MatchaOption: Clique na opção', {
|
|
4015
|
+
value: this.value,
|
|
4016
|
+
parent: this.parent,
|
|
4017
|
+
disabled: this.disabled
|
|
4018
|
+
});
|
|
4019
|
+
// ✅ Notifica o pai (se houver) - qualquer componente que implemente MatchaOptionParent
|
|
4020
|
+
if (this.parent) {
|
|
4021
|
+
console.log('MatchaOption: Usando parent.selectOption');
|
|
4022
|
+
this.parent.selectOption(this);
|
|
4023
|
+
}
|
|
4024
|
+
else {
|
|
4025
|
+
console.log('MatchaOption: Usando fallback findParentAndSelect');
|
|
4026
|
+
// Fallback: busca o pai via DOM
|
|
4027
|
+
this.findParentAndSelect();
|
|
4028
|
+
}
|
|
4029
|
+
// ✅ Emite eventos para uso standalone
|
|
4030
|
+
this.optionClick.emit(this.value);
|
|
4031
|
+
this.optionSelect.emit(this);
|
|
4032
|
+
}
|
|
4033
|
+
findParentAndSelect() {
|
|
4034
|
+
// Busca o elemento pai matcha-autocomplete
|
|
4035
|
+
const autocompleteEl = this.elRef.nativeElement.closest('matcha-autocomplete');
|
|
4036
|
+
if (autocompleteEl) {
|
|
4037
|
+
console.log('MatchaOption: Encontrou autocomplete element', autocompleteEl);
|
|
4038
|
+
// Dispara um evento customizado que o autocomplete pode escutar
|
|
4039
|
+
const event = new CustomEvent('matcha-option-selected', {
|
|
4040
|
+
detail: { option: this, value: this.value },
|
|
4041
|
+
bubbles: true
|
|
4042
|
+
});
|
|
4043
|
+
autocompleteEl.dispatchEvent(event);
|
|
4044
|
+
console.log('MatchaOption: Evento customizado disparado', event);
|
|
4045
|
+
}
|
|
4046
|
+
else {
|
|
4047
|
+
console.log('MatchaOption: Não encontrou elemento matcha-autocomplete');
|
|
4048
|
+
}
|
|
4049
|
+
}
|
|
4050
|
+
onKeydown(ev) {
|
|
4051
|
+
if (ev.key === 'Enter' || ev.key === ' ') {
|
|
4052
|
+
ev.preventDefault();
|
|
4053
|
+
this.onClick();
|
|
4054
|
+
}
|
|
4055
|
+
}
|
|
4056
|
+
// Getter para acessar o elemento nativo (usado para scroll)
|
|
4057
|
+
get nativeElement() {
|
|
4058
|
+
return this.elRef.nativeElement;
|
|
4059
|
+
}
|
|
4060
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaOptionComponent, deps: [{ token: MATCHA_OPTION_PARENT, optional: true }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4061
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaOptionComponent, isStandalone: false, selector: "matcha-option", inputs: { value: "value", disabled: "disabled" }, outputs: { optionClick: "optionClick", optionSelect: "optionSelect" }, host: { attributes: { "role": "option", "tabindex": "0" }, listeners: { "click": "onClick()", "keydown": "onKeydown($event)" }, properties: { "attr.aria-selected": "this.selected" }, classAttribute: "matcha-option" }, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true }); }
|
|
4062
|
+
}
|
|
4063
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaOptionComponent, decorators: [{
|
|
4064
|
+
type: Component,
|
|
4065
|
+
args: [{
|
|
4066
|
+
selector: 'matcha-option',
|
|
4067
|
+
template: `<ng-content></ng-content>`,
|
|
4068
|
+
host: {
|
|
4069
|
+
class: 'matcha-option',
|
|
4070
|
+
role: 'option',
|
|
4071
|
+
tabindex: '0'
|
|
4072
|
+
},
|
|
4073
|
+
standalone: false,
|
|
4074
|
+
}]
|
|
4075
|
+
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
4076
|
+
type: Optional
|
|
4077
|
+
}, {
|
|
4078
|
+
type: Inject,
|
|
4079
|
+
args: [MATCHA_OPTION_PARENT]
|
|
4080
|
+
}] }, { type: i0.ElementRef }], propDecorators: { value: [{
|
|
4081
|
+
type: Input
|
|
4082
|
+
}], disabled: [{
|
|
4083
|
+
type: Input
|
|
4084
|
+
}], selected: [{
|
|
4085
|
+
type: HostBinding,
|
|
4086
|
+
args: ['attr.aria-selected']
|
|
4087
|
+
}], optionClick: [{
|
|
4088
|
+
type: Output
|
|
4089
|
+
}], optionSelect: [{
|
|
4090
|
+
type: Output
|
|
4091
|
+
}], onClick: [{
|
|
4092
|
+
type: HostListener,
|
|
4093
|
+
args: ['click']
|
|
4094
|
+
}], onKeydown: [{
|
|
4095
|
+
type: HostListener,
|
|
4096
|
+
args: ['keydown', ['$event']]
|
|
4097
|
+
}] } });
|
|
4098
|
+
|
|
4099
|
+
class MatchaPanelComponent {
|
|
4100
|
+
constructor(elRef, cdr) {
|
|
4101
|
+
this.elRef = elRef;
|
|
4102
|
+
this.cdr = cdr;
|
|
4103
|
+
this.placement = 'auto';
|
|
4104
|
+
this.maxHeight = 280;
|
|
4105
|
+
this.minWidth = 160;
|
|
4106
|
+
this.offset = 4; // Espaçamento entre trigger e painel
|
|
4107
|
+
this.open = false;
|
|
4108
|
+
this.opened = new EventEmitter();
|
|
4109
|
+
this.closed = new EventEmitter();
|
|
4110
|
+
this.panelStyle = {};
|
|
4111
|
+
this.destroy$ = new Subject();
|
|
4112
|
+
}
|
|
4113
|
+
ngOnInit() {
|
|
4114
|
+
// Inicialização básica
|
|
4115
|
+
}
|
|
4116
|
+
ngOnDestroy() {
|
|
4117
|
+
this.destroy$.next();
|
|
4118
|
+
this.destroy$.complete();
|
|
4119
|
+
this.cleanupListeners();
|
|
4120
|
+
}
|
|
4121
|
+
/**
|
|
4122
|
+
* Anexa o painel a um elemento trigger
|
|
4123
|
+
*/
|
|
4124
|
+
attachTo(trigger) {
|
|
4125
|
+
this.triggerElement = trigger;
|
|
4126
|
+
}
|
|
4127
|
+
ngAfterViewInit() {
|
|
4128
|
+
// Aguarda a view ser inicializada antes de calcular posição
|
|
4129
|
+
if (this.triggerElement && this.open) {
|
|
4130
|
+
this.cdr.detectChanges();
|
|
4131
|
+
this.updatePosition();
|
|
4132
|
+
}
|
|
4133
|
+
}
|
|
4134
|
+
/**
|
|
4135
|
+
* Lifecycle hook para detectar mudanças no triggerElement
|
|
4136
|
+
*/
|
|
4137
|
+
ngOnChanges() {
|
|
4138
|
+
// Só logar quando há mudanças significativas
|
|
4139
|
+
if (this.triggerElement && this.open) {
|
|
4140
|
+
console.log('MatchaPanel: ngOnChanges - painel aberto, atualizando posição');
|
|
4141
|
+
// Usar detectChanges para forçar a detecção de mudanças
|
|
4142
|
+
this.cdr.detectChanges();
|
|
4143
|
+
this.updatePosition();
|
|
4144
|
+
}
|
|
4145
|
+
}
|
|
4146
|
+
/**
|
|
4147
|
+
* Abre o painel
|
|
4148
|
+
*/
|
|
4149
|
+
openPanel() {
|
|
4150
|
+
if (!this.triggerElement) {
|
|
4151
|
+
console.log('MatchaPanel: triggerElement não encontrado');
|
|
4152
|
+
return;
|
|
4153
|
+
}
|
|
4154
|
+
// Força a detecção de mudanças antes de atualizar a posição
|
|
4155
|
+
this.cdr.detectChanges();
|
|
4156
|
+
this.updatePosition();
|
|
4157
|
+
this.setupListeners();
|
|
4158
|
+
this.opened.emit();
|
|
4159
|
+
}
|
|
4160
|
+
/**
|
|
4161
|
+
* Fecha o painel
|
|
4162
|
+
*/
|
|
4163
|
+
closePanel() {
|
|
4164
|
+
console.log('MatchaPanel: Fechando painel', {
|
|
4165
|
+
open: this.open,
|
|
4166
|
+
triggerElement: this.triggerElement,
|
|
4167
|
+
stackTrace: new Error().stack
|
|
4168
|
+
});
|
|
4169
|
+
this.cleanupListeners();
|
|
4170
|
+
this.closed.emit();
|
|
4171
|
+
}
|
|
4172
|
+
/**
|
|
4173
|
+
* Alterna o estado do painel
|
|
4174
|
+
*/
|
|
4175
|
+
togglePanel() {
|
|
4176
|
+
this.open ? this.closePanel() : this.openPanel();
|
|
4177
|
+
}
|
|
4178
|
+
/**
|
|
4179
|
+
* Atualiza a posição do painel (simplificado para absolute)
|
|
4180
|
+
*/
|
|
4181
|
+
updatePosition() {
|
|
4182
|
+
if (!this.triggerElement) {
|
|
4183
|
+
console.log('MatchaPanel: updatePosition - triggerElement não encontrado');
|
|
4184
|
+
return;
|
|
4185
|
+
}
|
|
4186
|
+
const position = this.calculatePosition();
|
|
4187
|
+
this.panelStyle = {
|
|
4188
|
+
top: `${position.top}px`,
|
|
4189
|
+
left: `${position.left}px`,
|
|
4190
|
+
minWidth: `${position.width}px`,
|
|
4191
|
+
maxHeight: `${position.maxHeight || this.maxHeight}px`,
|
|
4192
|
+
zIndex: 1003
|
|
4193
|
+
};
|
|
4194
|
+
console.log('MatchaPanel: Posição calculada (absolute)', {
|
|
4195
|
+
position,
|
|
4196
|
+
panelStyle: this.panelStyle
|
|
4197
|
+
});
|
|
4198
|
+
}
|
|
4199
|
+
/**
|
|
4200
|
+
* Calcula a posição ideal do painel (simplificado para absolute)
|
|
4201
|
+
*/
|
|
4202
|
+
calculatePosition() {
|
|
4203
|
+
if (!this.triggerElement) {
|
|
4204
|
+
return { top: 0, left: 0, width: this.minWidth };
|
|
4205
|
+
}
|
|
4206
|
+
const rect = this.triggerElement.getBoundingClientRect();
|
|
4207
|
+
const containerRect = this.triggerElement.offsetParent?.getBoundingClientRect() || { top: 0, left: 0 };
|
|
4208
|
+
let top;
|
|
4209
|
+
let left;
|
|
4210
|
+
let width = Math.max(rect.width, this.minWidth);
|
|
4211
|
+
let maxHeight = this.maxHeight;
|
|
4212
|
+
// Calcular posição horizontal (relativa ao container)
|
|
4213
|
+
left = rect.left - containerRect.left;
|
|
4214
|
+
// Calcular posição vertical (relativa ao container)
|
|
4215
|
+
if (this.placement === 'top') {
|
|
4216
|
+
// Posicionar acima
|
|
4217
|
+
top = rect.top - containerRect.top - this.maxHeight - this.offset;
|
|
4218
|
+
}
|
|
4219
|
+
else {
|
|
4220
|
+
// Posicionar abaixo (padrão)
|
|
4221
|
+
top = rect.bottom - containerRect.top + this.offset;
|
|
4222
|
+
}
|
|
4223
|
+
return { top, left, width, maxHeight };
|
|
4224
|
+
}
|
|
4225
|
+
/**
|
|
4226
|
+
* Configura listeners para scroll e resize
|
|
4227
|
+
*/
|
|
4228
|
+
setupListeners() {
|
|
4229
|
+
// Com position absolute, não precisamos de listeners de scroll/resize
|
|
4230
|
+
console.log('MatchaPanel: setupListeners - position absolute, sem listeners necessários');
|
|
4231
|
+
}
|
|
4232
|
+
/**
|
|
4233
|
+
* Remove listeners
|
|
4234
|
+
*/
|
|
4235
|
+
cleanupListeners() {
|
|
4236
|
+
if (this.scrollListener) {
|
|
4237
|
+
window.removeEventListener('scroll', this.scrollListener);
|
|
4238
|
+
this.scrollListener = undefined;
|
|
4239
|
+
}
|
|
4240
|
+
if (this.resizeListener) {
|
|
4241
|
+
window.removeEventListener('resize', this.resizeListener);
|
|
4242
|
+
this.resizeListener = undefined;
|
|
4243
|
+
}
|
|
4244
|
+
}
|
|
4245
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaPanelComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4246
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaPanelComponent, isStandalone: false, selector: "matcha-panel", inputs: { placement: "placement", maxHeight: "maxHeight", minWidth: "minWidth", offset: "offset", triggerElement: "triggerElement", open: "open" }, outputs: { opened: "opened", closed: "closed" }, viewQueries: [{ propertyName: "panelRef", first: true, predicate: ["panel"], descendants: true }], usesOnChanges: true, ngImport: i0, template: `
|
|
4247
|
+
<div class="matcha-panel-container" style="position: relative;">
|
|
4248
|
+
<ng-container *ngIf="open">
|
|
4249
|
+
<!-- Painel -->
|
|
4250
|
+
<div
|
|
4251
|
+
#panel
|
|
4252
|
+
class="matcha-panel"
|
|
4253
|
+
[class.matcha-panel-top]="placement === 'top'"
|
|
4254
|
+
[class.matcha-panel-bottom]="placement === 'bottom'"
|
|
4255
|
+
[ngStyle]="panelStyle"
|
|
4256
|
+
role="listbox"
|
|
4257
|
+
[attr.aria-expanded]="open"
|
|
4258
|
+
[attr.aria-hidden]="!open">
|
|
4259
|
+
<ng-content></ng-content>
|
|
4260
|
+
</div>
|
|
4261
|
+
</ng-container>
|
|
4262
|
+
</div>
|
|
4263
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
|
|
4264
|
+
}
|
|
4265
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaPanelComponent, decorators: [{
|
|
4266
|
+
type: Component,
|
|
4267
|
+
args: [{
|
|
4268
|
+
selector: 'matcha-panel',
|
|
4269
|
+
template: `
|
|
4270
|
+
<div class="matcha-panel-container" style="position: relative;">
|
|
4271
|
+
<ng-container *ngIf="open">
|
|
4272
|
+
<!-- Painel -->
|
|
4273
|
+
<div
|
|
4274
|
+
#panel
|
|
4275
|
+
class="matcha-panel"
|
|
4276
|
+
[class.matcha-panel-top]="placement === 'top'"
|
|
4277
|
+
[class.matcha-panel-bottom]="placement === 'bottom'"
|
|
4278
|
+
[ngStyle]="panelStyle"
|
|
4279
|
+
role="listbox"
|
|
4280
|
+
[attr.aria-expanded]="open"
|
|
4281
|
+
[attr.aria-hidden]="!open">
|
|
4282
|
+
<ng-content></ng-content>
|
|
4283
|
+
</div>
|
|
4284
|
+
</ng-container>
|
|
4285
|
+
</div>
|
|
4286
|
+
`,
|
|
4287
|
+
standalone: false
|
|
4288
|
+
}]
|
|
4289
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }], propDecorators: { placement: [{
|
|
4290
|
+
type: Input
|
|
4291
|
+
}], maxHeight: [{
|
|
4292
|
+
type: Input
|
|
4293
|
+
}], minWidth: [{
|
|
4294
|
+
type: Input
|
|
4295
|
+
}], offset: [{
|
|
4296
|
+
type: Input
|
|
4297
|
+
}], triggerElement: [{
|
|
4298
|
+
type: Input
|
|
4299
|
+
}], open: [{
|
|
4300
|
+
type: Input
|
|
4301
|
+
}], opened: [{
|
|
4302
|
+
type: Output
|
|
4303
|
+
}], closed: [{
|
|
4304
|
+
type: Output
|
|
4305
|
+
}], panelRef: [{
|
|
4306
|
+
type: ViewChild,
|
|
4307
|
+
args: ['panel', { static: false }]
|
|
4308
|
+
}] } });
|
|
4309
|
+
|
|
4310
|
+
class MatchaAutocompleteComponent {
|
|
4311
|
+
constructor(elRef, renderer, cdr) {
|
|
4312
|
+
this.elRef = elRef;
|
|
4313
|
+
this.renderer = renderer;
|
|
4314
|
+
this.cdr = cdr;
|
|
4315
|
+
// Armazenar o valor selecionado independente da QueryList
|
|
4316
|
+
this.selectedValue = undefined;
|
|
4317
|
+
// Configurações do painel
|
|
4318
|
+
this.placement = 'auto';
|
|
4319
|
+
this.maxHeight = 280;
|
|
4320
|
+
this.minWidth = 160;
|
|
4321
|
+
this.opened = new EventEmitter();
|
|
4322
|
+
this.closed = new EventEmitter();
|
|
4323
|
+
this.open = false;
|
|
4324
|
+
this.activeIndex = -1;
|
|
4325
|
+
}
|
|
4326
|
+
ngAfterContentInit() {
|
|
4327
|
+
// quando options mudarem, resetamos estado relevante
|
|
4328
|
+
this.options.changes.subscribe(() => {
|
|
4329
|
+
if (this.open) {
|
|
4330
|
+
this.resetActive();
|
|
4331
|
+
this.cdr.detectChanges();
|
|
4332
|
+
}
|
|
4333
|
+
});
|
|
4334
|
+
}
|
|
4335
|
+
ngAfterViewInit() {
|
|
4336
|
+
// Aguarda a view ser inicializada
|
|
4337
|
+
this.cdr.detectChanges();
|
|
4338
|
+
// Escuta eventos customizados das opções
|
|
4339
|
+
this.elRef.nativeElement.addEventListener('matcha-option-selected', (event) => {
|
|
4340
|
+
console.log('MatchaAutocomplete: Evento matcha-option-selected recebido', event.detail);
|
|
4341
|
+
const { option, value } = event.detail;
|
|
4342
|
+
this.selectOption(option);
|
|
4343
|
+
});
|
|
4344
|
+
}
|
|
4345
|
+
attachTo(input) {
|
|
4346
|
+
this.triggerElement = input;
|
|
4347
|
+
}
|
|
4348
|
+
openPanel() {
|
|
4349
|
+
if (!this.triggerElement) {
|
|
4350
|
+
console.log('MatchaAutocomplete: triggerElement não encontrado');
|
|
4351
|
+
return;
|
|
4352
|
+
}
|
|
4353
|
+
console.log('MatchaAutocomplete: Abrindo painel', {
|
|
4354
|
+
triggerElement: this.triggerElement,
|
|
4355
|
+
panel: this.panel,
|
|
4356
|
+
open: this.open
|
|
4357
|
+
});
|
|
4358
|
+
this.open = true;
|
|
4359
|
+
this.cdr.detectChanges(); // Força detecção de mudanças
|
|
4360
|
+
this.panel.attachTo(this.triggerElement);
|
|
4361
|
+
this.panel.openPanel();
|
|
4362
|
+
this.resetActive();
|
|
4363
|
+
this.opened.emit();
|
|
4364
|
+
}
|
|
4365
|
+
closePanel() {
|
|
4366
|
+
console.log('MatchaAutocomplete: Fechando painel', {
|
|
4367
|
+
open: this.open,
|
|
4368
|
+
stackTrace: new Error().stack
|
|
4369
|
+
});
|
|
4370
|
+
this.open = false;
|
|
4371
|
+
this.activeIndex = -1;
|
|
4372
|
+
this.updateSelectedStates();
|
|
4373
|
+
this.panel.closePanel();
|
|
4374
|
+
this.closed.emit();
|
|
4375
|
+
}
|
|
4376
|
+
togglePanel() {
|
|
4377
|
+
this.open ? this.closePanel() : this.openPanel();
|
|
4378
|
+
}
|
|
4379
|
+
resetActive() {
|
|
4380
|
+
this.activeIndex = -1;
|
|
4381
|
+
this.updateSelectedStates();
|
|
4382
|
+
}
|
|
4383
|
+
updateSelectedStates() {
|
|
4384
|
+
const items = this.options.toArray();
|
|
4385
|
+
items.forEach((opt, i) => opt.selected = i === this.activeIndex);
|
|
4386
|
+
}
|
|
4387
|
+
highlightNext() {
|
|
4388
|
+
const length = this.options.length;
|
|
4389
|
+
if (!length)
|
|
4390
|
+
return;
|
|
4391
|
+
this.activeIndex = (this.activeIndex + 1) % length;
|
|
4392
|
+
this.updateSelectedStates();
|
|
4393
|
+
this.scrollToActive();
|
|
4394
|
+
}
|
|
4395
|
+
highlightPrevious() {
|
|
4396
|
+
const length = this.options.length;
|
|
4397
|
+
if (!length)
|
|
4398
|
+
return;
|
|
4399
|
+
this.activeIndex = (this.activeIndex - 1 + length) % length;
|
|
4400
|
+
this.updateSelectedStates();
|
|
4401
|
+
this.scrollToActive();
|
|
4402
|
+
}
|
|
4403
|
+
scrollToActive() {
|
|
4404
|
+
const opts = this.options.toArray();
|
|
4405
|
+
if (this.activeIndex < 0 || this.activeIndex >= opts.length)
|
|
4406
|
+
return;
|
|
4407
|
+
const host = opts[this.activeIndex].nativeElement;
|
|
4408
|
+
if (host && host.scrollIntoView) {
|
|
4409
|
+
host.scrollIntoView({ block: 'nearest' });
|
|
4410
|
+
}
|
|
4411
|
+
}
|
|
4412
|
+
selectActive() {
|
|
4413
|
+
if (this.activeIndex < 0)
|
|
4414
|
+
return;
|
|
4415
|
+
const opt = this.options.toArray()[this.activeIndex];
|
|
4416
|
+
if (opt?.disabled)
|
|
4417
|
+
return;
|
|
4418
|
+
this.selectOption(opt);
|
|
4419
|
+
}
|
|
4420
|
+
// chamado por matcha-option quando clicado
|
|
4421
|
+
selectOption(option) {
|
|
4422
|
+
console.log('MatchaAutocomplete: Opção selecionada', {
|
|
4423
|
+
option,
|
|
4424
|
+
value: option.value,
|
|
4425
|
+
selected: option.selected,
|
|
4426
|
+
optionsLength: this.options.length,
|
|
4427
|
+
allOptions: this.options.toArray()
|
|
4428
|
+
});
|
|
4429
|
+
// Armazenar o valor selecionado
|
|
4430
|
+
this.selectedValue = option.value;
|
|
4431
|
+
// Marcar a opção como selecionada diretamente
|
|
4432
|
+
option.selected = true;
|
|
4433
|
+
// Marcar todas as outras como não selecionadas
|
|
4434
|
+
this.options.forEach(o => {
|
|
4435
|
+
if (o !== option) {
|
|
4436
|
+
o.selected = false;
|
|
4437
|
+
}
|
|
4438
|
+
});
|
|
4439
|
+
console.log('MatchaAutocomplete: Após marcar seleção', {
|
|
4440
|
+
selectedOption: option,
|
|
4441
|
+
selected: option.selected,
|
|
4442
|
+
selectedValue: this.selectedValue,
|
|
4443
|
+
allOptions: this.options.toArray().map(o => ({ value: o.value, selected: o.selected }))
|
|
4444
|
+
});
|
|
4445
|
+
// Fechamos painel automaticamente
|
|
4446
|
+
console.log('MatchaAutocomplete: Fechando painel após seleção');
|
|
4447
|
+
this.closePanel();
|
|
4448
|
+
// indireto: a directive pode ler o value via getSelectedValue()
|
|
4449
|
+
}
|
|
4450
|
+
getSelectedValue() {
|
|
4451
|
+
// Usar o valor armazenado se disponível, senão buscar na QueryList
|
|
4452
|
+
const value = this.selectedValue !== undefined ? this.selectedValue : this.options.find(o => o.selected)?.value;
|
|
4453
|
+
console.log('MatchaAutocomplete: getSelectedValue chamado', {
|
|
4454
|
+
selectedValue: this.selectedValue,
|
|
4455
|
+
value,
|
|
4456
|
+
allOptions: this.options.toArray().map(o => ({ value: o.value, selected: o.selected }))
|
|
4457
|
+
});
|
|
4458
|
+
return value;
|
|
4459
|
+
}
|
|
4460
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAutocompleteComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4461
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaAutocompleteComponent, isStandalone: false, selector: "matcha-autocomplete", inputs: { placement: "placement", maxHeight: "maxHeight", minWidth: "minWidth" }, outputs: { opened: "opened", closed: "closed" }, queries: [{ propertyName: "options", predicate: MatchaOptionComponent, descendants: true }], viewQueries: [{ propertyName: "panel", first: true, predicate: MatchaPanelComponent, descendants: true }], ngImport: i0, template: "<matcha-panel\n #panel\n [open]=\"open\"\n [placement]=\"placement\"\n [maxHeight]=\"maxHeight\"\n [minWidth]=\"minWidth\"\n [triggerElement]=\"triggerElement\"\n (opened)=\"opened.emit()\"\n (closed)=\"closed.emit()\">\n <div class=\"matcha-panel-content flex-column\">\n <ng-content></ng-content>\n </div>\n</matcha-panel>\n", dependencies: [{ kind: "component", type: MatchaPanelComponent, selector: "matcha-panel", inputs: ["placement", "maxHeight", "minWidth", "offset", "triggerElement", "open"], outputs: ["opened", "closed"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
4462
|
+
}
|
|
4463
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAutocompleteComponent, decorators: [{
|
|
4464
|
+
type: Component,
|
|
4465
|
+
args: [{ selector: 'matcha-autocomplete', encapsulation: ViewEncapsulation.None, standalone: false, template: "<matcha-panel\n #panel\n [open]=\"open\"\n [placement]=\"placement\"\n [maxHeight]=\"maxHeight\"\n [minWidth]=\"minWidth\"\n [triggerElement]=\"triggerElement\"\n (opened)=\"opened.emit()\"\n (closed)=\"closed.emit()\">\n <div class=\"matcha-panel-content flex-column\">\n <ng-content></ng-content>\n </div>\n</matcha-panel>\n" }]
|
|
4466
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ChangeDetectorRef }], propDecorators: { options: [{
|
|
4467
|
+
type: ContentChildren,
|
|
4468
|
+
args: [MatchaOptionComponent, { descendants: true }]
|
|
4469
|
+
}], panel: [{
|
|
4470
|
+
type: ViewChild,
|
|
4471
|
+
args: [MatchaPanelComponent]
|
|
4472
|
+
}], placement: [{
|
|
4473
|
+
type: Input
|
|
4474
|
+
}], maxHeight: [{
|
|
4475
|
+
type: Input
|
|
4476
|
+
}], minWidth: [{
|
|
4477
|
+
type: Input
|
|
4478
|
+
}], opened: [{
|
|
4479
|
+
type: Output
|
|
4480
|
+
}], closed: [{
|
|
4481
|
+
type: Output
|
|
4482
|
+
}] } });
|
|
4483
|
+
|
|
3772
4484
|
class MatchaTooltipDirective {
|
|
3773
4485
|
constructor(el, renderer) {
|
|
3774
4486
|
this.el = el;
|
|
@@ -3910,10 +4622,10 @@ class MatchaTooltipDirective {
|
|
|
3910
4622
|
this.documentClickListener = null;
|
|
3911
4623
|
}
|
|
3912
4624
|
}
|
|
3913
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
3914
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.
|
|
4625
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTooltipDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4626
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.1", type: MatchaTooltipDirective, isStandalone: false, 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 }); }
|
|
3915
4627
|
}
|
|
3916
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
4628
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTooltipDirective, decorators: [{
|
|
3917
4629
|
type: Directive,
|
|
3918
4630
|
args: [{
|
|
3919
4631
|
selector: '[matchaTooltip]',
|
|
@@ -3952,11 +4664,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
3952
4664
|
}] } });
|
|
3953
4665
|
|
|
3954
4666
|
class MatchaTooltipModule {
|
|
3955
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
3956
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
3957
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
4667
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTooltipModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4668
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaTooltipModule, declarations: [MatchaTooltipDirective], imports: [CommonModule], exports: [MatchaTooltipDirective] }); }
|
|
4669
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTooltipModule, imports: [CommonModule] }); }
|
|
3958
4670
|
}
|
|
3959
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
4671
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTooltipModule, decorators: [{
|
|
3960
4672
|
type: NgModule,
|
|
3961
4673
|
args: [{
|
|
3962
4674
|
declarations: [MatchaTooltipDirective],
|
|
@@ -3966,11 +4678,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
3966
4678
|
}] });
|
|
3967
4679
|
|
|
3968
4680
|
class MatchaIconModule {
|
|
3969
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
3970
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
3971
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
4681
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4682
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaIconModule, declarations: [MatchaIconComponent], imports: [CommonModule, MatchaTooltipModule], exports: [MatchaIconComponent] }); }
|
|
4683
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaIconModule, imports: [CommonModule, MatchaTooltipModule] }); }
|
|
3972
4684
|
}
|
|
3973
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
4685
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaIconModule, decorators: [{
|
|
3974
4686
|
type: NgModule,
|
|
3975
4687
|
args: [{
|
|
3976
4688
|
declarations: [MatchaIconComponent],
|
|
@@ -3980,11 +4692,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
3980
4692
|
}] });
|
|
3981
4693
|
|
|
3982
4694
|
class MatchaTitleModule {
|
|
3983
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
3984
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
3985
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
4695
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTitleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4696
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaTitleModule, declarations: [MatchaTitleComponent], imports: [CommonModule], exports: [MatchaTitleComponent] }); }
|
|
4697
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTitleModule, imports: [CommonModule] }); }
|
|
3986
4698
|
}
|
|
3987
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
4699
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTitleModule, decorators: [{
|
|
3988
4700
|
type: NgModule,
|
|
3989
4701
|
args: [{
|
|
3990
4702
|
declarations: [MatchaTitleComponent],
|
|
@@ -3994,11 +4706,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
3994
4706
|
}] });
|
|
3995
4707
|
|
|
3996
4708
|
class MatchaDividerModule {
|
|
3997
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
3998
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
3999
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
4709
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDividerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4710
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaDividerModule, declarations: [MatchaDividerComponent], imports: [CommonModule], exports: [MatchaDividerComponent] }); }
|
|
4711
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDividerModule, imports: [CommonModule] }); }
|
|
4000
4712
|
}
|
|
4001
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
4713
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDividerModule, decorators: [{
|
|
4002
4714
|
type: NgModule,
|
|
4003
4715
|
args: [{
|
|
4004
4716
|
declarations: [
|
|
@@ -4012,11 +4724,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4012
4724
|
}] });
|
|
4013
4725
|
|
|
4014
4726
|
class MatchaButtonModule {
|
|
4015
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4016
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
4017
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
4727
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4728
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaButtonModule, declarations: [MatchaButtonComponent], exports: [MatchaButtonComponent] }); }
|
|
4729
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaButtonModule }); }
|
|
4018
4730
|
}
|
|
4019
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
4731
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaButtonModule, decorators: [{
|
|
4020
4732
|
type: NgModule,
|
|
4021
4733
|
args: [{
|
|
4022
4734
|
declarations: [MatchaButtonComponent],
|
|
@@ -4026,8 +4738,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4026
4738
|
}] });
|
|
4027
4739
|
|
|
4028
4740
|
class MatchaAccordionModule {
|
|
4029
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4030
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
4741
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAccordionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4742
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaAccordionModule, declarations: [MatchaAccordionComponent,
|
|
4031
4743
|
MatchaAccordionItemComponent,
|
|
4032
4744
|
MatchaAccordionHeaderComponent,
|
|
4033
4745
|
MatchaAccordionContentComponent], imports: [CommonModule,
|
|
@@ -4039,14 +4751,14 @@ class MatchaAccordionModule {
|
|
|
4039
4751
|
MatchaAccordionItemComponent,
|
|
4040
4752
|
MatchaAccordionHeaderComponent,
|
|
4041
4753
|
MatchaAccordionContentComponent] }); }
|
|
4042
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
4754
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAccordionModule, imports: [CommonModule,
|
|
4043
4755
|
MatchaIconModule,
|
|
4044
4756
|
MatchaTitleModule,
|
|
4045
4757
|
MatchaDividerModule,
|
|
4046
4758
|
MatchaTooltipModule,
|
|
4047
4759
|
MatchaButtonModule] }); }
|
|
4048
4760
|
}
|
|
4049
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
4761
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAccordionModule, decorators: [{
|
|
4050
4762
|
type: NgModule,
|
|
4051
4763
|
args: [{
|
|
4052
4764
|
declarations: [
|
|
@@ -4073,11 +4785,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4073
4785
|
}] });
|
|
4074
4786
|
|
|
4075
4787
|
class MatchaInfiniteScrollModule {
|
|
4076
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4077
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
4078
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
4788
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaInfiniteScrollModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4789
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaInfiniteScrollModule, declarations: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent], imports: [CommonModule], exports: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent] }); }
|
|
4790
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaInfiniteScrollModule, imports: [CommonModule] }); }
|
|
4079
4791
|
}
|
|
4080
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
4792
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaInfiniteScrollModule, decorators: [{
|
|
4081
4793
|
type: NgModule,
|
|
4082
4794
|
args: [{
|
|
4083
4795
|
declarations: [MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent],
|
|
@@ -4089,11 +4801,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4089
4801
|
}] });
|
|
4090
4802
|
|
|
4091
4803
|
class MatchaLazyloadModule {
|
|
4092
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4093
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
4094
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
4804
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaLazyloadModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4805
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaLazyloadModule, declarations: [MatchaLazyloadComponent, MatchaLazyloadDataComponent], imports: [CommonModule], exports: [MatchaLazyloadComponent, MatchaLazyloadDataComponent] }); }
|
|
4806
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaLazyloadModule, imports: [CommonModule] }); }
|
|
4095
4807
|
}
|
|
4096
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
4808
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaLazyloadModule, decorators: [{
|
|
4097
4809
|
type: NgModule,
|
|
4098
4810
|
args: [{
|
|
4099
4811
|
declarations: [MatchaLazyloadComponent, MatchaLazyloadDataComponent],
|
|
@@ -4127,10 +4839,10 @@ class MatchaElevationDirective {
|
|
|
4127
4839
|
this._renderer.addClass(this._elementRef.nativeElement, `elevation-z-0`);
|
|
4128
4840
|
}
|
|
4129
4841
|
}
|
|
4130
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4131
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.
|
|
4842
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaElevationDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4843
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.1", type: MatchaElevationDirective, isStandalone: false, selector: "[elevation]", inputs: { elevation: "elevation" }, usesOnChanges: true, ngImport: i0 }); }
|
|
4132
4844
|
}
|
|
4133
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
4845
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaElevationDirective, decorators: [{
|
|
4134
4846
|
type: Directive,
|
|
4135
4847
|
args: [{
|
|
4136
4848
|
selector: '[elevation]',
|
|
@@ -4142,11 +4854,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4142
4854
|
}] } });
|
|
4143
4855
|
|
|
4144
4856
|
class MatchaElevationModule {
|
|
4145
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4146
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
4147
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
4857
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaElevationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4858
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaElevationModule, declarations: [MatchaElevationDirective], imports: [CommonModule], exports: [MatchaElevationDirective] }); }
|
|
4859
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaElevationModule, imports: [CommonModule] }); }
|
|
4148
4860
|
}
|
|
4149
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
4861
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaElevationModule, decorators: [{
|
|
4150
4862
|
type: NgModule,
|
|
4151
4863
|
args: [{
|
|
4152
4864
|
declarations: [MatchaElevationDirective],
|
|
@@ -4274,10 +4986,10 @@ class MatchaOverlayService {
|
|
|
4274
4986
|
this.removeOverlayContainer();
|
|
4275
4987
|
}
|
|
4276
4988
|
}
|
|
4277
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4278
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.
|
|
4989
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaOverlayService, deps: [{ token: i0.ApplicationRef }, { token: i0.Injector }, { token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4990
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaOverlayService, providedIn: 'root' }); }
|
|
4279
4991
|
}
|
|
4280
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
4992
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaOverlayService, decorators: [{
|
|
4281
4993
|
type: Injectable,
|
|
4282
4994
|
args: [{
|
|
4283
4995
|
providedIn: 'root',
|
|
@@ -4313,10 +5025,10 @@ class MatchaModalService {
|
|
|
4313
5025
|
getData() {
|
|
4314
5026
|
return this.currentData;
|
|
4315
5027
|
}
|
|
4316
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4317
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.
|
|
5028
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaModalService, deps: [{ token: MatchaOverlayService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
5029
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaModalService, providedIn: 'root' }); }
|
|
4318
5030
|
}
|
|
4319
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5031
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaModalService, decorators: [{
|
|
4320
5032
|
type: Injectable,
|
|
4321
5033
|
args: [{
|
|
4322
5034
|
providedIn: 'root'
|
|
@@ -4324,8 +5036,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4324
5036
|
}], ctorParameters: () => [{ type: MatchaOverlayService }] });
|
|
4325
5037
|
|
|
4326
5038
|
class MatchaModalModule {
|
|
4327
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4328
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
5039
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5040
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaModalModule, declarations: [MatchaModalHeaderComponent,
|
|
4329
5041
|
MatchaModalContentComponent,
|
|
4330
5042
|
MatchaModalFooterComponent,
|
|
4331
5043
|
MatchaModalOptionsComponent,
|
|
@@ -4339,7 +5051,7 @@ class MatchaModalModule {
|
|
|
4339
5051
|
MatchaModalFooterComponent,
|
|
4340
5052
|
MatchaModalOptionsComponent,
|
|
4341
5053
|
MatchaModalComponent] }); }
|
|
4342
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5054
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaModalModule, providers: [
|
|
4343
5055
|
MatchaModalService,
|
|
4344
5056
|
MatchaOverlayService
|
|
4345
5057
|
], imports: [CommonModule,
|
|
@@ -4349,7 +5061,7 @@ class MatchaModalModule {
|
|
|
4349
5061
|
MatchaTooltipModule,
|
|
4350
5062
|
MatchaElevationModule] }); }
|
|
4351
5063
|
}
|
|
4352
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5064
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaModalModule, decorators: [{
|
|
4353
5065
|
type: NgModule,
|
|
4354
5066
|
args: [{
|
|
4355
5067
|
declarations: [
|
|
@@ -4382,21 +5094,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4382
5094
|
}] });
|
|
4383
5095
|
|
|
4384
5096
|
class MatchaCardModule {
|
|
4385
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4386
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
5097
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaCardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5098
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaCardModule, declarations: [MatchaCardComponent], imports: [CommonModule,
|
|
4387
5099
|
MatchaElevationModule,
|
|
4388
5100
|
MatchaIconModule,
|
|
4389
5101
|
MatchaTitleModule,
|
|
4390
5102
|
MatchaDividerModule,
|
|
4391
5103
|
MatchaTooltipModule], exports: [MatchaCardComponent] }); }
|
|
4392
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5104
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaCardModule, imports: [CommonModule,
|
|
4393
5105
|
MatchaElevationModule,
|
|
4394
5106
|
MatchaIconModule,
|
|
4395
5107
|
MatchaTitleModule,
|
|
4396
5108
|
MatchaDividerModule,
|
|
4397
5109
|
MatchaTooltipModule] }); }
|
|
4398
5110
|
}
|
|
4399
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5111
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaCardModule, decorators: [{
|
|
4400
5112
|
type: NgModule,
|
|
4401
5113
|
args: [{
|
|
4402
5114
|
declarations: [MatchaCardComponent],
|
|
@@ -4413,11 +5125,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4413
5125
|
}] });
|
|
4414
5126
|
|
|
4415
5127
|
class MatchaMasonryModule {
|
|
4416
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4417
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
4418
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5128
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaMasonryModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5129
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaMasonryModule, declarations: [MatchaMasonryComponent], imports: [CommonModule], exports: [MatchaMasonryComponent] }); }
|
|
5130
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaMasonryModule, imports: [CommonModule] }); }
|
|
4419
5131
|
}
|
|
4420
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5132
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaMasonryModule, decorators: [{
|
|
4421
5133
|
type: NgModule,
|
|
4422
5134
|
args: [{
|
|
4423
5135
|
declarations: [MatchaMasonryComponent],
|
|
@@ -4427,13 +5139,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4427
5139
|
}] });
|
|
4428
5140
|
|
|
4429
5141
|
class MatchaButtonToggleModule {
|
|
4430
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4431
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
5142
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaButtonToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5143
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaButtonToggleModule, declarations: [MatchaButtonToggleComponent], imports: [CommonModule,
|
|
4432
5144
|
MatchaTooltipModule], exports: [MatchaButtonToggleComponent] }); }
|
|
4433
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5145
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaButtonToggleModule, imports: [CommonModule,
|
|
4434
5146
|
MatchaTooltipModule] }); }
|
|
4435
5147
|
}
|
|
4436
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5148
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaButtonToggleModule, decorators: [{
|
|
4437
5149
|
type: NgModule,
|
|
4438
5150
|
args: [{
|
|
4439
5151
|
declarations: [MatchaButtonToggleComponent],
|
|
@@ -4446,8 +5158,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4446
5158
|
}] });
|
|
4447
5159
|
|
|
4448
5160
|
class MatchaToolbarModule {
|
|
4449
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4450
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
5161
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaToolbarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5162
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaToolbarModule, declarations: [MatchaToolbarComponent,
|
|
4451
5163
|
MatchaToolbarButtonComponent,
|
|
4452
5164
|
MatchaToolbarContentComponent,
|
|
4453
5165
|
MatchaToolbarMainButtonComponent,
|
|
@@ -4460,12 +5172,12 @@ class MatchaToolbarModule {
|
|
|
4460
5172
|
MatchaToolbarMainButtonComponent,
|
|
4461
5173
|
MatchaToolbarCustomButtonComponent,
|
|
4462
5174
|
MatchaTitleModule] }); }
|
|
4463
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5175
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaToolbarModule, imports: [CommonModule,
|
|
4464
5176
|
MatchaButtonModule,
|
|
4465
5177
|
MatchaTitleModule,
|
|
4466
5178
|
MatchaTooltipModule, MatchaTitleModule] }); }
|
|
4467
5179
|
}
|
|
4468
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5180
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaToolbarModule, decorators: [{
|
|
4469
5181
|
type: NgModule,
|
|
4470
5182
|
args: [{
|
|
4471
5183
|
declarations: [
|
|
@@ -4493,11 +5205,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4493
5205
|
}] });
|
|
4494
5206
|
|
|
4495
5207
|
class MatchaGridModule {
|
|
4496
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4497
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
4498
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5208
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaGridModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5209
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaGridModule, declarations: [MatchaGridComponent], imports: [CommonModule], exports: [MatchaGridComponent] }); }
|
|
5210
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaGridModule, imports: [CommonModule] }); }
|
|
4499
5211
|
}
|
|
4500
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5212
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaGridModule, decorators: [{
|
|
4501
5213
|
type: NgModule,
|
|
4502
5214
|
args: [{
|
|
4503
5215
|
declarations: [MatchaGridComponent],
|
|
@@ -4507,11 +5219,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4507
5219
|
}] });
|
|
4508
5220
|
|
|
4509
5221
|
class MatchaFormFieldModule {
|
|
4510
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4511
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
4512
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5222
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaFormFieldModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5223
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaFormFieldModule, declarations: [MatchaFormFieldComponent, MatchaLabelComponent, MatchaErrorComponent], imports: [CommonModule, MatchaIconModule], exports: [MatchaFormFieldComponent, MatchaLabelComponent, MatchaErrorComponent] }); }
|
|
5224
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaFormFieldModule, imports: [CommonModule, MatchaIconModule] }); }
|
|
4513
5225
|
}
|
|
4514
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5226
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaFormFieldModule, decorators: [{
|
|
4515
5227
|
type: NgModule,
|
|
4516
5228
|
args: [{
|
|
4517
5229
|
declarations: [MatchaFormFieldComponent, MatchaLabelComponent, MatchaErrorComponent],
|
|
@@ -4520,98 +5232,217 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4520
5232
|
}]
|
|
4521
5233
|
}] });
|
|
4522
5234
|
|
|
4523
|
-
class
|
|
4524
|
-
|
|
4525
|
-
|
|
4526
|
-
|
|
4527
|
-
}
|
|
4528
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MatchaOptionModule, decorators: [{
|
|
4529
|
-
type: NgModule,
|
|
4530
|
-
args: [{
|
|
4531
|
-
declarations: [MatchaOptionComponent],
|
|
4532
|
-
imports: [CommonModule],
|
|
4533
|
-
exports: [MatchaOptionComponent],
|
|
4534
|
-
}]
|
|
4535
|
-
}] });
|
|
4536
|
-
|
|
4537
|
-
class MatchaAutocompleteDirective {
|
|
4538
|
-
displayAutocomplete() {
|
|
4539
|
-
this.matchaOptionService.setCanShowOptions(true);
|
|
5235
|
+
class MatchaAutocompleteTriggerDirective {
|
|
5236
|
+
constructor(el) {
|
|
5237
|
+
this.el = el;
|
|
5238
|
+
this.subs = new Subscription();
|
|
4540
5239
|
}
|
|
4541
|
-
|
|
4542
|
-
|
|
4543
|
-
|
|
4544
|
-
|
|
4545
|
-
|
|
4546
|
-
|
|
4547
|
-
|
|
5240
|
+
ngAfterViewInit() {
|
|
5241
|
+
if (!this.panel) {
|
|
5242
|
+
throw new Error('Você precisa passar uma referência para <matcha-autocomplete> ex: [matchaAutocomplete]="auto"');
|
|
5243
|
+
}
|
|
5244
|
+
this.panel.attachTo(this.el.nativeElement);
|
|
5245
|
+
// close panel ao clicar fora - usando click para evitar conflito com focus
|
|
5246
|
+
const clickSub = fromEvent(document, 'click').pipe(filter((ev) => {
|
|
5247
|
+
const target = ev.target;
|
|
5248
|
+
const isInsideInput = this.el.nativeElement.contains(target) || this.el.nativeElement === target;
|
|
5249
|
+
const isInsidePanel = this.panel?.elRef?.nativeElement?.contains?.(target);
|
|
5250
|
+
console.log('MatchaAutocomplete: Click outside check', {
|
|
5251
|
+
target: target,
|
|
5252
|
+
inputElement: this.el.nativeElement,
|
|
5253
|
+
isInsideInput,
|
|
5254
|
+
isInsidePanel,
|
|
5255
|
+
shouldClose: !isInsideInput && !isInsidePanel
|
|
5256
|
+
});
|
|
5257
|
+
// Não fechar se clicou no input ou painel
|
|
5258
|
+
return !isInsideInput && !isInsidePanel;
|
|
5259
|
+
})).subscribe(() => {
|
|
5260
|
+
console.log('MatchaAutocomplete: Fechando painel por click outside');
|
|
5261
|
+
this.panel.closePanel();
|
|
5262
|
+
});
|
|
5263
|
+
this.subs.add(clickSub);
|
|
5264
|
+
}
|
|
5265
|
+
ngOnDestroy() {
|
|
5266
|
+
this.subs.unsubscribe();
|
|
5267
|
+
}
|
|
5268
|
+
writeValueToInput(value) {
|
|
5269
|
+
console.log('MatchaAutocomplete: writeValueToInput chamado', {
|
|
5270
|
+
value,
|
|
5271
|
+
input: this.el.nativeElement
|
|
5272
|
+
});
|
|
5273
|
+
const input = this.el.nativeElement;
|
|
5274
|
+
input.value = value == null ? '' : value;
|
|
5275
|
+
// dispatch input event para Angular Forms
|
|
5276
|
+
const ev = new Event('input', { bubbles: true });
|
|
5277
|
+
input.dispatchEvent(ev);
|
|
5278
|
+
console.log('MatchaAutocomplete: Valor escrito no input', input.value);
|
|
4548
5279
|
}
|
|
4549
|
-
|
|
4550
|
-
|
|
5280
|
+
onClick() {
|
|
5281
|
+
// Abrir painel quando clicar no input
|
|
5282
|
+
this.panel.openPanel();
|
|
5283
|
+
}
|
|
5284
|
+
onFocus() {
|
|
5285
|
+
// Não abrir automaticamente no focus para evitar conflito com click outside
|
|
5286
|
+
// O painel será aberto apenas quando o usuário clicar ou digitar
|
|
5287
|
+
}
|
|
5288
|
+
onInput(e) {
|
|
5289
|
+
// se o usuário digitar, apenas reabre painel. O filtro de opções geralmente é controlado pelo componente pai
|
|
5290
|
+
if (!this.panel.open)
|
|
5291
|
+
this.panel.openPanel();
|
|
5292
|
+
}
|
|
5293
|
+
onKeydown(ev) {
|
|
5294
|
+
if (!this.panel)
|
|
5295
|
+
return;
|
|
5296
|
+
switch (ev.key) {
|
|
4551
5297
|
case 'ArrowDown':
|
|
4552
|
-
|
|
5298
|
+
ev.preventDefault();
|
|
5299
|
+
this.panel.highlightNext();
|
|
4553
5300
|
break;
|
|
4554
5301
|
case 'ArrowUp':
|
|
4555
|
-
|
|
5302
|
+
ev.preventDefault();
|
|
5303
|
+
this.panel.highlightPrevious();
|
|
4556
5304
|
break;
|
|
4557
5305
|
case 'Enter':
|
|
4558
|
-
|
|
5306
|
+
ev.preventDefault();
|
|
5307
|
+
this.panel.selectActive();
|
|
5308
|
+
// pega o value escolhido e escreve no input
|
|
5309
|
+
setTimeout(() => {
|
|
5310
|
+
const val = this.panel.getSelectedValue();
|
|
5311
|
+
if (val !== undefined)
|
|
5312
|
+
this.writeValueToInput(val);
|
|
5313
|
+
});
|
|
4559
5314
|
break;
|
|
4560
|
-
|
|
5315
|
+
case 'Escape':
|
|
5316
|
+
ev.preventDefault();
|
|
5317
|
+
this.panel.closePanel();
|
|
4561
5318
|
break;
|
|
4562
5319
|
}
|
|
4563
5320
|
}
|
|
4564
|
-
|
|
4565
|
-
|
|
4566
|
-
|
|
4567
|
-
|
|
4568
|
-
|
|
4569
|
-
|
|
4570
|
-
|
|
4571
|
-
|
|
4572
|
-
|
|
4573
|
-
|
|
4574
|
-
|
|
4575
|
-
|
|
4576
|
-
|
|
4577
|
-
|
|
4578
|
-
|
|
4579
|
-
|
|
5321
|
+
// Se uma opção for selecionada via click (o matcha-option notifica o pai que faz close),
|
|
5322
|
+
// lemos selectedValue e escrevemos no input. Como o selectOption do painel fecha imediatamente,
|
|
5323
|
+
// precisamos observar mudanças no DOM/QueryList ou checar logo após close.
|
|
5324
|
+
// Simples solução: observar clicks nas options via delegation:
|
|
5325
|
+
onDocClick(ev) {
|
|
5326
|
+
const target = ev.target;
|
|
5327
|
+
// if clicked inside an option that belongs to this panel
|
|
5328
|
+
if (!this.panel || !this.panel.open) {
|
|
5329
|
+
// se painel fechado, pode ter sido selecionado; então buscarmos selected value
|
|
5330
|
+
setTimeout(() => {
|
|
5331
|
+
if (this.panel && typeof this.panel.getSelectedValue === 'function') {
|
|
5332
|
+
const val = this.panel.getSelectedValue();
|
|
5333
|
+
if (val !== undefined)
|
|
5334
|
+
this.writeValueToInput(val);
|
|
5335
|
+
}
|
|
5336
|
+
}, 10);
|
|
4580
5337
|
}
|
|
4581
5338
|
}
|
|
4582
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4583
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.
|
|
5339
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAutocompleteTriggerDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5340
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.1", type: MatchaAutocompleteTriggerDirective, isStandalone: false, selector: "[matchaAutocomplete]", inputs: { panel: ["matchaAutocomplete", "panel"] }, host: { listeners: { "click": "onClick()", "focus": "onFocus()", "input": "onInput($event)", "keydown": "onKeydown($event)", "document:click": "onDocClick($event)" } }, ngImport: i0 }); }
|
|
4584
5341
|
}
|
|
4585
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5342
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAutocompleteTriggerDirective, decorators: [{
|
|
4586
5343
|
type: Directive,
|
|
4587
5344
|
args: [{
|
|
4588
5345
|
selector: '[matchaAutocomplete]',
|
|
4589
5346
|
standalone: false,
|
|
4590
5347
|
}]
|
|
4591
|
-
}], ctorParameters: () => [{ type:
|
|
4592
|
-
type: Input
|
|
4593
|
-
|
|
5348
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { panel: [{
|
|
5349
|
+
type: Input,
|
|
5350
|
+
args: ['matchaAutocomplete']
|
|
5351
|
+
}], onClick: [{
|
|
5352
|
+
type: HostListener,
|
|
5353
|
+
args: ['click']
|
|
5354
|
+
}], onFocus: [{
|
|
4594
5355
|
type: HostListener,
|
|
4595
5356
|
args: ['focus']
|
|
4596
|
-
}],
|
|
5357
|
+
}], onInput: [{
|
|
4597
5358
|
type: HostListener,
|
|
4598
|
-
args: ['
|
|
4599
|
-
}],
|
|
5359
|
+
args: ['input', ['$event']]
|
|
5360
|
+
}], onKeydown: [{
|
|
4600
5361
|
type: HostListener,
|
|
4601
5362
|
args: ['keydown', ['$event']]
|
|
5363
|
+
}], onDocClick: [{
|
|
5364
|
+
type: HostListener,
|
|
5365
|
+
args: ['document:click', ['$event']]
|
|
4602
5366
|
}] } });
|
|
4603
5367
|
|
|
5368
|
+
class MatchaOptionModule {
|
|
5369
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaOptionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5370
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaOptionModule, declarations: [MatchaOptionComponent], imports: [CommonModule], exports: [MatchaOptionComponent] }); }
|
|
5371
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaOptionModule, imports: [CommonModule] }); }
|
|
5372
|
+
}
|
|
5373
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaOptionModule, decorators: [{
|
|
5374
|
+
type: NgModule,
|
|
5375
|
+
args: [{
|
|
5376
|
+
declarations: [
|
|
5377
|
+
MatchaOptionComponent
|
|
5378
|
+
],
|
|
5379
|
+
imports: [
|
|
5380
|
+
CommonModule
|
|
5381
|
+
],
|
|
5382
|
+
exports: [
|
|
5383
|
+
MatchaOptionComponent
|
|
5384
|
+
]
|
|
5385
|
+
}]
|
|
5386
|
+
}] });
|
|
5387
|
+
|
|
5388
|
+
class MatchaPanelModule {
|
|
5389
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaPanelModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5390
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaPanelModule, declarations: [MatchaPanelComponent], imports: [CommonModule], exports: [MatchaPanelComponent] }); }
|
|
5391
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaPanelModule, imports: [CommonModule] }); }
|
|
5392
|
+
}
|
|
5393
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaPanelModule, decorators: [{
|
|
5394
|
+
type: NgModule,
|
|
5395
|
+
args: [{
|
|
5396
|
+
declarations: [
|
|
5397
|
+
MatchaPanelComponent
|
|
5398
|
+
],
|
|
5399
|
+
imports: [
|
|
5400
|
+
CommonModule
|
|
5401
|
+
],
|
|
5402
|
+
exports: [
|
|
5403
|
+
MatchaPanelComponent
|
|
5404
|
+
]
|
|
5405
|
+
}]
|
|
5406
|
+
}] });
|
|
5407
|
+
|
|
4604
5408
|
class MatchaAutocompleteModule {
|
|
4605
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4606
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
4607
|
-
|
|
5409
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAutocompleteModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5410
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaAutocompleteModule, declarations: [MatchaAutocompleteComponent,
|
|
5411
|
+
MatchaAutocompleteTriggerDirective], imports: [CommonModule,
|
|
5412
|
+
MatchaOptionModule,
|
|
5413
|
+
MatchaPanelModule], exports: [MatchaAutocompleteComponent,
|
|
5414
|
+
MatchaAutocompleteTriggerDirective,
|
|
5415
|
+
MatchaOptionModule // Re-exporta para conveniência
|
|
5416
|
+
] }); }
|
|
5417
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAutocompleteModule, providers: [
|
|
5418
|
+
// Provider para permitir injeção da interface MatchaOptionParent
|
|
5419
|
+
{ provide: MATCHA_OPTION_PARENT, useExisting: MatchaAutocompleteComponent }
|
|
5420
|
+
], imports: [CommonModule,
|
|
5421
|
+
MatchaOptionModule,
|
|
5422
|
+
MatchaPanelModule, MatchaOptionModule // Re-exporta para conveniência
|
|
5423
|
+
] }); }
|
|
4608
5424
|
}
|
|
4609
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5425
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAutocompleteModule, decorators: [{
|
|
4610
5426
|
type: NgModule,
|
|
4611
5427
|
args: [{
|
|
4612
|
-
declarations: [
|
|
4613
|
-
|
|
4614
|
-
|
|
5428
|
+
declarations: [
|
|
5429
|
+
MatchaAutocompleteComponent,
|
|
5430
|
+
MatchaAutocompleteTriggerDirective
|
|
5431
|
+
],
|
|
5432
|
+
imports: [
|
|
5433
|
+
CommonModule,
|
|
5434
|
+
MatchaOptionModule,
|
|
5435
|
+
MatchaPanelModule
|
|
5436
|
+
],
|
|
5437
|
+
exports: [
|
|
5438
|
+
MatchaAutocompleteComponent,
|
|
5439
|
+
MatchaAutocompleteTriggerDirective,
|
|
5440
|
+
MatchaOptionModule // Re-exporta para conveniência
|
|
5441
|
+
],
|
|
5442
|
+
providers: [
|
|
5443
|
+
// Provider para permitir injeção da interface MatchaOptionParent
|
|
5444
|
+
{ provide: MATCHA_OPTION_PARENT, useExisting: MatchaAutocompleteComponent }
|
|
5445
|
+
]
|
|
4615
5446
|
}]
|
|
4616
5447
|
}] });
|
|
4617
5448
|
|
|
@@ -4622,10 +5453,10 @@ class MatchaBadgeDirective {
|
|
|
4622
5453
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
4623
5454
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-badge');
|
|
4624
5455
|
}
|
|
4625
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4626
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.
|
|
5456
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaBadgeDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5457
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.1", type: MatchaBadgeDirective, isStandalone: false, selector: "[matcha-badge]", ngImport: i0 }); }
|
|
4627
5458
|
}
|
|
4628
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5459
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaBadgeDirective, decorators: [{
|
|
4629
5460
|
type: Directive,
|
|
4630
5461
|
args: [{
|
|
4631
5462
|
selector: '[matcha-badge]',
|
|
@@ -4634,11 +5465,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4634
5465
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
4635
5466
|
|
|
4636
5467
|
class MatchaBadgeModule {
|
|
4637
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4638
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
4639
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5468
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaBadgeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5469
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaBadgeModule, declarations: [MatchaBadgeDirective], exports: [MatchaBadgeDirective] }); }
|
|
5470
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaBadgeModule }); }
|
|
4640
5471
|
}
|
|
4641
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5472
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaBadgeModule, decorators: [{
|
|
4642
5473
|
type: NgModule,
|
|
4643
5474
|
args: [{
|
|
4644
5475
|
declarations: [MatchaBadgeDirective],
|
|
@@ -4648,11 +5479,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4648
5479
|
}] });
|
|
4649
5480
|
|
|
4650
5481
|
class MatchaRippleModule {
|
|
4651
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4652
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
4653
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5482
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaRippleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5483
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaRippleModule, declarations: [MatchaRippleDirective], imports: [CommonModule], exports: [MatchaRippleDirective] }); }
|
|
5484
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaRippleModule, imports: [CommonModule] }); }
|
|
4654
5485
|
}
|
|
4655
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5486
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaRippleModule, decorators: [{
|
|
4656
5487
|
type: NgModule,
|
|
4657
5488
|
args: [{
|
|
4658
5489
|
declarations: [
|
|
@@ -4668,11 +5499,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4668
5499
|
}] });
|
|
4669
5500
|
|
|
4670
5501
|
class MatchaCheckboxModule {
|
|
4671
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4672
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
4673
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5502
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaCheckboxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5503
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaCheckboxModule, declarations: [MatchaCheckboxComponent], imports: [CommonModule, MatchaRippleModule], exports: [MatchaCheckboxComponent] }); }
|
|
5504
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaCheckboxModule, imports: [CommonModule, MatchaRippleModule] }); }
|
|
4674
5505
|
}
|
|
4675
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5506
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaCheckboxModule, decorators: [{
|
|
4676
5507
|
type: NgModule,
|
|
4677
5508
|
args: [{
|
|
4678
5509
|
declarations: [
|
|
@@ -4692,10 +5523,10 @@ class MatchaChipsDirective {
|
|
|
4692
5523
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
4693
5524
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-chips');
|
|
4694
5525
|
}
|
|
4695
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4696
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.
|
|
5526
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaChipsDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5527
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.1", type: MatchaChipsDirective, isStandalone: false, selector: "[matchaChips]", ngImport: i0 }); }
|
|
4697
5528
|
}
|
|
4698
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5529
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaChipsDirective, decorators: [{
|
|
4699
5530
|
type: Directive,
|
|
4700
5531
|
args: [{
|
|
4701
5532
|
selector: '[matchaChips]',
|
|
@@ -4704,61 +5535,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4704
5535
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
4705
5536
|
|
|
4706
5537
|
class MatchaChipsModule {
|
|
4707
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4708
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
4709
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5538
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaChipsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5539
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaChipsModule, declarations: [MatchaChipsDirective], exports: [MatchaChipsDirective] }); }
|
|
5540
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaChipsModule }); }
|
|
4710
5541
|
}
|
|
4711
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5542
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaChipsModule, decorators: [{
|
|
4712
5543
|
type: NgModule,
|
|
4713
5544
|
args: [{
|
|
4714
5545
|
declarations: [MatchaChipsDirective],
|
|
4715
5546
|
imports: [],
|
|
4716
|
-
exports: [
|
|
4717
|
-
MatchaChipsDirective
|
|
4718
|
-
]
|
|
4719
|
-
}]
|
|
4720
|
-
}] });
|
|
4721
|
-
|
|
4722
|
-
class MatchaDatepickerDirective {
|
|
4723
|
-
constructor(_elementRef, _renderer) {
|
|
4724
|
-
this._elementRef = _elementRef;
|
|
4725
|
-
this._renderer = _renderer;
|
|
4726
|
-
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
4727
|
-
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-datepicker');
|
|
4728
|
-
}
|
|
4729
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MatchaDatepickerDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4730
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.4", type: MatchaDatepickerDirective, isStandalone: false, selector: "[matcha-datepicker]", ngImport: i0 }); }
|
|
4731
|
-
}
|
|
4732
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MatchaDatepickerDirective, decorators: [{
|
|
4733
|
-
type: Directive,
|
|
4734
|
-
args: [{
|
|
4735
|
-
selector: '[matcha-datepicker]',
|
|
4736
|
-
standalone: false
|
|
4737
|
-
}]
|
|
4738
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
4739
|
-
|
|
4740
|
-
class MatchaDatepickerModule {
|
|
4741
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MatchaDatepickerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4742
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.4", ngImport: i0, type: MatchaDatepickerModule, declarations: [MatchaDatepickerDirective], exports: [MatchaDatepickerDirective] }); }
|
|
4743
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MatchaDatepickerModule }); }
|
|
4744
|
-
}
|
|
4745
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MatchaDatepickerModule, decorators: [{
|
|
4746
|
-
type: NgModule,
|
|
4747
|
-
args: [{
|
|
4748
|
-
declarations: [MatchaDatepickerDirective],
|
|
4749
|
-
imports: [],
|
|
4750
|
-
exports: [MatchaDatepickerDirective],
|
|
5547
|
+
exports: [MatchaChipsDirective]
|
|
4751
5548
|
}]
|
|
4752
5549
|
}] });
|
|
4753
5550
|
|
|
4754
5551
|
class MatchaHintTextModule {
|
|
4755
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4756
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
5552
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaHintTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5553
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaHintTextModule, declarations: [MatchaHintTextComponent], imports: [CommonModule,
|
|
4757
5554
|
MatchaIconModule], exports: [MatchaHintTextComponent] }); }
|
|
4758
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5555
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaHintTextModule, imports: [CommonModule,
|
|
4759
5556
|
MatchaIconModule] }); }
|
|
4760
5557
|
}
|
|
4761
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5558
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaHintTextModule, decorators: [{
|
|
4762
5559
|
type: NgModule,
|
|
4763
5560
|
args: [{
|
|
4764
5561
|
declarations: [MatchaHintTextComponent],
|
|
@@ -4777,10 +5574,10 @@ class MatchaInputDirective {
|
|
|
4777
5574
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
4778
5575
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-input');
|
|
4779
5576
|
}
|
|
4780
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4781
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.
|
|
5577
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaInputDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5578
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.1", type: MatchaInputDirective, isStandalone: false, selector: "[matcha-input]", ngImport: i0 }); }
|
|
4782
5579
|
}
|
|
4783
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5580
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaInputDirective, decorators: [{
|
|
4784
5581
|
type: Directive,
|
|
4785
5582
|
args: [{
|
|
4786
5583
|
selector: '[matcha-input]',
|
|
@@ -4789,11 +5586,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4789
5586
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
4790
5587
|
|
|
4791
5588
|
class MatchaInputModule {
|
|
4792
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4793
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
4794
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5589
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaInputModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5590
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaInputModule, declarations: [MatchaInputDirective], exports: [MatchaInputDirective] }); }
|
|
5591
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaInputModule }); }
|
|
4795
5592
|
}
|
|
4796
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5593
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaInputModule, decorators: [{
|
|
4797
5594
|
type: NgModule,
|
|
4798
5595
|
args: [{
|
|
4799
5596
|
declarations: [MatchaInputDirective],
|
|
@@ -4823,10 +5620,10 @@ class MatchaMenuTriggerForDirective {
|
|
|
4823
5620
|
this.menu.closeMenu();
|
|
4824
5621
|
}
|
|
4825
5622
|
}
|
|
4826
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4827
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.
|
|
5623
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaMenuTriggerForDirective, deps: [{ token: ElementRef }, { token: Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5624
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.1", type: MatchaMenuTriggerForDirective, isStandalone: false, selector: "[matchaMenuTriggerFor]", inputs: { menu: ["matchaMenuTriggerFor", "menu"] }, host: { listeners: { "click": "onClick($event)", "mouseenter": "onMouseEnter()", "mouseleave": "onMouseLeave()" } }, exportAs: ["matchaMenuTriggerFor"], ngImport: i0 }); }
|
|
4828
5625
|
}
|
|
4829
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5626
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaMenuTriggerForDirective, decorators: [{
|
|
4830
5627
|
type: Directive,
|
|
4831
5628
|
args: [{
|
|
4832
5629
|
selector: '[matchaMenuTriggerFor]',
|
|
@@ -4854,13 +5651,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4854
5651
|
}] } });
|
|
4855
5652
|
|
|
4856
5653
|
class MatchaMenuModule {
|
|
4857
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4858
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
5654
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5655
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaMenuModule, declarations: [MatchaMenuComponent,
|
|
4859
5656
|
MatchaMenuTriggerForDirective], imports: [CommonModule], exports: [MatchaMenuComponent,
|
|
4860
5657
|
MatchaMenuTriggerForDirective] }); }
|
|
4861
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5658
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaMenuModule, imports: [CommonModule] }); }
|
|
4862
5659
|
}
|
|
4863
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5660
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaMenuModule, decorators: [{
|
|
4864
5661
|
type: NgModule,
|
|
4865
5662
|
args: [{
|
|
4866
5663
|
declarations: [
|
|
@@ -4919,10 +5716,10 @@ class MatchaOverflowDraggableComponent {
|
|
|
4919
5716
|
const activeClasses = `${draggableReference}`;
|
|
4920
5717
|
return activeClasses;
|
|
4921
5718
|
}
|
|
4922
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4923
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.
|
|
5719
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaOverflowDraggableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5720
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: MatchaOverflowDraggableComponent, isStandalone: false, selector: "matcha-overflow-draggable", inputs: { dragRef: "dragRef" }, ngImport: i0, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
|
|
4924
5721
|
}
|
|
4925
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5722
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaOverflowDraggableComponent, decorators: [{
|
|
4926
5723
|
type: Component,
|
|
4927
5724
|
args: [{ selector: 'matcha-overflow-draggable', standalone: false, template: "<div [class]=\"classes\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
4928
5725
|
}], propDecorators: { dragRef: [{
|
|
@@ -4936,10 +5733,10 @@ class MatchaPaginatorDirective {
|
|
|
4936
5733
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
4937
5734
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-paginator');
|
|
4938
5735
|
}
|
|
4939
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4940
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.
|
|
5736
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaPaginatorDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5737
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.1", type: MatchaPaginatorDirective, isStandalone: false, selector: "[matchaPaginator]", ngImport: i0 }); }
|
|
4941
5738
|
}
|
|
4942
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5739
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaPaginatorDirective, decorators: [{
|
|
4943
5740
|
type: Directive,
|
|
4944
5741
|
args: [{
|
|
4945
5742
|
selector: '[matchaPaginator]',
|
|
@@ -4948,11 +5745,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4948
5745
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
4949
5746
|
|
|
4950
5747
|
class MatchaPaginatorModule {
|
|
4951
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4952
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
4953
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5748
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaPaginatorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5749
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaPaginatorModule, declarations: [MatchaPaginatorDirective], imports: [CommonModule], exports: [MatchaPaginatorDirective] }); }
|
|
5750
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaPaginatorModule, imports: [CommonModule] }); }
|
|
4954
5751
|
}
|
|
4955
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5752
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaPaginatorModule, decorators: [{
|
|
4956
5753
|
type: NgModule,
|
|
4957
5754
|
args: [{
|
|
4958
5755
|
declarations: [MatchaPaginatorDirective],
|
|
@@ -4968,10 +5765,10 @@ class MatchaProgressBarDirective {
|
|
|
4968
5765
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
4969
5766
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-progress-bar');
|
|
4970
5767
|
}
|
|
4971
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4972
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.
|
|
5768
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaProgressBarDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5769
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.1", type: MatchaProgressBarDirective, isStandalone: false, selector: "[matcha-progress-bar]", ngImport: i0 }); }
|
|
4973
5770
|
}
|
|
4974
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5771
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaProgressBarDirective, decorators: [{
|
|
4975
5772
|
type: Directive,
|
|
4976
5773
|
args: [{
|
|
4977
5774
|
selector: '[matcha-progress-bar]',
|
|
@@ -4980,11 +5777,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4980
5777
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
4981
5778
|
|
|
4982
5779
|
class MatchaProgressBarModule {
|
|
4983
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
4984
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
4985
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5780
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaProgressBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5781
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaProgressBarModule, declarations: [MatchaProgressBarDirective], imports: [CommonModule], exports: [MatchaProgressBarDirective] }); }
|
|
5782
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaProgressBarModule, imports: [CommonModule] }); }
|
|
4986
5783
|
}
|
|
4987
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5784
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaProgressBarModule, decorators: [{
|
|
4988
5785
|
type: NgModule,
|
|
4989
5786
|
args: [{
|
|
4990
5787
|
declarations: [MatchaProgressBarDirective],
|
|
@@ -4997,38 +5794,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
4997
5794
|
}]
|
|
4998
5795
|
}] });
|
|
4999
5796
|
|
|
5000
|
-
class MatchaSelectDirective {
|
|
5001
|
-
constructor(_elementRef, _renderer) {
|
|
5002
|
-
this._elementRef = _elementRef;
|
|
5003
|
-
this._renderer = _renderer;
|
|
5004
|
-
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
5005
|
-
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-select');
|
|
5006
|
-
}
|
|
5007
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MatchaSelectDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5008
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.4", type: MatchaSelectDirective, isStandalone: false, selector: "[matcha-select]", ngImport: i0 }); }
|
|
5009
|
-
}
|
|
5010
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MatchaSelectDirective, decorators: [{
|
|
5011
|
-
type: Directive,
|
|
5012
|
-
args: [{
|
|
5013
|
-
selector: '[matcha-select]',
|
|
5014
|
-
standalone: false
|
|
5015
|
-
}]
|
|
5016
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
5017
|
-
|
|
5018
|
-
class MatchaSelectModule {
|
|
5019
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MatchaSelectModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5020
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.4", ngImport: i0, type: MatchaSelectModule, declarations: [MatchaSelectDirective], imports: [CommonModule], exports: [MatchaSelectDirective] }); }
|
|
5021
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MatchaSelectModule, imports: [CommonModule] }); }
|
|
5022
|
-
}
|
|
5023
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: MatchaSelectModule, decorators: [{
|
|
5024
|
-
type: NgModule,
|
|
5025
|
-
args: [{
|
|
5026
|
-
declarations: [MatchaSelectDirective],
|
|
5027
|
-
imports: [CommonModule],
|
|
5028
|
-
exports: [MatchaSelectDirective],
|
|
5029
|
-
}]
|
|
5030
|
-
}] });
|
|
5031
|
-
|
|
5032
5797
|
class MatchaSidenavDirective {
|
|
5033
5798
|
constructor(_elementRef, _renderer) {
|
|
5034
5799
|
this._elementRef = _elementRef;
|
|
@@ -5036,10 +5801,10 @@ class MatchaSidenavDirective {
|
|
|
5036
5801
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
5037
5802
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-sidenav');
|
|
5038
5803
|
}
|
|
5039
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5040
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.
|
|
5804
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSidenavDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5805
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.1", type: MatchaSidenavDirective, isStandalone: false, selector: "[matcha-sidenav]", ngImport: i0 }); }
|
|
5041
5806
|
}
|
|
5042
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5807
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSidenavDirective, decorators: [{
|
|
5043
5808
|
type: Directive,
|
|
5044
5809
|
args: [{
|
|
5045
5810
|
selector: '[matcha-sidenav]',
|
|
@@ -5048,11 +5813,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5048
5813
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
5049
5814
|
|
|
5050
5815
|
class MatchaSidenavModule {
|
|
5051
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5052
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
5053
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5816
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSidenavModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5817
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaSidenavModule, declarations: [MatchaSidenavDirective], imports: [CommonModule], exports: [MatchaSidenavDirective] }); }
|
|
5818
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSidenavModule, imports: [CommonModule] }); }
|
|
5054
5819
|
}
|
|
5055
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5820
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSidenavModule, decorators: [{
|
|
5056
5821
|
type: NgModule,
|
|
5057
5822
|
args: [{
|
|
5058
5823
|
declarations: [MatchaSidenavDirective],
|
|
@@ -5062,11 +5827,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5062
5827
|
}] });
|
|
5063
5828
|
|
|
5064
5829
|
class MatchaSlideToggleModule {
|
|
5065
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5066
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
5067
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5830
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSlideToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5831
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaSlideToggleModule, declarations: [MatchaSlideToggleComponent], imports: [CommonModule, FormsModule], exports: [MatchaSlideToggleComponent] }); }
|
|
5832
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSlideToggleModule, imports: [CommonModule, FormsModule] }); }
|
|
5068
5833
|
}
|
|
5069
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5834
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSlideToggleModule, decorators: [{
|
|
5070
5835
|
type: NgModule,
|
|
5071
5836
|
args: [{
|
|
5072
5837
|
declarations: [MatchaSlideToggleComponent],
|
|
@@ -5084,10 +5849,10 @@ class MatchaSliderDirective {
|
|
|
5084
5849
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
5085
5850
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-slider');
|
|
5086
5851
|
}
|
|
5087
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5088
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.
|
|
5852
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSliderDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5853
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.1", type: MatchaSliderDirective, isStandalone: false, selector: "[matchaSlider]", ngImport: i0 }); }
|
|
5089
5854
|
}
|
|
5090
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5855
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSliderDirective, decorators: [{
|
|
5091
5856
|
type: Directive,
|
|
5092
5857
|
args: [{
|
|
5093
5858
|
selector: '[matchaSlider]',
|
|
@@ -5096,11 +5861,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5096
5861
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
5097
5862
|
|
|
5098
5863
|
class MatchaSliderModule {
|
|
5099
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5100
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
5101
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5864
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSliderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5865
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaSliderModule, declarations: [MatchaSliderDirective], imports: [CommonModule], exports: [MatchaSliderDirective] }); }
|
|
5866
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSliderModule, imports: [CommonModule] }); }
|
|
5102
5867
|
}
|
|
5103
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5868
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSliderModule, decorators: [{
|
|
5104
5869
|
type: NgModule,
|
|
5105
5870
|
args: [{
|
|
5106
5871
|
declarations: [MatchaSliderDirective],
|
|
@@ -5118,10 +5883,10 @@ class MatchaSnackBarDirective {
|
|
|
5118
5883
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
5119
5884
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-snackbar');
|
|
5120
5885
|
}
|
|
5121
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5122
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.
|
|
5886
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSnackBarDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5887
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.1", type: MatchaSnackBarDirective, isStandalone: false, selector: "[matchaSnackBar]", ngImport: i0 }); }
|
|
5123
5888
|
}
|
|
5124
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5889
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSnackBarDirective, decorators: [{
|
|
5125
5890
|
type: Directive,
|
|
5126
5891
|
args: [{
|
|
5127
5892
|
selector: '[matchaSnackBar]',
|
|
@@ -5130,11 +5895,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5130
5895
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
5131
5896
|
|
|
5132
5897
|
class MatchaSnackBarModule {
|
|
5133
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5134
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
5135
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5898
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSnackBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5899
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaSnackBarModule, declarations: [MatchaSnackBarDirective], imports: [CommonModule], exports: [MatchaSnackBarDirective] }); }
|
|
5900
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSnackBarModule, imports: [CommonModule] }); }
|
|
5136
5901
|
}
|
|
5137
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5902
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSnackBarModule, decorators: [{
|
|
5138
5903
|
type: NgModule,
|
|
5139
5904
|
args: [{
|
|
5140
5905
|
declarations: [MatchaSnackBarDirective],
|
|
@@ -5150,10 +5915,10 @@ class MatchaSortHeaderDirective {
|
|
|
5150
5915
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
5151
5916
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-sort-header');
|
|
5152
5917
|
}
|
|
5153
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5154
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.
|
|
5918
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSortHeaderDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5919
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.1", type: MatchaSortHeaderDirective, isStandalone: false, selector: "[matchaSortHeader]", ngImport: i0 }); }
|
|
5155
5920
|
}
|
|
5156
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5921
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSortHeaderDirective, decorators: [{
|
|
5157
5922
|
type: Directive,
|
|
5158
5923
|
args: [{
|
|
5159
5924
|
selector: '[matchaSortHeader]',
|
|
@@ -5162,11 +5927,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5162
5927
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
5163
5928
|
|
|
5164
5929
|
class MatchaSortHeaderModule {
|
|
5165
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5166
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
5167
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5930
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSortHeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5931
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaSortHeaderModule, declarations: [MatchaSortHeaderDirective], imports: [CommonModule], exports: [MatchaSortHeaderDirective] }); }
|
|
5932
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSortHeaderModule, imports: [CommonModule] }); }
|
|
5168
5933
|
}
|
|
5169
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5934
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSortHeaderModule, decorators: [{
|
|
5170
5935
|
type: NgModule,
|
|
5171
5936
|
args: [{
|
|
5172
5937
|
declarations: [MatchaSortHeaderDirective],
|
|
@@ -5176,11 +5941,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5176
5941
|
}] });
|
|
5177
5942
|
|
|
5178
5943
|
class MatchaSpinModule {
|
|
5179
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5180
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
5181
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5944
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSpinModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5945
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaSpinModule, declarations: [MatchaSpinComponent], imports: [CommonModule], exports: [MatchaSpinComponent] }); }
|
|
5946
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSpinModule, imports: [CommonModule] }); }
|
|
5182
5947
|
}
|
|
5183
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5948
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSpinModule, decorators: [{
|
|
5184
5949
|
type: NgModule,
|
|
5185
5950
|
args: [{
|
|
5186
5951
|
declarations: [MatchaSpinComponent],
|
|
@@ -5192,11 +5957,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5192
5957
|
}] });
|
|
5193
5958
|
|
|
5194
5959
|
class MatchaSpinnerModule {
|
|
5195
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5196
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
5197
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5960
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSpinnerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5961
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaSpinnerModule, declarations: [MatchaSpinnerComponent], imports: [CommonModule], exports: [MatchaSpinnerComponent] }); }
|
|
5962
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSpinnerModule, imports: [CommonModule] }); }
|
|
5198
5963
|
}
|
|
5199
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5964
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSpinnerModule, decorators: [{
|
|
5200
5965
|
type: NgModule,
|
|
5201
5966
|
args: [{
|
|
5202
5967
|
declarations: [MatchaSpinnerComponent],
|
|
@@ -5214,10 +5979,10 @@ class MatchaTableDirective {
|
|
|
5214
5979
|
//this._elementRef.nativeElement.style.backgroundColor = 'grey';
|
|
5215
5980
|
this._renderer.addClass(this._elementRef.nativeElement, 'matcha-table');
|
|
5216
5981
|
}
|
|
5217
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5218
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.
|
|
5982
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTableDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5983
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.1", type: MatchaTableDirective, isStandalone: false, selector: "[matchaTable]", ngImport: i0 }); }
|
|
5219
5984
|
}
|
|
5220
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5985
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTableDirective, decorators: [{
|
|
5221
5986
|
type: Directive,
|
|
5222
5987
|
args: [{
|
|
5223
5988
|
selector: '[matchaTable]',
|
|
@@ -5226,11 +5991,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5226
5991
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
5227
5992
|
|
|
5228
5993
|
class MatchaTableModule {
|
|
5229
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5230
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
5231
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
5994
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5995
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaTableModule, declarations: [MatchaTableDirective], imports: [CommonModule], exports: [MatchaTableDirective] }); }
|
|
5996
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTableModule, imports: [CommonModule] }); }
|
|
5232
5997
|
}
|
|
5233
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
5998
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTableModule, decorators: [{
|
|
5234
5999
|
type: NgModule,
|
|
5235
6000
|
args: [{
|
|
5236
6001
|
declarations: [MatchaTableDirective],
|
|
@@ -5240,15 +6005,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5240
6005
|
}] });
|
|
5241
6006
|
|
|
5242
6007
|
class MatchaTabsModule {
|
|
5243
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5244
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
6008
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTabsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6009
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaTabsModule, declarations: [MatchaTabsComponent, MatchaTabItemComponent], imports: [CommonModule,
|
|
5245
6010
|
MatchaTooltipModule,
|
|
5246
6011
|
MatchaIconModule], exports: [MatchaTabsComponent, MatchaTabItemComponent] }); }
|
|
5247
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
6012
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTabsModule, imports: [CommonModule,
|
|
5248
6013
|
MatchaTooltipModule,
|
|
5249
6014
|
MatchaIconModule] }); }
|
|
5250
6015
|
}
|
|
5251
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
6016
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTabsModule, decorators: [{
|
|
5252
6017
|
type: NgModule,
|
|
5253
6018
|
args: [{
|
|
5254
6019
|
declarations: [MatchaTabsComponent, MatchaTabItemComponent],
|
|
@@ -5262,13 +6027,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5262
6027
|
}] });
|
|
5263
6028
|
|
|
5264
6029
|
class MatchaDateModule {
|
|
5265
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5266
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
6030
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDateModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6031
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaDateModule, declarations: [MatchaDateComponent], imports: [CommonModule,
|
|
5267
6032
|
ReactiveFormsModule], exports: [MatchaDateComponent] }); }
|
|
5268
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
6033
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDateModule, imports: [CommonModule,
|
|
5269
6034
|
ReactiveFormsModule] }); }
|
|
5270
6035
|
}
|
|
5271
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
6036
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDateModule, decorators: [{
|
|
5272
6037
|
type: NgModule,
|
|
5273
6038
|
args: [{
|
|
5274
6039
|
declarations: [MatchaDateComponent],
|
|
@@ -5281,13 +6046,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5281
6046
|
}] });
|
|
5282
6047
|
|
|
5283
6048
|
class MatchaTimeModule {
|
|
5284
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5285
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
6049
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTimeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6050
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaTimeModule, declarations: [MatchaTimeComponent], imports: [CommonModule,
|
|
5286
6051
|
ReactiveFormsModule], exports: [MatchaTimeComponent] }); }
|
|
5287
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
6052
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTimeModule, imports: [CommonModule,
|
|
5288
6053
|
ReactiveFormsModule] }); }
|
|
5289
6054
|
}
|
|
5290
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
6055
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaTimeModule, decorators: [{
|
|
5291
6056
|
type: NgModule,
|
|
5292
6057
|
args: [{
|
|
5293
6058
|
declarations: [MatchaTimeComponent],
|
|
@@ -5306,10 +6071,10 @@ class PrevStepDirective {
|
|
|
5306
6071
|
onClick() {
|
|
5307
6072
|
this.stepper?.prevStep();
|
|
5308
6073
|
}
|
|
5309
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5310
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.
|
|
6074
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: PrevStepDirective, deps: [{ token: MatchaStepperContentComponent }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6075
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.1", type: PrevStepDirective, isStandalone: true, selector: "[prevStep]", host: { listeners: { "click": "onClick()" } }, ngImport: i0 }); }
|
|
5311
6076
|
}
|
|
5312
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
6077
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: PrevStepDirective, decorators: [{
|
|
5313
6078
|
type: Directive,
|
|
5314
6079
|
args: [{
|
|
5315
6080
|
selector: '[prevStep]',
|
|
@@ -5327,10 +6092,10 @@ class NextStepDirective {
|
|
|
5327
6092
|
onClick() {
|
|
5328
6093
|
this.stepper?.nextStep();
|
|
5329
6094
|
}
|
|
5330
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5331
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.
|
|
6095
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: NextStepDirective, deps: [{ token: MatchaStepperContentComponent }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6096
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.1", type: NextStepDirective, isStandalone: true, selector: "[nextStep]", host: { listeners: { "click": "onClick()" } }, ngImport: i0 }); }
|
|
5332
6097
|
}
|
|
5333
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
6098
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: NextStepDirective, decorators: [{
|
|
5334
6099
|
type: Directive,
|
|
5335
6100
|
args: [{
|
|
5336
6101
|
selector: '[nextStep]',
|
|
@@ -5342,8 +6107,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5342
6107
|
}] } });
|
|
5343
6108
|
|
|
5344
6109
|
class MatchaStepperModule {
|
|
5345
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5346
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
6110
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaStepperModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6111
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaStepperModule, declarations: [MatchaStepperControllerComponent,
|
|
5347
6112
|
MatchaStepperComponent,
|
|
5348
6113
|
MatchaStepperContentComponent,
|
|
5349
6114
|
StepComponent], imports: [CommonModule,
|
|
@@ -5354,9 +6119,9 @@ class MatchaStepperModule {
|
|
|
5354
6119
|
StepComponent,
|
|
5355
6120
|
PrevStepDirective,
|
|
5356
6121
|
NextStepDirective] }); }
|
|
5357
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
6122
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaStepperModule, imports: [CommonModule] }); }
|
|
5358
6123
|
}
|
|
5359
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
6124
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaStepperModule, decorators: [{
|
|
5360
6125
|
type: NgModule,
|
|
5361
6126
|
args: [{
|
|
5362
6127
|
declarations: [
|
|
@@ -5393,10 +6158,10 @@ class MatchaDragHandleDirective {
|
|
|
5393
6158
|
ngOnInit() {
|
|
5394
6159
|
this.dragDirective.setDragHandle(this.elementRef.nativeElement);
|
|
5395
6160
|
}
|
|
5396
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5397
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.
|
|
6161
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDragHandleDirective, deps: [{ token: i0.ElementRef }, { token: MatchaDragDirective }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6162
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.1", type: MatchaDragHandleDirective, isStandalone: false, selector: "[matchaDragHandle]", host: { properties: { "class.matcha-drag-handle": "this.dragHandleClass" } }, ngImport: i0 }); }
|
|
5398
6163
|
}
|
|
5399
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
6164
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDragHandleDirective, decorators: [{
|
|
5400
6165
|
type: Directive,
|
|
5401
6166
|
args: [{
|
|
5402
6167
|
selector: '[matchaDragHandle]',
|
|
@@ -5408,17 +6173,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5408
6173
|
}] } });
|
|
5409
6174
|
|
|
5410
6175
|
class MatchaDropListModule {
|
|
5411
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5412
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
6176
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDropListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6177
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaDropListModule, declarations: [MatchaDropListComponent,
|
|
5413
6178
|
MatchaDragDirective,
|
|
5414
6179
|
MatchaDragHandleDirective], imports: [CommonModule], exports: [MatchaDropListComponent,
|
|
5415
6180
|
MatchaDragDirective,
|
|
5416
6181
|
MatchaDragHandleDirective] }); }
|
|
5417
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
6182
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDropListModule, providers: [
|
|
5418
6183
|
MatchaDropListService
|
|
5419
6184
|
], imports: [CommonModule] }); }
|
|
5420
6185
|
}
|
|
5421
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
6186
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDropListModule, decorators: [{
|
|
5422
6187
|
type: NgModule,
|
|
5423
6188
|
args: [{
|
|
5424
6189
|
declarations: [
|
|
@@ -5441,13 +6206,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5441
6206
|
}] });
|
|
5442
6207
|
|
|
5443
6208
|
class MatchaPageLayoutModule {
|
|
5444
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5445
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
6209
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaPageLayoutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6210
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaPageLayoutModule, declarations: [MatchaPageLayoutComponent], imports: [CommonModule,
|
|
5446
6211
|
MatchaStepperModule], exports: [MatchaPageLayoutComponent] }); }
|
|
5447
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
6212
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaPageLayoutModule, imports: [CommonModule,
|
|
5448
6213
|
MatchaStepperModule] }); }
|
|
5449
6214
|
}
|
|
5450
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
6215
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaPageLayoutModule, decorators: [{
|
|
5451
6216
|
type: NgModule,
|
|
5452
6217
|
args: [{
|
|
5453
6218
|
declarations: [
|
|
@@ -5464,11 +6229,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5464
6229
|
}] });
|
|
5465
6230
|
|
|
5466
6231
|
class MatchaRadioModule {
|
|
5467
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5468
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
5469
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
6232
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaRadioModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6233
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaRadioModule, declarations: [MatchaRadioComponent], imports: [CommonModule, MatchaRippleModule], exports: [MatchaRadioComponent] }); }
|
|
6234
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaRadioModule, imports: [CommonModule, MatchaRippleModule] }); }
|
|
5470
6235
|
}
|
|
5471
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
6236
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaRadioModule, decorators: [{
|
|
5472
6237
|
type: NgModule,
|
|
5473
6238
|
args: [{
|
|
5474
6239
|
declarations: [
|
|
@@ -5482,11 +6247,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5482
6247
|
}] });
|
|
5483
6248
|
|
|
5484
6249
|
class MatchaAvatarModule {
|
|
5485
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5486
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
5487
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
6250
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAvatarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6251
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaAvatarModule, declarations: [MatchaAvatarComponent], imports: [CommonModule], exports: [MatchaAvatarComponent] }); }
|
|
6252
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAvatarModule, imports: [CommonModule] }); }
|
|
5488
6253
|
}
|
|
5489
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
6254
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaAvatarModule, decorators: [{
|
|
5490
6255
|
type: NgModule,
|
|
5491
6256
|
args: [{
|
|
5492
6257
|
declarations: [MatchaAvatarComponent],
|
|
@@ -5497,14 +6262,46 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5497
6262
|
}]
|
|
5498
6263
|
}] });
|
|
5499
6264
|
|
|
6265
|
+
class MatchaDrawerModule {
|
|
6266
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDrawerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6267
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaDrawerModule, declarations: [MatchaDrawerComponent,
|
|
6268
|
+
MatchaDrawerContainerComponent,
|
|
6269
|
+
MatchaDrawerContentComponent], imports: [CommonModule,
|
|
6270
|
+
MatchaButtonModule], exports: [MatchaDrawerComponent,
|
|
6271
|
+
MatchaDrawerContainerComponent,
|
|
6272
|
+
MatchaDrawerContentComponent] }); }
|
|
6273
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDrawerModule, imports: [CommonModule,
|
|
6274
|
+
MatchaButtonModule] }); }
|
|
6275
|
+
}
|
|
6276
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaDrawerModule, decorators: [{
|
|
6277
|
+
type: NgModule,
|
|
6278
|
+
args: [{
|
|
6279
|
+
declarations: [
|
|
6280
|
+
MatchaDrawerComponent,
|
|
6281
|
+
MatchaDrawerContainerComponent,
|
|
6282
|
+
MatchaDrawerContentComponent
|
|
6283
|
+
],
|
|
6284
|
+
imports: [
|
|
6285
|
+
CommonModule,
|
|
6286
|
+
MatchaButtonModule
|
|
6287
|
+
],
|
|
6288
|
+
exports: [
|
|
6289
|
+
MatchaDrawerComponent,
|
|
6290
|
+
MatchaDrawerContainerComponent,
|
|
6291
|
+
MatchaDrawerContentComponent
|
|
6292
|
+
]
|
|
6293
|
+
}]
|
|
6294
|
+
}] });
|
|
6295
|
+
|
|
5500
6296
|
class MatchaComponentsModule {
|
|
5501
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5502
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
6297
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6298
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaComponentsModule, declarations: [MatchaOverflowDraggableComponent], imports: [CommonModule,
|
|
5503
6299
|
FormsModule,
|
|
5504
6300
|
ReactiveFormsModule,
|
|
5505
6301
|
MatchaAccordionModule,
|
|
5506
|
-
MatchaOptionModule,
|
|
5507
6302
|
MatchaAutocompleteModule,
|
|
6303
|
+
MatchaOptionModule,
|
|
6304
|
+
MatchaPanelModule,
|
|
5508
6305
|
MatchaBadgeModule,
|
|
5509
6306
|
MatchaButtonModule,
|
|
5510
6307
|
MatchaButtonToggleModule,
|
|
@@ -5512,7 +6309,6 @@ class MatchaComponentsModule {
|
|
|
5512
6309
|
MatchaCheckboxModule,
|
|
5513
6310
|
MatchaRadioModule,
|
|
5514
6311
|
MatchaChipsModule,
|
|
5515
|
-
MatchaDatepickerModule,
|
|
5516
6312
|
MatchaDividerModule,
|
|
5517
6313
|
MatchaElevationModule,
|
|
5518
6314
|
MatchaFormFieldModule,
|
|
@@ -5528,7 +6324,6 @@ class MatchaComponentsModule {
|
|
|
5528
6324
|
MatchaPaginatorModule,
|
|
5529
6325
|
MatchaProgressBarModule,
|
|
5530
6326
|
MatchaRippleModule,
|
|
5531
|
-
MatchaSelectModule,
|
|
5532
6327
|
MatchaSidenavModule,
|
|
5533
6328
|
MatchaSlideToggleModule,
|
|
5534
6329
|
MatchaSliderModule,
|
|
@@ -5544,8 +6339,11 @@ class MatchaComponentsModule {
|
|
|
5544
6339
|
MatchaDateModule,
|
|
5545
6340
|
MatchaTimeModule,
|
|
5546
6341
|
MatchaDropListModule,
|
|
5547
|
-
MatchaPageLayoutModule
|
|
6342
|
+
MatchaPageLayoutModule,
|
|
6343
|
+
MatchaDrawerModule], exports: [MatchaAccordionModule,
|
|
5548
6344
|
MatchaAutocompleteModule,
|
|
6345
|
+
MatchaOptionModule,
|
|
6346
|
+
MatchaPanelModule,
|
|
5549
6347
|
MatchaBadgeModule,
|
|
5550
6348
|
MatchaButtonModule,
|
|
5551
6349
|
MatchaButtonToggleModule,
|
|
@@ -5553,7 +6351,6 @@ class MatchaComponentsModule {
|
|
|
5553
6351
|
MatchaCheckboxModule,
|
|
5554
6352
|
MatchaRadioModule,
|
|
5555
6353
|
MatchaChipsModule,
|
|
5556
|
-
MatchaDatepickerModule,
|
|
5557
6354
|
MatchaDividerModule,
|
|
5558
6355
|
MatchaElevationModule,
|
|
5559
6356
|
MatchaFormFieldModule,
|
|
@@ -5566,11 +6363,9 @@ class MatchaComponentsModule {
|
|
|
5566
6363
|
MatchaMasonryModule,
|
|
5567
6364
|
MatchaMenuModule,
|
|
5568
6365
|
MatchaModalModule,
|
|
5569
|
-
MatchaOptionModule,
|
|
5570
6366
|
MatchaPaginatorModule,
|
|
5571
6367
|
MatchaProgressBarModule,
|
|
5572
6368
|
MatchaRippleModule,
|
|
5573
|
-
MatchaSelectModule,
|
|
5574
6369
|
MatchaSidenavModule,
|
|
5575
6370
|
MatchaSlideToggleModule,
|
|
5576
6371
|
MatchaSliderModule,
|
|
@@ -5587,13 +6382,15 @@ class MatchaComponentsModule {
|
|
|
5587
6382
|
MatchaTimeModule,
|
|
5588
6383
|
MatchaDropListModule,
|
|
5589
6384
|
MatchaPageLayoutModule,
|
|
5590
|
-
MatchaAvatarModule
|
|
5591
|
-
|
|
6385
|
+
MatchaAvatarModule,
|
|
6386
|
+
MatchaDrawerModule] }); }
|
|
6387
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaComponentsModule, imports: [CommonModule,
|
|
5592
6388
|
FormsModule,
|
|
5593
6389
|
ReactiveFormsModule,
|
|
5594
6390
|
MatchaAccordionModule,
|
|
5595
|
-
MatchaOptionModule,
|
|
5596
6391
|
MatchaAutocompleteModule,
|
|
6392
|
+
MatchaOptionModule,
|
|
6393
|
+
MatchaPanelModule,
|
|
5597
6394
|
MatchaBadgeModule,
|
|
5598
6395
|
MatchaButtonModule,
|
|
5599
6396
|
MatchaButtonToggleModule,
|
|
@@ -5601,7 +6398,6 @@ class MatchaComponentsModule {
|
|
|
5601
6398
|
MatchaCheckboxModule,
|
|
5602
6399
|
MatchaRadioModule,
|
|
5603
6400
|
MatchaChipsModule,
|
|
5604
|
-
MatchaDatepickerModule,
|
|
5605
6401
|
MatchaDividerModule,
|
|
5606
6402
|
MatchaElevationModule,
|
|
5607
6403
|
MatchaFormFieldModule,
|
|
@@ -5617,7 +6413,6 @@ class MatchaComponentsModule {
|
|
|
5617
6413
|
MatchaPaginatorModule,
|
|
5618
6414
|
MatchaProgressBarModule,
|
|
5619
6415
|
MatchaRippleModule,
|
|
5620
|
-
MatchaSelectModule,
|
|
5621
6416
|
MatchaSidenavModule,
|
|
5622
6417
|
MatchaSlideToggleModule,
|
|
5623
6418
|
MatchaSliderModule,
|
|
@@ -5633,8 +6428,11 @@ class MatchaComponentsModule {
|
|
|
5633
6428
|
MatchaDateModule,
|
|
5634
6429
|
MatchaTimeModule,
|
|
5635
6430
|
MatchaDropListModule,
|
|
5636
|
-
MatchaPageLayoutModule,
|
|
6431
|
+
MatchaPageLayoutModule,
|
|
6432
|
+
MatchaDrawerModule, MatchaAccordionModule,
|
|
5637
6433
|
MatchaAutocompleteModule,
|
|
6434
|
+
MatchaOptionModule,
|
|
6435
|
+
MatchaPanelModule,
|
|
5638
6436
|
MatchaBadgeModule,
|
|
5639
6437
|
MatchaButtonModule,
|
|
5640
6438
|
MatchaButtonToggleModule,
|
|
@@ -5642,7 +6440,6 @@ class MatchaComponentsModule {
|
|
|
5642
6440
|
MatchaCheckboxModule,
|
|
5643
6441
|
MatchaRadioModule,
|
|
5644
6442
|
MatchaChipsModule,
|
|
5645
|
-
MatchaDatepickerModule,
|
|
5646
6443
|
MatchaDividerModule,
|
|
5647
6444
|
MatchaElevationModule,
|
|
5648
6445
|
MatchaFormFieldModule,
|
|
@@ -5655,11 +6452,9 @@ class MatchaComponentsModule {
|
|
|
5655
6452
|
MatchaMasonryModule,
|
|
5656
6453
|
MatchaMenuModule,
|
|
5657
6454
|
MatchaModalModule,
|
|
5658
|
-
MatchaOptionModule,
|
|
5659
6455
|
MatchaPaginatorModule,
|
|
5660
6456
|
MatchaProgressBarModule,
|
|
5661
6457
|
MatchaRippleModule,
|
|
5662
|
-
MatchaSelectModule,
|
|
5663
6458
|
MatchaSidenavModule,
|
|
5664
6459
|
MatchaSlideToggleModule,
|
|
5665
6460
|
MatchaSliderModule,
|
|
@@ -5676,9 +6471,10 @@ class MatchaComponentsModule {
|
|
|
5676
6471
|
MatchaTimeModule,
|
|
5677
6472
|
MatchaDropListModule,
|
|
5678
6473
|
MatchaPageLayoutModule,
|
|
5679
|
-
MatchaAvatarModule
|
|
6474
|
+
MatchaAvatarModule,
|
|
6475
|
+
MatchaDrawerModule] }); }
|
|
5680
6476
|
}
|
|
5681
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
6477
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaComponentsModule, decorators: [{
|
|
5682
6478
|
type: NgModule,
|
|
5683
6479
|
args: [{
|
|
5684
6480
|
declarations: [MatchaOverflowDraggableComponent],
|
|
@@ -5687,8 +6483,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5687
6483
|
FormsModule,
|
|
5688
6484
|
ReactiveFormsModule,
|
|
5689
6485
|
MatchaAccordionModule,
|
|
5690
|
-
MatchaOptionModule,
|
|
5691
6486
|
MatchaAutocompleteModule,
|
|
6487
|
+
MatchaOptionModule,
|
|
6488
|
+
MatchaPanelModule,
|
|
5692
6489
|
MatchaBadgeModule,
|
|
5693
6490
|
MatchaButtonModule,
|
|
5694
6491
|
MatchaButtonToggleModule,
|
|
@@ -5696,7 +6493,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5696
6493
|
MatchaCheckboxModule,
|
|
5697
6494
|
MatchaRadioModule,
|
|
5698
6495
|
MatchaChipsModule,
|
|
5699
|
-
MatchaDatepickerModule,
|
|
5700
6496
|
MatchaDividerModule,
|
|
5701
6497
|
MatchaElevationModule,
|
|
5702
6498
|
MatchaFormFieldModule,
|
|
@@ -5712,7 +6508,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5712
6508
|
MatchaPaginatorModule,
|
|
5713
6509
|
MatchaProgressBarModule,
|
|
5714
6510
|
MatchaRippleModule,
|
|
5715
|
-
MatchaSelectModule,
|
|
5716
6511
|
MatchaSidenavModule,
|
|
5717
6512
|
MatchaSlideToggleModule,
|
|
5718
6513
|
MatchaSliderModule,
|
|
@@ -5728,10 +6523,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5728
6523
|
MatchaDateModule,
|
|
5729
6524
|
MatchaTimeModule,
|
|
5730
6525
|
MatchaDropListModule,
|
|
5731
|
-
MatchaPageLayoutModule
|
|
6526
|
+
MatchaPageLayoutModule,
|
|
6527
|
+
MatchaDrawerModule
|
|
5732
6528
|
],
|
|
5733
6529
|
exports: [MatchaAccordionModule,
|
|
5734
6530
|
MatchaAutocompleteModule,
|
|
6531
|
+
MatchaOptionModule,
|
|
6532
|
+
MatchaPanelModule,
|
|
5735
6533
|
MatchaBadgeModule,
|
|
5736
6534
|
MatchaButtonModule,
|
|
5737
6535
|
MatchaButtonToggleModule,
|
|
@@ -5739,7 +6537,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5739
6537
|
MatchaCheckboxModule,
|
|
5740
6538
|
MatchaRadioModule,
|
|
5741
6539
|
MatchaChipsModule,
|
|
5742
|
-
MatchaDatepickerModule,
|
|
5743
6540
|
MatchaDividerModule,
|
|
5744
6541
|
MatchaElevationModule,
|
|
5745
6542
|
MatchaFormFieldModule,
|
|
@@ -5752,11 +6549,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5752
6549
|
MatchaMasonryModule,
|
|
5753
6550
|
MatchaMenuModule,
|
|
5754
6551
|
MatchaModalModule,
|
|
5755
|
-
MatchaOptionModule,
|
|
5756
6552
|
MatchaPaginatorModule,
|
|
5757
6553
|
MatchaProgressBarModule,
|
|
5758
6554
|
MatchaRippleModule,
|
|
5759
|
-
MatchaSelectModule,
|
|
5760
6555
|
MatchaSidenavModule,
|
|
5761
6556
|
MatchaSlideToggleModule,
|
|
5762
6557
|
MatchaSliderModule,
|
|
@@ -5773,17 +6568,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5773
6568
|
MatchaTimeModule,
|
|
5774
6569
|
MatchaDropListModule,
|
|
5775
6570
|
MatchaPageLayoutModule,
|
|
5776
|
-
MatchaAvatarModule
|
|
6571
|
+
MatchaAvatarModule,
|
|
6572
|
+
MatchaDrawerModule
|
|
5777
6573
|
],
|
|
5778
6574
|
}]
|
|
5779
6575
|
}] });
|
|
5780
6576
|
|
|
5781
6577
|
class MatchaSkeletonModule {
|
|
5782
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5783
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.
|
|
5784
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.
|
|
6578
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSkeletonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6579
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.2.1", ngImport: i0, type: MatchaSkeletonModule, declarations: [MatchaSkeletonComponent], imports: [CommonModule], exports: [MatchaSkeletonComponent] }); }
|
|
6580
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSkeletonModule, imports: [CommonModule] }); }
|
|
5785
6581
|
}
|
|
5786
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
6582
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: MatchaSkeletonModule, decorators: [{
|
|
5787
6583
|
type: NgModule,
|
|
5788
6584
|
args: [{
|
|
5789
6585
|
declarations: [MatchaSkeletonComponent],
|
|
@@ -5798,10 +6594,10 @@ class StepContentDirective {
|
|
|
5798
6594
|
constructor(template) {
|
|
5799
6595
|
this.template = template;
|
|
5800
6596
|
}
|
|
5801
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.
|
|
5802
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.
|
|
6597
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: StepContentDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6598
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.2.1", type: StepContentDirective, isStandalone: true, selector: "[step]", inputs: { step: "step" }, ngImport: i0 }); }
|
|
5803
6599
|
}
|
|
5804
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.
|
|
6600
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: StepContentDirective, decorators: [{
|
|
5805
6601
|
type: Directive,
|
|
5806
6602
|
args: [{
|
|
5807
6603
|
selector: '[step]'
|
|
@@ -5815,18 +6611,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5815
6611
|
* Public API Surface of matcha-components
|
|
5816
6612
|
*/
|
|
5817
6613
|
// -----------------------------------------------------------
|
|
5818
|
-
//
|
|
6614
|
+
// INTERFACES
|
|
5819
6615
|
// -----------------------------------------------------------
|
|
5820
|
-
// // ATOMIC COMPONENTS
|
|
5821
|
-
// export * from './lib/matcha-button/matcha-button.component';
|
|
5822
|
-
// // BASE COMPONENT
|
|
5823
|
-
// export * from './lib/matcha-title/matcha-title.component';
|
|
5824
|
-
//
|
|
5825
6616
|
// -----------------------------------------------------------
|
|
5826
|
-
//
|
|
6617
|
+
// PIPES
|
|
5827
6618
|
// -----------------------------------------------------------
|
|
5828
6619
|
// -----------------------------------------------------------
|
|
5829
6620
|
// VENDORS
|
|
6621
|
+
// -----------------------------------------------------------
|
|
5830
6622
|
// export * from './lib/matcha-input-phone/lib/ngx-mask-applier.service';
|
|
5831
6623
|
// export * from './lib/matcha-input-phone/lib/ngx-mask.directive';
|
|
5832
6624
|
// export * from './lib/matcha-input-phone/lib/ngx-mask.module';
|
|
@@ -5841,5 +6633,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.4", ngImpor
|
|
|
5841
6633
|
* Generated bundle index. Do not edit.
|
|
5842
6634
|
*/
|
|
5843
6635
|
|
|
5844
|
-
export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent,
|
|
6636
|
+
export { MATCHA_OPTION_PARENT, MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteModule, MatchaAutocompleteTriggerDirective, MatchaAvatarComponent, MatchaAvatarModule, MatchaBadgeDirective, MatchaBadgeModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDateComponent, MatchaDateModule, MatchaDividerComponent, MatchaDividerModule, MatchaDragDirective, MatchaDragHandleDirective, MatchaDrawerComponent, MatchaDrawerContainerComponent, MatchaDrawerContentComponent, MatchaDrawerModule, MatchaDropListComponent, MatchaDropListModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputDirective, MatchaInputModule, MatchaLabelComponent, MatchaLazyloadComponent, MatchaLazyloadDataComponent, MatchaLazyloadModule, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaOptionComponent, MatchaOptionModule, MatchaOverlayService, MatchaPageLayoutComponent, MatchaPageLayoutModule, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaPanelComponent, MatchaPanelModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaRadioComponent, MatchaRadioModule, MatchaRippleDirective, MatchaRippleModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSkeletonComponent, MatchaSkeletonModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaSpinComponent, MatchaSpinModule, MatchaSpinnerComponent, MatchaSpinnerModule, MatchaStepperComponent, MatchaStepperContentComponent, MatchaStepperControllerComponent, MatchaStepperModule, MatchaStepperStateService, MatchaTabItemComponent, MatchaTableDirective, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTimeComponent, MatchaTimeModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarCustomButtonComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, NextStepDirective, PrevStepDirective, StepComponent, StepContentDirective };
|
|
5845
6637
|
//# sourceMappingURL=matcha-components.mjs.map
|