matcha-components 19.75.0 → 19.77.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 +229 -244
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/lib/matcha-components.module.d.ts +34 -36
- package/package.json +1 -1
- package/public-api.d.ts +0 -6
- package/lib/matcha-autocomplete/matcha-autocomplete/matcha-autocomplete.component.d.ts +0 -16
- package/lib/matcha-autocomplete/matcha-autocomplete.directive.d.ts +0 -19
- package/lib/matcha-autocomplete/matcha-autocomplete.module.d.ts +0 -11
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter, Output, Input, Component, ContentChildren, ElementRef, Renderer2, HostBinding, Inject, HostListener, ContentChild, Directive, forwardRef,
|
|
2
|
+
import { EventEmitter, Output, Input, Component, ContentChildren, ElementRef, Renderer2, HostBinding, Inject, HostListener, ContentChild, Directive, forwardRef, ChangeDetectionStrategy, NgModule, createComponent, Injectable } 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
|
|
4
|
+
import { Subscription, Subject } from 'rxjs';
|
|
5
5
|
import { debounceTime } from 'rxjs/operators';
|
|
6
6
|
import * as i1 from '@angular/common';
|
|
7
7
|
import { CommonModule } from '@angular/common';
|
|
8
|
-
import * as i1$1 from '@angular/forms';
|
|
9
8
|
import { FormControlName, NG_VALUE_ACCESSOR, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
10
9
|
|
|
11
10
|
const customAnimation = animation([
|
|
@@ -1879,147 +1878,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
1879
1878
|
args: ['size']
|
|
1880
1879
|
}] } });
|
|
1881
1880
|
|
|
1882
|
-
class MatchaOptionService {
|
|
1883
|
-
constructor() {
|
|
1884
|
-
this._optionsSubject = new BehaviorSubject([]);
|
|
1885
|
-
this.options$ = this._optionsSubject.asObservable();
|
|
1886
|
-
this._activeOptionSubject = new BehaviorSubject(0);
|
|
1887
|
-
this.activeOption$ = this._activeOptionSubject.asObservable();
|
|
1888
|
-
this._canShowOptionsSubject = new BehaviorSubject(false);
|
|
1889
|
-
this.canShowOptions$ = this._canShowOptionsSubject.asObservable();
|
|
1890
|
-
this._selectedOptionSubject = new Subject();
|
|
1891
|
-
this.selectedOption$ = this._selectedOptionSubject.asObservable();
|
|
1892
|
-
}
|
|
1893
|
-
setSelectedOption(selectedOption) {
|
|
1894
|
-
this._selectedOptionSubject.next(selectedOption);
|
|
1895
|
-
}
|
|
1896
|
-
getCanShowOptions() {
|
|
1897
|
-
return this._canShowOptionsSubject.value;
|
|
1898
|
-
}
|
|
1899
|
-
setCanShowOptions(canShowOptions) {
|
|
1900
|
-
this._canShowOptionsSubject.next(canShowOptions);
|
|
1901
|
-
}
|
|
1902
|
-
updateOptions(options) {
|
|
1903
|
-
this._optionsSubject.next(options);
|
|
1904
|
-
}
|
|
1905
|
-
updateActiveOption(activeOption) {
|
|
1906
|
-
this._activeOptionSubject.next(activeOption);
|
|
1907
|
-
}
|
|
1908
|
-
resetActiveOption() {
|
|
1909
|
-
this.updateActiveOption(0);
|
|
1910
|
-
const currentOptions = this._optionsSubject.value;
|
|
1911
|
-
const activeOption = this._activeOptionSubject.value;
|
|
1912
|
-
currentOptions.forEach((option, index) => {
|
|
1913
|
-
index === activeOption ? option.setIsOptionActive(true, false) : option.setIsOptionActive(false, false);
|
|
1914
|
-
});
|
|
1915
|
-
return;
|
|
1916
|
-
}
|
|
1917
|
-
removeActiveOption() {
|
|
1918
|
-
const currentOptions = this._optionsSubject.value;
|
|
1919
|
-
currentOptions.forEach((option) => {
|
|
1920
|
-
option.isOptionActive = false;
|
|
1921
|
-
});
|
|
1922
|
-
this.updateActiveOption(-1);
|
|
1923
|
-
return;
|
|
1924
|
-
}
|
|
1925
|
-
changeActiveOption(stepsToMove) {
|
|
1926
|
-
const currentOptions = this._optionsSubject.value;
|
|
1927
|
-
const lastActiveOption = this._activeOptionSubject.value;
|
|
1928
|
-
this.updateActiveOption(Math.max(0, Math.min(currentOptions.length - 1, lastActiveOption + stepsToMove)));
|
|
1929
|
-
const currentActiveOption = this._activeOptionSubject.value;
|
|
1930
|
-
currentOptions.forEach((option, index) => {
|
|
1931
|
-
option.setIsOptionActive(index === currentActiveOption, false);
|
|
1932
|
-
});
|
|
1933
|
-
return;
|
|
1934
|
-
}
|
|
1935
|
-
selectActiveOption() {
|
|
1936
|
-
const currentOptions = this._optionsSubject.value;
|
|
1937
|
-
const activeOption = this._activeOptionSubject.value;
|
|
1938
|
-
if (currentOptions[activeOption]) {
|
|
1939
|
-
currentOptions[activeOption].selectOption();
|
|
1940
|
-
}
|
|
1941
|
-
}
|
|
1942
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaOptionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1943
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaOptionService, providedIn: 'root' }); }
|
|
1944
|
-
}
|
|
1945
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaOptionService, decorators: [{
|
|
1946
|
-
type: Injectable,
|
|
1947
|
-
args: [{
|
|
1948
|
-
providedIn: 'root',
|
|
1949
|
-
}]
|
|
1950
|
-
}], ctorParameters: () => [] });
|
|
1951
|
-
|
|
1952
|
-
class MatchaAutocompleteComponent {
|
|
1953
|
-
constructor(changeDetectorRef, matchaOptionService) {
|
|
1954
|
-
this.changeDetectorRef = changeDetectorRef;
|
|
1955
|
-
this.matchaOptionService = matchaOptionService;
|
|
1956
|
-
this.isDisplayAutocomplete = false;
|
|
1957
|
-
this.activeOption = 0;
|
|
1958
|
-
}
|
|
1959
|
-
ngOnInit() {
|
|
1960
|
-
this.matchaOptionService.canShowOptions$.subscribe((canShowOptions) => {
|
|
1961
|
-
if (!canShowOptions) {
|
|
1962
|
-
this.matchaOptionService.resetActiveOption();
|
|
1963
|
-
}
|
|
1964
|
-
this.isDisplayAutocomplete = canShowOptions;
|
|
1965
|
-
});
|
|
1966
|
-
}
|
|
1967
|
-
ngAfterContentInit() {
|
|
1968
|
-
const options = this.options.toArray();
|
|
1969
|
-
if (options.length > 0) {
|
|
1970
|
-
options[0].setIsOptionActive(true, false);
|
|
1971
|
-
}
|
|
1972
|
-
this.matchaOptionService.updateOptions(options);
|
|
1973
|
-
this.options.changes.subscribe((newOptions) => {
|
|
1974
|
-
this.matchaOptionService.updateOptions(newOptions.toArray());
|
|
1975
|
-
this.matchaOptionService.resetActiveOption();
|
|
1976
|
-
});
|
|
1977
|
-
this.matchaOptionService.activeOption$.subscribe((currentActiveOption) => {
|
|
1978
|
-
this.activeOption = currentActiveOption;
|
|
1979
|
-
this.changeDetectorRef.detectChanges();
|
|
1980
|
-
});
|
|
1981
|
-
}
|
|
1982
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaAutocompleteComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: MatchaOptionService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1983
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.12", 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"] }] }); }
|
|
1984
|
-
}
|
|
1985
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaAutocompleteComponent, decorators: [{
|
|
1986
|
-
type: Component,
|
|
1987
|
-
args: [{ selector: 'matcha-autocomplete', standalone: false, template: "<ng-container *ngIf=\"isDisplayAutocomplete\">\n <div class=\"background-bg pt-24 position-absolute z-index-2 w-100-p\">\n <ul class=\"background-surface m-0 radius-8 elevation-z-1 p-0\">\n <ng-content></ng-content>\n </ul>\n </div>\n</ng-container>\n" }]
|
|
1988
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: MatchaOptionService }], propDecorators: { options: [{
|
|
1989
|
-
type: ContentChildren,
|
|
1990
|
-
args: [MatchaOptionComponent]
|
|
1991
|
-
}] } });
|
|
1992
|
-
|
|
1993
|
-
class MatchaOptionComponent {
|
|
1994
|
-
constructor(changeDetectorRef, matchaOptionService) {
|
|
1995
|
-
this.changeDetectorRef = changeDetectorRef;
|
|
1996
|
-
this.matchaOptionService = matchaOptionService;
|
|
1997
|
-
this.isOptionActive = false;
|
|
1998
|
-
}
|
|
1999
|
-
selectOption() {
|
|
2000
|
-
this.matchaOptionService.setCanShowOptions(true);
|
|
2001
|
-
this.matchaOptionService.setSelectedOption(this.value);
|
|
2002
|
-
setTimeout(() => {
|
|
2003
|
-
this.matchaOptionService.setCanShowOptions(false);
|
|
2004
|
-
}, 300);
|
|
2005
|
-
}
|
|
2006
|
-
setIsOptionActive(isOptionActive, isMouseEvent) {
|
|
2007
|
-
if (isMouseEvent) {
|
|
2008
|
-
this.matchaOptionService.removeActiveOption();
|
|
2009
|
-
}
|
|
2010
|
-
this.isOptionActive = isOptionActive;
|
|
2011
|
-
this.changeDetectorRef.detectChanges();
|
|
2012
|
-
}
|
|
2013
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaOptionComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: MatchaOptionService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2014
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.12", 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: [""] }); }
|
|
2015
|
-
}
|
|
2016
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaOptionComponent, decorators: [{
|
|
2017
|
-
type: Component,
|
|
2018
|
-
args: [{ selector: 'matcha-option', standalone: false, template: "<span\n (click)=\"selectOption()\"\n (mouseenter)=\"setIsOptionActive(true, true)\"\n (mouseleave)=\"setIsOptionActive(false, true)\"\n [class.background-bg]=\"isOptionActive\"\n class=\"d-block py-8 cursor-pointer px-16 w-100-p\">\n <ng-content></ng-content>\n</span>\n" }]
|
|
2019
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: MatchaOptionService }], propDecorators: { value: [{
|
|
2020
|
-
type: Input
|
|
2021
|
-
}] } });
|
|
2022
|
-
|
|
2023
1881
|
class MatchaSlideToggleComponent {
|
|
2024
1882
|
set checked(value) {
|
|
2025
1883
|
const newCheckedState = value === '' ? true : !!value;
|
|
@@ -3015,101 +2873,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3015
2873
|
}]
|
|
3016
2874
|
}] });
|
|
3017
2875
|
|
|
3018
|
-
class MatchaOptionModule {
|
|
3019
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaOptionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3020
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.12", ngImport: i0, type: MatchaOptionModule, declarations: [MatchaOptionComponent], imports: [CommonModule], exports: [MatchaOptionComponent] }); }
|
|
3021
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaOptionModule, imports: [CommonModule] }); }
|
|
3022
|
-
}
|
|
3023
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaOptionModule, decorators: [{
|
|
3024
|
-
type: NgModule,
|
|
3025
|
-
args: [{
|
|
3026
|
-
declarations: [MatchaOptionComponent],
|
|
3027
|
-
imports: [CommonModule],
|
|
3028
|
-
exports: [MatchaOptionComponent],
|
|
3029
|
-
}]
|
|
3030
|
-
}] });
|
|
3031
|
-
|
|
3032
|
-
class MatchaAutocompleteDirective {
|
|
3033
|
-
displayAutocomplete() {
|
|
3034
|
-
this.matchaOptionService.setCanShowOptions(true);
|
|
3035
|
-
}
|
|
3036
|
-
hideAutocomplete() {
|
|
3037
|
-
setTimeout(() => {
|
|
3038
|
-
const canShowAutocomplete = this.matchaOptionService.getCanShowOptions();
|
|
3039
|
-
if (canShowAutocomplete) {
|
|
3040
|
-
this.matchaOptionService.setCanShowOptions(false);
|
|
3041
|
-
}
|
|
3042
|
-
}, 300);
|
|
3043
|
-
}
|
|
3044
|
-
onArrowDown(event) {
|
|
3045
|
-
switch (event.key) {
|
|
3046
|
-
case 'ArrowDown':
|
|
3047
|
-
this.matchaOptionService.changeActiveOption(1);
|
|
3048
|
-
break;
|
|
3049
|
-
case 'ArrowUp':
|
|
3050
|
-
this.matchaOptionService.changeActiveOption(-1);
|
|
3051
|
-
break;
|
|
3052
|
-
case 'Enter':
|
|
3053
|
-
this.matchaOptionService.selectActiveOption();
|
|
3054
|
-
break;
|
|
3055
|
-
default:
|
|
3056
|
-
break;
|
|
3057
|
-
}
|
|
3058
|
-
}
|
|
3059
|
-
constructor(ngControl, _elementRef, matchaOptionService) {
|
|
3060
|
-
this.ngControl = ngControl;
|
|
3061
|
-
this._elementRef = _elementRef;
|
|
3062
|
-
this.matchaOptionService = matchaOptionService;
|
|
3063
|
-
}
|
|
3064
|
-
ngOnInit() {
|
|
3065
|
-
this.matchaOptionService.selectedOption$.subscribe((option) => {
|
|
3066
|
-
this._updateInputValue(option);
|
|
3067
|
-
});
|
|
3068
|
-
}
|
|
3069
|
-
_updateInputValue(selectedOption) {
|
|
3070
|
-
if (this.ngControl.control) {
|
|
3071
|
-
this.ngControl.control.setValue(selectedOption);
|
|
3072
|
-
this.ngControl.control.markAsDirty();
|
|
3073
|
-
this.matchaOptionService.setCanShowOptions(false);
|
|
3074
|
-
this._elementRef.nativeElement.blur();
|
|
3075
|
-
}
|
|
3076
|
-
}
|
|
3077
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaAutocompleteDirective, deps: [{ token: i1$1.NgControl }, { token: i0.ElementRef }, { token: MatchaOptionService }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3078
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.12", type: MatchaAutocompleteDirective, isStandalone: false, selector: "[matchaAutocomplete]", inputs: { matchaAutocomplete: "matchaAutocomplete" }, host: { listeners: { "focus": "displayAutocomplete()", "focusout": "hideAutocomplete()", "keydown": "onArrowDown($event)" } }, ngImport: i0 }); }
|
|
3079
|
-
}
|
|
3080
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaAutocompleteDirective, decorators: [{
|
|
3081
|
-
type: Directive,
|
|
3082
|
-
args: [{
|
|
3083
|
-
selector: '[matchaAutocomplete]',
|
|
3084
|
-
standalone: false,
|
|
3085
|
-
}]
|
|
3086
|
-
}], ctorParameters: () => [{ type: i1$1.NgControl }, { type: i0.ElementRef }, { type: MatchaOptionService }], propDecorators: { matchaAutocomplete: [{
|
|
3087
|
-
type: Input
|
|
3088
|
-
}], displayAutocomplete: [{
|
|
3089
|
-
type: HostListener,
|
|
3090
|
-
args: ['focus']
|
|
3091
|
-
}], hideAutocomplete: [{
|
|
3092
|
-
type: HostListener,
|
|
3093
|
-
args: ['focusout']
|
|
3094
|
-
}], onArrowDown: [{
|
|
3095
|
-
type: HostListener,
|
|
3096
|
-
args: ['keydown', ['$event']]
|
|
3097
|
-
}] } });
|
|
3098
|
-
|
|
3099
|
-
class MatchaAutocompleteModule {
|
|
3100
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaAutocompleteModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3101
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.12", ngImport: i0, type: MatchaAutocompleteModule, declarations: [MatchaAutocompleteComponent, MatchaAutocompleteDirective], imports: [CommonModule, FormsModule, MatchaOptionModule], exports: [MatchaAutocompleteComponent, MatchaAutocompleteDirective] }); }
|
|
3102
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaAutocompleteModule, imports: [CommonModule, FormsModule, MatchaOptionModule] }); }
|
|
3103
|
-
}
|
|
3104
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaAutocompleteModule, decorators: [{
|
|
3105
|
-
type: NgModule,
|
|
3106
|
-
args: [{
|
|
3107
|
-
declarations: [MatchaAutocompleteComponent, MatchaAutocompleteDirective],
|
|
3108
|
-
imports: [CommonModule, FormsModule, MatchaOptionModule],
|
|
3109
|
-
exports: [MatchaAutocompleteComponent, MatchaAutocompleteDirective],
|
|
3110
|
-
}]
|
|
3111
|
-
}] });
|
|
3112
|
-
|
|
3113
2876
|
class MatchaBadgeDirective {
|
|
3114
2877
|
constructor(_elementRef, _renderer) {
|
|
3115
2878
|
this._elementRef = _elementRef;
|
|
@@ -3808,15 +3571,236 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3808
3571
|
|
|
3809
3572
|
class MatchaComponentsModule {
|
|
3810
3573
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3811
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.12", ngImport: i0, type: MatchaComponentsModule, declarations: [MatchaOverflowDraggableComponent], imports: [CommonModule,
|
|
3812
|
-
|
|
3574
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.12", ngImport: i0, type: MatchaComponentsModule, declarations: [MatchaOverflowDraggableComponent], imports: [CommonModule,
|
|
3575
|
+
FormsModule,
|
|
3576
|
+
ReactiveFormsModule,
|
|
3577
|
+
MatchaAccordionModule,
|
|
3578
|
+
//MatchaAutocompleteModule,
|
|
3579
|
+
MatchaBadgeModule,
|
|
3580
|
+
MatchaButtonModule,
|
|
3581
|
+
MatchaButtonToggleModule,
|
|
3582
|
+
MatchaCardModule,
|
|
3583
|
+
MatchaCheckboxModule,
|
|
3584
|
+
MatchaChipsModule,
|
|
3585
|
+
MatchaDatepickerModule,
|
|
3586
|
+
MatchaDividerModule,
|
|
3587
|
+
MatchaElevationModule,
|
|
3588
|
+
MatchaFormFieldModule,
|
|
3589
|
+
MatchaHintTextModule,
|
|
3590
|
+
MatchaIconModule,
|
|
3591
|
+
MatchaInfiniteScrollModule,
|
|
3592
|
+
MatchaInputModule,
|
|
3593
|
+
MatchaMasonryModule,
|
|
3594
|
+
MatchaMenuModule,
|
|
3595
|
+
MatchaModalModule,
|
|
3596
|
+
//MatchaOptionModule,
|
|
3597
|
+
MatchaPaginatorModule,
|
|
3598
|
+
MatchaProgressBarModule,
|
|
3599
|
+
MatchaRadioButtonModule,
|
|
3600
|
+
MatchaRippleModule,
|
|
3601
|
+
MatchaSelectModule,
|
|
3602
|
+
MatchaSidenavModule,
|
|
3603
|
+
MatchaSlideToggleModule,
|
|
3604
|
+
MatchaSliderModule,
|
|
3605
|
+
MatchaSnackBarModule,
|
|
3606
|
+
MatchaSortHeaderModule,
|
|
3607
|
+
MatchaSpinModule,
|
|
3608
|
+
MatchaTableModule,
|
|
3609
|
+
MatchaTabsModule,
|
|
3610
|
+
MatchaTitleModule,
|
|
3611
|
+
MatchaTooltipModule,
|
|
3612
|
+
MatchaTreeModule], exports: [MatchaAccordionModule,
|
|
3613
|
+
//MatchaAutocompleteModule,
|
|
3614
|
+
MatchaBadgeModule,
|
|
3615
|
+
MatchaButtonModule,
|
|
3616
|
+
MatchaButtonToggleModule,
|
|
3617
|
+
MatchaCardModule,
|
|
3618
|
+
MatchaCheckboxModule,
|
|
3619
|
+
MatchaChipsModule,
|
|
3620
|
+
MatchaDatepickerModule,
|
|
3621
|
+
MatchaDividerModule,
|
|
3622
|
+
MatchaElevationModule,
|
|
3623
|
+
MatchaFormFieldModule,
|
|
3624
|
+
MatchaHintTextModule,
|
|
3625
|
+
MatchaIconModule,
|
|
3626
|
+
MatchaInfiniteScrollModule,
|
|
3627
|
+
MatchaInputModule,
|
|
3628
|
+
MatchaMasonryModule,
|
|
3629
|
+
MatchaMenuModule,
|
|
3630
|
+
MatchaModalModule,
|
|
3631
|
+
//MatchaOptionModule,
|
|
3632
|
+
MatchaPaginatorModule,
|
|
3633
|
+
MatchaProgressBarModule,
|
|
3634
|
+
MatchaRadioButtonModule,
|
|
3635
|
+
MatchaRippleModule,
|
|
3636
|
+
MatchaSelectModule,
|
|
3637
|
+
MatchaSidenavModule,
|
|
3638
|
+
MatchaSlideToggleModule,
|
|
3639
|
+
MatchaSliderModule,
|
|
3640
|
+
MatchaSnackBarModule,
|
|
3641
|
+
MatchaSortHeaderModule,
|
|
3642
|
+
MatchaSpinModule,
|
|
3643
|
+
MatchaTableModule,
|
|
3644
|
+
MatchaTabsModule,
|
|
3645
|
+
MatchaTitleModule,
|
|
3646
|
+
MatchaTooltipModule,
|
|
3647
|
+
MatchaTreeModule] }); }
|
|
3648
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaComponentsModule, imports: [CommonModule,
|
|
3649
|
+
FormsModule,
|
|
3650
|
+
ReactiveFormsModule,
|
|
3651
|
+
MatchaAccordionModule,
|
|
3652
|
+
//MatchaAutocompleteModule,
|
|
3653
|
+
MatchaBadgeModule,
|
|
3654
|
+
MatchaButtonModule,
|
|
3655
|
+
MatchaButtonToggleModule,
|
|
3656
|
+
MatchaCardModule,
|
|
3657
|
+
MatchaCheckboxModule,
|
|
3658
|
+
MatchaChipsModule,
|
|
3659
|
+
MatchaDatepickerModule,
|
|
3660
|
+
MatchaDividerModule,
|
|
3661
|
+
MatchaElevationModule,
|
|
3662
|
+
MatchaFormFieldModule,
|
|
3663
|
+
MatchaHintTextModule,
|
|
3664
|
+
MatchaIconModule,
|
|
3665
|
+
MatchaInfiniteScrollModule,
|
|
3666
|
+
MatchaInputModule,
|
|
3667
|
+
MatchaMasonryModule,
|
|
3668
|
+
MatchaMenuModule,
|
|
3669
|
+
MatchaModalModule,
|
|
3670
|
+
//MatchaOptionModule,
|
|
3671
|
+
MatchaPaginatorModule,
|
|
3672
|
+
MatchaProgressBarModule,
|
|
3673
|
+
MatchaRadioButtonModule,
|
|
3674
|
+
MatchaRippleModule,
|
|
3675
|
+
MatchaSelectModule,
|
|
3676
|
+
MatchaSidenavModule,
|
|
3677
|
+
MatchaSlideToggleModule,
|
|
3678
|
+
MatchaSliderModule,
|
|
3679
|
+
MatchaSnackBarModule,
|
|
3680
|
+
MatchaSortHeaderModule,
|
|
3681
|
+
MatchaSpinModule,
|
|
3682
|
+
MatchaTableModule,
|
|
3683
|
+
MatchaTabsModule,
|
|
3684
|
+
MatchaTitleModule,
|
|
3685
|
+
MatchaTooltipModule,
|
|
3686
|
+
MatchaTreeModule, MatchaAccordionModule,
|
|
3687
|
+
//MatchaAutocompleteModule,
|
|
3688
|
+
MatchaBadgeModule,
|
|
3689
|
+
MatchaButtonModule,
|
|
3690
|
+
MatchaButtonToggleModule,
|
|
3691
|
+
MatchaCardModule,
|
|
3692
|
+
MatchaCheckboxModule,
|
|
3693
|
+
MatchaChipsModule,
|
|
3694
|
+
MatchaDatepickerModule,
|
|
3695
|
+
MatchaDividerModule,
|
|
3696
|
+
MatchaElevationModule,
|
|
3697
|
+
MatchaFormFieldModule,
|
|
3698
|
+
MatchaHintTextModule,
|
|
3699
|
+
MatchaIconModule,
|
|
3700
|
+
MatchaInfiniteScrollModule,
|
|
3701
|
+
MatchaInputModule,
|
|
3702
|
+
MatchaMasonryModule,
|
|
3703
|
+
MatchaMenuModule,
|
|
3704
|
+
MatchaModalModule,
|
|
3705
|
+
//MatchaOptionModule,
|
|
3706
|
+
MatchaPaginatorModule,
|
|
3707
|
+
MatchaProgressBarModule,
|
|
3708
|
+
MatchaRadioButtonModule,
|
|
3709
|
+
MatchaRippleModule,
|
|
3710
|
+
MatchaSelectModule,
|
|
3711
|
+
MatchaSidenavModule,
|
|
3712
|
+
MatchaSlideToggleModule,
|
|
3713
|
+
MatchaSliderModule,
|
|
3714
|
+
MatchaSnackBarModule,
|
|
3715
|
+
MatchaSortHeaderModule,
|
|
3716
|
+
MatchaSpinModule,
|
|
3717
|
+
MatchaTableModule,
|
|
3718
|
+
MatchaTabsModule,
|
|
3719
|
+
MatchaTitleModule,
|
|
3720
|
+
MatchaTooltipModule,
|
|
3721
|
+
MatchaTreeModule] }); }
|
|
3813
3722
|
}
|
|
3814
3723
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: MatchaComponentsModule, decorators: [{
|
|
3815
3724
|
type: NgModule,
|
|
3816
3725
|
args: [{
|
|
3817
3726
|
declarations: [MatchaOverflowDraggableComponent],
|
|
3818
|
-
imports: [
|
|
3819
|
-
|
|
3727
|
+
imports: [
|
|
3728
|
+
CommonModule,
|
|
3729
|
+
FormsModule,
|
|
3730
|
+
ReactiveFormsModule,
|
|
3731
|
+
MatchaAccordionModule,
|
|
3732
|
+
//MatchaAutocompleteModule,
|
|
3733
|
+
MatchaBadgeModule,
|
|
3734
|
+
MatchaButtonModule,
|
|
3735
|
+
MatchaButtonToggleModule,
|
|
3736
|
+
MatchaCardModule,
|
|
3737
|
+
MatchaCheckboxModule,
|
|
3738
|
+
MatchaChipsModule,
|
|
3739
|
+
MatchaDatepickerModule,
|
|
3740
|
+
MatchaDividerModule,
|
|
3741
|
+
MatchaElevationModule,
|
|
3742
|
+
MatchaFormFieldModule,
|
|
3743
|
+
MatchaHintTextModule,
|
|
3744
|
+
MatchaIconModule,
|
|
3745
|
+
MatchaInfiniteScrollModule,
|
|
3746
|
+
MatchaInputModule,
|
|
3747
|
+
MatchaMasonryModule,
|
|
3748
|
+
MatchaMenuModule,
|
|
3749
|
+
MatchaModalModule,
|
|
3750
|
+
//MatchaOptionModule,
|
|
3751
|
+
MatchaPaginatorModule,
|
|
3752
|
+
MatchaProgressBarModule,
|
|
3753
|
+
MatchaRadioButtonModule,
|
|
3754
|
+
MatchaRippleModule,
|
|
3755
|
+
MatchaSelectModule,
|
|
3756
|
+
MatchaSidenavModule,
|
|
3757
|
+
MatchaSlideToggleModule,
|
|
3758
|
+
MatchaSliderModule,
|
|
3759
|
+
MatchaSnackBarModule,
|
|
3760
|
+
MatchaSortHeaderModule,
|
|
3761
|
+
MatchaSpinModule,
|
|
3762
|
+
MatchaTableModule,
|
|
3763
|
+
MatchaTabsModule,
|
|
3764
|
+
MatchaTitleModule,
|
|
3765
|
+
MatchaTooltipModule,
|
|
3766
|
+
MatchaTreeModule,
|
|
3767
|
+
],
|
|
3768
|
+
exports: [MatchaAccordionModule,
|
|
3769
|
+
//MatchaAutocompleteModule,
|
|
3770
|
+
MatchaBadgeModule,
|
|
3771
|
+
MatchaButtonModule,
|
|
3772
|
+
MatchaButtonToggleModule,
|
|
3773
|
+
MatchaCardModule,
|
|
3774
|
+
MatchaCheckboxModule,
|
|
3775
|
+
MatchaChipsModule,
|
|
3776
|
+
MatchaDatepickerModule,
|
|
3777
|
+
MatchaDividerModule,
|
|
3778
|
+
MatchaElevationModule,
|
|
3779
|
+
MatchaFormFieldModule,
|
|
3780
|
+
MatchaHintTextModule,
|
|
3781
|
+
MatchaIconModule,
|
|
3782
|
+
MatchaInfiniteScrollModule,
|
|
3783
|
+
MatchaInputModule,
|
|
3784
|
+
MatchaMasonryModule,
|
|
3785
|
+
MatchaMenuModule,
|
|
3786
|
+
MatchaModalModule,
|
|
3787
|
+
//MatchaOptionModule,
|
|
3788
|
+
MatchaPaginatorModule,
|
|
3789
|
+
MatchaProgressBarModule,
|
|
3790
|
+
MatchaRadioButtonModule,
|
|
3791
|
+
MatchaRippleModule,
|
|
3792
|
+
MatchaSelectModule,
|
|
3793
|
+
MatchaSidenavModule,
|
|
3794
|
+
MatchaSlideToggleModule,
|
|
3795
|
+
MatchaSliderModule,
|
|
3796
|
+
MatchaSnackBarModule,
|
|
3797
|
+
MatchaSortHeaderModule,
|
|
3798
|
+
MatchaSpinModule,
|
|
3799
|
+
MatchaTableModule,
|
|
3800
|
+
MatchaTabsModule,
|
|
3801
|
+
MatchaTitleModule,
|
|
3802
|
+
MatchaTooltipModule,
|
|
3803
|
+
MatchaTreeModule],
|
|
3820
3804
|
}]
|
|
3821
3805
|
}] });
|
|
3822
3806
|
|
|
@@ -3834,10 +3818,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
|
3834
3818
|
// -----------------------------------------------------------
|
|
3835
3819
|
// COMPONENTS
|
|
3836
3820
|
// -----------------------------------------------------------
|
|
3821
|
+
//export * from './lib/matcha-autocomplete/matcha-autocomplete.directive';
|
|
3837
3822
|
|
|
3838
3823
|
/**
|
|
3839
3824
|
* Generated bundle index. Do not edit.
|
|
3840
3825
|
*/
|
|
3841
3826
|
|
|
3842
|
-
export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule,
|
|
3827
|
+
export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaBadgeDirective, MatchaBadgeModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputDirective, MatchaInputModule, MatchaLabelComponent, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaOverlayService, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaRadioButtonDirective, MatchaRadioButtonModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaSpinComponent, MatchaSpinModule, MatchaTabItemComponent, MatchaTableDirective, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, MatchaTreeDirective, MatchaTreeModule };
|
|
3843
3828
|
//# sourceMappingURL=matcha-components.mjs.map
|