@progress/kendo-react-inputs 9.0.1-develop.1 → 9.0.1-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/index.d.mts +13 -23
- package/index.d.ts +13 -23
- package/package-metadata.mjs +1 -1
- package/package.json +8 -8
package/index.d.mts
CHANGED
|
@@ -961,7 +961,7 @@ export declare interface ColorPickerProps {
|
|
|
961
961
|
* Defines the name of an [existing icon in the KendoReact theme]({% slug icons %}).
|
|
962
962
|
* You have to provide only the name of the icon without the `k-icon` or the `k-i-` prefixes.
|
|
963
963
|
* For example, `edit-tools` will be parsed to `k-icon k-i-edit-tools`
|
|
964
|
-
* ([see example]({% slug customizecolorpicker_colorpicker %}#
|
|
964
|
+
* ([see example]({% slug customizecolorpicker_colorpicker %}#displaying-custom-icons)).
|
|
965
965
|
*/
|
|
966
966
|
icon?: string;
|
|
967
967
|
/**
|
|
@@ -1239,7 +1239,7 @@ declare interface HSVA {
|
|
|
1239
1239
|
}
|
|
1240
1240
|
|
|
1241
1241
|
/**
|
|
1242
|
-
* Represents the [KendoReact Input component]({% slug
|
|
1242
|
+
* Represents the [KendoReact Input component]({% slug overview_input %}).
|
|
1243
1243
|
*
|
|
1244
1244
|
* Accepts properties of type [InputProps]({% slug api_inputs_inputprops %}).
|
|
1245
1245
|
* Obtaining the `ref` returns an object of type [InputHandle]({% slug api_inputs_inputhandle %}).
|
|
@@ -1307,32 +1307,27 @@ export declare interface InputHandle {
|
|
|
1307
1307
|
/**
|
|
1308
1308
|
* Represents the KendoReact InputPrefix component.
|
|
1309
1309
|
*/
|
|
1310
|
-
export declare const InputPrefix: React_2.ForwardRefExoticComponent<React_2.
|
|
1311
|
-
/**
|
|
1312
|
-
* Sets the `orientation` property of the `InputPrefix` component.
|
|
1313
|
-
*/
|
|
1314
|
-
orientation?: "vertical" | "horizontal" | undefined;
|
|
1315
|
-
} & React_2.RefAttributes<InputPrefixHandle>>;
|
|
1310
|
+
export declare const InputPrefix: React_2.ForwardRefExoticComponent<InputPrefixProps & React_2.RefAttributes<InputPrefixHandle>>;
|
|
1316
1311
|
|
|
1317
1312
|
/**
|
|
1318
1313
|
* Represent the `ref` of the `InputPrefix` component.
|
|
1319
1314
|
*/
|
|
1320
|
-
export declare
|
|
1315
|
+
export declare interface InputPrefixHandle {
|
|
1321
1316
|
element: HTMLSpanElement | null;
|
|
1322
|
-
}
|
|
1317
|
+
}
|
|
1323
1318
|
|
|
1324
1319
|
/**
|
|
1325
1320
|
* Represents the `props` of the `InputPrefix` component.
|
|
1326
1321
|
*/
|
|
1327
|
-
export declare
|
|
1322
|
+
export declare interface InputPrefixProps extends React_2.HTMLAttributes<HTMLSpanElement> {
|
|
1328
1323
|
/**
|
|
1329
1324
|
* Sets the `orientation` property of the `InputPrefix` component.
|
|
1330
1325
|
*/
|
|
1331
1326
|
orientation?: 'horizontal' | 'vertical';
|
|
1332
|
-
}
|
|
1327
|
+
}
|
|
1333
1328
|
|
|
1334
1329
|
/**
|
|
1335
|
-
* Represents the props of the [KendoReact Input component]({% slug
|
|
1330
|
+
* Represents the props of the [KendoReact Input component]({% slug overview_input %}).
|
|
1336
1331
|
* Extends the [native input props](https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement).
|
|
1337
1332
|
*/
|
|
1338
1333
|
export declare interface InputProps extends Omit_2<React_2.InputHTMLAttributes<HTMLInputElement>, 'onChange'>, FormComponentProps {
|
|
@@ -1402,29 +1397,24 @@ export declare const InputPropsContext: React_2.Context<(p: InputProps) => Input
|
|
|
1402
1397
|
/**
|
|
1403
1398
|
* Represents the KendoReact InputSeparator component.
|
|
1404
1399
|
*/
|
|
1405
|
-
export declare const InputSeparator: React_2.ForwardRefExoticComponent<React_2.
|
|
1406
|
-
/**
|
|
1407
|
-
* Sets the `orientation` property of the `InputSeparator` component.
|
|
1408
|
-
*/
|
|
1409
|
-
orientation?: "vertical" | "horizontal" | undefined;
|
|
1410
|
-
} & React_2.RefAttributes<InputSeparatorHandle>>;
|
|
1400
|
+
export declare const InputSeparator: React_2.ForwardRefExoticComponent<InputSeparatorProps & React_2.RefAttributes<InputSeparatorHandle>>;
|
|
1411
1401
|
|
|
1412
1402
|
/**
|
|
1413
1403
|
* Represent the `ref` of the `InputSeparator` component.
|
|
1414
1404
|
*/
|
|
1415
|
-
export declare
|
|
1405
|
+
export declare interface InputSeparatorHandle {
|
|
1416
1406
|
element: HTMLSpanElement | null;
|
|
1417
|
-
}
|
|
1407
|
+
}
|
|
1418
1408
|
|
|
1419
1409
|
/**
|
|
1420
1410
|
* Represents the `props` of the `InputSeparator` component.
|
|
1421
1411
|
*/
|
|
1422
|
-
export declare
|
|
1412
|
+
export declare interface InputSeparatorProps extends React_2.HTMLAttributes<HTMLSpanElement> {
|
|
1423
1413
|
/**
|
|
1424
1414
|
* Sets the `orientation` property of the `InputSeparator` component.
|
|
1425
1415
|
*/
|
|
1426
1416
|
orientation?: 'horizontal' | 'vertical';
|
|
1427
|
-
}
|
|
1417
|
+
}
|
|
1428
1418
|
|
|
1429
1419
|
/**
|
|
1430
1420
|
* @hidden
|
package/index.d.ts
CHANGED
|
@@ -961,7 +961,7 @@ export declare interface ColorPickerProps {
|
|
|
961
961
|
* Defines the name of an [existing icon in the KendoReact theme]({% slug icons %}).
|
|
962
962
|
* You have to provide only the name of the icon without the `k-icon` or the `k-i-` prefixes.
|
|
963
963
|
* For example, `edit-tools` will be parsed to `k-icon k-i-edit-tools`
|
|
964
|
-
* ([see example]({% slug customizecolorpicker_colorpicker %}#
|
|
964
|
+
* ([see example]({% slug customizecolorpicker_colorpicker %}#displaying-custom-icons)).
|
|
965
965
|
*/
|
|
966
966
|
icon?: string;
|
|
967
967
|
/**
|
|
@@ -1239,7 +1239,7 @@ declare interface HSVA {
|
|
|
1239
1239
|
}
|
|
1240
1240
|
|
|
1241
1241
|
/**
|
|
1242
|
-
* Represents the [KendoReact Input component]({% slug
|
|
1242
|
+
* Represents the [KendoReact Input component]({% slug overview_input %}).
|
|
1243
1243
|
*
|
|
1244
1244
|
* Accepts properties of type [InputProps]({% slug api_inputs_inputprops %}).
|
|
1245
1245
|
* Obtaining the `ref` returns an object of type [InputHandle]({% slug api_inputs_inputhandle %}).
|
|
@@ -1307,32 +1307,27 @@ export declare interface InputHandle {
|
|
|
1307
1307
|
/**
|
|
1308
1308
|
* Represents the KendoReact InputPrefix component.
|
|
1309
1309
|
*/
|
|
1310
|
-
export declare const InputPrefix: React_2.ForwardRefExoticComponent<React_2.
|
|
1311
|
-
/**
|
|
1312
|
-
* Sets the `orientation` property of the `InputPrefix` component.
|
|
1313
|
-
*/
|
|
1314
|
-
orientation?: "vertical" | "horizontal" | undefined;
|
|
1315
|
-
} & React_2.RefAttributes<InputPrefixHandle>>;
|
|
1310
|
+
export declare const InputPrefix: React_2.ForwardRefExoticComponent<InputPrefixProps & React_2.RefAttributes<InputPrefixHandle>>;
|
|
1316
1311
|
|
|
1317
1312
|
/**
|
|
1318
1313
|
* Represent the `ref` of the `InputPrefix` component.
|
|
1319
1314
|
*/
|
|
1320
|
-
export declare
|
|
1315
|
+
export declare interface InputPrefixHandle {
|
|
1321
1316
|
element: HTMLSpanElement | null;
|
|
1322
|
-
}
|
|
1317
|
+
}
|
|
1323
1318
|
|
|
1324
1319
|
/**
|
|
1325
1320
|
* Represents the `props` of the `InputPrefix` component.
|
|
1326
1321
|
*/
|
|
1327
|
-
export declare
|
|
1322
|
+
export declare interface InputPrefixProps extends React_2.HTMLAttributes<HTMLSpanElement> {
|
|
1328
1323
|
/**
|
|
1329
1324
|
* Sets the `orientation` property of the `InputPrefix` component.
|
|
1330
1325
|
*/
|
|
1331
1326
|
orientation?: 'horizontal' | 'vertical';
|
|
1332
|
-
}
|
|
1327
|
+
}
|
|
1333
1328
|
|
|
1334
1329
|
/**
|
|
1335
|
-
* Represents the props of the [KendoReact Input component]({% slug
|
|
1330
|
+
* Represents the props of the [KendoReact Input component]({% slug overview_input %}).
|
|
1336
1331
|
* Extends the [native input props](https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement).
|
|
1337
1332
|
*/
|
|
1338
1333
|
export declare interface InputProps extends Omit_2<React_2.InputHTMLAttributes<HTMLInputElement>, 'onChange'>, FormComponentProps {
|
|
@@ -1402,29 +1397,24 @@ export declare const InputPropsContext: React_2.Context<(p: InputProps) => Input
|
|
|
1402
1397
|
/**
|
|
1403
1398
|
* Represents the KendoReact InputSeparator component.
|
|
1404
1399
|
*/
|
|
1405
|
-
export declare const InputSeparator: React_2.ForwardRefExoticComponent<React_2.
|
|
1406
|
-
/**
|
|
1407
|
-
* Sets the `orientation` property of the `InputSeparator` component.
|
|
1408
|
-
*/
|
|
1409
|
-
orientation?: "vertical" | "horizontal" | undefined;
|
|
1410
|
-
} & React_2.RefAttributes<InputSeparatorHandle>>;
|
|
1400
|
+
export declare const InputSeparator: React_2.ForwardRefExoticComponent<InputSeparatorProps & React_2.RefAttributes<InputSeparatorHandle>>;
|
|
1411
1401
|
|
|
1412
1402
|
/**
|
|
1413
1403
|
* Represent the `ref` of the `InputSeparator` component.
|
|
1414
1404
|
*/
|
|
1415
|
-
export declare
|
|
1405
|
+
export declare interface InputSeparatorHandle {
|
|
1416
1406
|
element: HTMLSpanElement | null;
|
|
1417
|
-
}
|
|
1407
|
+
}
|
|
1418
1408
|
|
|
1419
1409
|
/**
|
|
1420
1410
|
* Represents the `props` of the `InputSeparator` component.
|
|
1421
1411
|
*/
|
|
1422
|
-
export declare
|
|
1412
|
+
export declare interface InputSeparatorProps extends React_2.HTMLAttributes<HTMLSpanElement> {
|
|
1423
1413
|
/**
|
|
1424
1414
|
* Sets the `orientation` property of the `InputSeparator` component.
|
|
1425
1415
|
*/
|
|
1426
1416
|
orientation?: 'horizontal' | 'vertical';
|
|
1427
|
-
}
|
|
1417
|
+
}
|
|
1428
1418
|
|
|
1429
1419
|
/**
|
|
1430
1420
|
* @hidden
|
package/package-metadata.mjs
CHANGED
|
@@ -10,7 +10,7 @@ const e = {
|
|
|
10
10
|
name: "@progress/kendo-react-inputs",
|
|
11
11
|
productName: "KendoReact",
|
|
12
12
|
productCodes: ["KENDOUIREACT", "KENDOUICOMPLETE"],
|
|
13
|
-
publishDate:
|
|
13
|
+
publishDate: 1731586653,
|
|
14
14
|
version: "",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
16
16
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-inputs",
|
|
3
|
-
"version": "9.0.1-develop.
|
|
3
|
+
"version": "9.0.1-develop.2",
|
|
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",
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
"@progress/kendo-drawing": "^1.21.1",
|
|
26
26
|
"@progress/kendo-inputs-common": "^3.1.0",
|
|
27
27
|
"@progress/kendo-licensing": "^1.3.4",
|
|
28
|
-
"@progress/kendo-react-animation": "9.0.1-develop.
|
|
29
|
-
"@progress/kendo-react-buttons": "9.0.1-develop.
|
|
30
|
-
"@progress/kendo-react-common": "9.0.1-develop.
|
|
31
|
-
"@progress/kendo-react-dialogs": "9.0.1-develop.
|
|
32
|
-
"@progress/kendo-react-intl": "9.0.1-develop.
|
|
33
|
-
"@progress/kendo-react-labels": "9.0.1-develop.
|
|
34
|
-
"@progress/kendo-react-popup": "9.0.1-develop.
|
|
28
|
+
"@progress/kendo-react-animation": "9.0.1-develop.2",
|
|
29
|
+
"@progress/kendo-react-buttons": "9.0.1-develop.2",
|
|
30
|
+
"@progress/kendo-react-common": "9.0.1-develop.2",
|
|
31
|
+
"@progress/kendo-react-dialogs": "9.0.1-develop.2",
|
|
32
|
+
"@progress/kendo-react-intl": "9.0.1-develop.2",
|
|
33
|
+
"@progress/kendo-react-labels": "9.0.1-develop.2",
|
|
34
|
+
"@progress/kendo-react-popup": "9.0.1-develop.2",
|
|
35
35
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
36
36
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0",
|
|
37
37
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0"
|