@progress/kendo-vue-dateinputs 3.0.4-dev.202202010701 → 3.0.4-dev.202202011210

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.
@@ -26,15 +26,15 @@ export interface CalendarProps extends CalendarSettings {
26
26
  /**
27
27
  * An event that is called after the value of the Calendar has changed.
28
28
  */
29
- change?: (event: CalendarChangeEvent) => void;
29
+ onChange?: (event: CalendarChangeEvent) => void;
30
30
  /**
31
31
  * An event called when the week number cell is clicked.
32
32
  */
33
- weekcellclick?: (event: CalendarWeekCellClickEvent) => void;
33
+ onWeekcellclick?: (event: CalendarWeekCellClickEvent) => void;
34
34
  /**
35
35
  * An event called when the week name cell is clicked.
36
36
  */
37
- weeknameclick?: (event: CalendarWeekNameClickEvent) => void;
37
+ onWeeknameclick?: (event: CalendarWeekNameClickEvent) => void;
38
38
  /**
39
39
  * Sets the value of the Calendar.
40
40
  */
@@ -27,5 +27,5 @@ export interface DateInputProps extends FormComponentProps, DateInputSettings {
27
27
  /**
28
28
  * Determines the event handler that will be fired when the user edits the value ([see example]({% slug dateranges_dateinput_native %}).
29
29
  */
30
- change?: (event: any) => void;
30
+ onChange?: (event: any) => void;
31
31
  }
@@ -16,11 +16,11 @@ export interface DatePickerProps extends DatePickerSettings, FormComponentProps
16
16
  /**
17
17
  * Fires each time the user selects a new value ([see example]({% slug controlled_datepicker_native %}#toc-controlling-the-date-value)).
18
18
  */
19
- change?: (event: DatePickerChangeEvent) => void;
19
+ onChange?: (event: DatePickerChangeEvent) => void;
20
20
  /**
21
21
  * Fires when the icon element is clicked.
22
22
  */
23
- iconclick?: (event: any) => void;
23
+ onIconclick?: (event: any) => void;
24
24
  /**
25
25
  * Renders a floating label for the DatePicker.
26
26
  */
@@ -108,11 +108,11 @@ export interface DatePickerSettings {
108
108
  /**
109
109
  * Fires each time any of the DatePicker elements gets blurred.
110
110
  */
111
- blur?: (event: any) => void;
111
+ onBlur?: (event: any) => void;
112
112
  /**
113
113
  * Fires each time the user focuses any of the DatePicker elements.
114
114
  */
115
- focus?: (event: any) => void;
115
+ onFocus?: (event: any) => void;
116
116
  /**
117
117
  * Configures the popup options of the DatePicker.
118
118
  *
@@ -120,11 +120,11 @@ export interface DateRangePickerSettings {
120
120
  /**
121
121
  * Fires each time any of the DateRangePicker elements gets blurred.
122
122
  */
123
- blur?: (event: any) => void;
123
+ onBlur?: (event: any) => void;
124
124
  /**
125
125
  * Fires each time the user focuses any of the DateRangePicker elements.
126
126
  */
127
- focus?: (event: any) => void;
127
+ onFocus?: (event: any) => void;
128
128
  /**
129
129
  * Represents the additional props that will be passed to the [Popup]({% slug overview_popup %}) inside the DateRangePicker ([see example]({% slug child_settings_daterangepicker %}#toc-configuring-the-popup)).
130
130
  */
@@ -134,15 +134,15 @@ export interface DateTimePickerSettings {
134
134
  /**
135
135
  * Fires each time any of the DateTimePicker elements gets blurred.
136
136
  */
137
- blur?: (event: any) => void;
137
+ onBlur?: (event: any) => void;
138
138
  /**
139
139
  * Fires each time the user focuses any of the DateTimePicker elements.
140
140
  */
141
- focus?: (event: any) => void;
141
+ onFocus?: (event: any) => void;
142
142
  /**
143
143
  * Fires when the icon element is clicked.
144
144
  */
145
- iconclick?: (event: any) => void;
145
+ onIconclick?: (event: any) => void;
146
146
  /**
147
147
  * Specifies if the popup will be displayed
148
148
  * ([see example]({% slug controlled_datetimepicker %}#toc-controlling-the-popup-state)).
@@ -5,7 +5,7 @@ export var packageMetadata = {
5
5
  name: '@progress/kendo-vue-dateinputs',
6
6
  productName: 'Kendo UI for Vue',
7
7
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
8
- publishDate: 1643698480,
8
+ publishDate: 1643717057,
9
9
  version: '',
10
10
  licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
11
11
  };
@@ -107,15 +107,15 @@ export interface TimePickerSettings {
107
107
  /**
108
108
  * Fires each time any of the TimePicker elements gets blurred.
109
109
  */
110
- blur?: (event: any) => void;
110
+ onBlur?: (event: any) => void;
111
111
  /**
112
112
  * Fires each time the user focuses any of the TimePicker elements.
113
113
  */
114
- focus?: (event: any) => void;
114
+ onFocus?: (event: any) => void;
115
115
  /**
116
116
  * Fires when the icon element is clicked.
117
117
  */
118
- iconclick?: (event: any) => void;
118
+ onIconclick?: (event: any) => void;
119
119
  /**
120
120
  * Configures the popup options of the TimePicker.
121
121
  *
@@ -26,15 +26,15 @@ export interface CalendarProps extends CalendarSettings {
26
26
  /**
27
27
  * An event that is called after the value of the Calendar has changed.
28
28
  */
29
- change?: (event: CalendarChangeEvent) => void;
29
+ onChange?: (event: CalendarChangeEvent) => void;
30
30
  /**
31
31
  * An event called when the week number cell is clicked.
32
32
  */
33
- weekcellclick?: (event: CalendarWeekCellClickEvent) => void;
33
+ onWeekcellclick?: (event: CalendarWeekCellClickEvent) => void;
34
34
  /**
35
35
  * An event called when the week name cell is clicked.
36
36
  */
37
- weeknameclick?: (event: CalendarWeekNameClickEvent) => void;
37
+ onWeeknameclick?: (event: CalendarWeekNameClickEvent) => void;
38
38
  /**
39
39
  * Sets the value of the Calendar.
40
40
  */
@@ -27,5 +27,5 @@ export interface DateInputProps extends FormComponentProps, DateInputSettings {
27
27
  /**
28
28
  * Determines the event handler that will be fired when the user edits the value ([see example]({% slug dateranges_dateinput_native %}).
29
29
  */
30
- change?: (event: any) => void;
30
+ onChange?: (event: any) => void;
31
31
  }
@@ -16,11 +16,11 @@ export interface DatePickerProps extends DatePickerSettings, FormComponentProps
16
16
  /**
17
17
  * Fires each time the user selects a new value ([see example]({% slug controlled_datepicker_native %}#toc-controlling-the-date-value)).
18
18
  */
19
- change?: (event: DatePickerChangeEvent) => void;
19
+ onChange?: (event: DatePickerChangeEvent) => void;
20
20
  /**
21
21
  * Fires when the icon element is clicked.
22
22
  */
23
- iconclick?: (event: any) => void;
23
+ onIconclick?: (event: any) => void;
24
24
  /**
25
25
  * Renders a floating label for the DatePicker.
26
26
  */
@@ -108,11 +108,11 @@ export interface DatePickerSettings {
108
108
  /**
109
109
  * Fires each time any of the DatePicker elements gets blurred.
110
110
  */
111
- blur?: (event: any) => void;
111
+ onBlur?: (event: any) => void;
112
112
  /**
113
113
  * Fires each time the user focuses any of the DatePicker elements.
114
114
  */
115
- focus?: (event: any) => void;
115
+ onFocus?: (event: any) => void;
116
116
  /**
117
117
  * Configures the popup options of the DatePicker.
118
118
  *
@@ -120,11 +120,11 @@ export interface DateRangePickerSettings {
120
120
  /**
121
121
  * Fires each time any of the DateRangePicker elements gets blurred.
122
122
  */
123
- blur?: (event: any) => void;
123
+ onBlur?: (event: any) => void;
124
124
  /**
125
125
  * Fires each time the user focuses any of the DateRangePicker elements.
126
126
  */
127
- focus?: (event: any) => void;
127
+ onFocus?: (event: any) => void;
128
128
  /**
129
129
  * Represents the additional props that will be passed to the [Popup]({% slug overview_popup %}) inside the DateRangePicker ([see example]({% slug child_settings_daterangepicker %}#toc-configuring-the-popup)).
130
130
  */
@@ -134,15 +134,15 @@ export interface DateTimePickerSettings {
134
134
  /**
135
135
  * Fires each time any of the DateTimePicker elements gets blurred.
136
136
  */
137
- blur?: (event: any) => void;
137
+ onBlur?: (event: any) => void;
138
138
  /**
139
139
  * Fires each time the user focuses any of the DateTimePicker elements.
140
140
  */
141
- focus?: (event: any) => void;
141
+ onFocus?: (event: any) => void;
142
142
  /**
143
143
  * Fires when the icon element is clicked.
144
144
  */
145
- iconclick?: (event: any) => void;
145
+ onIconclick?: (event: any) => void;
146
146
  /**
147
147
  * Specifies if the popup will be displayed
148
148
  * ([see example]({% slug controlled_datetimepicker %}#toc-controlling-the-popup-state)).
@@ -8,7 +8,7 @@ exports.packageMetadata = {
8
8
  name: '@progress/kendo-vue-dateinputs',
9
9
  productName: 'Kendo UI for Vue',
10
10
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
11
- publishDate: 1643698480,
11
+ publishDate: 1643717057,
12
12
  version: '',
13
13
  licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
14
14
  };
@@ -107,15 +107,15 @@ export interface TimePickerSettings {
107
107
  /**
108
108
  * Fires each time any of the TimePicker elements gets blurred.
109
109
  */
110
- blur?: (event: any) => void;
110
+ onBlur?: (event: any) => void;
111
111
  /**
112
112
  * Fires each time the user focuses any of the TimePicker elements.
113
113
  */
114
- focus?: (event: any) => void;
114
+ onFocus?: (event: any) => void;
115
115
  /**
116
116
  * Fires when the icon element is clicked.
117
117
  */
118
- iconclick?: (event: any) => void;
118
+ onIconclick?: (event: any) => void;
119
119
  /**
120
120
  * Configures the popup options of the TimePicker.
121
121
  *
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-vue-dateinputs",
3
3
  "description": "Kendo UI for Vue Date Inputs package",
4
- "version": "3.0.4-dev.202202010701",
4
+ "version": "3.0.4-dev.202202011210",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -46,16 +46,16 @@
46
46
  },
47
47
  "dependencies": {
48
48
  "@progress/kendo-date-math": "1.5.1",
49
- "@progress/kendo-vue-buttons": "3.0.4-dev.202202010701",
50
- "@progress/kendo-vue-common": "3.0.4-dev.202202010701",
51
- "@progress/kendo-vue-labels": "3.0.4-dev.202202010701",
52
- "@progress/kendo-vue-popup": "3.0.4-dev.202202010701"
49
+ "@progress/kendo-vue-buttons": "3.0.4-dev.202202011210",
50
+ "@progress/kendo-vue-common": "3.0.4-dev.202202011210",
51
+ "@progress/kendo-vue-labels": "3.0.4-dev.202202011210",
52
+ "@progress/kendo-vue-popup": "3.0.4-dev.202202011210"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@progress/kendo-data-query": "^1.5.4",
56
56
  "@progress/kendo-licensing": "^1.1.0",
57
- "@progress/kendo-vue-dropdowns": "3.0.4-dev.202202010701",
58
- "@progress/kendo-vue-intl": "3.0.4-dev.202202010701"
57
+ "@progress/kendo-vue-dropdowns": "3.0.4-dev.202202011210",
58
+ "@progress/kendo-vue-intl": "3.0.4-dev.202202011210"
59
59
  },
60
60
  "author": "Progress",
61
61
  "license": "SEE LICENSE IN LICENSE.md",