@progress/kendo-angular-dateinputs 15.4.0 → 15.5.0-develop.2
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/dateinput/dateinput.component.d.ts +23 -2
- package/datepicker/datepicker.component.d.ts +11 -1
- package/datetimepicker/datetimepicker.component.d.ts +19 -4
- package/esm2020/dateinput/dateinput.component.mjs +67 -9
- package/esm2020/datepicker/datepicker.component.mjs +15 -3
- package/esm2020/datetimepicker/datetimepicker.component.mjs +28 -8
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/timepicker/timepicker.component.mjs +18 -3
- package/fesm2015/progress-kendo-angular-dateinputs.mjs +125 -20
- package/fesm2020/progress-kendo-angular-dateinputs.mjs +125 -20
- package/package.json +11 -11
- package/timepicker/timepicker.component.d.ts +12 -1
|
@@ -9,7 +9,7 @@ import * as i1$1 from '@progress/kendo-angular-l10n';
|
|
|
9
9
|
import { ComponentMessages, LocalizationService, L10N_PREFIX, RTL } from '@progress/kendo-angular-l10n';
|
|
10
10
|
import { cloneDate, MS_PER_HOUR, MS_PER_MINUTE, addDays, getDate, isEqual, addDecades, addCenturies, firstDecadeOfCentury, lastDecadeOfCentury, firstYearOfDecade, createDate, lastYearOfDecade, lastMonthOfYear, lastDayOfMonth, durationInCenturies, addYears, durationInDecades, addWeeks, addMonths, firstDayOfMonth, dayOfWeek, durationInMonths, firstMonthOfYear, durationInYears, weekInYear } from '@progress/kendo-date-math';
|
|
11
11
|
import * as i8 from '@progress/kendo-angular-common';
|
|
12
|
-
import { isDocumentAvailable, guid, Keys as Keys$1, hasObservers, KendoInput, EventsModule, ResizeSensorModule, ToggleButtonTabStopModule } from '@progress/kendo-angular-common';
|
|
12
|
+
import { isDocumentAvailable, guid, Keys as Keys$1, hasObservers, KendoInput, isObjectPresent, removeHTMLAttributes, parseAttributes, isControlRequired, setHTMLAttributes, EventsModule, ResizeSensorModule, ToggleButtonTabStopModule } from '@progress/kendo-angular-common';
|
|
13
13
|
export { ToggleButtonTabStopDirective } from '@progress/kendo-angular-common';
|
|
14
14
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
15
15
|
import * as i1 from '@progress/kendo-angular-intl';
|
|
@@ -38,8 +38,8 @@ const packageMetadata = {
|
|
|
38
38
|
name: '@progress/kendo-angular-dateinputs',
|
|
39
39
|
productName: 'Kendo UI for Angular',
|
|
40
40
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
41
|
-
publishDate:
|
|
42
|
-
version: '15.
|
|
41
|
+
publishDate: 1712566608,
|
|
42
|
+
version: '15.5.0-develop.2',
|
|
43
43
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
44
44
|
};
|
|
45
45
|
|
|
@@ -7504,7 +7504,6 @@ class DateInputComponent {
|
|
|
7504
7504
|
this.title = "";
|
|
7505
7505
|
/**
|
|
7506
7506
|
* Sets or gets the `tabIndex` property of the DateInput.
|
|
7507
|
-
* .
|
|
7508
7507
|
*/
|
|
7509
7508
|
this.tabindex = 0;
|
|
7510
7509
|
/**
|
|
@@ -7515,6 +7514,10 @@ class DateInputComponent {
|
|
|
7515
7514
|
* @hidden
|
|
7516
7515
|
*/
|
|
7517
7516
|
this.ariaReadOnly = false;
|
|
7517
|
+
/**
|
|
7518
|
+
* @hidden
|
|
7519
|
+
*/
|
|
7520
|
+
this.isRequired = false;
|
|
7518
7521
|
/**
|
|
7519
7522
|
* Specifies the date format that is used to display the input value
|
|
7520
7523
|
* ([see example]({% slug formats_dateinput %})).
|
|
@@ -7675,6 +7678,7 @@ class DateInputComponent {
|
|
|
7675
7678
|
this._rounded = DEFAULT_ROUNDED;
|
|
7676
7679
|
this._fillMode = DEFAULT_FILL_MODE;
|
|
7677
7680
|
this.subs = new Subscription();
|
|
7681
|
+
this.parsedAttributes = {};
|
|
7678
7682
|
validatePackage(packageMetadata);
|
|
7679
7683
|
if (this.pickerService) {
|
|
7680
7684
|
this.pickerService.input = this;
|
|
@@ -7845,6 +7849,22 @@ class DateInputComponent {
|
|
|
7845
7849
|
get fillMode() {
|
|
7846
7850
|
return this._fillMode;
|
|
7847
7851
|
}
|
|
7852
|
+
/**
|
|
7853
|
+
* Sets the HTML attributes of the inner focusable input element. Attributes which are essential for certain component functionalities cannot be changed.
|
|
7854
|
+
*/
|
|
7855
|
+
set inputAttributes(attributes) {
|
|
7856
|
+
if (isObjectPresent(this.parsedAttributes)) {
|
|
7857
|
+
removeHTMLAttributes(this.parsedAttributes, this.renderer, this.dateInput.nativeElement);
|
|
7858
|
+
}
|
|
7859
|
+
this._inputAttributes = attributes;
|
|
7860
|
+
this.parsedAttributes = this.inputAttributes ?
|
|
7861
|
+
parseAttributes(this.inputAttributes, this.defaultAttributes) :
|
|
7862
|
+
this.inputAttributes;
|
|
7863
|
+
this.setInputAttributes();
|
|
7864
|
+
}
|
|
7865
|
+
get inputAttributes() {
|
|
7866
|
+
return this._inputAttributes;
|
|
7867
|
+
}
|
|
7848
7868
|
get wrapperClass() {
|
|
7849
7869
|
return true;
|
|
7850
7870
|
}
|
|
@@ -7902,6 +7922,30 @@ class DateInputComponent {
|
|
|
7902
7922
|
intlService: new DateInputIntl(this.intl)
|
|
7903
7923
|
};
|
|
7904
7924
|
}
|
|
7925
|
+
get defaultAttributes() {
|
|
7926
|
+
return {
|
|
7927
|
+
'aria-readonly': this.ariaReadOnly,
|
|
7928
|
+
id: this.focusableId,
|
|
7929
|
+
title: this.title,
|
|
7930
|
+
tabindex: this.tabindex,
|
|
7931
|
+
disabled: this.disabled ? '' : null,
|
|
7932
|
+
readonly: this.readonly ? '' : null,
|
|
7933
|
+
placeholder: this.placeholder,
|
|
7934
|
+
'aria-expanded': this.isPopupOpen,
|
|
7935
|
+
'aria-haspopup': this.hasPopup,
|
|
7936
|
+
required: this.isControlRequired ? '' : null
|
|
7937
|
+
};
|
|
7938
|
+
}
|
|
7939
|
+
get mutableAttributes() {
|
|
7940
|
+
return {
|
|
7941
|
+
autocomplete: 'off',
|
|
7942
|
+
autocorrect: 'off',
|
|
7943
|
+
autocapitalize: 'off',
|
|
7944
|
+
spellcheck: 'false',
|
|
7945
|
+
role: this.role
|
|
7946
|
+
};
|
|
7947
|
+
}
|
|
7948
|
+
;
|
|
7905
7949
|
/**
|
|
7906
7950
|
* @hidden
|
|
7907
7951
|
* Used by the TextBoxContainer to determine if the component is empty
|
|
@@ -8017,6 +8061,12 @@ class DateInputComponent {
|
|
|
8017
8061
|
this.renderer.setAttribute(this.inputElement, attributeNames.ariaInvalid, 'false');
|
|
8018
8062
|
}
|
|
8019
8063
|
}
|
|
8064
|
+
/**
|
|
8065
|
+
* @hidden
|
|
8066
|
+
*/
|
|
8067
|
+
get isControlRequired() {
|
|
8068
|
+
return isControlRequired(this.formControl) || this.isRequired;
|
|
8069
|
+
}
|
|
8020
8070
|
/**
|
|
8021
8071
|
* @hidden
|
|
8022
8072
|
*/
|
|
@@ -8214,9 +8264,13 @@ class DateInputComponent {
|
|
|
8214
8264
|
this.setSpinnerFill(this.spindown.nativeElement, this.fillMode);
|
|
8215
8265
|
}
|
|
8216
8266
|
}
|
|
8267
|
+
setInputAttributes() {
|
|
8268
|
+
const attributesToRender = Object.assign({}, this.mutableAttributes, this.parsedAttributes);
|
|
8269
|
+
setHTMLAttributes(attributesToRender, this.renderer, this.dateInput.nativeElement);
|
|
8270
|
+
}
|
|
8217
8271
|
}
|
|
8218
8272
|
DateInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateInputComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i1.IntlService }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }, { token: i1$1.LocalizationService }, { token: PickerService, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
8219
|
-
DateInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: DateInputComponent, selector: "kendo-dateinput", inputs: { focusableId: "focusableId", pickerType: "pickerType", disabled: "disabled", readonly: "readonly", title: "title", tabindex: "tabindex", role: "role", ariaReadOnly: "ariaReadOnly", tabIndex: "tabIndex", format: "format", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", steps: "steps", max: "max", min: "min", rangeValidation: "rangeValidation", autoCorrectParts: "autoCorrectParts", autoSwitchParts: "autoSwitchParts", autoSwitchKeys: "autoSwitchKeys", allowCaretMode: "allowCaretMode", autoFill: "autoFill", incompleteDateValidation: "incompleteDateValidation", twoDigitYearMax: "twoDigitYearMax", enableMouseWheel: "enableMouseWheel", value: "value", spinners: "spinners", isPopupOpen: "isPopupOpen", hasPopup: "hasPopup", size: "size", rounded: "rounded", fillMode: "fillMode" }, outputs: { valueChange: "valueChange", valueUpdate: "valueUpdate", onFocus: "focus", onBlur: "blur" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-input": "this.wrapperClass", "class.k-dateinput": "this.wrapperClass", "class.k-disabled": "this.disabledClass" } }, providers: [
|
|
8273
|
+
DateInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: DateInputComponent, selector: "kendo-dateinput", inputs: { focusableId: "focusableId", pickerType: "pickerType", disabled: "disabled", readonly: "readonly", title: "title", tabindex: "tabindex", role: "role", ariaReadOnly: "ariaReadOnly", tabIndex: "tabIndex", isRequired: "isRequired", format: "format", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", steps: "steps", max: "max", min: "min", rangeValidation: "rangeValidation", autoCorrectParts: "autoCorrectParts", autoSwitchParts: "autoSwitchParts", autoSwitchKeys: "autoSwitchKeys", allowCaretMode: "allowCaretMode", autoFill: "autoFill", incompleteDateValidation: "incompleteDateValidation", twoDigitYearMax: "twoDigitYearMax", enableMouseWheel: "enableMouseWheel", value: "value", spinners: "spinners", isPopupOpen: "isPopupOpen", hasPopup: "hasPopup", size: "size", rounded: "rounded", fillMode: "fillMode", inputAttributes: "inputAttributes" }, outputs: { valueChange: "valueChange", valueUpdate: "valueUpdate", onFocus: "focus", onBlur: "blur" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-input": "this.wrapperClass", "class.k-dateinput": "this.wrapperClass", "class.k-disabled": "this.disabledClass" } }, providers: [
|
|
8220
8274
|
{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => DateInputComponent), multi: true },
|
|
8221
8275
|
{ provide: NG_VALIDATORS, useExisting: forwardRef(() => DateInputComponent), multi: true },
|
|
8222
8276
|
{ provide: L10N_PREFIX, useValue: 'kendo.dateinput' },
|
|
@@ -8231,13 +8285,13 @@ DateInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
8231
8285
|
decrement="Decrease value"
|
|
8232
8286
|
>
|
|
8233
8287
|
</ng-container>
|
|
8234
|
-
<input
|
|
8235
|
-
|
|
8288
|
+
<input #dateInput
|
|
8289
|
+
class="k-input-inner"
|
|
8290
|
+
[attr.required]="isControlRequired ? '' : null"
|
|
8236
8291
|
autocomplete="off"
|
|
8237
8292
|
autocorrect="off"
|
|
8238
8293
|
autocapitalize="off"
|
|
8239
8294
|
spellcheck="false"
|
|
8240
|
-
class="k-input-inner"
|
|
8241
8295
|
[attr.role]="role"
|
|
8242
8296
|
[attr.aria-readonly]="ariaReadOnly"
|
|
8243
8297
|
[id]="focusableId"
|
|
@@ -8315,13 +8369,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
8315
8369
|
decrement="Decrease value"
|
|
8316
8370
|
>
|
|
8317
8371
|
</ng-container>
|
|
8318
|
-
<input
|
|
8319
|
-
|
|
8372
|
+
<input #dateInput
|
|
8373
|
+
class="k-input-inner"
|
|
8374
|
+
[attr.required]="isControlRequired ? '' : null"
|
|
8320
8375
|
autocomplete="off"
|
|
8321
8376
|
autocorrect="off"
|
|
8322
8377
|
autocapitalize="off"
|
|
8323
8378
|
spellcheck="false"
|
|
8324
|
-
class="k-input-inner"
|
|
8325
8379
|
[attr.role]="role"
|
|
8326
8380
|
[attr.aria-readonly]="ariaReadOnly"
|
|
8327
8381
|
[id]="focusableId"
|
|
@@ -8401,6 +8455,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
8401
8455
|
type: Input
|
|
8402
8456
|
}], tabIndex: [{
|
|
8403
8457
|
type: Input
|
|
8458
|
+
}], isRequired: [{
|
|
8459
|
+
type: Input
|
|
8404
8460
|
}], format: [{
|
|
8405
8461
|
type: Input
|
|
8406
8462
|
}], formatPlaceholder: [{
|
|
@@ -8445,6 +8501,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
8445
8501
|
type: Input
|
|
8446
8502
|
}], fillMode: [{
|
|
8447
8503
|
type: Input
|
|
8504
|
+
}], inputAttributes: [{
|
|
8505
|
+
type: Input
|
|
8448
8506
|
}], valueChange: [{
|
|
8449
8507
|
type: Output
|
|
8450
8508
|
}], valueUpdate: [{
|
|
@@ -9133,6 +9191,12 @@ class DatePickerComponent {
|
|
|
9133
9191
|
get inputElement() {
|
|
9134
9192
|
return this.wrapper.nativeElement.querySelector('input');
|
|
9135
9193
|
}
|
|
9194
|
+
/**
|
|
9195
|
+
* @hidden
|
|
9196
|
+
*/
|
|
9197
|
+
get isControlRequired() {
|
|
9198
|
+
return isControlRequired(this.control);
|
|
9199
|
+
}
|
|
9136
9200
|
/**
|
|
9137
9201
|
* @hidden
|
|
9138
9202
|
* Used by the TextBoxContainer to determine if the component is empty.
|
|
@@ -9629,7 +9693,7 @@ class DatePickerComponent {
|
|
|
9629
9693
|
}
|
|
9630
9694
|
}
|
|
9631
9695
|
DatePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DatePickerComponent, deps: [{ token: i0.NgZone }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i1$2.PopupService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: PickerService }, { token: DisabledDatesService }, { token: TOUCH_ENABLED, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
9632
|
-
DatePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: DatePickerComponent, selector: "kendo-datepicker", inputs: { focusableId: "focusableId", cellTemplateRef: ["cellTemplate", "cellTemplateRef"], monthCellTemplateRef: ["monthCellTemplate", "monthCellTemplateRef"], yearCellTemplateRef: ["yearCellTemplate", "yearCellTemplateRef"], decadeCellTemplateRef: ["decadeCellTemplate", "decadeCellTemplateRef"], centuryCellTemplateRef: ["centuryCellTemplate", "centuryCellTemplateRef"], weekNumberTemplateRef: ["weekNumberTemplate", "weekNumberTemplateRef"], headerTitleTemplateRef: ["headerTitleTemplate", "headerTitleTemplateRef"], headerTemplateRef: ["headerTemplate", "headerTemplateRef"], footerTemplateRef: ["footerTemplate", "footerTemplateRef"], footer: "footer", navigationItemTemplateRef: ["navigationItemTemplate", "navigationItemTemplateRef"], weekDaysFormat: "weekDaysFormat", showOtherMonthDays: "showOtherMonthDays", activeView: "activeView", bottomView: "bottomView", topView: "topView", calendarType: "calendarType", animateCalendarNavigation: "animateCalendarNavigation", disabled: "disabled", readonly: "readonly", readOnlyInput: "readOnlyInput", popupSettings: "popupSettings", navigation: "navigation", min: "min", max: "max", incompleteDateValidation: "incompleteDateValidation", autoCorrectParts: "autoCorrectParts", autoSwitchParts: "autoSwitchParts", autoSwitchKeys: "autoSwitchKeys", enableMouseWheel: "enableMouseWheel", allowCaretMode: "allowCaretMode", autoFill: "autoFill", focusedDate: "focusedDate", value: "value", format: "format", twoDigitYearMax: "twoDigitYearMax", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", tabindex: "tabindex", tabIndex: "tabIndex", disabledDates: "disabledDates", title: "title", subtitle: "subtitle", rangeValidation: "rangeValidation", disabledDatesValidation: "disabledDatesValidation", weekNumber: "weekNumber", size: "size", rounded: "rounded", fillMode: "fillMode", adaptiveMode: "adaptiveMode" }, outputs: { valueChange: "valueChange", onFocus: "focus", onBlur: "blur", open: "open", close: "close" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-datepicker": "this.wrapperClasses", "class.k-input": "this.wrapperClasses", "class.k-disabled": "this.disabledClass" } }, providers: [
|
|
9696
|
+
DatePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: DatePickerComponent, selector: "kendo-datepicker", inputs: { focusableId: "focusableId", cellTemplateRef: ["cellTemplate", "cellTemplateRef"], inputAttributes: "inputAttributes", monthCellTemplateRef: ["monthCellTemplate", "monthCellTemplateRef"], yearCellTemplateRef: ["yearCellTemplate", "yearCellTemplateRef"], decadeCellTemplateRef: ["decadeCellTemplate", "decadeCellTemplateRef"], centuryCellTemplateRef: ["centuryCellTemplate", "centuryCellTemplateRef"], weekNumberTemplateRef: ["weekNumberTemplate", "weekNumberTemplateRef"], headerTitleTemplateRef: ["headerTitleTemplate", "headerTitleTemplateRef"], headerTemplateRef: ["headerTemplate", "headerTemplateRef"], footerTemplateRef: ["footerTemplate", "footerTemplateRef"], footer: "footer", navigationItemTemplateRef: ["navigationItemTemplate", "navigationItemTemplateRef"], weekDaysFormat: "weekDaysFormat", showOtherMonthDays: "showOtherMonthDays", activeView: "activeView", bottomView: "bottomView", topView: "topView", calendarType: "calendarType", animateCalendarNavigation: "animateCalendarNavigation", disabled: "disabled", readonly: "readonly", readOnlyInput: "readOnlyInput", popupSettings: "popupSettings", navigation: "navigation", min: "min", max: "max", incompleteDateValidation: "incompleteDateValidation", autoCorrectParts: "autoCorrectParts", autoSwitchParts: "autoSwitchParts", autoSwitchKeys: "autoSwitchKeys", enableMouseWheel: "enableMouseWheel", allowCaretMode: "allowCaretMode", autoFill: "autoFill", focusedDate: "focusedDate", value: "value", format: "format", twoDigitYearMax: "twoDigitYearMax", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", tabindex: "tabindex", tabIndex: "tabIndex", disabledDates: "disabledDates", title: "title", subtitle: "subtitle", rangeValidation: "rangeValidation", disabledDatesValidation: "disabledDatesValidation", weekNumber: "weekNumber", size: "size", rounded: "rounded", fillMode: "fillMode", adaptiveMode: "adaptiveMode" }, outputs: { valueChange: "valueChange", onFocus: "focus", onBlur: "blur", open: "open", close: "close" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-datepicker": "this.wrapperClasses", "class.k-input": "this.wrapperClasses", "class.k-disabled": "this.disabledClass" } }, providers: [
|
|
9633
9697
|
{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => DatePickerComponent), multi: true },
|
|
9634
9698
|
{ provide: NG_VALIDATORS, useExisting: forwardRef(() => DatePickerComponent), multi: true },
|
|
9635
9699
|
{ provide: KendoInput, useExisting: forwardRef(() => DatePickerComponent) },
|
|
@@ -9668,6 +9732,7 @@ DatePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
9668
9732
|
[readonly]="readonly || readOnlyInput"
|
|
9669
9733
|
[ariaReadOnly]="readonly"
|
|
9670
9734
|
[tabindex]="tabindex"
|
|
9735
|
+
[isRequired]="isControlRequired"
|
|
9671
9736
|
[title]="title"
|
|
9672
9737
|
[focusableId]="focusableId"
|
|
9673
9738
|
[format]="format"
|
|
@@ -9686,6 +9751,7 @@ DatePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
9686
9751
|
fillMode="none"
|
|
9687
9752
|
rounded="none"
|
|
9688
9753
|
size="none"
|
|
9754
|
+
[inputAttributes]="inputAttributes"
|
|
9689
9755
|
[value]="value"
|
|
9690
9756
|
(valueChange)="handleInputChange($event)"
|
|
9691
9757
|
(click)="handleDateInputClick()"
|
|
@@ -9802,7 +9868,7 @@ DatePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
9802
9868
|
</kendo-calendar-messages>
|
|
9803
9869
|
</kendo-calendar>
|
|
9804
9870
|
</ng-template>
|
|
9805
|
-
`, isInline: true, components: [{ type: DateInputComponent, selector: "kendo-dateinput", inputs: ["focusableId", "pickerType", "disabled", "readonly", "title", "tabindex", "role", "ariaReadOnly", "tabIndex", "format", "formatPlaceholder", "placeholder", "steps", "max", "min", "rangeValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "allowCaretMode", "autoFill", "incompleteDateValidation", "twoDigitYearMax", "enableMouseWheel", "value", "spinners", "isPopupOpen", "hasPopup", "size", "rounded", "fillMode"], outputs: ["valueChange", "valueUpdate", "focus", "blur"], exportAs: ["kendo-dateinput"] }, { type: i7.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: i8.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { type: i9.ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["title", "subtitle", "items", "cssClass", "animation", "expanded", "titleId"], outputs: ["expandedChange", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { type: i10.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: CalendarComponent, selector: "kendo-calendar", inputs: ["showOtherMonthDays", "id", "focusedDate", "min", "max", "rangeValidation", "weekDaysFormat", "footer", "selection", "value", "disabled", "tabindex", "tabIndex", "disabledDates", "navigation", "activeView", "bottomView", "topView", "type", "animateNavigation", "weekNumber", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "navigationItemTemplate", "size"], outputs: ["activeViewChange", "navigate", "activeViewDateChange", "blur", "focus", "valueChange"], exportAs: ["kendo-calendar"] }, { type: CalendarCustomMessagesComponent, selector: "kendo-calendar-messages" }], directives: [{ type: DatePickerLocalizedMessagesDirective, selector: "[kendoDatePickerLocalizedMessages]" }, { type: i8.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i9.ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
9871
|
+
`, isInline: true, components: [{ type: DateInputComponent, selector: "kendo-dateinput", inputs: ["focusableId", "pickerType", "disabled", "readonly", "title", "tabindex", "role", "ariaReadOnly", "tabIndex", "isRequired", "format", "formatPlaceholder", "placeholder", "steps", "max", "min", "rangeValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "allowCaretMode", "autoFill", "incompleteDateValidation", "twoDigitYearMax", "enableMouseWheel", "value", "spinners", "isPopupOpen", "hasPopup", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "valueUpdate", "focus", "blur"], exportAs: ["kendo-dateinput"] }, { type: i7.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: i8.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { type: i9.ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["title", "subtitle", "items", "cssClass", "animation", "expanded", "titleId"], outputs: ["expandedChange", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { type: i10.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: CalendarComponent, selector: "kendo-calendar", inputs: ["showOtherMonthDays", "id", "focusedDate", "min", "max", "rangeValidation", "weekDaysFormat", "footer", "selection", "value", "disabled", "tabindex", "tabIndex", "disabledDates", "navigation", "activeView", "bottomView", "topView", "type", "animateNavigation", "weekNumber", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "navigationItemTemplate", "size"], outputs: ["activeViewChange", "navigate", "activeViewDateChange", "blur", "focus", "valueChange"], exportAs: ["kendo-calendar"] }, { type: CalendarCustomMessagesComponent, selector: "kendo-calendar-messages" }], directives: [{ type: DatePickerLocalizedMessagesDirective, selector: "[kendoDatePickerLocalizedMessages]" }, { type: i8.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i9.ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
9806
9872
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DatePickerComponent, decorators: [{
|
|
9807
9873
|
type: Component,
|
|
9808
9874
|
args: [{
|
|
@@ -9849,6 +9915,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9849
9915
|
[readonly]="readonly || readOnlyInput"
|
|
9850
9916
|
[ariaReadOnly]="readonly"
|
|
9851
9917
|
[tabindex]="tabindex"
|
|
9918
|
+
[isRequired]="isControlRequired"
|
|
9852
9919
|
[title]="title"
|
|
9853
9920
|
[focusableId]="focusableId"
|
|
9854
9921
|
[format]="format"
|
|
@@ -9867,6 +9934,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9867
9934
|
fillMode="none"
|
|
9868
9935
|
rounded="none"
|
|
9869
9936
|
size="none"
|
|
9937
|
+
[inputAttributes]="inputAttributes"
|
|
9870
9938
|
[value]="value"
|
|
9871
9939
|
(valueChange)="handleInputChange($event)"
|
|
9872
9940
|
(click)="handleDateInputClick()"
|
|
@@ -10010,6 +10078,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
10010
10078
|
}], cellTemplateRef: [{
|
|
10011
10079
|
type: Input,
|
|
10012
10080
|
args: ['cellTemplate']
|
|
10081
|
+
}], inputAttributes: [{
|
|
10082
|
+
type: Input
|
|
10013
10083
|
}], monthCellTemplate: [{
|
|
10014
10084
|
type: ContentChild,
|
|
10015
10085
|
args: [MonthCellTemplateDirective, { static: false }]
|
|
@@ -12443,10 +12513,19 @@ class TimePickerComponent {
|
|
|
12443
12513
|
get timeSelector() {
|
|
12444
12514
|
return this.pickerService.timeSelector;
|
|
12445
12515
|
}
|
|
12516
|
+
/**
|
|
12517
|
+
* @hidden
|
|
12518
|
+
*/
|
|
12519
|
+
get isControlRequired() {
|
|
12520
|
+
return isControlRequired(this.control);
|
|
12521
|
+
}
|
|
12446
12522
|
get adaptiveAcceptButton() {
|
|
12447
12523
|
return this.actionSheet.element.nativeElement.querySelector(ACCEPT_BUTTON_SELECTOR$1);
|
|
12448
12524
|
}
|
|
12449
12525
|
;
|
|
12526
|
+
get inputElement() {
|
|
12527
|
+
return this.wrapper.nativeElement.querySelector('input');
|
|
12528
|
+
}
|
|
12450
12529
|
/**
|
|
12451
12530
|
* @hidden
|
|
12452
12531
|
* Used by the TextBoxContainer to determine if the component is empty
|
|
@@ -12949,7 +13028,7 @@ class TimePickerComponent {
|
|
|
12949
13028
|
}
|
|
12950
13029
|
}
|
|
12951
13030
|
TimePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TimePickerComponent, deps: [{ token: BusViewService }, { token: i0.NgZone }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i1$2.PopupService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: PickerService }, { token: i1.IntlService }, { token: TOUCH_ENABLED, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
12952
|
-
TimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TimePickerComponent, selector: "kendo-timepicker", inputs: { focusableId: "focusableId", disabled: "disabled", readonly: "readonly", readOnlyInput: "readOnlyInput", format: "format", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", min: "min", max: "max", incompleteDateValidation: "incompleteDateValidation", autoCorrectParts: "autoCorrectParts", autoSwitchParts: "autoSwitchParts", autoSwitchKeys: "autoSwitchKeys", enableMouseWheel: "enableMouseWheel", allowCaretMode: "allowCaretMode", cancelButton: "cancelButton", nowButton: "nowButton", steps: "steps", popupSettings: "popupSettings", tabindex: "tabindex", tabIndex: "tabIndex", title: "title", subtitle: "subtitle", rangeValidation: "rangeValidation", adaptiveMode: "adaptiveMode", value: "value", size: "size", rounded: "rounded", fillMode: "fillMode" }, outputs: { valueChange: "valueChange", onFocus: "focus", onBlur: "blur", open: "open", close: "close" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-timepicker": "this.wrapperClasses", "class.k-input": "this.wrapperClasses", "class.k-disabled": "this.disabledClass" } }, providers: [
|
|
13031
|
+
TimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TimePickerComponent, selector: "kendo-timepicker", inputs: { focusableId: "focusableId", disabled: "disabled", readonly: "readonly", readOnlyInput: "readOnlyInput", format: "format", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", min: "min", max: "max", incompleteDateValidation: "incompleteDateValidation", autoCorrectParts: "autoCorrectParts", autoSwitchParts: "autoSwitchParts", autoSwitchKeys: "autoSwitchKeys", enableMouseWheel: "enableMouseWheel", allowCaretMode: "allowCaretMode", cancelButton: "cancelButton", nowButton: "nowButton", steps: "steps", popupSettings: "popupSettings", tabindex: "tabindex", tabIndex: "tabIndex", title: "title", subtitle: "subtitle", rangeValidation: "rangeValidation", adaptiveMode: "adaptiveMode", value: "value", size: "size", rounded: "rounded", fillMode: "fillMode", inputAttributes: "inputAttributes" }, outputs: { valueChange: "valueChange", onFocus: "focus", onBlur: "blur", open: "open", close: "close" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-timepicker": "this.wrapperClasses", "class.k-input": "this.wrapperClasses", "class.k-disabled": "this.disabledClass" } }, providers: [
|
|
12953
13032
|
{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => TimePickerComponent), multi: true },
|
|
12954
13033
|
{ provide: NG_VALIDATORS, useExisting: forwardRef(() => TimePickerComponent), multi: true },
|
|
12955
13034
|
{ provide: KendoInput, useExisting: forwardRef(() => TimePickerComponent) },
|
|
@@ -13025,7 +13104,9 @@ TimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
13025
13104
|
[size]="size"
|
|
13026
13105
|
[steps]="steps"
|
|
13027
13106
|
[tabindex]="!show ? tabindex : -1"
|
|
13107
|
+
[isRequired]="isControlRequired"
|
|
13028
13108
|
[title]="title"
|
|
13109
|
+
[inputAttributes]="inputAttributes"
|
|
13029
13110
|
[value]="value"
|
|
13030
13111
|
(valueChange)="handleInputChange($event)"
|
|
13031
13112
|
(click)="handleDateInputClick()"
|
|
@@ -13154,7 +13235,7 @@ TimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
13154
13235
|
</kendo-timeselector-messages>
|
|
13155
13236
|
</kendo-timeselector>
|
|
13156
13237
|
</ng-template>
|
|
13157
|
-
`, isInline: true, components: [{ type: DateInputComponent, selector: "kendo-dateinput", inputs: ["focusableId", "pickerType", "disabled", "readonly", "title", "tabindex", "role", "ariaReadOnly", "tabIndex", "format", "formatPlaceholder", "placeholder", "steps", "max", "min", "rangeValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "allowCaretMode", "autoFill", "incompleteDateValidation", "twoDigitYearMax", "enableMouseWheel", "value", "spinners", "isPopupOpen", "hasPopup", "size", "rounded", "fillMode"], outputs: ["valueChange", "valueUpdate", "focus", "blur"], exportAs: ["kendo-dateinput"] }, { type: i7.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: i8.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { type: i9.ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["title", "subtitle", "items", "cssClass", "animation", "expanded", "titleId"], outputs: ["expandedChange", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { type: i10.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: TimeSelectorComponent, selector: "kendo-timeselector", inputs: ["format", "min", "max", "cancelButton", "setButton", "nowButton", "disabled", "isAdaptiveEnabled", "isDateTimePicker", "steps", "value"], outputs: ["valueChange", "valueReject", "tabOutLastPart"], exportAs: ["kendo-timeselector"] }, { type: TimeSelectorCustomMessagesComponent, selector: "kendo-timeselector-messages" }], directives: [{ type: TimePickerLocalizedMessagesDirective, selector: "[kendoTimePickerLocalizedMessages]" }, { type: i8.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i9.ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
13238
|
+
`, isInline: true, components: [{ type: DateInputComponent, selector: "kendo-dateinput", inputs: ["focusableId", "pickerType", "disabled", "readonly", "title", "tabindex", "role", "ariaReadOnly", "tabIndex", "isRequired", "format", "formatPlaceholder", "placeholder", "steps", "max", "min", "rangeValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "allowCaretMode", "autoFill", "incompleteDateValidation", "twoDigitYearMax", "enableMouseWheel", "value", "spinners", "isPopupOpen", "hasPopup", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "valueUpdate", "focus", "blur"], exportAs: ["kendo-dateinput"] }, { type: i7.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: i8.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { type: i9.ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["title", "subtitle", "items", "cssClass", "animation", "expanded", "titleId"], outputs: ["expandedChange", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { type: i10.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: TimeSelectorComponent, selector: "kendo-timeselector", inputs: ["format", "min", "max", "cancelButton", "setButton", "nowButton", "disabled", "isAdaptiveEnabled", "isDateTimePicker", "steps", "value"], outputs: ["valueChange", "valueReject", "tabOutLastPart"], exportAs: ["kendo-timeselector"] }, { type: TimeSelectorCustomMessagesComponent, selector: "kendo-timeselector-messages" }], directives: [{ type: TimePickerLocalizedMessagesDirective, selector: "[kendoTimePickerLocalizedMessages]" }, { type: i8.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i9.ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
13158
13239
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TimePickerComponent, decorators: [{
|
|
13159
13240
|
type: Component,
|
|
13160
13241
|
args: [{
|
|
@@ -13238,7 +13319,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
13238
13319
|
[size]="size"
|
|
13239
13320
|
[steps]="steps"
|
|
13240
13321
|
[tabindex]="!show ? tabindex : -1"
|
|
13322
|
+
[isRequired]="isControlRequired"
|
|
13241
13323
|
[title]="title"
|
|
13324
|
+
[inputAttributes]="inputAttributes"
|
|
13242
13325
|
[value]="value"
|
|
13243
13326
|
(valueChange)="handleInputChange($event)"
|
|
13244
13327
|
(click)="handleDateInputClick()"
|
|
@@ -13447,6 +13530,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
13447
13530
|
type: Input
|
|
13448
13531
|
}], fillMode: [{
|
|
13449
13532
|
type: Input
|
|
13533
|
+
}], inputAttributes: [{
|
|
13534
|
+
type: Input
|
|
13450
13535
|
}], valueChange: [{
|
|
13451
13536
|
type: Output
|
|
13452
13537
|
}], onFocus: [{
|
|
@@ -13568,7 +13653,7 @@ const DATE_TAB_BUTTON_SELECTOR = '.k-button.k-date-tab';
|
|
|
13568
13653
|
* Represents the [Kendo UI DateTimePicker component for Angular]({% slug overview_datetimepicker %}).
|
|
13569
13654
|
*/
|
|
13570
13655
|
class DateTimePickerComponent {
|
|
13571
|
-
constructor(popupService, intl, cdr, pickerService, ngZone, wrapper, touchEnabled, localization, disabledDatesService, renderer) {
|
|
13656
|
+
constructor(popupService, intl, cdr, pickerService, ngZone, wrapper, touchEnabled, localization, disabledDatesService, renderer, injector) {
|
|
13572
13657
|
this.popupService = popupService;
|
|
13573
13658
|
this.intl = intl;
|
|
13574
13659
|
this.cdr = cdr;
|
|
@@ -13579,6 +13664,7 @@ class DateTimePickerComponent {
|
|
|
13579
13664
|
this.localization = localization;
|
|
13580
13665
|
this.disabledDatesService = disabledDatesService;
|
|
13581
13666
|
this.renderer = renderer;
|
|
13667
|
+
this.injector = injector;
|
|
13582
13668
|
/**
|
|
13583
13669
|
* @hidden
|
|
13584
13670
|
*/
|
|
@@ -14164,6 +14250,19 @@ class DateTimePickerComponent {
|
|
|
14164
14250
|
return this.popupRef?.popup.instance.container.nativeElement.querySelector(DATE_TAB_BUTTON_SELECTOR);
|
|
14165
14251
|
}
|
|
14166
14252
|
;
|
|
14253
|
+
/**
|
|
14254
|
+
* @hidden
|
|
14255
|
+
*/
|
|
14256
|
+
get formControl() {
|
|
14257
|
+
const ngControl = this.injector.get(NgControl, null);
|
|
14258
|
+
return ngControl?.control || null;
|
|
14259
|
+
}
|
|
14260
|
+
/**
|
|
14261
|
+
* @hidden
|
|
14262
|
+
*/
|
|
14263
|
+
get isControlRequired() {
|
|
14264
|
+
return isControlRequired(this.formControl);
|
|
14265
|
+
}
|
|
14167
14266
|
ngOnInit() {
|
|
14168
14267
|
this.subscriptions.add(this.pickerService.onFocus
|
|
14169
14268
|
// detect popup changes to disable the inactive view mark-up when the popup is open
|
|
@@ -14813,8 +14912,8 @@ class DateTimePickerComponent {
|
|
|
14813
14912
|
}
|
|
14814
14913
|
}
|
|
14815
14914
|
}
|
|
14816
|
-
DateTimePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateTimePickerComponent, deps: [{ token: i1$2.PopupService }, { token: i1.IntlService }, { token: i0.ChangeDetectorRef }, { token: PickerService }, { token: i0.NgZone }, { token: i0.ElementRef }, { token: TOUCH_ENABLED }, { token: i1$1.LocalizationService }, { token: DisabledDatesService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
14817
|
-
DateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: DateTimePickerComponent, selector: "kendo-datetimepicker", inputs: { focusableId: "focusableId", weekDaysFormat: "weekDaysFormat", showOtherMonthDays: "showOtherMonthDays", value: "value", format: "format", twoDigitYearMax: "twoDigitYearMax", tabindex: "tabindex", disabledDates: "disabledDates", popupSettings: "popupSettings", title: "title", subtitle: "subtitle", disabled: "disabled", readonly: "readonly", readOnlyInput: "readOnlyInput", cancelButton: "cancelButton", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", steps: "steps", focusedDate: "focusedDate", calendarType: "calendarType", animateCalendarNavigation: "animateCalendarNavigation", weekNumber: "weekNumber", min: "min", max: "max", rangeValidation: "rangeValidation", disabledDatesValidation: "disabledDatesValidation", incompleteDateValidation: "incompleteDateValidation", autoCorrectParts: "autoCorrectParts", autoSwitchParts: "autoSwitchParts", autoSwitchKeys: "autoSwitchKeys", enableMouseWheel: "enableMouseWheel", allowCaretMode: "allowCaretMode", autoFill: "autoFill", adaptiveMode: "adaptiveMode", defaultTab: "defaultTab", size: "size", rounded: "rounded", fillMode: "fillMode", headerTemplateRef: ["headerTemplate", "headerTemplateRef"], footerTemplateRef: ["footerTemplate", "footerTemplateRef"], footer: "footer" }, outputs: { valueChange: "valueChange", open: "open", close: "close", onFocus: "focus", onBlur: "blur" }, host: { properties: { "class.k-datetimepicker": "this.hostClasses", "class.k-input": "this.hostClasses", "class.k-disabled": "this.disabledClass", "class.k-readonly": "this.readonly" } }, providers: [
|
|
14915
|
+
DateTimePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateTimePickerComponent, deps: [{ token: i1$2.PopupService }, { token: i1.IntlService }, { token: i0.ChangeDetectorRef }, { token: PickerService }, { token: i0.NgZone }, { token: i0.ElementRef }, { token: TOUCH_ENABLED }, { token: i1$1.LocalizationService }, { token: DisabledDatesService }, { token: i0.Renderer2 }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
14916
|
+
DateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: DateTimePickerComponent, selector: "kendo-datetimepicker", inputs: { focusableId: "focusableId", weekDaysFormat: "weekDaysFormat", showOtherMonthDays: "showOtherMonthDays", value: "value", format: "format", twoDigitYearMax: "twoDigitYearMax", tabindex: "tabindex", disabledDates: "disabledDates", popupSettings: "popupSettings", title: "title", subtitle: "subtitle", disabled: "disabled", readonly: "readonly", readOnlyInput: "readOnlyInput", cancelButton: "cancelButton", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", steps: "steps", focusedDate: "focusedDate", calendarType: "calendarType", animateCalendarNavigation: "animateCalendarNavigation", weekNumber: "weekNumber", min: "min", max: "max", rangeValidation: "rangeValidation", disabledDatesValidation: "disabledDatesValidation", incompleteDateValidation: "incompleteDateValidation", autoCorrectParts: "autoCorrectParts", autoSwitchParts: "autoSwitchParts", autoSwitchKeys: "autoSwitchKeys", enableMouseWheel: "enableMouseWheel", allowCaretMode: "allowCaretMode", autoFill: "autoFill", adaptiveMode: "adaptiveMode", inputAttributes: "inputAttributes", defaultTab: "defaultTab", size: "size", rounded: "rounded", fillMode: "fillMode", headerTemplateRef: ["headerTemplate", "headerTemplateRef"], footerTemplateRef: ["footerTemplate", "footerTemplateRef"], footer: "footer" }, outputs: { valueChange: "valueChange", open: "open", close: "close", onFocus: "focus", onBlur: "blur" }, host: { properties: { "class.k-datetimepicker": "this.hostClasses", "class.k-input": "this.hostClasses", "class.k-disabled": "this.disabledClass", "class.k-readonly": "this.readonly" } }, providers: [
|
|
14818
14917
|
PickerService,
|
|
14819
14918
|
LocalizationService,
|
|
14820
14919
|
DisabledDatesService,
|
|
@@ -14910,9 +15009,11 @@ DateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
14910
15009
|
[ariaReadOnly]="readonly"
|
|
14911
15010
|
[steps]="steps"
|
|
14912
15011
|
[tabindex]="tabindex"
|
|
15012
|
+
[isRequired]="isControlRequired"
|
|
14913
15013
|
[title]="title"
|
|
14914
15014
|
pickerType="datetimepicker"
|
|
14915
15015
|
hasPopup="dialog"
|
|
15016
|
+
[inputAttributes]="inputAttributes"
|
|
14916
15017
|
[isPopupOpen]="isOpen"
|
|
14917
15018
|
(valueChange)="handleInputValueChange($event)"
|
|
14918
15019
|
[kendoEventsOutsideAngular]="{
|
|
@@ -15192,7 +15293,7 @@ DateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
15192
15293
|
</div>
|
|
15193
15294
|
</div>
|
|
15194
15295
|
</ng-template>
|
|
15195
|
-
`, isInline: true, components: [{ type: DateInputComponent, selector: "kendo-dateinput", inputs: ["focusableId", "pickerType", "disabled", "readonly", "title", "tabindex", "role", "ariaReadOnly", "tabIndex", "format", "formatPlaceholder", "placeholder", "steps", "max", "min", "rangeValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "allowCaretMode", "autoFill", "incompleteDateValidation", "twoDigitYearMax", "enableMouseWheel", "value", "spinners", "isPopupOpen", "hasPopup", "size", "rounded", "fillMode"], outputs: ["valueChange", "valueUpdate", "focus", "blur"], exportAs: ["kendo-dateinput"] }, { type: i7.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: i8.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { type: i9.ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["title", "subtitle", "items", "cssClass", "animation", "expanded", "titleId"], outputs: ["expandedChange", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { type: i10.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: CalendarComponent, selector: "kendo-calendar", inputs: ["showOtherMonthDays", "id", "focusedDate", "min", "max", "rangeValidation", "weekDaysFormat", "footer", "selection", "value", "disabled", "tabindex", "tabIndex", "disabledDates", "navigation", "activeView", "bottomView", "topView", "type", "animateNavigation", "weekNumber", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "navigationItemTemplate", "size"], outputs: ["activeViewChange", "navigate", "activeViewDateChange", "blur", "focus", "valueChange"], exportAs: ["kendo-calendar"] }, { type: CalendarCustomMessagesComponent, selector: "kendo-calendar-messages" }, { type: TimeSelectorComponent, selector: "kendo-timeselector", inputs: ["format", "min", "max", "cancelButton", "setButton", "nowButton", "disabled", "isAdaptiveEnabled", "isDateTimePicker", "steps", "value"], outputs: ["valueChange", "valueReject", "tabOutLastPart"], exportAs: ["kendo-timeselector"] }, { type: TimeSelectorCustomMessagesComponent, selector: "kendo-timeselector-messages" }], directives: [{ type: LocalizedMessagesDirective, selector: "[kendoDateTimePickerLocalizedMessages]" }, { type: i8.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i9.ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
15296
|
+
`, isInline: true, components: [{ type: DateInputComponent, selector: "kendo-dateinput", inputs: ["focusableId", "pickerType", "disabled", "readonly", "title", "tabindex", "role", "ariaReadOnly", "tabIndex", "isRequired", "format", "formatPlaceholder", "placeholder", "steps", "max", "min", "rangeValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "allowCaretMode", "autoFill", "incompleteDateValidation", "twoDigitYearMax", "enableMouseWheel", "value", "spinners", "isPopupOpen", "hasPopup", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "valueUpdate", "focus", "blur"], exportAs: ["kendo-dateinput"] }, { type: i7.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: i8.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { type: i9.ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["title", "subtitle", "items", "cssClass", "animation", "expanded", "titleId"], outputs: ["expandedChange", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { type: i10.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: CalendarComponent, selector: "kendo-calendar", inputs: ["showOtherMonthDays", "id", "focusedDate", "min", "max", "rangeValidation", "weekDaysFormat", "footer", "selection", "value", "disabled", "tabindex", "tabIndex", "disabledDates", "navigation", "activeView", "bottomView", "topView", "type", "animateNavigation", "weekNumber", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "navigationItemTemplate", "size"], outputs: ["activeViewChange", "navigate", "activeViewDateChange", "blur", "focus", "valueChange"], exportAs: ["kendo-calendar"] }, { type: CalendarCustomMessagesComponent, selector: "kendo-calendar-messages" }, { type: TimeSelectorComponent, selector: "kendo-timeselector", inputs: ["format", "min", "max", "cancelButton", "setButton", "nowButton", "disabled", "isAdaptiveEnabled", "isDateTimePicker", "steps", "value"], outputs: ["valueChange", "valueReject", "tabOutLastPart"], exportAs: ["kendo-timeselector"] }, { type: TimeSelectorCustomMessagesComponent, selector: "kendo-timeselector-messages" }], directives: [{ type: LocalizedMessagesDirective, selector: "[kendoDateTimePickerLocalizedMessages]" }, { type: i8.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i9.ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
15196
15297
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateTimePickerComponent, decorators: [{
|
|
15197
15298
|
type: Component,
|
|
15198
15299
|
args: [{
|
|
@@ -15296,9 +15397,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
15296
15397
|
[ariaReadOnly]="readonly"
|
|
15297
15398
|
[steps]="steps"
|
|
15298
15399
|
[tabindex]="tabindex"
|
|
15400
|
+
[isRequired]="isControlRequired"
|
|
15299
15401
|
[title]="title"
|
|
15300
15402
|
pickerType="datetimepicker"
|
|
15301
15403
|
hasPopup="dialog"
|
|
15404
|
+
[inputAttributes]="inputAttributes"
|
|
15302
15405
|
[isPopupOpen]="isOpen"
|
|
15303
15406
|
(valueChange)="handleInputValueChange($event)"
|
|
15304
15407
|
[kendoEventsOutsideAngular]="{
|
|
@@ -15583,7 +15686,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
15583
15686
|
}], ctorParameters: function () { return [{ type: i1$2.PopupService }, { type: i1.IntlService }, { type: i0.ChangeDetectorRef }, { type: PickerService }, { type: i0.NgZone }, { type: i0.ElementRef }, { type: undefined, decorators: [{
|
|
15584
15687
|
type: Inject,
|
|
15585
15688
|
args: [TOUCH_ENABLED]
|
|
15586
|
-
}] }, { type: i1$1.LocalizationService }, { type: DisabledDatesService }, { type: i0.Renderer2 }]; }, propDecorators: { hostClasses: [{
|
|
15689
|
+
}] }, { type: i1$1.LocalizationService }, { type: DisabledDatesService }, { type: i0.Renderer2 }, { type: i0.Injector }]; }, propDecorators: { hostClasses: [{
|
|
15587
15690
|
type: HostBinding,
|
|
15588
15691
|
args: ['class.k-datetimepicker']
|
|
15589
15692
|
}, {
|
|
@@ -15666,6 +15769,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
15666
15769
|
type: Input
|
|
15667
15770
|
}], adaptiveMode: [{
|
|
15668
15771
|
type: Input
|
|
15772
|
+
}], inputAttributes: [{
|
|
15773
|
+
type: Input
|
|
15669
15774
|
}], valueChange: [{
|
|
15670
15775
|
type: Output
|
|
15671
15776
|
}], open: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dateinputs",
|
|
3
|
-
"version": "15.
|
|
3
|
+
"version": "15.5.0-develop.2",
|
|
4
4
|
"description": "Kendo UI for Angular Date Inputs Package - Everything you need to add date selection functionality to apps (DatePicker, TimePicker, DateInput, DateRangePicker, DateTimePicker, Calendar, and MultiViewCalendar).",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -34,20 +34,20 @@
|
|
|
34
34
|
"@angular/forms": "13 - 17",
|
|
35
35
|
"@angular/platform-browser": "13 - 17",
|
|
36
36
|
"@progress/kendo-licensing": "^1.0.2",
|
|
37
|
-
"@progress/kendo-angular-common": "15.
|
|
38
|
-
"@progress/kendo-angular-intl": "15.
|
|
39
|
-
"@progress/kendo-angular-l10n": "15.
|
|
40
|
-
"@progress/kendo-angular-icons": "15.
|
|
41
|
-
"@progress/kendo-angular-popup": "15.
|
|
42
|
-
"@progress/kendo-angular-navigation": "15.
|
|
37
|
+
"@progress/kendo-angular-common": "15.5.0-develop.2",
|
|
38
|
+
"@progress/kendo-angular-intl": "15.5.0-develop.2",
|
|
39
|
+
"@progress/kendo-angular-l10n": "15.5.0-develop.2",
|
|
40
|
+
"@progress/kendo-angular-icons": "15.5.0-develop.2",
|
|
41
|
+
"@progress/kendo-angular-popup": "15.5.0-develop.2",
|
|
42
|
+
"@progress/kendo-angular-navigation": "15.5.0-develop.2",
|
|
43
43
|
"rxjs": "^6.5.3 || ^7.0.0",
|
|
44
|
-
"@progress/kendo-angular-buttons": "15.
|
|
45
|
-
"@progress/kendo-angular-inputs": "15.
|
|
46
|
-
"@progress/kendo-angular-label": "15.
|
|
44
|
+
"@progress/kendo-angular-buttons": "15.5.0-develop.2",
|
|
45
|
+
"@progress/kendo-angular-inputs": "15.5.0-develop.2",
|
|
46
|
+
"@progress/kendo-angular-label": "15.5.0-develop.2"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"tslib": "^2.3.1",
|
|
50
|
-
"@progress/kendo-angular-schematics": "15.
|
|
50
|
+
"@progress/kendo-angular-schematics": "15.5.0-develop.2",
|
|
51
51
|
"@progress/kendo-common": "^0.2.0",
|
|
52
52
|
"@progress/kendo-date-math": "^1.1.0",
|
|
53
53
|
"@progress/kendo-dateinputs-common": "^0.3.2"
|
|
@@ -300,6 +300,12 @@ export declare class TimePickerComponent implements ControlValueAccessor, OnInit
|
|
|
300
300
|
*/
|
|
301
301
|
set fillMode(fillMode: DateInputFillMode);
|
|
302
302
|
get fillMode(): DateInputFillMode;
|
|
303
|
+
/**
|
|
304
|
+
* Sets the HTML attributes of the inner focusable input element. Attributes which are essential for certain component functionalities cannot be changed.
|
|
305
|
+
*/
|
|
306
|
+
inputAttributes: {
|
|
307
|
+
[key: string]: string;
|
|
308
|
+
};
|
|
303
309
|
/**
|
|
304
310
|
* Fires each time the user selects a new value
|
|
305
311
|
* ([see example](slug:events_timepicker)).
|
|
@@ -347,7 +353,12 @@ export declare class TimePickerComponent implements ControlValueAccessor, OnInit
|
|
|
347
353
|
set show(show: boolean);
|
|
348
354
|
get dateInput(): DateInputComponent;
|
|
349
355
|
get timeSelector(): TimeSelectorComponent;
|
|
356
|
+
/**
|
|
357
|
+
* @hidden
|
|
358
|
+
*/
|
|
359
|
+
get isControlRequired(): boolean;
|
|
350
360
|
private get adaptiveAcceptButton();
|
|
361
|
+
private get inputElement();
|
|
351
362
|
private onControlChange;
|
|
352
363
|
private onControlTouched;
|
|
353
364
|
private onValidatorChange;
|
|
@@ -534,5 +545,5 @@ export declare class TimePickerComponent implements ControlValueAccessor, OnInit
|
|
|
534
545
|
private handleDateCompletenessChange;
|
|
535
546
|
private setComponentClasses;
|
|
536
547
|
static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerComponent, [null, null, null, null, null, null, null, null, null, null, { optional: true; }]>;
|
|
537
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TimePickerComponent, "kendo-timepicker", ["kendo-timepicker"], { "focusableId": "focusableId"; "disabled": "disabled"; "readonly": "readonly"; "readOnlyInput": "readOnlyInput"; "format": "format"; "formatPlaceholder": "formatPlaceholder"; "placeholder": "placeholder"; "min": "min"; "max": "max"; "incompleteDateValidation": "incompleteDateValidation"; "autoCorrectParts": "autoCorrectParts"; "autoSwitchParts": "autoSwitchParts"; "autoSwitchKeys": "autoSwitchKeys"; "enableMouseWheel": "enableMouseWheel"; "allowCaretMode": "allowCaretMode"; "cancelButton": "cancelButton"; "nowButton": "nowButton"; "steps": "steps"; "popupSettings": "popupSettings"; "tabindex": "tabindex"; "tabIndex": "tabIndex"; "title": "title"; "subtitle": "subtitle"; "rangeValidation": "rangeValidation"; "adaptiveMode": "adaptiveMode"; "value": "value"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; }, { "valueChange": "valueChange"; "onFocus": "focus"; "onBlur": "blur"; "open": "open"; "close": "close"; }, never, never>;
|
|
548
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TimePickerComponent, "kendo-timepicker", ["kendo-timepicker"], { "focusableId": "focusableId"; "disabled": "disabled"; "readonly": "readonly"; "readOnlyInput": "readOnlyInput"; "format": "format"; "formatPlaceholder": "formatPlaceholder"; "placeholder": "placeholder"; "min": "min"; "max": "max"; "incompleteDateValidation": "incompleteDateValidation"; "autoCorrectParts": "autoCorrectParts"; "autoSwitchParts": "autoSwitchParts"; "autoSwitchKeys": "autoSwitchKeys"; "enableMouseWheel": "enableMouseWheel"; "allowCaretMode": "allowCaretMode"; "cancelButton": "cancelButton"; "nowButton": "nowButton"; "steps": "steps"; "popupSettings": "popupSettings"; "tabindex": "tabindex"; "tabIndex": "tabIndex"; "title": "title"; "subtitle": "subtitle"; "rangeValidation": "rangeValidation"; "adaptiveMode": "adaptiveMode"; "value": "value"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "inputAttributes": "inputAttributes"; }, { "valueChange": "valueChange"; "onFocus": "focus"; "onBlur": "blur"; "open": "open"; "close": "close"; }, never, never>;
|
|
538
549
|
}
|