monkey-style-guide 2.0.203 → 2.0.205
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/assets/scss/partials/_loading.scss +1 -2
- package/esm2020/lib/components/input/input.component.mjs +29 -6
- package/esm2020/lib/components/select/select-search.component.mjs +3 -3
- package/fesm2015/monkey-style-guide.mjs +67 -45
- package/fesm2015/monkey-style-guide.mjs.map +1 -1
- package/fesm2020/monkey-style-guide.mjs +67 -45
- package/fesm2020/monkey-style-guide.mjs.map +1 -1
- package/lib/components/input/input.component.d.ts +4 -3
- package/monkey-style-guide-2.0.205.tgz +0 -0
- package/package.json +1 -1
- package/monkey-style-guide-2.0.203.tgz +0 -0
|
@@ -5310,7 +5310,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
5310
5310
|
* This style guide was developed by Monkey Exchange Team
|
|
5311
5311
|
* MIT Licence
|
|
5312
5312
|
**************************/
|
|
5313
|
-
const moment$
|
|
5313
|
+
const moment$2 = moment_;
|
|
5314
5314
|
class MonkeyDateRangePickerComponent {
|
|
5315
5315
|
constructor(fb, cdr) {
|
|
5316
5316
|
this.fb = fb;
|
|
@@ -5318,11 +5318,11 @@ class MonkeyDateRangePickerComponent {
|
|
|
5318
5318
|
this.helperMessage = '';
|
|
5319
5319
|
this.moveDaysForward = true;
|
|
5320
5320
|
this.onChange = new EventEmitter();
|
|
5321
|
-
this.today = moment$
|
|
5321
|
+
this.today = moment$2.default().format('YYYY-MM-DD');
|
|
5322
5322
|
this.onModelChange = (value) => { };
|
|
5323
5323
|
this.onModelTouched = (value) => { };
|
|
5324
|
-
this._dateFirst = moment$
|
|
5325
|
-
this._dateSecond = moment$
|
|
5324
|
+
this._dateFirst = moment$2.default();
|
|
5325
|
+
this._dateSecond = moment$2.default().add(1, 'M');
|
|
5326
5326
|
this._id = `mecx-date-range-picker-${MonkeyUtils.getRandomString(10)}`;
|
|
5327
5327
|
this._daysArrFirst = [];
|
|
5328
5328
|
this._daysArrSecond = [];
|
|
@@ -5343,17 +5343,17 @@ class MonkeyDateRangePickerComponent {
|
|
|
5343
5343
|
});
|
|
5344
5344
|
this._dateForm?.valueChanges?.pipe(takeUntil(this.unsubscribeAll))?.subscribe((values) => {
|
|
5345
5345
|
const { startDate, endDate } = values;
|
|
5346
|
-
this._startDate = startDate && moment$
|
|
5347
|
-
this._endDate = endDate && moment$
|
|
5346
|
+
this._startDate = startDate && moment$2.default(startDate);
|
|
5347
|
+
this._endDate = endDate && moment$2.default(endDate);
|
|
5348
5348
|
});
|
|
5349
5349
|
}
|
|
5350
5350
|
createCalendar(month) {
|
|
5351
|
-
let firstDay = moment$
|
|
5352
|
-
let lastDay = moment$
|
|
5351
|
+
let firstDay = moment$2.default(month).startOf('M');
|
|
5352
|
+
let lastDay = moment$2.default(month).endOf('M');
|
|
5353
5353
|
let days = Array.apply(null, { length: month.daysInMonth() })
|
|
5354
5354
|
.map(Number.call, Number)
|
|
5355
5355
|
.map((n) => {
|
|
5356
|
-
return moment$
|
|
5356
|
+
return moment$2.default(firstDay).add(n, 'd');
|
|
5357
5357
|
});
|
|
5358
5358
|
let n = 0;
|
|
5359
5359
|
while (n < firstDay.weekday()) {
|
|
@@ -5391,8 +5391,8 @@ class MonkeyDateRangePickerComponent {
|
|
|
5391
5391
|
this.writeValue(this._dateForm.value);
|
|
5392
5392
|
}
|
|
5393
5393
|
navigateToToday() {
|
|
5394
|
-
this._dateFirst = moment$
|
|
5395
|
-
this._dateSecond = moment$
|
|
5394
|
+
this._dateFirst = moment$2.default();
|
|
5395
|
+
this._dateSecond = moment$2.default().add(1, 'M');
|
|
5396
5396
|
this.build();
|
|
5397
5397
|
}
|
|
5398
5398
|
ngOnInit() {
|
|
@@ -5447,14 +5447,14 @@ class MonkeyDateRangePickerComponent {
|
|
|
5447
5447
|
if (!day) {
|
|
5448
5448
|
return false;
|
|
5449
5449
|
}
|
|
5450
|
-
return moment$
|
|
5450
|
+
return moment$2.default().format('L') === day.format('L');
|
|
5451
5451
|
}
|
|
5452
5452
|
isSelected(day) {
|
|
5453
5453
|
if (!day) {
|
|
5454
5454
|
return false;
|
|
5455
5455
|
}
|
|
5456
|
-
let startDateMoment = moment$
|
|
5457
|
-
let endDateMoment = moment$
|
|
5456
|
+
let startDateMoment = moment$2.default(this._dateForm.value.startDate, 'YYYY-MM-DD');
|
|
5457
|
+
let endDateMoment = moment$2.default(this._dateForm.value.endDate, 'YYYY-MM-DD');
|
|
5458
5458
|
if (this._dateForm.valid) {
|
|
5459
5459
|
return startDateMoment.isSameOrBefore(day) && endDateMoment.isSameOrAfter(day);
|
|
5460
5460
|
}
|
|
@@ -5465,7 +5465,7 @@ class MonkeyDateRangePickerComponent {
|
|
|
5465
5465
|
isDisabled(day) {
|
|
5466
5466
|
const { _minDate } = this;
|
|
5467
5467
|
if (_minDate) {
|
|
5468
|
-
const firstDay = moment$
|
|
5468
|
+
const firstDay = moment$2.default(_minDate);
|
|
5469
5469
|
return day.isBefore(firstDay.subtract(1, 'day'));
|
|
5470
5470
|
}
|
|
5471
5471
|
return false;
|
|
@@ -5486,7 +5486,7 @@ class MonkeyDateRangePickerComponent {
|
|
|
5486
5486
|
const { _dateForm, _minDate } = this;
|
|
5487
5487
|
let dayFormatted = day.format('YYYY-MM-DD');
|
|
5488
5488
|
if (_minDate) {
|
|
5489
|
-
const firstDay = moment$
|
|
5489
|
+
const firstDay = moment$2.default(_minDate);
|
|
5490
5490
|
if (day.isBefore(firstDay.subtract(1, 'day')))
|
|
5491
5491
|
return;
|
|
5492
5492
|
}
|
|
@@ -5495,7 +5495,7 @@ class MonkeyDateRangePickerComponent {
|
|
|
5495
5495
|
}
|
|
5496
5496
|
let { startDate, endDate } = _dateForm.value;
|
|
5497
5497
|
if (startDate) {
|
|
5498
|
-
if (moment$
|
|
5498
|
+
if (moment$2.default(startDate).isAfter(moment$2.default(dayFormatted))) {
|
|
5499
5499
|
endDate = startDate;
|
|
5500
5500
|
startDate = dayFormatted;
|
|
5501
5501
|
}
|
|
@@ -5518,9 +5518,9 @@ class MonkeyDateRangePickerComponent {
|
|
|
5518
5518
|
return;
|
|
5519
5519
|
const { _dateForm, _minDate, today, moveDaysForward } = this;
|
|
5520
5520
|
const { startDate } = _dateForm.value;
|
|
5521
|
-
const firstDay = moment$
|
|
5521
|
+
const firstDay = moment$2.default(startDate || _minDate || today).format('YYYY-MM-DD');
|
|
5522
5522
|
const method = moveDaysForward ? 'add' : 'subtract';
|
|
5523
|
-
const lastDay = moment$
|
|
5523
|
+
const lastDay = moment$2.default(firstDay)[method](days, 'day').format('YYYY-MM-DD');
|
|
5524
5524
|
if (moveDaysForward) {
|
|
5525
5525
|
_dateForm.get('startDate').patchValue(firstDay);
|
|
5526
5526
|
_dateForm.get('endDate').patchValue(lastDay);
|
|
@@ -5974,7 +5974,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
5974
5974
|
* This style guide was developed by Monkey Exchange Team
|
|
5975
5975
|
* MIT Licence
|
|
5976
5976
|
**************************/
|
|
5977
|
-
const moment = moment_;
|
|
5977
|
+
const moment$1 = moment_;
|
|
5978
5978
|
class MonkeyDateRangePickerV2Component {
|
|
5979
5979
|
constructor(fb, cdr) {
|
|
5980
5980
|
this.fb = fb;
|
|
@@ -5985,11 +5985,11 @@ class MonkeyDateRangePickerV2Component {
|
|
|
5985
5985
|
this.onChange = new EventEmitter();
|
|
5986
5986
|
this.onSubmit = new EventEmitter();
|
|
5987
5987
|
this.onClose = new EventEmitter();
|
|
5988
|
-
this.today = moment.default().format('YYYY-MM-DD');
|
|
5988
|
+
this.today = moment$1.default().format('YYYY-MM-DD');
|
|
5989
5989
|
this.onModelChange = (value) => { };
|
|
5990
5990
|
this.onModelTouched = (value) => { };
|
|
5991
|
-
this._dateFirst = moment.default();
|
|
5992
|
-
this._dateSecond = moment.default().add(1, 'M');
|
|
5991
|
+
this._dateFirst = moment$1.default();
|
|
5992
|
+
this._dateSecond = moment$1.default().add(1, 'M');
|
|
5993
5993
|
this._id = `mecx-date-range-picker-v2-${MonkeyUtils.getRandomString(10)}`;
|
|
5994
5994
|
this._daysArrFirst = [];
|
|
5995
5995
|
this._daysArrSecond = [];
|
|
@@ -6010,17 +6010,17 @@ class MonkeyDateRangePickerV2Component {
|
|
|
6010
6010
|
});
|
|
6011
6011
|
this._dateForm?.valueChanges?.pipe(takeUntil(this.unsubscribeAll))?.subscribe((values) => {
|
|
6012
6012
|
const { startDate, endDate } = values;
|
|
6013
|
-
this._startDate = startDate && moment.default(startDate);
|
|
6014
|
-
this._endDate = endDate && moment.default(endDate);
|
|
6013
|
+
this._startDate = startDate && moment$1.default(startDate);
|
|
6014
|
+
this._endDate = endDate && moment$1.default(endDate);
|
|
6015
6015
|
});
|
|
6016
6016
|
}
|
|
6017
6017
|
createCalendar(month) {
|
|
6018
|
-
let firstDay = moment.default(month).startOf('M');
|
|
6019
|
-
let lastDay = moment.default(month).endOf('M');
|
|
6018
|
+
let firstDay = moment$1.default(month).startOf('M');
|
|
6019
|
+
let lastDay = moment$1.default(month).endOf('M');
|
|
6020
6020
|
let days = Array.apply(null, { length: month.daysInMonth() })
|
|
6021
6021
|
.map(Number.call, Number)
|
|
6022
6022
|
.map((n) => {
|
|
6023
|
-
return moment.default(firstDay).add(n, 'd');
|
|
6023
|
+
return moment$1.default(firstDay).add(n, 'd');
|
|
6024
6024
|
});
|
|
6025
6025
|
let n = 0;
|
|
6026
6026
|
while (n < firstDay.weekday()) {
|
|
@@ -6058,8 +6058,8 @@ class MonkeyDateRangePickerV2Component {
|
|
|
6058
6058
|
this.writeValue(this._dateForm.value);
|
|
6059
6059
|
}
|
|
6060
6060
|
navigateToToday() {
|
|
6061
|
-
this._dateFirst = moment.default();
|
|
6062
|
-
this._dateSecond = moment.default().add(1, 'M');
|
|
6061
|
+
this._dateFirst = moment$1.default();
|
|
6062
|
+
this._dateSecond = moment$1.default().add(1, 'M');
|
|
6063
6063
|
this.build();
|
|
6064
6064
|
}
|
|
6065
6065
|
ngOnInit() {
|
|
@@ -6118,14 +6118,14 @@ class MonkeyDateRangePickerV2Component {
|
|
|
6118
6118
|
if (!day) {
|
|
6119
6119
|
return false;
|
|
6120
6120
|
}
|
|
6121
|
-
return moment.default().format('L') === day.format('L');
|
|
6121
|
+
return moment$1.default().format('L') === day.format('L');
|
|
6122
6122
|
}
|
|
6123
6123
|
isSelected(day) {
|
|
6124
6124
|
if (!day) {
|
|
6125
6125
|
return false;
|
|
6126
6126
|
}
|
|
6127
|
-
let startDateMoment = moment.default(this._dateForm.value.startDate, 'YYYY-MM-DD');
|
|
6128
|
-
let endDateMoment = moment.default(this._dateForm.value.endDate, 'YYYY-MM-DD');
|
|
6127
|
+
let startDateMoment = moment$1.default(this._dateForm.value.startDate, 'YYYY-MM-DD');
|
|
6128
|
+
let endDateMoment = moment$1.default(this._dateForm.value.endDate, 'YYYY-MM-DD');
|
|
6129
6129
|
if (this._dateForm.valid) {
|
|
6130
6130
|
return startDateMoment.isSameOrBefore(day) && endDateMoment.isSameOrAfter(day);
|
|
6131
6131
|
}
|
|
@@ -6136,7 +6136,7 @@ class MonkeyDateRangePickerV2Component {
|
|
|
6136
6136
|
isDisabled(day) {
|
|
6137
6137
|
const { _minDate } = this;
|
|
6138
6138
|
if (_minDate) {
|
|
6139
|
-
const firstDay = moment.default(_minDate);
|
|
6139
|
+
const firstDay = moment$1.default(_minDate);
|
|
6140
6140
|
return day.isBefore(firstDay.subtract(1, 'day'));
|
|
6141
6141
|
}
|
|
6142
6142
|
return false;
|
|
@@ -6157,7 +6157,7 @@ class MonkeyDateRangePickerV2Component {
|
|
|
6157
6157
|
const { _dateForm, _minDate } = this;
|
|
6158
6158
|
let dayFormatted = day.format('YYYY-MM-DD');
|
|
6159
6159
|
if (_minDate) {
|
|
6160
|
-
const firstDay = moment.default(_minDate);
|
|
6160
|
+
const firstDay = moment$1.default(_minDate);
|
|
6161
6161
|
if (day.isBefore(firstDay.subtract(1, 'day')))
|
|
6162
6162
|
return;
|
|
6163
6163
|
}
|
|
@@ -6166,7 +6166,7 @@ class MonkeyDateRangePickerV2Component {
|
|
|
6166
6166
|
}
|
|
6167
6167
|
let { startDate, endDate } = _dateForm.value;
|
|
6168
6168
|
if (startDate) {
|
|
6169
|
-
if (moment.default(startDate).isAfter(moment.default(dayFormatted))) {
|
|
6169
|
+
if (moment$1.default(startDate).isAfter(moment$1.default(dayFormatted))) {
|
|
6170
6170
|
endDate = startDate;
|
|
6171
6171
|
startDate = dayFormatted;
|
|
6172
6172
|
}
|
|
@@ -6189,9 +6189,9 @@ class MonkeyDateRangePickerV2Component {
|
|
|
6189
6189
|
return;
|
|
6190
6190
|
const { _dateForm, _minDate, today, moveDaysForward } = this;
|
|
6191
6191
|
const { startDate } = _dateForm.value;
|
|
6192
|
-
const firstDay = moment.default(startDate || _minDate || today).format('YYYY-MM-DD');
|
|
6192
|
+
const firstDay = moment$1.default(startDate || _minDate || today).format('YYYY-MM-DD');
|
|
6193
6193
|
const method = moveDaysForward ? 'add' : 'subtract';
|
|
6194
|
-
const lastDay = moment.default(firstDay)[method](days, 'day').format('YYYY-MM-DD');
|
|
6194
|
+
const lastDay = moment$1.default(firstDay)[method](days, 'day').format('YYYY-MM-DD');
|
|
6195
6195
|
if (moveDaysForward) {
|
|
6196
6196
|
_dateForm.get('startDate').patchValue(firstDay);
|
|
6197
6197
|
_dateForm.get('endDate').patchValue(lastDay);
|
|
@@ -7640,6 +7640,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
7640
7640
|
* This style guide was developed by Monkey Exchange Team
|
|
7641
7641
|
* MIT Licence
|
|
7642
7642
|
**************************/
|
|
7643
|
+
const moment = moment_;
|
|
7643
7644
|
class MonkeyInputComponent {
|
|
7644
7645
|
constructor(currencyPipe, settingsService, cdr, defaultCurencyCode) {
|
|
7645
7646
|
this.currencyPipe = currencyPipe;
|
|
@@ -7650,16 +7651,35 @@ class MonkeyInputComponent {
|
|
|
7650
7651
|
this.helperMessage = '';
|
|
7651
7652
|
this.placeholder = '';
|
|
7652
7653
|
this.maxLength = 255;
|
|
7653
|
-
this.maxDateToday = false;
|
|
7654
7654
|
this.onChange = new EventEmitter();
|
|
7655
7655
|
this.onModelChange = (value) => { };
|
|
7656
7656
|
this.onModelTouched = (value) => { };
|
|
7657
7657
|
this._id = `mecx-input-${MonkeyUtils.getRandomString(10)}`;
|
|
7658
7658
|
this._disabled = false;
|
|
7659
|
-
this._maxDateToday = new Date().toISOString().split('T')[0];
|
|
7660
7659
|
this._symbol = '';
|
|
7660
|
+
this._maxDate = undefined;
|
|
7661
7661
|
//not to do
|
|
7662
7662
|
}
|
|
7663
|
+
set maxDateToday(value) {
|
|
7664
|
+
try {
|
|
7665
|
+
if (value) {
|
|
7666
|
+
this._maxDate = new Date().toISOString().split('T')[0];
|
|
7667
|
+
}
|
|
7668
|
+
}
|
|
7669
|
+
catch (e) {
|
|
7670
|
+
// ignore
|
|
7671
|
+
}
|
|
7672
|
+
}
|
|
7673
|
+
set minYears(value) {
|
|
7674
|
+
try {
|
|
7675
|
+
if (value) {
|
|
7676
|
+
this._maxDate = moment.default().subtract(value, 'years').toISOString().split('T')[0];
|
|
7677
|
+
}
|
|
7678
|
+
}
|
|
7679
|
+
catch (e) {
|
|
7680
|
+
// ignore
|
|
7681
|
+
}
|
|
7682
|
+
}
|
|
7663
7683
|
handleValue(value, apply = false) {
|
|
7664
7684
|
if (this.onlyNumber) {
|
|
7665
7685
|
return MonkeyUtils.handleOnlyNumbers(`${value}`);
|
|
@@ -7780,7 +7800,7 @@ class MonkeyInputComponent {
|
|
|
7780
7800
|
}
|
|
7781
7801
|
}
|
|
7782
7802
|
MonkeyInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyInputComponent, deps: [{ token: i1$1.CurrencyPipe }, { token: MonkeyStyleGuideSettingsService }, { token: i0.ChangeDetectorRef }, { token: DEFAULT_CURRENCY_CODE }], target: i0.ɵɵFactoryTarget.Component });
|
|
7783
|
-
MonkeyInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonkeyInputComponent, selector: "monkey-input", inputs: { name: "name", label: "label", helperMessage: "helperMessage", placeholder: "placeholder", icon: "icon", type: "type", infoMessage: "infoMessage", errorMessage: "errorMessage", mask: "mask", prefix: "prefix", maxLength: "maxLength", onlyNumber: "onlyNumber", onlyAlphaNumeric: "onlyAlphaNumeric", upperCase: "upperCase", lowerCase: "lowerCase", capitalize: "capitalize", currency: "currency", percent: "percent", maxDateToday: "maxDateToday", value: "value" }, outputs: { onChange: "onChange" }, host: { listeners: { "click": "onClick()" } }, providers: [
|
|
7803
|
+
MonkeyInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonkeyInputComponent, selector: "monkey-input", inputs: { name: "name", label: "label", helperMessage: "helperMessage", placeholder: "placeholder", icon: "icon", type: "type", infoMessage: "infoMessage", errorMessage: "errorMessage", mask: "mask", prefix: "prefix", maxLength: "maxLength", onlyNumber: "onlyNumber", onlyAlphaNumeric: "onlyAlphaNumeric", upperCase: "upperCase", lowerCase: "lowerCase", capitalize: "capitalize", currency: "currency", percent: "percent", maxDateToday: "maxDateToday", minYears: "minYears", value: "value" }, outputs: { onChange: "onChange" }, host: { listeners: { "click": "onClick()" } }, providers: [
|
|
7784
7804
|
{
|
|
7785
7805
|
provide: NG_VALUE_ACCESSOR,
|
|
7786
7806
|
useExisting: forwardRef(() => MonkeyInputComponent),
|
|
@@ -7844,7 +7864,7 @@ MonkeyInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
7844
7864
|
[disabled]="_disabled"
|
|
7845
7865
|
[maxLength]="maxLength"
|
|
7846
7866
|
*ngIf="!mask && !prefix"
|
|
7847
|
-
[max]="
|
|
7867
|
+
[max]="_maxDate"
|
|
7848
7868
|
#monkeyInput
|
|
7849
7869
|
/>
|
|
7850
7870
|
<monkey-icon
|
|
@@ -7931,7 +7951,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
7931
7951
|
[disabled]="_disabled"
|
|
7932
7952
|
[maxLength]="maxLength"
|
|
7933
7953
|
*ngIf="!mask && !prefix"
|
|
7934
|
-
[max]="
|
|
7954
|
+
[max]="_maxDate"
|
|
7935
7955
|
#monkeyInput
|
|
7936
7956
|
/>
|
|
7937
7957
|
<monkey-icon
|
|
@@ -8008,6 +8028,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
8008
8028
|
type: Input
|
|
8009
8029
|
}], maxDateToday: [{
|
|
8010
8030
|
type: Input
|
|
8031
|
+
}], minYears: [{
|
|
8032
|
+
type: Input
|
|
8011
8033
|
}], onChange: [{
|
|
8012
8034
|
type: Output
|
|
8013
8035
|
}], monkeyInput: [{
|
|
@@ -9495,7 +9517,7 @@ MonkeySelectSearchComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.
|
|
|
9495
9517
|
<mecx-select class="trigger" [ngClass]="{ open: _opened }">
|
|
9496
9518
|
<mecx-select__trigger>
|
|
9497
9519
|
<input
|
|
9498
|
-
[placeholder]="
|
|
9520
|
+
[placeholder]="placeholder || labelSelect"
|
|
9499
9521
|
(input)="onChangeInput($event)"
|
|
9500
9522
|
#inputFilter
|
|
9501
9523
|
[ngModel]="_selected?.label || ''"
|
|
@@ -9541,7 +9563,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
9541
9563
|
<mecx-select class="trigger" [ngClass]="{ open: _opened }">
|
|
9542
9564
|
<mecx-select__trigger>
|
|
9543
9565
|
<input
|
|
9544
|
-
[placeholder]="
|
|
9566
|
+
[placeholder]="placeholder || labelSelect"
|
|
9545
9567
|
(input)="onChangeInput($event)"
|
|
9546
9568
|
#inputFilter
|
|
9547
9569
|
[ngModel]="_selected?.label || ''"
|