@progress/kendo-vue-scheduler 7.0.1-develop.2 → 7.0.1-develop.4
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/dist/cdn/js/kendo-vue-scheduler.js +1 -1
- package/index.d.mts +214 -197
- package/index.d.ts +214 -197
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +11 -11
package/index.d.mts
CHANGED
|
@@ -5,6 +5,9 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
+
import { CheckboxBlurEvent } from '@progress/kendo-vue-inputs';
|
|
9
|
+
import { CheckboxChangeEvent } from '@progress/kendo-vue-inputs';
|
|
10
|
+
import { CheckboxFocusEvent } from '@progress/kendo-vue-inputs';
|
|
8
11
|
import { ComponentOptionsMixin } from 'vue';
|
|
9
12
|
import { ComponentProvideOptions } from 'vue';
|
|
10
13
|
import { CreateComponentPublicInstanceWithMixins } from 'vue';
|
|
@@ -57,6 +60,12 @@ import { SchedulerViewDateRangeArgs as SchedulerViewDateRangeArgs_3 } from '../.
|
|
|
57
60
|
import { Slot } from './models/Slot';
|
|
58
61
|
import { Slot as Slot_3 } from '../../models/Slot';
|
|
59
62
|
import { Slot as Slot_4 } from '../models/Slot';
|
|
63
|
+
import { TextAreaBlurEvent } from 'packages/inputs/src/textarea/interfaces/TextAreaBlurEvent';
|
|
64
|
+
import { TextAreaChangeEvent } from '@progress/kendo-vue-inputs';
|
|
65
|
+
import { TextAreaFocusEvent } from '@progress/kendo-vue-inputs';
|
|
66
|
+
import { TextBoxBlurEvent } from '@progress/kendo-vue-inputs';
|
|
67
|
+
import { TextBoxChangeEvent } from '@progress/kendo-vue-inputs';
|
|
68
|
+
import { TextBoxFocusEvent } from '@progress/kendo-vue-inputs';
|
|
60
69
|
import { ToolbarProps } from '@progress/kendo-vue-buttons';
|
|
61
70
|
import { WeekDayEntity } from '../recurrence/types/WeekDayEntity';
|
|
62
71
|
import { ZonedDate } from '@progress/kendo-date-math';
|
|
@@ -2739,9 +2748,9 @@ readonly end?: Date;
|
|
|
2739
2748
|
readonly start?: Date;
|
|
2740
2749
|
readonly format?: string;
|
|
2741
2750
|
readonly selected?: boolean;
|
|
2751
|
+
readonly dataItem?: any;
|
|
2742
2752
|
readonly className?: string;
|
|
2743
2753
|
readonly group?: Group_2;
|
|
2744
|
-
readonly dataItem?: any;
|
|
2745
2754
|
readonly item?: any;
|
|
2746
2755
|
readonly range?: Range_5;
|
|
2747
2756
|
readonly order?: number;
|
|
@@ -4014,12 +4023,6 @@ value: {
|
|
|
4014
4023
|
type: PropType<string | number | string[]>;
|
|
4015
4024
|
};
|
|
4016
4025
|
label: {
|
|
4017
|
-
/**
|
|
4018
|
-
* Overrides the component used for visualizing the `end timezone` field error.
|
|
4019
|
-
* The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
|
|
4020
|
-
*
|
|
4021
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
4022
|
-
*/
|
|
4023
4026
|
type: PropType<string>;
|
|
4024
4027
|
};
|
|
4025
4028
|
placeholder: {
|
|
@@ -4069,7 +4072,12 @@ showValidationIcon: PropType<boolean>;
|
|
|
4069
4072
|
showLoadingIcon: PropType<boolean>;
|
|
4070
4073
|
showClearButton: PropType<boolean>;
|
|
4071
4074
|
inputClass: PropType<string>;
|
|
4072
|
-
wrapperClass: PropType<string>;
|
|
4075
|
+
wrapperClass: PropType<string>; /**
|
|
4076
|
+
* Overrides the component used for visualizing the `description` field label.
|
|
4077
|
+
* The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
|
|
4078
|
+
*
|
|
4079
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
4080
|
+
*/
|
|
4073
4081
|
tabIndex: PropType<number>;
|
|
4074
4082
|
role: PropType<string>;
|
|
4075
4083
|
title: PropType<string>;
|
|
@@ -4137,15 +4145,15 @@ inputWrapperClass(): {
|
|
|
4137
4145
|
'k-disabled': any;
|
|
4138
4146
|
};
|
|
4139
4147
|
}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4140
|
-
input:
|
|
4141
|
-
change:
|
|
4142
|
-
changemodel:
|
|
4143
|
-
'update:modelValue':
|
|
4144
|
-
focus:
|
|
4145
|
-
blur:
|
|
4146
|
-
keyup:
|
|
4147
|
-
keydown:
|
|
4148
|
-
keypress:
|
|
4148
|
+
input: (event: Event) => true;
|
|
4149
|
+
change: (event: TextBoxChangeEvent) => true;
|
|
4150
|
+
changemodel: (value: string | number) => true;
|
|
4151
|
+
'update:modelValue': (value: string | number) => true;
|
|
4152
|
+
focus: (event: TextBoxFocusEvent) => true;
|
|
4153
|
+
blur: (event: TextBoxBlurEvent) => true;
|
|
4154
|
+
keyup: (event: KeyboardEvent) => true;
|
|
4155
|
+
keydown: (event: KeyboardEvent) => true;
|
|
4156
|
+
keypress: (event: KeyboardEvent) => true;
|
|
4149
4157
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
4150
4158
|
modelValue: {
|
|
4151
4159
|
type: PropType<string | number>;
|
|
@@ -4163,12 +4171,6 @@ value: {
|
|
|
4163
4171
|
type: PropType<string | number | string[]>;
|
|
4164
4172
|
};
|
|
4165
4173
|
label: {
|
|
4166
|
-
/**
|
|
4167
|
-
* Overrides the component used for visualizing the `end timezone` field error.
|
|
4168
|
-
* The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
|
|
4169
|
-
*
|
|
4170
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
4171
|
-
*/
|
|
4172
4174
|
type: PropType<string>;
|
|
4173
4175
|
};
|
|
4174
4176
|
placeholder: {
|
|
@@ -4218,22 +4220,27 @@ showValidationIcon: PropType<boolean>;
|
|
|
4218
4220
|
showLoadingIcon: PropType<boolean>;
|
|
4219
4221
|
showClearButton: PropType<boolean>;
|
|
4220
4222
|
inputClass: PropType<string>;
|
|
4221
|
-
wrapperClass: PropType<string>;
|
|
4223
|
+
wrapperClass: PropType<string>; /**
|
|
4224
|
+
* Overrides the component used for visualizing the `description` field label.
|
|
4225
|
+
* The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
|
|
4226
|
+
*
|
|
4227
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
4228
|
+
*/
|
|
4222
4229
|
tabIndex: PropType<number>;
|
|
4223
4230
|
role: PropType<string>;
|
|
4224
4231
|
title: PropType<string>;
|
|
4225
4232
|
ariaLabel: PropType<string>;
|
|
4226
4233
|
inputAttributes: PropType<Object>;
|
|
4227
4234
|
}>> & Readonly<{
|
|
4228
|
-
onInput?: (
|
|
4229
|
-
onBlur?: (
|
|
4230
|
-
onChange?: (
|
|
4231
|
-
onFocus?: (
|
|
4232
|
-
onKeydown?: (
|
|
4233
|
-
onKeypress?: (
|
|
4234
|
-
onKeyup?: (
|
|
4235
|
-
onChangemodel?: (
|
|
4236
|
-
"onUpdate:modelValue"?: (
|
|
4235
|
+
onInput?: (event: Event) => any;
|
|
4236
|
+
onBlur?: (event: TextBoxBlurEvent) => any;
|
|
4237
|
+
onChange?: (event: TextBoxChangeEvent) => any;
|
|
4238
|
+
onFocus?: (event: TextBoxFocusEvent) => any;
|
|
4239
|
+
onKeydown?: (event: KeyboardEvent) => any;
|
|
4240
|
+
onKeypress?: (event: KeyboardEvent) => any;
|
|
4241
|
+
onKeyup?: (event: KeyboardEvent) => any;
|
|
4242
|
+
onChangemodel?: (value: string | number) => any;
|
|
4243
|
+
"onUpdate:modelValue"?: (value: string | number) => any;
|
|
4237
4244
|
}>, {
|
|
4238
4245
|
required: boolean;
|
|
4239
4246
|
size: string;
|
|
@@ -4542,6 +4549,7 @@ labelComputedClass(): {
|
|
|
4542
4549
|
};
|
|
4543
4550
|
}, {
|
|
4544
4551
|
setValidity(): void;
|
|
4552
|
+
/** @hidden */
|
|
4545
4553
|
localizeMessage(message: string): string;
|
|
4546
4554
|
focusElement(): void;
|
|
4547
4555
|
setValue(e: any, val: boolean): void;
|
|
@@ -4550,11 +4558,13 @@ onKeyDownHandler(e: any): void;
|
|
|
4550
4558
|
onBlurHandler(e: any): void;
|
|
4551
4559
|
onFocusHandler(e: any): void;
|
|
4552
4560
|
}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4553
|
-
changemodel:
|
|
4554
|
-
'update:modelValue':
|
|
4555
|
-
|
|
4556
|
-
|
|
4557
|
-
|
|
4561
|
+
changemodel: (value: boolean) => true;
|
|
4562
|
+
'update:modelValue': (value: boolean) => true; /**
|
|
4563
|
+
* Specifies the `tabIndex` attribute of the root element.
|
|
4564
|
+
*/
|
|
4565
|
+
change: (event: CheckboxChangeEvent) => true;
|
|
4566
|
+
focus: (event: CheckboxFocusEvent) => true;
|
|
4567
|
+
blur: (event: CheckboxBlurEvent) => true;
|
|
4558
4568
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
4559
4569
|
checked: {
|
|
4560
4570
|
type: PropType<boolean>;
|
|
@@ -4609,11 +4619,11 @@ type: PropType<boolean>;
|
|
|
4609
4619
|
default: boolean;
|
|
4610
4620
|
};
|
|
4611
4621
|
}>> & Readonly<{
|
|
4612
|
-
onBlur?: (
|
|
4613
|
-
onChange?: (
|
|
4614
|
-
onFocus?: (
|
|
4615
|
-
onChangemodel?: (
|
|
4616
|
-
"onUpdate:modelValue"?: (
|
|
4622
|
+
onBlur?: (event: CheckboxBlurEvent) => any;
|
|
4623
|
+
onChange?: (event: CheckboxChangeEvent) => any;
|
|
4624
|
+
onFocus?: (event: CheckboxFocusEvent) => any;
|
|
4625
|
+
onChangemodel?: (value: boolean) => any;
|
|
4626
|
+
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
4617
4627
|
}>, {
|
|
4618
4628
|
value: string | number | boolean | string[];
|
|
4619
4629
|
size: string;
|
|
@@ -4922,6 +4932,7 @@ labelComputedClass(): {
|
|
|
4922
4932
|
};
|
|
4923
4933
|
}, {
|
|
4924
4934
|
setValidity(): void;
|
|
4935
|
+
/** @hidden */
|
|
4925
4936
|
localizeMessage(message: string): string;
|
|
4926
4937
|
focusElement(): void;
|
|
4927
4938
|
setValue(e: any, val: boolean): void;
|
|
@@ -4930,11 +4941,13 @@ onKeyDownHandler(e: any): void;
|
|
|
4930
4941
|
onBlurHandler(e: any): void;
|
|
4931
4942
|
onFocusHandler(e: any): void;
|
|
4932
4943
|
}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4933
|
-
changemodel:
|
|
4934
|
-
'update:modelValue':
|
|
4935
|
-
|
|
4936
|
-
|
|
4937
|
-
|
|
4944
|
+
changemodel: (value: boolean) => true;
|
|
4945
|
+
'update:modelValue': (value: boolean) => true; /**
|
|
4946
|
+
* Specifies the `tabIndex` attribute of the root element.
|
|
4947
|
+
*/
|
|
4948
|
+
change: (event: CheckboxChangeEvent) => true;
|
|
4949
|
+
focus: (event: CheckboxFocusEvent) => true;
|
|
4950
|
+
blur: (event: CheckboxBlurEvent) => true;
|
|
4938
4951
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
4939
4952
|
checked: {
|
|
4940
4953
|
type: PropType<boolean>;
|
|
@@ -4989,11 +5002,11 @@ type: PropType<boolean>;
|
|
|
4989
5002
|
default: boolean;
|
|
4990
5003
|
};
|
|
4991
5004
|
}>> & Readonly<{
|
|
4992
|
-
onBlur?: (
|
|
4993
|
-
onChange?: (
|
|
4994
|
-
onFocus?: (
|
|
4995
|
-
onChangemodel?: (
|
|
4996
|
-
"onUpdate:modelValue"?: (
|
|
5005
|
+
onBlur?: (event: CheckboxBlurEvent) => any;
|
|
5006
|
+
onChange?: (event: CheckboxChangeEvent) => any;
|
|
5007
|
+
onFocus?: (event: CheckboxFocusEvent) => any;
|
|
5008
|
+
onChangemodel?: (value: boolean) => any;
|
|
5009
|
+
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
4997
5010
|
}>, {
|
|
4998
5011
|
value: string | number | boolean | string[];
|
|
4999
5012
|
size: string;
|
|
@@ -5129,6 +5142,7 @@ labelComputedClass(): {
|
|
|
5129
5142
|
};
|
|
5130
5143
|
}, {
|
|
5131
5144
|
setValidity(): void;
|
|
5145
|
+
/** @hidden */
|
|
5132
5146
|
localizeMessage(message: string): string;
|
|
5133
5147
|
focusElement(): void;
|
|
5134
5148
|
setValue(e: any, val: boolean): void;
|
|
@@ -5137,11 +5151,13 @@ onKeyDownHandler(e: any): void;
|
|
|
5137
5151
|
onBlurHandler(e: any): void;
|
|
5138
5152
|
onFocusHandler(e: any): void;
|
|
5139
5153
|
}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
5140
|
-
changemodel:
|
|
5141
|
-
'update:modelValue':
|
|
5142
|
-
|
|
5143
|
-
|
|
5144
|
-
|
|
5154
|
+
changemodel: (value: boolean) => true;
|
|
5155
|
+
'update:modelValue': (value: boolean) => true; /**
|
|
5156
|
+
* Specifies the `tabIndex` attribute of the root element.
|
|
5157
|
+
*/
|
|
5158
|
+
change: (event: CheckboxChangeEvent) => true;
|
|
5159
|
+
focus: (event: CheckboxFocusEvent) => true;
|
|
5160
|
+
blur: (event: CheckboxBlurEvent) => true;
|
|
5145
5161
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
5146
5162
|
checked: {
|
|
5147
5163
|
type: PropType<boolean>;
|
|
@@ -5196,11 +5212,11 @@ type: PropType<boolean>;
|
|
|
5196
5212
|
default: boolean;
|
|
5197
5213
|
};
|
|
5198
5214
|
}>> & Readonly<{
|
|
5199
|
-
onBlur?: (
|
|
5200
|
-
onChange?: (
|
|
5201
|
-
onFocus?: (
|
|
5202
|
-
onChangemodel?: (
|
|
5203
|
-
"onUpdate:modelValue"?: (
|
|
5215
|
+
onBlur?: (event: CheckboxBlurEvent) => any;
|
|
5216
|
+
onChange?: (event: CheckboxChangeEvent) => any;
|
|
5217
|
+
onFocus?: (event: CheckboxFocusEvent) => any;
|
|
5218
|
+
onChangemodel?: (value: boolean) => any;
|
|
5219
|
+
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
5204
5220
|
}>, {
|
|
5205
5221
|
value: string | number | boolean | string[];
|
|
5206
5222
|
size: string;
|
|
@@ -5386,18 +5402,18 @@ iconName: PropType<string>;
|
|
|
5386
5402
|
inputPrefix: PropType<string | boolean | Object | Function>;
|
|
5387
5403
|
inputSuffix: PropType<string | boolean | Object | Function>;
|
|
5388
5404
|
showValidationIcon: PropType<boolean>;
|
|
5389
|
-
showLoadingIcon: PropType<boolean>;
|
|
5390
|
-
* Overrides the component used for visualizing the `start timezone` field error.
|
|
5391
|
-
* The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
|
|
5392
|
-
*
|
|
5393
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
5394
|
-
*/
|
|
5405
|
+
showLoadingIcon: PropType<boolean>;
|
|
5395
5406
|
showClearButton: PropType<boolean>;
|
|
5396
5407
|
inputClass: PropType<string>;
|
|
5397
5408
|
wrapperClass: PropType<string>;
|
|
5398
5409
|
flow: {
|
|
5399
5410
|
type: PropType<string>;
|
|
5400
|
-
default: string;
|
|
5411
|
+
default: string; /**
|
|
5412
|
+
* Overrides the component used for visualizing the `start timezone checked` label.
|
|
5413
|
+
* The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
|
|
5414
|
+
*
|
|
5415
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
5416
|
+
*/
|
|
5401
5417
|
validator: (value: any) => any;
|
|
5402
5418
|
};
|
|
5403
5419
|
resizable: {
|
|
@@ -5436,7 +5452,12 @@ prefixRenderClass(): {
|
|
|
5436
5452
|
'!k-align-items-start': boolean;
|
|
5437
5453
|
'k-input-prefix-horizontal': boolean;
|
|
5438
5454
|
'k-input-prefix-vertical': boolean;
|
|
5439
|
-
};
|
|
5455
|
+
}; /**
|
|
5456
|
+
* Overrides the component used for visualizing the `end timezone` field editor.
|
|
5457
|
+
* An extended [Kendo UI for Vue ComboBox]({% slug overview_combobox %}) component is used, by default.
|
|
5458
|
+
*
|
|
5459
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
5460
|
+
*/
|
|
5440
5461
|
suffixRenderClass(): {
|
|
5441
5462
|
'k-input-suffix': boolean;
|
|
5442
5463
|
'!k-align-items-start': boolean;
|
|
@@ -5444,12 +5465,7 @@ suffixRenderClass(): {
|
|
|
5444
5465
|
'k-input-suffix-vertical': boolean;
|
|
5445
5466
|
};
|
|
5446
5467
|
suffixIconWrapClass(): {
|
|
5447
|
-
'k-flex-wrap': boolean;
|
|
5448
|
-
* Overrides the component used for visualizing the `end timezone` field editor.
|
|
5449
|
-
* An extended [Kendo UI for Vue ComboBox]({% slug overview_combobox %}) component is used, by default.
|
|
5450
|
-
*
|
|
5451
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
5452
|
-
*/
|
|
5468
|
+
'k-flex-wrap': boolean;
|
|
5453
5469
|
'!k-align-items-start': boolean;
|
|
5454
5470
|
};
|
|
5455
5471
|
computedValue(): any;
|
|
@@ -5464,15 +5480,12 @@ handleInput(event: any): void;
|
|
|
5464
5480
|
handleFocus(event: any): void;
|
|
5465
5481
|
handleBlur(event: any): void;
|
|
5466
5482
|
}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
5467
|
-
input:
|
|
5468
|
-
change:
|
|
5469
|
-
changemodel:
|
|
5470
|
-
|
|
5471
|
-
|
|
5472
|
-
|
|
5473
|
-
'update:modelValue': any;
|
|
5474
|
-
focus: any;
|
|
5475
|
-
blur: any;
|
|
5483
|
+
input: (event: Event) => true;
|
|
5484
|
+
change: (event: TextAreaChangeEvent) => true;
|
|
5485
|
+
changemodel: (value: string | number | string[]) => true;
|
|
5486
|
+
'update:modelValue': (value: string | number | string[]) => true;
|
|
5487
|
+
focus: (event: TextAreaFocusEvent) => true;
|
|
5488
|
+
blur: (event: TextAreaBlurEvent) => true;
|
|
5476
5489
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
5477
5490
|
title: PropType<string>;
|
|
5478
5491
|
ariaDescribedBy: PropType<string>;
|
|
@@ -5521,18 +5534,18 @@ iconName: PropType<string>;
|
|
|
5521
5534
|
inputPrefix: PropType<string | boolean | Object | Function>;
|
|
5522
5535
|
inputSuffix: PropType<string | boolean | Object | Function>;
|
|
5523
5536
|
showValidationIcon: PropType<boolean>;
|
|
5524
|
-
showLoadingIcon: PropType<boolean>;
|
|
5525
|
-
* Overrides the component used for visualizing the `start timezone` field error.
|
|
5526
|
-
* The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
|
|
5527
|
-
*
|
|
5528
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
5529
|
-
*/
|
|
5537
|
+
showLoadingIcon: PropType<boolean>;
|
|
5530
5538
|
showClearButton: PropType<boolean>;
|
|
5531
5539
|
inputClass: PropType<string>;
|
|
5532
5540
|
wrapperClass: PropType<string>;
|
|
5533
5541
|
flow: {
|
|
5534
5542
|
type: PropType<string>;
|
|
5535
|
-
default: string;
|
|
5543
|
+
default: string; /**
|
|
5544
|
+
* Overrides the component used for visualizing the `start timezone checked` label.
|
|
5545
|
+
* The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
|
|
5546
|
+
*
|
|
5547
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
5548
|
+
*/
|
|
5536
5549
|
validator: (value: any) => any;
|
|
5537
5550
|
};
|
|
5538
5551
|
resizable: {
|
|
@@ -5542,12 +5555,12 @@ validator: (value: any) => any;
|
|
|
5542
5555
|
};
|
|
5543
5556
|
inputAttributes: PropType<Object>;
|
|
5544
5557
|
}>> & Readonly<{
|
|
5545
|
-
onInput?: (
|
|
5546
|
-
onBlur?: (
|
|
5547
|
-
onChange?: (
|
|
5548
|
-
onFocus?: (
|
|
5549
|
-
onChangemodel?: (
|
|
5550
|
-
"onUpdate:modelValue"?: (
|
|
5558
|
+
onInput?: (event: Event) => any;
|
|
5559
|
+
onBlur?: (event: TextAreaBlurEvent) => any;
|
|
5560
|
+
onChange?: (event: TextAreaChangeEvent) => any;
|
|
5561
|
+
onFocus?: (event: TextAreaFocusEvent) => any;
|
|
5562
|
+
onChangemodel?: (value: string | number | string[]) => any;
|
|
5563
|
+
"onUpdate:modelValue"?: (value: string | number | string[]) => any;
|
|
5551
5564
|
}>, {
|
|
5552
5565
|
size: string;
|
|
5553
5566
|
flow: string;
|
|
@@ -5788,12 +5801,6 @@ value: {
|
|
|
5788
5801
|
type: PropType<string | number | string[]>;
|
|
5789
5802
|
};
|
|
5790
5803
|
label: {
|
|
5791
|
-
/**
|
|
5792
|
-
* Overrides the component used for visualizing the `end timezone` field error.
|
|
5793
|
-
* The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
|
|
5794
|
-
*
|
|
5795
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
5796
|
-
*/
|
|
5797
5804
|
type: PropType<string>;
|
|
5798
5805
|
};
|
|
5799
5806
|
placeholder: {
|
|
@@ -5843,7 +5850,12 @@ showValidationIcon: PropType<boolean>;
|
|
|
5843
5850
|
showLoadingIcon: PropType<boolean>;
|
|
5844
5851
|
showClearButton: PropType<boolean>;
|
|
5845
5852
|
inputClass: PropType<string>;
|
|
5846
|
-
wrapperClass: PropType<string>;
|
|
5853
|
+
wrapperClass: PropType<string>; /**
|
|
5854
|
+
* Overrides the component used for visualizing the `description` field label.
|
|
5855
|
+
* The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
|
|
5856
|
+
*
|
|
5857
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
5858
|
+
*/
|
|
5847
5859
|
tabIndex: PropType<number>;
|
|
5848
5860
|
role: PropType<string>;
|
|
5849
5861
|
title: PropType<string>;
|
|
@@ -5911,15 +5923,15 @@ inputWrapperClass(): {
|
|
|
5911
5923
|
'k-disabled': any;
|
|
5912
5924
|
};
|
|
5913
5925
|
}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
5914
|
-
input:
|
|
5915
|
-
change:
|
|
5916
|
-
changemodel:
|
|
5917
|
-
'update:modelValue':
|
|
5918
|
-
focus:
|
|
5919
|
-
blur:
|
|
5920
|
-
keyup:
|
|
5921
|
-
keydown:
|
|
5922
|
-
keypress:
|
|
5926
|
+
input: (event: Event) => true;
|
|
5927
|
+
change: (event: TextBoxChangeEvent) => true;
|
|
5928
|
+
changemodel: (value: string | number) => true;
|
|
5929
|
+
'update:modelValue': (value: string | number) => true;
|
|
5930
|
+
focus: (event: TextBoxFocusEvent) => true;
|
|
5931
|
+
blur: (event: TextBoxBlurEvent) => true;
|
|
5932
|
+
keyup: (event: KeyboardEvent) => true;
|
|
5933
|
+
keydown: (event: KeyboardEvent) => true;
|
|
5934
|
+
keypress: (event: KeyboardEvent) => true;
|
|
5923
5935
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
5924
5936
|
modelValue: {
|
|
5925
5937
|
type: PropType<string | number>;
|
|
@@ -5937,12 +5949,6 @@ value: {
|
|
|
5937
5949
|
type: PropType<string | number | string[]>;
|
|
5938
5950
|
};
|
|
5939
5951
|
label: {
|
|
5940
|
-
/**
|
|
5941
|
-
* Overrides the component used for visualizing the `end timezone` field error.
|
|
5942
|
-
* The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
|
|
5943
|
-
*
|
|
5944
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
5945
|
-
*/
|
|
5946
5952
|
type: PropType<string>;
|
|
5947
5953
|
};
|
|
5948
5954
|
placeholder: {
|
|
@@ -5992,22 +5998,27 @@ showValidationIcon: PropType<boolean>;
|
|
|
5992
5998
|
showLoadingIcon: PropType<boolean>;
|
|
5993
5999
|
showClearButton: PropType<boolean>;
|
|
5994
6000
|
inputClass: PropType<string>;
|
|
5995
|
-
wrapperClass: PropType<string>;
|
|
6001
|
+
wrapperClass: PropType<string>; /**
|
|
6002
|
+
* Overrides the component used for visualizing the `description` field label.
|
|
6003
|
+
* The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
|
|
6004
|
+
*
|
|
6005
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
6006
|
+
*/
|
|
5996
6007
|
tabIndex: PropType<number>;
|
|
5997
6008
|
role: PropType<string>;
|
|
5998
6009
|
title: PropType<string>;
|
|
5999
6010
|
ariaLabel: PropType<string>;
|
|
6000
6011
|
inputAttributes: PropType<Object>;
|
|
6001
6012
|
}>> & Readonly<{
|
|
6002
|
-
onInput?: (
|
|
6003
|
-
onBlur?: (
|
|
6004
|
-
onChange?: (
|
|
6005
|
-
onFocus?: (
|
|
6006
|
-
onKeydown?: (
|
|
6007
|
-
onKeypress?: (
|
|
6008
|
-
onKeyup?: (
|
|
6009
|
-
onChangemodel?: (
|
|
6010
|
-
"onUpdate:modelValue"?: (
|
|
6013
|
+
onInput?: (event: Event) => any;
|
|
6014
|
+
onBlur?: (event: TextBoxBlurEvent) => any;
|
|
6015
|
+
onChange?: (event: TextBoxChangeEvent) => any;
|
|
6016
|
+
onFocus?: (event: TextBoxFocusEvent) => any;
|
|
6017
|
+
onKeydown?: (event: KeyboardEvent) => any;
|
|
6018
|
+
onKeypress?: (event: KeyboardEvent) => any;
|
|
6019
|
+
onKeyup?: (event: KeyboardEvent) => any;
|
|
6020
|
+
onChangemodel?: (value: string | number) => any;
|
|
6021
|
+
"onUpdate:modelValue"?: (value: string | number) => any;
|
|
6011
6022
|
}>, {
|
|
6012
6023
|
required: boolean;
|
|
6013
6024
|
size: string;
|
|
@@ -6316,6 +6327,7 @@ labelComputedClass(): {
|
|
|
6316
6327
|
};
|
|
6317
6328
|
}, {
|
|
6318
6329
|
setValidity(): void;
|
|
6330
|
+
/** @hidden */
|
|
6319
6331
|
localizeMessage(message: string): string;
|
|
6320
6332
|
focusElement(): void;
|
|
6321
6333
|
setValue(e: any, val: boolean): void;
|
|
@@ -6324,11 +6336,13 @@ onKeyDownHandler(e: any): void;
|
|
|
6324
6336
|
onBlurHandler(e: any): void;
|
|
6325
6337
|
onFocusHandler(e: any): void;
|
|
6326
6338
|
}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6327
|
-
changemodel:
|
|
6328
|
-
'update:modelValue':
|
|
6329
|
-
|
|
6330
|
-
|
|
6331
|
-
|
|
6339
|
+
changemodel: (value: boolean) => true;
|
|
6340
|
+
'update:modelValue': (value: boolean) => true; /**
|
|
6341
|
+
* Specifies the `tabIndex` attribute of the root element.
|
|
6342
|
+
*/
|
|
6343
|
+
change: (event: CheckboxChangeEvent) => true;
|
|
6344
|
+
focus: (event: CheckboxFocusEvent) => true;
|
|
6345
|
+
blur: (event: CheckboxBlurEvent) => true;
|
|
6332
6346
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
6333
6347
|
checked: {
|
|
6334
6348
|
type: PropType<boolean>;
|
|
@@ -6383,11 +6397,11 @@ type: PropType<boolean>;
|
|
|
6383
6397
|
default: boolean;
|
|
6384
6398
|
};
|
|
6385
6399
|
}>> & Readonly<{
|
|
6386
|
-
onBlur?: (
|
|
6387
|
-
onChange?: (
|
|
6388
|
-
onFocus?: (
|
|
6389
|
-
onChangemodel?: (
|
|
6390
|
-
"onUpdate:modelValue"?: (
|
|
6400
|
+
onBlur?: (event: CheckboxBlurEvent) => any;
|
|
6401
|
+
onChange?: (event: CheckboxChangeEvent) => any;
|
|
6402
|
+
onFocus?: (event: CheckboxFocusEvent) => any;
|
|
6403
|
+
onChangemodel?: (value: boolean) => any;
|
|
6404
|
+
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
6391
6405
|
}>, {
|
|
6392
6406
|
value: string | number | boolean | string[];
|
|
6393
6407
|
size: string;
|
|
@@ -6696,6 +6710,7 @@ labelComputedClass(): {
|
|
|
6696
6710
|
};
|
|
6697
6711
|
}, {
|
|
6698
6712
|
setValidity(): void;
|
|
6713
|
+
/** @hidden */
|
|
6699
6714
|
localizeMessage(message: string): string;
|
|
6700
6715
|
focusElement(): void;
|
|
6701
6716
|
setValue(e: any, val: boolean): void;
|
|
@@ -6704,11 +6719,13 @@ onKeyDownHandler(e: any): void;
|
|
|
6704
6719
|
onBlurHandler(e: any): void;
|
|
6705
6720
|
onFocusHandler(e: any): void;
|
|
6706
6721
|
}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6707
|
-
changemodel:
|
|
6708
|
-
'update:modelValue':
|
|
6709
|
-
|
|
6710
|
-
|
|
6711
|
-
|
|
6722
|
+
changemodel: (value: boolean) => true;
|
|
6723
|
+
'update:modelValue': (value: boolean) => true; /**
|
|
6724
|
+
* Specifies the `tabIndex` attribute of the root element.
|
|
6725
|
+
*/
|
|
6726
|
+
change: (event: CheckboxChangeEvent) => true;
|
|
6727
|
+
focus: (event: CheckboxFocusEvent) => true;
|
|
6728
|
+
blur: (event: CheckboxBlurEvent) => true;
|
|
6712
6729
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
6713
6730
|
checked: {
|
|
6714
6731
|
type: PropType<boolean>;
|
|
@@ -6763,11 +6780,11 @@ type: PropType<boolean>;
|
|
|
6763
6780
|
default: boolean;
|
|
6764
6781
|
};
|
|
6765
6782
|
}>> & Readonly<{
|
|
6766
|
-
onBlur?: (
|
|
6767
|
-
onChange?: (
|
|
6768
|
-
onFocus?: (
|
|
6769
|
-
onChangemodel?: (
|
|
6770
|
-
"onUpdate:modelValue"?: (
|
|
6783
|
+
onBlur?: (event: CheckboxBlurEvent) => any;
|
|
6784
|
+
onChange?: (event: CheckboxChangeEvent) => any;
|
|
6785
|
+
onFocus?: (event: CheckboxFocusEvent) => any;
|
|
6786
|
+
onChangemodel?: (value: boolean) => any;
|
|
6787
|
+
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
6771
6788
|
}>, {
|
|
6772
6789
|
value: string | number | boolean | string[];
|
|
6773
6790
|
size: string;
|
|
@@ -6903,6 +6920,7 @@ labelComputedClass(): {
|
|
|
6903
6920
|
};
|
|
6904
6921
|
}, {
|
|
6905
6922
|
setValidity(): void;
|
|
6923
|
+
/** @hidden */
|
|
6906
6924
|
localizeMessage(message: string): string;
|
|
6907
6925
|
focusElement(): void;
|
|
6908
6926
|
setValue(e: any, val: boolean): void;
|
|
@@ -6911,11 +6929,13 @@ onKeyDownHandler(e: any): void;
|
|
|
6911
6929
|
onBlurHandler(e: any): void;
|
|
6912
6930
|
onFocusHandler(e: any): void;
|
|
6913
6931
|
}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6914
|
-
changemodel:
|
|
6915
|
-
'update:modelValue':
|
|
6916
|
-
|
|
6917
|
-
|
|
6918
|
-
|
|
6932
|
+
changemodel: (value: boolean) => true;
|
|
6933
|
+
'update:modelValue': (value: boolean) => true; /**
|
|
6934
|
+
* Specifies the `tabIndex` attribute of the root element.
|
|
6935
|
+
*/
|
|
6936
|
+
change: (event: CheckboxChangeEvent) => true;
|
|
6937
|
+
focus: (event: CheckboxFocusEvent) => true;
|
|
6938
|
+
blur: (event: CheckboxBlurEvent) => true;
|
|
6919
6939
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
6920
6940
|
checked: {
|
|
6921
6941
|
type: PropType<boolean>;
|
|
@@ -6970,11 +6990,11 @@ type: PropType<boolean>;
|
|
|
6970
6990
|
default: boolean;
|
|
6971
6991
|
};
|
|
6972
6992
|
}>> & Readonly<{
|
|
6973
|
-
onBlur?: (
|
|
6974
|
-
onChange?: (
|
|
6975
|
-
onFocus?: (
|
|
6976
|
-
onChangemodel?: (
|
|
6977
|
-
"onUpdate:modelValue"?: (
|
|
6993
|
+
onBlur?: (event: CheckboxBlurEvent) => any;
|
|
6994
|
+
onChange?: (event: CheckboxChangeEvent) => any;
|
|
6995
|
+
onFocus?: (event: CheckboxFocusEvent) => any;
|
|
6996
|
+
onChangemodel?: (value: boolean) => any;
|
|
6997
|
+
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
6978
6998
|
}>, {
|
|
6979
6999
|
value: string | number | boolean | string[];
|
|
6980
7000
|
size: string;
|
|
@@ -7160,18 +7180,18 @@ iconName: PropType<string>;
|
|
|
7160
7180
|
inputPrefix: PropType<string | boolean | Object | Function>;
|
|
7161
7181
|
inputSuffix: PropType<string | boolean | Object | Function>;
|
|
7162
7182
|
showValidationIcon: PropType<boolean>;
|
|
7163
|
-
showLoadingIcon: PropType<boolean>;
|
|
7164
|
-
* Overrides the component used for visualizing the `start timezone` field error.
|
|
7165
|
-
* The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
|
|
7166
|
-
*
|
|
7167
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
7168
|
-
*/
|
|
7183
|
+
showLoadingIcon: PropType<boolean>;
|
|
7169
7184
|
showClearButton: PropType<boolean>;
|
|
7170
7185
|
inputClass: PropType<string>;
|
|
7171
7186
|
wrapperClass: PropType<string>;
|
|
7172
7187
|
flow: {
|
|
7173
7188
|
type: PropType<string>;
|
|
7174
|
-
default: string;
|
|
7189
|
+
default: string; /**
|
|
7190
|
+
* Overrides the component used for visualizing the `start timezone checked` label.
|
|
7191
|
+
* The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
|
|
7192
|
+
*
|
|
7193
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
7194
|
+
*/
|
|
7175
7195
|
validator: (value: any) => any;
|
|
7176
7196
|
};
|
|
7177
7197
|
resizable: {
|
|
@@ -7210,7 +7230,12 @@ prefixRenderClass(): {
|
|
|
7210
7230
|
'!k-align-items-start': boolean;
|
|
7211
7231
|
'k-input-prefix-horizontal': boolean;
|
|
7212
7232
|
'k-input-prefix-vertical': boolean;
|
|
7213
|
-
};
|
|
7233
|
+
}; /**
|
|
7234
|
+
* Overrides the component used for visualizing the `end timezone` field editor.
|
|
7235
|
+
* An extended [Kendo UI for Vue ComboBox]({% slug overview_combobox %}) component is used, by default.
|
|
7236
|
+
*
|
|
7237
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
7238
|
+
*/
|
|
7214
7239
|
suffixRenderClass(): {
|
|
7215
7240
|
'k-input-suffix': boolean;
|
|
7216
7241
|
'!k-align-items-start': boolean;
|
|
@@ -7218,12 +7243,7 @@ suffixRenderClass(): {
|
|
|
7218
7243
|
'k-input-suffix-vertical': boolean;
|
|
7219
7244
|
};
|
|
7220
7245
|
suffixIconWrapClass(): {
|
|
7221
|
-
'k-flex-wrap': boolean;
|
|
7222
|
-
* Overrides the component used for visualizing the `end timezone` field editor.
|
|
7223
|
-
* An extended [Kendo UI for Vue ComboBox]({% slug overview_combobox %}) component is used, by default.
|
|
7224
|
-
*
|
|
7225
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
7226
|
-
*/
|
|
7246
|
+
'k-flex-wrap': boolean;
|
|
7227
7247
|
'!k-align-items-start': boolean;
|
|
7228
7248
|
};
|
|
7229
7249
|
computedValue(): any;
|
|
@@ -7238,15 +7258,12 @@ handleInput(event: any): void;
|
|
|
7238
7258
|
handleFocus(event: any): void;
|
|
7239
7259
|
handleBlur(event: any): void;
|
|
7240
7260
|
}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
7241
|
-
input:
|
|
7242
|
-
change:
|
|
7243
|
-
changemodel:
|
|
7244
|
-
|
|
7245
|
-
|
|
7246
|
-
|
|
7247
|
-
'update:modelValue': any;
|
|
7248
|
-
focus: any;
|
|
7249
|
-
blur: any;
|
|
7261
|
+
input: (event: Event) => true;
|
|
7262
|
+
change: (event: TextAreaChangeEvent) => true;
|
|
7263
|
+
changemodel: (value: string | number | string[]) => true;
|
|
7264
|
+
'update:modelValue': (value: string | number | string[]) => true;
|
|
7265
|
+
focus: (event: TextAreaFocusEvent) => true;
|
|
7266
|
+
blur: (event: TextAreaBlurEvent) => true;
|
|
7250
7267
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
7251
7268
|
title: PropType<string>;
|
|
7252
7269
|
ariaDescribedBy: PropType<string>;
|
|
@@ -7295,18 +7312,18 @@ iconName: PropType<string>;
|
|
|
7295
7312
|
inputPrefix: PropType<string | boolean | Object | Function>;
|
|
7296
7313
|
inputSuffix: PropType<string | boolean | Object | Function>;
|
|
7297
7314
|
showValidationIcon: PropType<boolean>;
|
|
7298
|
-
showLoadingIcon: PropType<boolean>;
|
|
7299
|
-
* Overrides the component used for visualizing the `start timezone` field error.
|
|
7300
|
-
* The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
|
|
7301
|
-
*
|
|
7302
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
7303
|
-
*/
|
|
7315
|
+
showLoadingIcon: PropType<boolean>;
|
|
7304
7316
|
showClearButton: PropType<boolean>;
|
|
7305
7317
|
inputClass: PropType<string>;
|
|
7306
7318
|
wrapperClass: PropType<string>;
|
|
7307
7319
|
flow: {
|
|
7308
7320
|
type: PropType<string>;
|
|
7309
|
-
default: string;
|
|
7321
|
+
default: string; /**
|
|
7322
|
+
* Overrides the component used for visualizing the `start timezone checked` label.
|
|
7323
|
+
* The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
|
|
7324
|
+
*
|
|
7325
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
7326
|
+
*/
|
|
7310
7327
|
validator: (value: any) => any;
|
|
7311
7328
|
};
|
|
7312
7329
|
resizable: {
|
|
@@ -7316,12 +7333,12 @@ validator: (value: any) => any;
|
|
|
7316
7333
|
};
|
|
7317
7334
|
inputAttributes: PropType<Object>;
|
|
7318
7335
|
}>> & Readonly<{
|
|
7319
|
-
onInput?: (
|
|
7320
|
-
onBlur?: (
|
|
7321
|
-
onChange?: (
|
|
7322
|
-
onFocus?: (
|
|
7323
|
-
onChangemodel?: (
|
|
7324
|
-
"onUpdate:modelValue"?: (
|
|
7336
|
+
onInput?: (event: Event) => any;
|
|
7337
|
+
onBlur?: (event: TextAreaBlurEvent) => any;
|
|
7338
|
+
onChange?: (event: TextAreaChangeEvent) => any;
|
|
7339
|
+
onFocus?: (event: TextAreaFocusEvent) => any;
|
|
7340
|
+
onChangemodel?: (value: string | number | string[]) => any;
|
|
7341
|
+
"onUpdate:modelValue"?: (value: string | number | string[]) => any;
|
|
7325
7342
|
}>, {
|
|
7326
7343
|
size: string;
|
|
7327
7344
|
flow: string;
|