@progress/kendo-vue-inputs 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.
- package/dist/cdn/js/kendo-vue-inputs.js +1 -1
- package/dist/es/checkbox/interfaces/CheckboxProps.d.ts +2 -2
- package/dist/es/colors/interfaces/ColorPickerProps.d.ts +1 -1
- package/dist/es/input/Input.d.ts +1 -1
- package/dist/es/numerictextbox/interfaces/NumericTextBoxProps.d.ts +12 -0
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/slider/Slider.d.ts +1 -1
- package/dist/es/slider/SliderLabel.d.ts +1 -1
- package/dist/npm/checkbox/interfaces/CheckboxProps.d.ts +2 -2
- package/dist/npm/colors/interfaces/ColorPickerProps.d.ts +1 -1
- package/dist/npm/input/Input.d.ts +1 -1
- package/dist/npm/numerictextbox/interfaces/NumericTextBoxProps.d.ts +12 -0
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/slider/Slider.d.ts +1 -1
- package/dist/npm/slider/SliderLabel.d.ts +1 -1
- package/package.json +10 -10
|
@@ -97,11 +97,11 @@ export interface CheckboxProps extends ToggleBaseProps, FormComponentProps {
|
|
|
97
97
|
/**
|
|
98
98
|
* The event handler that will be fired when the user edits the value.
|
|
99
99
|
*/
|
|
100
|
-
|
|
100
|
+
onChange?: (event: CheckboxChangeEvent) => void;
|
|
101
101
|
/**
|
|
102
102
|
* The event handler that will be fired when Checkbox is focused.
|
|
103
103
|
*/
|
|
104
|
-
|
|
104
|
+
onFocus?: (event: CheckboxFocusEvent) => void;
|
|
105
105
|
/**
|
|
106
106
|
* Sets the `tabIndex` property of the Checkbox.
|
|
107
107
|
* Defaults to `0`.
|
|
@@ -101,7 +101,7 @@ export interface ColorPickerProps {
|
|
|
101
101
|
/**
|
|
102
102
|
* The event handler that will be fired when the left side of the ColorPicker is clicked.
|
|
103
103
|
*/
|
|
104
|
-
|
|
104
|
+
onActivecolorclick?: (event: ColorPickerActiveColorClick) => void;
|
|
105
105
|
/**
|
|
106
106
|
* Configures the `size` of the ColorPicker.
|
|
107
107
|
*
|
package/dist/es/input/Input.d.ts
CHANGED
|
@@ -56,7 +56,7 @@ export interface InputProps extends FormComponentProps {
|
|
|
56
56
|
*/
|
|
57
57
|
fillMode?: null | 'solid' | 'flat' | 'outline' | string;
|
|
58
58
|
dir?: string;
|
|
59
|
-
onChange?:
|
|
59
|
+
onChange?: (event: any) => void;
|
|
60
60
|
onFocus?: (event: any) => void;
|
|
61
61
|
onBlur?: (event: any) => void;
|
|
62
62
|
/**
|
|
@@ -118,5 +118,17 @@ export interface NumericTextBoxProps extends FormComponentProps {
|
|
|
118
118
|
* - `text`
|
|
119
119
|
*/
|
|
120
120
|
inputType?: NumericTextBoxInputType;
|
|
121
|
+
/**
|
|
122
|
+
* The event handler that will be fired when the changes the selected value.
|
|
123
|
+
*/
|
|
124
|
+
onChange?: (event: any) => void;
|
|
125
|
+
/**
|
|
126
|
+
* The event handler that will be fired when TextArea is focused.
|
|
127
|
+
*/
|
|
128
|
+
onFocus?: (event: any) => void;
|
|
129
|
+
/**
|
|
130
|
+
* The event handler that will be fired when TextArea is blurred.
|
|
131
|
+
*/
|
|
132
|
+
onBlur?: (event: any) => void;
|
|
121
133
|
}
|
|
122
134
|
export {};
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-inputs',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1643716792,
|
|
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
|
};
|
|
@@ -45,7 +45,7 @@ export interface SliderProps extends FormComponentProps {
|
|
|
45
45
|
/**
|
|
46
46
|
* Determines the event handler that will be fired when the user edits the value.
|
|
47
47
|
*/
|
|
48
|
-
|
|
48
|
+
onChange?: (event: SliderChangeEvent) => void;
|
|
49
49
|
/**
|
|
50
50
|
* Renders the arrow side buttons of the Slider if set to true.
|
|
51
51
|
*/
|
|
@@ -97,11 +97,11 @@ export interface CheckboxProps extends ToggleBaseProps, FormComponentProps {
|
|
|
97
97
|
/**
|
|
98
98
|
* The event handler that will be fired when the user edits the value.
|
|
99
99
|
*/
|
|
100
|
-
|
|
100
|
+
onChange?: (event: CheckboxChangeEvent) => void;
|
|
101
101
|
/**
|
|
102
102
|
* The event handler that will be fired when Checkbox is focused.
|
|
103
103
|
*/
|
|
104
|
-
|
|
104
|
+
onFocus?: (event: CheckboxFocusEvent) => void;
|
|
105
105
|
/**
|
|
106
106
|
* Sets the `tabIndex` property of the Checkbox.
|
|
107
107
|
* Defaults to `0`.
|
|
@@ -101,7 +101,7 @@ export interface ColorPickerProps {
|
|
|
101
101
|
/**
|
|
102
102
|
* The event handler that will be fired when the left side of the ColorPicker is clicked.
|
|
103
103
|
*/
|
|
104
|
-
|
|
104
|
+
onActivecolorclick?: (event: ColorPickerActiveColorClick) => void;
|
|
105
105
|
/**
|
|
106
106
|
* Configures the `size` of the ColorPicker.
|
|
107
107
|
*
|
|
@@ -56,7 +56,7 @@ export interface InputProps extends FormComponentProps {
|
|
|
56
56
|
*/
|
|
57
57
|
fillMode?: null | 'solid' | 'flat' | 'outline' | string;
|
|
58
58
|
dir?: string;
|
|
59
|
-
onChange?:
|
|
59
|
+
onChange?: (event: any) => void;
|
|
60
60
|
onFocus?: (event: any) => void;
|
|
61
61
|
onBlur?: (event: any) => void;
|
|
62
62
|
/**
|
|
@@ -118,5 +118,17 @@ export interface NumericTextBoxProps extends FormComponentProps {
|
|
|
118
118
|
* - `text`
|
|
119
119
|
*/
|
|
120
120
|
inputType?: NumericTextBoxInputType;
|
|
121
|
+
/**
|
|
122
|
+
* The event handler that will be fired when the changes the selected value.
|
|
123
|
+
*/
|
|
124
|
+
onChange?: (event: any) => void;
|
|
125
|
+
/**
|
|
126
|
+
* The event handler that will be fired when TextArea is focused.
|
|
127
|
+
*/
|
|
128
|
+
onFocus?: (event: any) => void;
|
|
129
|
+
/**
|
|
130
|
+
* The event handler that will be fired when TextArea is blurred.
|
|
131
|
+
*/
|
|
132
|
+
onBlur?: (event: any) => void;
|
|
121
133
|
}
|
|
122
134
|
export {};
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-inputs',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1643716792,
|
|
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
|
};
|
|
@@ -45,7 +45,7 @@ export interface SliderProps extends FormComponentProps {
|
|
|
45
45
|
/**
|
|
46
46
|
* Determines the event handler that will be fired when the user edits the value.
|
|
47
47
|
*/
|
|
48
|
-
|
|
48
|
+
onChange?: (event: SliderChangeEvent) => void;
|
|
49
49
|
/**
|
|
50
50
|
* Renders the arrow side buttons of the Slider if set to true.
|
|
51
51
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-inputs",
|
|
3
3
|
"description": "Kendo UI for Vue Input package",
|
|
4
|
-
"version": "3.0.4-dev.
|
|
4
|
+
"version": "3.0.4-dev.202202011210",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -38,21 +38,21 @@
|
|
|
38
38
|
"vue": "^2.6.12 || ^3.0.2"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@progress/kendo-vue-buttons": "3.0.4-dev.
|
|
42
|
-
"@progress/kendo-vue-common": "3.0.4-dev.
|
|
43
|
-
"@progress/kendo-vue-labels": "3.0.4-dev.
|
|
44
|
-
"@progress/kendo-vue-popup": "3.0.4-dev.
|
|
41
|
+
"@progress/kendo-vue-buttons": "3.0.4-dev.202202011210",
|
|
42
|
+
"@progress/kendo-vue-common": "3.0.4-dev.202202011210",
|
|
43
|
+
"@progress/kendo-vue-labels": "3.0.4-dev.202202011210",
|
|
44
|
+
"@progress/kendo-vue-popup": "3.0.4-dev.202202011210"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@progress/kendo-data-query": "^1.5.5",
|
|
48
48
|
"@progress/kendo-date-math": "^1.5.4",
|
|
49
49
|
"@progress/kendo-drawing": "^1.8.0",
|
|
50
50
|
"@progress/kendo-licensing": "^1.1.0",
|
|
51
|
-
"@progress/kendo-vue-buttons": "3.0.4-dev.
|
|
52
|
-
"@progress/kendo-vue-form": "3.0.4-dev.
|
|
53
|
-
"@progress/kendo-vue-intl": "3.0.4-dev.
|
|
54
|
-
"@progress/kendo-vue-labels": "3.0.4-dev.
|
|
55
|
-
"@progress/kendo-vue-tooltip": "3.0.4-dev.
|
|
51
|
+
"@progress/kendo-vue-buttons": "3.0.4-dev.202202011210",
|
|
52
|
+
"@progress/kendo-vue-form": "3.0.4-dev.202202011210",
|
|
53
|
+
"@progress/kendo-vue-intl": "3.0.4-dev.202202011210",
|
|
54
|
+
"@progress/kendo-vue-labels": "3.0.4-dev.202202011210",
|
|
55
|
+
"@progress/kendo-vue-tooltip": "3.0.4-dev.202202011210",
|
|
56
56
|
"cldr-core": "^34.0.0",
|
|
57
57
|
"cldr-dates-full": "^34.0.0",
|
|
58
58
|
"cldr-numbers-full": "^34.0.0"
|