@progress/kendo-react-inputs 11.0.0-develop.1 → 11.0.0-develop.10
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/colors/ColorPicker.js +1 -1
- package/colors/ColorPicker.mjs +125 -124
- package/colors/FlatColorPicker.js +1 -1
- package/colors/FlatColorPicker.mjs +70 -70
- package/colors/utils/misc.js +1 -1
- package/colors/utils/misc.mjs +3 -3
- package/common/AdaptiveMode.js +1 -1
- package/common/AdaptiveMode.mjs +10 -9
- package/dist/cdn/js/kendo-react-inputs.js +1 -1
- package/index.d.mts +31 -1
- package/index.d.ts +31 -1
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +10 -10
package/index.d.mts
CHANGED
|
@@ -1202,12 +1202,36 @@ export declare interface ColorPickerProps {
|
|
|
1202
1202
|
className?: string;
|
|
1203
1203
|
/**
|
|
1204
1204
|
* Providing different rendering of the popup element based on the screen dimensions.
|
|
1205
|
+
*
|
|
1206
|
+
* @default `false`
|
|
1207
|
+
*
|
|
1208
|
+
* @example
|
|
1209
|
+
* ```jsx
|
|
1210
|
+
* <ColorPicker adaptive={true} />
|
|
1211
|
+
* ```
|
|
1205
1212
|
*/
|
|
1206
1213
|
adaptive?: boolean;
|
|
1207
1214
|
/**
|
|
1208
|
-
* Specifies the text that is rendered as title in the adaptive popup.
|
|
1215
|
+
* Specifies the text that is rendered as title in the adaptive popup(action sheet).
|
|
1216
|
+
* Applicable only when `adaptive` is set to `true`.
|
|
1217
|
+
* If not provided, the title will be the same as the label.
|
|
1218
|
+
*
|
|
1219
|
+
* @example
|
|
1220
|
+
* ```jsx
|
|
1221
|
+
* <ColorPicker adaptiveTitle="Adaptive Popup Title" />
|
|
1222
|
+
* ```
|
|
1209
1223
|
*/
|
|
1210
1224
|
adaptiveTitle?: string;
|
|
1225
|
+
/**
|
|
1226
|
+
* Specifies the text that is rendered as subtitle in the adaptive popup(action sheet).
|
|
1227
|
+
* Applicable only when `adaptive` is set to `true`.
|
|
1228
|
+
*
|
|
1229
|
+
* @example
|
|
1230
|
+
* ```jsx
|
|
1231
|
+
* <ColorPicker adaptiveSubtitle="Adaptive Popup Subtitle" />
|
|
1232
|
+
* ```
|
|
1233
|
+
*/
|
|
1234
|
+
adaptiveSubtitle?: string;
|
|
1211
1235
|
}
|
|
1212
1236
|
|
|
1213
1237
|
/**
|
|
@@ -2967,6 +2991,9 @@ export declare const rangeReducer: (state: any, action: RangeAction) => any;
|
|
|
2967
2991
|
*
|
|
2968
2992
|
* Accepts properties of type [RangeSliderProps]({% slug api_inputs_rangesliderprops %}).
|
|
2969
2993
|
* Obtaining the `ref` returns an object of type [RangeSliderHandle]({% slug api_inputs_rangesliderhandle %}).
|
|
2994
|
+
*
|
|
2995
|
+
* @remarks
|
|
2996
|
+
* Supported children components are: {@link SliderLabel}.
|
|
2970
2997
|
*/
|
|
2971
2998
|
export declare const RangeSlider: React_2.ForwardRefExoticComponent<RangeSliderProps & React_2.RefAttributes<RangeSliderHandle | null>>;
|
|
2972
2999
|
|
|
@@ -4070,6 +4097,9 @@ export declare interface SliderChangeEvent extends BaseEvent<Slider> {
|
|
|
4070
4097
|
|
|
4071
4098
|
/**
|
|
4072
4099
|
* Represent the `ref` of the Slider component.
|
|
4100
|
+
*
|
|
4101
|
+
* @remarks
|
|
4102
|
+
* Supported children components are: {@link SliderLabel}.
|
|
4073
4103
|
*/
|
|
4074
4104
|
export declare interface SliderHandle extends Pick<SliderWithoutContext, keyof SliderWithoutContext> {
|
|
4075
4105
|
}
|
package/index.d.ts
CHANGED
|
@@ -1202,12 +1202,36 @@ export declare interface ColorPickerProps {
|
|
|
1202
1202
|
className?: string;
|
|
1203
1203
|
/**
|
|
1204
1204
|
* Providing different rendering of the popup element based on the screen dimensions.
|
|
1205
|
+
*
|
|
1206
|
+
* @default `false`
|
|
1207
|
+
*
|
|
1208
|
+
* @example
|
|
1209
|
+
* ```jsx
|
|
1210
|
+
* <ColorPicker adaptive={true} />
|
|
1211
|
+
* ```
|
|
1205
1212
|
*/
|
|
1206
1213
|
adaptive?: boolean;
|
|
1207
1214
|
/**
|
|
1208
|
-
* Specifies the text that is rendered as title in the adaptive popup.
|
|
1215
|
+
* Specifies the text that is rendered as title in the adaptive popup(action sheet).
|
|
1216
|
+
* Applicable only when `adaptive` is set to `true`.
|
|
1217
|
+
* If not provided, the title will be the same as the label.
|
|
1218
|
+
*
|
|
1219
|
+
* @example
|
|
1220
|
+
* ```jsx
|
|
1221
|
+
* <ColorPicker adaptiveTitle="Adaptive Popup Title" />
|
|
1222
|
+
* ```
|
|
1209
1223
|
*/
|
|
1210
1224
|
adaptiveTitle?: string;
|
|
1225
|
+
/**
|
|
1226
|
+
* Specifies the text that is rendered as subtitle in the adaptive popup(action sheet).
|
|
1227
|
+
* Applicable only when `adaptive` is set to `true`.
|
|
1228
|
+
*
|
|
1229
|
+
* @example
|
|
1230
|
+
* ```jsx
|
|
1231
|
+
* <ColorPicker adaptiveSubtitle="Adaptive Popup Subtitle" />
|
|
1232
|
+
* ```
|
|
1233
|
+
*/
|
|
1234
|
+
adaptiveSubtitle?: string;
|
|
1211
1235
|
}
|
|
1212
1236
|
|
|
1213
1237
|
/**
|
|
@@ -2967,6 +2991,9 @@ export declare const rangeReducer: (state: any, action: RangeAction) => any;
|
|
|
2967
2991
|
*
|
|
2968
2992
|
* Accepts properties of type [RangeSliderProps]({% slug api_inputs_rangesliderprops %}).
|
|
2969
2993
|
* Obtaining the `ref` returns an object of type [RangeSliderHandle]({% slug api_inputs_rangesliderhandle %}).
|
|
2994
|
+
*
|
|
2995
|
+
* @remarks
|
|
2996
|
+
* Supported children components are: {@link SliderLabel}.
|
|
2970
2997
|
*/
|
|
2971
2998
|
export declare const RangeSlider: React_2.ForwardRefExoticComponent<RangeSliderProps & React_2.RefAttributes<RangeSliderHandle | null>>;
|
|
2972
2999
|
|
|
@@ -4070,6 +4097,9 @@ export declare interface SliderChangeEvent extends BaseEvent<Slider> {
|
|
|
4070
4097
|
|
|
4071
4098
|
/**
|
|
4072
4099
|
* Represent the `ref` of the Slider component.
|
|
4100
|
+
*
|
|
4101
|
+
* @remarks
|
|
4102
|
+
* Supported children components are: {@link SliderLabel}.
|
|
4073
4103
|
*/
|
|
4074
4104
|
export declare interface SliderHandle extends Pick<SliderWithoutContext, keyof SliderWithoutContext> {
|
|
4075
4105
|
}
|
package/package-metadata.js
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-react-inputs",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-react-inputs",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1747133095,version:"11.0.0-develop.10",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/components/my-license/"};exports.packageMetadata=e;
|
package/package-metadata.mjs
CHANGED
|
@@ -10,8 +10,8 @@ const e = {
|
|
|
10
10
|
productName: "KendoReact",
|
|
11
11
|
productCode: "KENDOUIREACT",
|
|
12
12
|
productCodes: ["KENDOUIREACT"],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: "11.0.0-develop.
|
|
13
|
+
publishDate: 1747133095,
|
|
14
|
+
version: "11.0.0-develop.10",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
16
16
|
};
|
|
17
17
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-inputs",
|
|
3
|
-
"version": "11.0.0-develop.
|
|
3
|
+
"version": "11.0.0-develop.10",
|
|
4
4
|
"description": "React Inputs offer a customizable interface for users to enter and pick different information. KendoReact Input package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -28,14 +28,14 @@
|
|
|
28
28
|
"@progress/kendo-drawing": "^1.21.2",
|
|
29
29
|
"@progress/kendo-inputs-common": "^3.1.0",
|
|
30
30
|
"@progress/kendo-licensing": "^1.5.1",
|
|
31
|
-
"@progress/kendo-react-animation": "11.0.0-develop.
|
|
32
|
-
"@progress/kendo-react-buttons": "11.0.0-develop.
|
|
33
|
-
"@progress/kendo-react-common": "11.0.0-develop.
|
|
34
|
-
"@progress/kendo-react-dialogs": "11.0.0-develop.
|
|
35
|
-
"@progress/kendo-react-layout": "11.0.0-develop.
|
|
36
|
-
"@progress/kendo-react-intl": "11.0.0-develop.
|
|
37
|
-
"@progress/kendo-react-labels": "11.0.0-develop.
|
|
38
|
-
"@progress/kendo-react-popup": "11.0.0-develop.
|
|
31
|
+
"@progress/kendo-react-animation": "11.0.0-develop.10",
|
|
32
|
+
"@progress/kendo-react-buttons": "11.0.0-develop.10",
|
|
33
|
+
"@progress/kendo-react-common": "11.0.0-develop.10",
|
|
34
|
+
"@progress/kendo-react-dialogs": "11.0.0-develop.10",
|
|
35
|
+
"@progress/kendo-react-layout": "11.0.0-develop.10",
|
|
36
|
+
"@progress/kendo-react-intl": "11.0.0-develop.10",
|
|
37
|
+
"@progress/kendo-react-labels": "11.0.0-develop.10",
|
|
38
|
+
"@progress/kendo-react-popup": "11.0.0-develop.10",
|
|
39
39
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
40
40
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
|
|
41
41
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"package": {
|
|
83
83
|
"productName": "KendoReact",
|
|
84
84
|
"productCode": "KENDOUIREACT",
|
|
85
|
-
"publishDate":
|
|
85
|
+
"publishDate": 1747133095,
|
|
86
86
|
"licensingDocsUrl": "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
87
87
|
}
|
|
88
88
|
},
|