matcha-components 19.119.0 → 19.122.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 +252 -15
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/lib/matcha-autocomplete/matcha-autocomplete/matcha-autocomplete.component.d.ts +16 -0
- package/lib/matcha-autocomplete/matcha-autocomplete.directive.d.ts +19 -0
- package/lib/matcha-autocomplete/matcha-autocomplete.module.d.ts +11 -0
- package/lib/matcha-components.module.d.ts +39 -37
- package/package.json +1 -1
- package/public-api.d.ts +6 -0
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter, Output, Input, Component, ContentChildren, ElementRef, Renderer2, HostBinding, Inject, HostListener, ContentChild, Directive, forwardRef, ChangeDetectionStrategy, TemplateRef, ViewChild,
|
|
2
|
+
import { EventEmitter, Output, Input, Component, ContentChildren, ElementRef, Renderer2, HostBinding, Inject, HostListener, ContentChild, Directive, forwardRef, Injectable, ChangeDetectionStrategy, TemplateRef, ViewChild, NgModule, createComponent } from '@angular/core';
|
|
3
3
|
import { animation, style, animate, trigger, transition, useAnimation, state, query, stagger, animateChild, sequence, group } from '@angular/animations';
|
|
4
4
|
import { Subscription, Subject, BehaviorSubject } from 'rxjs';
|
|
5
5
|
import { debounceTime } from 'rxjs/operators';
|
|
6
6
|
import * as i1 from '@angular/common';
|
|
7
7
|
import { CommonModule } from '@angular/common';
|
|
8
|
+
import * as i1$1 from '@angular/forms';
|
|
8
9
|
import { FormControlName, NG_VALUE_ACCESSOR, NgControl, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
9
10
|
|
|
10
11
|
const customAnimation = animation([
|
|
@@ -1348,7 +1349,7 @@ class MatchaModalComponent {
|
|
|
1348
1349
|
return activeClasses;
|
|
1349
1350
|
}
|
|
1350
1351
|
constructor() {
|
|
1351
|
-
this.size = '
|
|
1352
|
+
this.size = 'large';
|
|
1352
1353
|
this.sizeXs = null;
|
|
1353
1354
|
this.sizeSm = null;
|
|
1354
1355
|
this.sizeMd = null;
|
|
@@ -1930,6 +1931,147 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
1930
1931
|
type: Input
|
|
1931
1932
|
}] } });
|
|
1932
1933
|
|
|
1934
|
+
class MatchaOptionService {
|
|
1935
|
+
constructor() {
|
|
1936
|
+
this._optionsSubject = new BehaviorSubject([]);
|
|
1937
|
+
this.options$ = this._optionsSubject.asObservable();
|
|
1938
|
+
this._activeOptionSubject = new BehaviorSubject(0);
|
|
1939
|
+
this.activeOption$ = this._activeOptionSubject.asObservable();
|
|
1940
|
+
this._canShowOptionsSubject = new BehaviorSubject(false);
|
|
1941
|
+
this.canShowOptions$ = this._canShowOptionsSubject.asObservable();
|
|
1942
|
+
this._selectedOptionSubject = new Subject();
|
|
1943
|
+
this.selectedOption$ = this._selectedOptionSubject.asObservable();
|
|
1944
|
+
}
|
|
1945
|
+
setSelectedOption(selectedOption) {
|
|
1946
|
+
this._selectedOptionSubject.next(selectedOption);
|
|
1947
|
+
}
|
|
1948
|
+
getCanShowOptions() {
|
|
1949
|
+
return this._canShowOptionsSubject.value;
|
|
1950
|
+
}
|
|
1951
|
+
setCanShowOptions(canShowOptions) {
|
|
1952
|
+
this._canShowOptionsSubject.next(canShowOptions);
|
|
1953
|
+
}
|
|
1954
|
+
updateOptions(options) {
|
|
1955
|
+
this._optionsSubject.next(options);
|
|
1956
|
+
}
|
|
1957
|
+
updateActiveOption(activeOption) {
|
|
1958
|
+
this._activeOptionSubject.next(activeOption);
|
|
1959
|
+
}
|
|
1960
|
+
resetActiveOption() {
|
|
1961
|
+
this.updateActiveOption(0);
|
|
1962
|
+
const currentOptions = this._optionsSubject.value;
|
|
1963
|
+
const activeOption = this._activeOptionSubject.value;
|
|
1964
|
+
currentOptions.forEach((option, index) => {
|
|
1965
|
+
index === activeOption ? option.setIsOptionActive(true, false) : option.setIsOptionActive(false, false);
|
|
1966
|
+
});
|
|
1967
|
+
return;
|
|
1968
|
+
}
|
|
1969
|
+
removeActiveOption() {
|
|
1970
|
+
const currentOptions = this._optionsSubject.value;
|
|
1971
|
+
currentOptions.forEach((option) => {
|
|
1972
|
+
option.isOptionActive = false;
|
|
1973
|
+
});
|
|
1974
|
+
this.updateActiveOption(-1);
|
|
1975
|
+
return;
|
|
1976
|
+
}
|
|
1977
|
+
changeActiveOption(stepsToMove) {
|
|
1978
|
+
const currentOptions = this._optionsSubject.value;
|
|
1979
|
+
const lastActiveOption = this._activeOptionSubject.value;
|
|
1980
|
+
this.updateActiveOption(Math.max(0, Math.min(currentOptions.length - 1, lastActiveOption + stepsToMove)));
|
|
1981
|
+
const currentActiveOption = this._activeOptionSubject.value;
|
|
1982
|
+
currentOptions.forEach((option, index) => {
|
|
1983
|
+
option.setIsOptionActive(index === currentActiveOption, false);
|
|
1984
|
+
});
|
|
1985
|
+
return;
|
|
1986
|
+
}
|
|
1987
|
+
selectActiveOption() {
|
|
1988
|
+
const currentOptions = this._optionsSubject.value;
|
|
1989
|
+
const activeOption = this._activeOptionSubject.value;
|
|
1990
|
+
if (currentOptions[activeOption]) {
|
|
1991
|
+
currentOptions[activeOption].selectOption();
|
|
1992
|
+
}
|
|
1993
|
+
}
|
|
1994
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaOptionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1995
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaOptionService, providedIn: 'root' }); }
|
|
1996
|
+
}
|
|
1997
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaOptionService, decorators: [{
|
|
1998
|
+
type: Injectable,
|
|
1999
|
+
args: [{
|
|
2000
|
+
providedIn: 'root',
|
|
2001
|
+
}]
|
|
2002
|
+
}], ctorParameters: () => [] });
|
|
2003
|
+
|
|
2004
|
+
class MatchaOptionComponent {
|
|
2005
|
+
constructor(changeDetectorRef, matchaOptionService) {
|
|
2006
|
+
this.changeDetectorRef = changeDetectorRef;
|
|
2007
|
+
this.matchaOptionService = matchaOptionService;
|
|
2008
|
+
this.isOptionActive = false;
|
|
2009
|
+
}
|
|
2010
|
+
selectOption() {
|
|
2011
|
+
this.matchaOptionService.setCanShowOptions(true);
|
|
2012
|
+
this.matchaOptionService.setSelectedOption(this.value);
|
|
2013
|
+
setTimeout(() => {
|
|
2014
|
+
this.matchaOptionService.setCanShowOptions(false);
|
|
2015
|
+
}, 300);
|
|
2016
|
+
}
|
|
2017
|
+
setIsOptionActive(isOptionActive, isMouseEvent) {
|
|
2018
|
+
if (isMouseEvent) {
|
|
2019
|
+
this.matchaOptionService.removeActiveOption();
|
|
2020
|
+
}
|
|
2021
|
+
this.isOptionActive = isOptionActive;
|
|
2022
|
+
this.changeDetectorRef.detectChanges();
|
|
2023
|
+
}
|
|
2024
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaOptionComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: MatchaOptionService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2025
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", 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: [""] }); }
|
|
2026
|
+
}
|
|
2027
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaOptionComponent, decorators: [{
|
|
2028
|
+
type: Component,
|
|
2029
|
+
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" }]
|
|
2030
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: MatchaOptionService }], propDecorators: { value: [{
|
|
2031
|
+
type: Input
|
|
2032
|
+
}] } });
|
|
2033
|
+
|
|
2034
|
+
class MatchaAutocompleteComponent {
|
|
2035
|
+
constructor(changeDetectorRef, matchaOptionService) {
|
|
2036
|
+
this.changeDetectorRef = changeDetectorRef;
|
|
2037
|
+
this.matchaOptionService = matchaOptionService;
|
|
2038
|
+
this.isDisplayAutocomplete = false;
|
|
2039
|
+
this.activeOption = 0;
|
|
2040
|
+
}
|
|
2041
|
+
ngOnInit() {
|
|
2042
|
+
this.matchaOptionService.canShowOptions$.subscribe((canShowOptions) => {
|
|
2043
|
+
if (!canShowOptions) {
|
|
2044
|
+
this.matchaOptionService.resetActiveOption();
|
|
2045
|
+
}
|
|
2046
|
+
this.isDisplayAutocomplete = canShowOptions;
|
|
2047
|
+
});
|
|
2048
|
+
}
|
|
2049
|
+
ngAfterContentInit() {
|
|
2050
|
+
const options = this.options.toArray();
|
|
2051
|
+
if (options.length > 0) {
|
|
2052
|
+
options[0].setIsOptionActive(true, false);
|
|
2053
|
+
}
|
|
2054
|
+
this.matchaOptionService.updateOptions(options);
|
|
2055
|
+
this.options.changes.subscribe((newOptions) => {
|
|
2056
|
+
this.matchaOptionService.updateOptions(newOptions.toArray());
|
|
2057
|
+
this.matchaOptionService.resetActiveOption();
|
|
2058
|
+
});
|
|
2059
|
+
this.matchaOptionService.activeOption$.subscribe((currentActiveOption) => {
|
|
2060
|
+
this.activeOption = currentActiveOption;
|
|
2061
|
+
this.changeDetectorRef.detectChanges();
|
|
2062
|
+
});
|
|
2063
|
+
}
|
|
2064
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaAutocompleteComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: MatchaOptionService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2065
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", 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"] }] }); }
|
|
2066
|
+
}
|
|
2067
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaAutocompleteComponent, decorators: [{
|
|
2068
|
+
type: Component,
|
|
2069
|
+
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" }]
|
|
2070
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: MatchaOptionService }], propDecorators: { options: [{
|
|
2071
|
+
type: ContentChildren,
|
|
2072
|
+
args: [MatchaOptionComponent]
|
|
2073
|
+
}] } });
|
|
2074
|
+
|
|
1933
2075
|
class MatchaSlideToggleComponent {
|
|
1934
2076
|
set checked(value) {
|
|
1935
2077
|
const newCheckedState = value === '' ? true : !!value;
|
|
@@ -3898,6 +4040,101 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
3898
4040
|
}]
|
|
3899
4041
|
}] });
|
|
3900
4042
|
|
|
4043
|
+
class MatchaOptionModule {
|
|
4044
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaOptionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4045
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.14", ngImport: i0, type: MatchaOptionModule, declarations: [MatchaOptionComponent], imports: [CommonModule], exports: [MatchaOptionComponent] }); }
|
|
4046
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaOptionModule, imports: [CommonModule] }); }
|
|
4047
|
+
}
|
|
4048
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaOptionModule, decorators: [{
|
|
4049
|
+
type: NgModule,
|
|
4050
|
+
args: [{
|
|
4051
|
+
declarations: [MatchaOptionComponent],
|
|
4052
|
+
imports: [CommonModule],
|
|
4053
|
+
exports: [MatchaOptionComponent],
|
|
4054
|
+
}]
|
|
4055
|
+
}] });
|
|
4056
|
+
|
|
4057
|
+
class MatchaAutocompleteDirective {
|
|
4058
|
+
displayAutocomplete() {
|
|
4059
|
+
this.matchaOptionService.setCanShowOptions(true);
|
|
4060
|
+
}
|
|
4061
|
+
hideAutocomplete() {
|
|
4062
|
+
setTimeout(() => {
|
|
4063
|
+
const canShowAutocomplete = this.matchaOptionService.getCanShowOptions();
|
|
4064
|
+
if (canShowAutocomplete) {
|
|
4065
|
+
this.matchaOptionService.setCanShowOptions(false);
|
|
4066
|
+
}
|
|
4067
|
+
}, 300);
|
|
4068
|
+
}
|
|
4069
|
+
onArrowDown(event) {
|
|
4070
|
+
switch (event.key) {
|
|
4071
|
+
case 'ArrowDown':
|
|
4072
|
+
this.matchaOptionService.changeActiveOption(1);
|
|
4073
|
+
break;
|
|
4074
|
+
case 'ArrowUp':
|
|
4075
|
+
this.matchaOptionService.changeActiveOption(-1);
|
|
4076
|
+
break;
|
|
4077
|
+
case 'Enter':
|
|
4078
|
+
this.matchaOptionService.selectActiveOption();
|
|
4079
|
+
break;
|
|
4080
|
+
default:
|
|
4081
|
+
break;
|
|
4082
|
+
}
|
|
4083
|
+
}
|
|
4084
|
+
constructor(ngControl, _elementRef, matchaOptionService) {
|
|
4085
|
+
this.ngControl = ngControl;
|
|
4086
|
+
this._elementRef = _elementRef;
|
|
4087
|
+
this.matchaOptionService = matchaOptionService;
|
|
4088
|
+
}
|
|
4089
|
+
ngOnInit() {
|
|
4090
|
+
this.matchaOptionService.selectedOption$.subscribe((option) => {
|
|
4091
|
+
this._updateInputValue(option);
|
|
4092
|
+
});
|
|
4093
|
+
}
|
|
4094
|
+
_updateInputValue(selectedOption) {
|
|
4095
|
+
if (this.ngControl.control) {
|
|
4096
|
+
this.ngControl.control.setValue(selectedOption);
|
|
4097
|
+
this.ngControl.control.markAsDirty();
|
|
4098
|
+
this.matchaOptionService.setCanShowOptions(false);
|
|
4099
|
+
this._elementRef.nativeElement.blur();
|
|
4100
|
+
}
|
|
4101
|
+
}
|
|
4102
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaAutocompleteDirective, deps: [{ token: i1$1.NgControl }, { token: i0.ElementRef }, { token: MatchaOptionService }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4103
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.14", type: MatchaAutocompleteDirective, isStandalone: false, selector: "[matchaAutocomplete]", inputs: { matchaAutocomplete: "matchaAutocomplete" }, host: { listeners: { "focus": "displayAutocomplete()", "focusout": "hideAutocomplete()", "keydown": "onArrowDown($event)" } }, ngImport: i0 }); }
|
|
4104
|
+
}
|
|
4105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaAutocompleteDirective, decorators: [{
|
|
4106
|
+
type: Directive,
|
|
4107
|
+
args: [{
|
|
4108
|
+
selector: '[matchaAutocomplete]',
|
|
4109
|
+
standalone: false,
|
|
4110
|
+
}]
|
|
4111
|
+
}], ctorParameters: () => [{ type: i1$1.NgControl }, { type: i0.ElementRef }, { type: MatchaOptionService }], propDecorators: { matchaAutocomplete: [{
|
|
4112
|
+
type: Input
|
|
4113
|
+
}], displayAutocomplete: [{
|
|
4114
|
+
type: HostListener,
|
|
4115
|
+
args: ['focus']
|
|
4116
|
+
}], hideAutocomplete: [{
|
|
4117
|
+
type: HostListener,
|
|
4118
|
+
args: ['focusout']
|
|
4119
|
+
}], onArrowDown: [{
|
|
4120
|
+
type: HostListener,
|
|
4121
|
+
args: ['keydown', ['$event']]
|
|
4122
|
+
}] } });
|
|
4123
|
+
|
|
4124
|
+
class MatchaAutocompleteModule {
|
|
4125
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaAutocompleteModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4126
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.14", ngImport: i0, type: MatchaAutocompleteModule, declarations: [MatchaAutocompleteComponent, MatchaAutocompleteDirective], imports: [CommonModule, FormsModule, MatchaOptionModule], exports: [MatchaAutocompleteComponent, MatchaAutocompleteDirective] }); }
|
|
4127
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaAutocompleteModule, imports: [CommonModule, FormsModule, MatchaOptionModule] }); }
|
|
4128
|
+
}
|
|
4129
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MatchaAutocompleteModule, decorators: [{
|
|
4130
|
+
type: NgModule,
|
|
4131
|
+
args: [{
|
|
4132
|
+
declarations: [MatchaAutocompleteComponent, MatchaAutocompleteDirective],
|
|
4133
|
+
imports: [CommonModule, FormsModule, MatchaOptionModule],
|
|
4134
|
+
exports: [MatchaAutocompleteComponent, MatchaAutocompleteDirective],
|
|
4135
|
+
}]
|
|
4136
|
+
}] });
|
|
4137
|
+
|
|
3901
4138
|
class MatchaBadgeDirective {
|
|
3902
4139
|
constructor(_elementRef, _renderer) {
|
|
3903
4140
|
this._elementRef = _elementRef;
|
|
@@ -4748,7 +4985,8 @@ class MatchaComponentsModule {
|
|
|
4748
4985
|
FormsModule,
|
|
4749
4986
|
ReactiveFormsModule,
|
|
4750
4987
|
MatchaAccordionModule,
|
|
4751
|
-
|
|
4988
|
+
MatchaOptionModule,
|
|
4989
|
+
MatchaAutocompleteModule,
|
|
4752
4990
|
MatchaBadgeModule,
|
|
4753
4991
|
MatchaButtonModule,
|
|
4754
4992
|
MatchaButtonToggleModule,
|
|
@@ -4767,7 +5005,6 @@ class MatchaComponentsModule {
|
|
|
4767
5005
|
MatchaMasonryModule,
|
|
4768
5006
|
MatchaMenuModule,
|
|
4769
5007
|
MatchaModalModule,
|
|
4770
|
-
//MatchaOptionModule,
|
|
4771
5008
|
MatchaPaginatorModule,
|
|
4772
5009
|
MatchaProgressBarModule,
|
|
4773
5010
|
MatchaRadioButtonModule,
|
|
@@ -4787,7 +5024,7 @@ class MatchaComponentsModule {
|
|
|
4787
5024
|
MatchaDateModule,
|
|
4788
5025
|
MatchaTimeModule,
|
|
4789
5026
|
MatchaDropListModule], exports: [MatchaAccordionModule,
|
|
4790
|
-
|
|
5027
|
+
MatchaAutocompleteModule,
|
|
4791
5028
|
MatchaBadgeModule,
|
|
4792
5029
|
MatchaButtonModule,
|
|
4793
5030
|
MatchaButtonToggleModule,
|
|
@@ -4806,7 +5043,7 @@ class MatchaComponentsModule {
|
|
|
4806
5043
|
MatchaMasonryModule,
|
|
4807
5044
|
MatchaMenuModule,
|
|
4808
5045
|
MatchaModalModule,
|
|
4809
|
-
|
|
5046
|
+
MatchaOptionModule,
|
|
4810
5047
|
MatchaPaginatorModule,
|
|
4811
5048
|
MatchaProgressBarModule,
|
|
4812
5049
|
MatchaRadioButtonModule,
|
|
@@ -4830,7 +5067,8 @@ class MatchaComponentsModule {
|
|
|
4830
5067
|
FormsModule,
|
|
4831
5068
|
ReactiveFormsModule,
|
|
4832
5069
|
MatchaAccordionModule,
|
|
4833
|
-
|
|
5070
|
+
MatchaOptionModule,
|
|
5071
|
+
MatchaAutocompleteModule,
|
|
4834
5072
|
MatchaBadgeModule,
|
|
4835
5073
|
MatchaButtonModule,
|
|
4836
5074
|
MatchaButtonToggleModule,
|
|
@@ -4849,7 +5087,6 @@ class MatchaComponentsModule {
|
|
|
4849
5087
|
MatchaMasonryModule,
|
|
4850
5088
|
MatchaMenuModule,
|
|
4851
5089
|
MatchaModalModule,
|
|
4852
|
-
//MatchaOptionModule,
|
|
4853
5090
|
MatchaPaginatorModule,
|
|
4854
5091
|
MatchaProgressBarModule,
|
|
4855
5092
|
MatchaRadioButtonModule,
|
|
@@ -4869,7 +5106,7 @@ class MatchaComponentsModule {
|
|
|
4869
5106
|
MatchaDateModule,
|
|
4870
5107
|
MatchaTimeModule,
|
|
4871
5108
|
MatchaDropListModule, MatchaAccordionModule,
|
|
4872
|
-
|
|
5109
|
+
MatchaAutocompleteModule,
|
|
4873
5110
|
MatchaBadgeModule,
|
|
4874
5111
|
MatchaButtonModule,
|
|
4875
5112
|
MatchaButtonToggleModule,
|
|
@@ -4888,7 +5125,7 @@ class MatchaComponentsModule {
|
|
|
4888
5125
|
MatchaMasonryModule,
|
|
4889
5126
|
MatchaMenuModule,
|
|
4890
5127
|
MatchaModalModule,
|
|
4891
|
-
|
|
5128
|
+
MatchaOptionModule,
|
|
4892
5129
|
MatchaPaginatorModule,
|
|
4893
5130
|
MatchaProgressBarModule,
|
|
4894
5131
|
MatchaRadioButtonModule,
|
|
@@ -4918,7 +5155,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
4918
5155
|
FormsModule,
|
|
4919
5156
|
ReactiveFormsModule,
|
|
4920
5157
|
MatchaAccordionModule,
|
|
4921
|
-
|
|
5158
|
+
MatchaOptionModule,
|
|
5159
|
+
MatchaAutocompleteModule,
|
|
4922
5160
|
MatchaBadgeModule,
|
|
4923
5161
|
MatchaButtonModule,
|
|
4924
5162
|
MatchaButtonToggleModule,
|
|
@@ -4937,7 +5175,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
4937
5175
|
MatchaMasonryModule,
|
|
4938
5176
|
MatchaMenuModule,
|
|
4939
5177
|
MatchaModalModule,
|
|
4940
|
-
//MatchaOptionModule,
|
|
4941
5178
|
MatchaPaginatorModule,
|
|
4942
5179
|
MatchaProgressBarModule,
|
|
4943
5180
|
MatchaRadioButtonModule,
|
|
@@ -4959,7 +5196,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
4959
5196
|
MatchaDropListModule
|
|
4960
5197
|
],
|
|
4961
5198
|
exports: [MatchaAccordionModule,
|
|
4962
|
-
|
|
5199
|
+
MatchaAutocompleteModule,
|
|
4963
5200
|
MatchaBadgeModule,
|
|
4964
5201
|
MatchaButtonModule,
|
|
4965
5202
|
MatchaButtonToggleModule,
|
|
@@ -4978,7 +5215,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
4978
5215
|
MatchaMasonryModule,
|
|
4979
5216
|
MatchaMenuModule,
|
|
4980
5217
|
MatchaModalModule,
|
|
4981
|
-
|
|
5218
|
+
MatchaOptionModule,
|
|
4982
5219
|
MatchaPaginatorModule,
|
|
4983
5220
|
MatchaProgressBarModule,
|
|
4984
5221
|
MatchaRadioButtonModule,
|
|
@@ -5065,5 +5302,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
5065
5302
|
* Generated bundle index. Do not edit.
|
|
5066
5303
|
*/
|
|
5067
5304
|
|
|
5068
|
-
export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaBadgeDirective, MatchaBadgeModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDateComponent, MatchaDateModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaDragDirective, MatchaDragHandleDirective, MatchaDropListComponent, MatchaDropListModule, 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, MatchaSkeletonComponent, MatchaSkeletonModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaSpinComponent, MatchaSpinModule, MatchaStepperComponent, MatchaStepperContentComponent, MatchaStepperControllerComponent, MatchaStepperModule, MatchaTabItemComponent, MatchaTableDirective, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTimeComponent, MatchaTimeModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarCustomButtonComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, NextStepDirective, PrevStepDirective, StepComponent, StepContentDirective };
|
|
5305
|
+
export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaBadgeDirective, MatchaBadgeModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDateComponent, MatchaDateModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaDragDirective, MatchaDragHandleDirective, MatchaDropListComponent, MatchaDropListModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputDirective, MatchaInputModule, MatchaLabelComponent, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaOptionComponent, MatchaOptionModule, MatchaOptionService, MatchaOverlayService, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaRadioButtonDirective, MatchaRadioButtonModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSkeletonComponent, MatchaSkeletonModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaSpinComponent, MatchaSpinModule, MatchaStepperComponent, MatchaStepperContentComponent, MatchaStepperControllerComponent, MatchaStepperModule, MatchaTabItemComponent, MatchaTableDirective, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTimeComponent, MatchaTimeModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarCustomButtonComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, NextStepDirective, PrevStepDirective, StepComponent, StepContentDirective };
|
|
5069
5306
|
//# sourceMappingURL=matcha-components.mjs.map
|