@progress/kendo-react-inputs 7.0.1 → 7.0.2-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/colors/ColorGradient.d.ts +1 -1
- package/colors/ColorPalette.d.ts +1 -1
- package/dist/cdn/js/kendo-react-inputs.js +9 -9
- package/index.d.mts +5 -0
- package/index.js +3 -3
- package/index.mjs +4 -4
- package/input/Input.d.ts +1 -1
- package/maskedtextbox/MaskedTextBox.d.ts +1 -1
- package/package.json +18 -12
- package/slider/Slider.d.ts +1 -1
- package/switch/Switch.d.ts +1 -1
package/index.mjs
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
"use client";
|
|
6
6
|
import * as n from "react";
|
|
7
|
-
import
|
|
7
|
+
import r from "prop-types";
|
|
8
8
|
import { useInternationalization as Mn, useLocalization as _e, provideLocalizationService as Je, registerForIntl as Nn, registerForLocalization as da } from "@progress/kendo-react-intl";
|
|
9
9
|
import { createPropsContext as he, validatePackage as pe, usePropsContext as Re, useId as Qe, useCustomComponent as qe, dispatchEvent as Q, getActiveElement as wa, classNames as G, kendoThemeMaps as ne, getTabIndex as ie, withIdHOC as et, withPropsContext as Ue, useDir as Ae, Keys as z, Draggable as en, IconWrap as fe, focusFirstFocusableChild as tn, svgIconPropType as Ft, useDraggable as Pn, noop as Me, useRtl as Dn, toIconName as Lt, useAsyncFocusBlur as Bn } from "@progress/kendo-react-common";
|
|
10
10
|
import { caretAltUpIcon as Tt, caretAltDownIcon as ht, caretAltExpandIcon as On, caretAltLeftIcon as Ia, caretAltRightIcon as La, checkIcon as Rt, xIcon as zt, dropletSliderIcon as Fn, paletteIcon as Tn, dropletSlashIcon as zn, starOutlineIcon as Ra, starIcon as Va, hyperlinkOpenIcon as Ma } from "@progress/kendo-svg-icons";
|
|
@@ -18,7 +18,7 @@ const me = {
|
|
|
18
18
|
name: "@progress/kendo-react-inputs",
|
|
19
19
|
productName: "KendoReact",
|
|
20
20
|
productCodes: ["KENDOUIREACT", "KENDOUICOMPLETE"],
|
|
21
|
-
publishDate:
|
|
21
|
+
publishDate: 1702631431,
|
|
22
22
|
version: "",
|
|
23
23
|
licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
24
24
|
}, Xe = "numerictextbox.increment", Ye = "numerictextbox.decrement", _t = "slider.increment", At = "slider.decrement", Te = "slider.dragTitle", Fe = "colorGradient.r", nn = "colorGradient.g", sn = "colorGradient.b", rn = "colorGradient.a", ln = "colorGradient.hex", $t = "colorGradient.contrastRatio", Ht = "colorGradient.colorGradientAALevel", Gt = "colorGradient.colorGradientAAALevel", Kt = "colorGradient.colorGradientPass", qt = "colorGradient.colorGradientFail", Ut = "colorGradient.hueSliderLabel", jt = "colorGradient.alphaSliderLabel", Wt = "colorGradient.toggleInputsButton", on = "flatColorPicker.cancelBtn", cn = "flatColorPicker.applyBtn", Xt = "flatColorPicker.colorGradientBtn", Yt = "flatColorPicker.colorPaletteBtn", Zt = "flatColorPicker.clearBtn", dn = "checkbox.validation", un = "checkbox.optionalText", Gn = "radioButton.validation", Jt = "switch.validation", Qt = "colorPicker.dropdownButtonAriaLabel", ea = "rating.ariaLabel", ta = "signature.clear", aa = "signature.maximize", na = "signature.minimize", $ = {
|
|
@@ -960,7 +960,7 @@ class ha extends n.Component {
|
|
|
960
960
|
}
|
|
961
961
|
Nn(ha);
|
|
962
962
|
da(ha);
|
|
963
|
-
const kn = "data-slider-label",
|
|
963
|
+
const kn = "data-slider-label", Rr = (a) => {
|
|
964
964
|
const t = n.useRef(null), e = Ae(t), s = a.vertical ? { bottom: `${a.position}%` } : { [e === "rtl" ? "right" : "left"]: `${a.position}%` }, l = a.vertical ? "k-tick-vertical" : "k-tick-horizontal";
|
|
965
965
|
return /* @__PURE__ */ n.createElement(
|
|
966
966
|
"li",
|
|
@@ -5018,7 +5018,7 @@ export {
|
|
|
5018
5018
|
St as Signature,
|
|
5019
5019
|
fr as SignaturePropsContext,
|
|
5020
5020
|
ia as Slider,
|
|
5021
|
-
|
|
5021
|
+
Rr as SliderLabel,
|
|
5022
5022
|
bt as SliderWithoutContext,
|
|
5023
5023
|
js as Switch,
|
|
5024
5024
|
Ct as SwitchWithoutContext,
|
package/input/Input.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as React from 'react';
|
|
6
|
-
import
|
|
6
|
+
import PropTypes from 'prop-types';
|
|
7
7
|
import { FormComponent, FormComponentProps, FormComponentValidity } from '@progress/kendo-react-common';
|
|
8
8
|
import { InputChangeEvent } from './interfaces/InputChangeEvent';
|
|
9
9
|
/**
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as React from 'react';
|
|
6
|
-
import
|
|
6
|
+
import PropTypes from 'prop-types';
|
|
7
7
|
import { MaskedTextBoxProps } from './MaskedTextBoxProps';
|
|
8
8
|
import { FormComponent, FormComponentValidity } from '@progress/kendo-react-common';
|
|
9
9
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-inputs",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.2-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",
|
|
@@ -10,23 +10,29 @@
|
|
|
10
10
|
"types": "./index.d.ts",
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
13
|
-
"import":
|
|
14
|
-
|
|
13
|
+
"import": {
|
|
14
|
+
"types": "./index.d.mts",
|
|
15
|
+
"default": "./index.mjs"
|
|
16
|
+
},
|
|
17
|
+
"require": {
|
|
18
|
+
"types": "./index.d.ts",
|
|
19
|
+
"default": "./index.js"
|
|
20
|
+
}
|
|
15
21
|
}
|
|
16
22
|
},
|
|
17
23
|
"sideEffects": false,
|
|
18
24
|
"peerDependencies": {
|
|
19
25
|
"@progress/kendo-drawing": "^1.17.2",
|
|
20
26
|
"@progress/kendo-inputs-common": "^3.1.0",
|
|
21
|
-
"@progress/kendo-licensing": "^1.3.
|
|
22
|
-
"@progress/kendo-react-animation": "7.0.
|
|
23
|
-
"@progress/kendo-react-buttons": "7.0.
|
|
24
|
-
"@progress/kendo-react-common": "7.0.
|
|
25
|
-
"@progress/kendo-react-dialogs": "7.0.
|
|
26
|
-
"@progress/kendo-react-form": "7.0.
|
|
27
|
-
"@progress/kendo-react-intl": "7.0.
|
|
28
|
-
"@progress/kendo-react-labels": "7.0.
|
|
29
|
-
"@progress/kendo-react-popup": "7.0.
|
|
27
|
+
"@progress/kendo-licensing": "^1.3.4",
|
|
28
|
+
"@progress/kendo-react-animation": "7.0.2-develop.2",
|
|
29
|
+
"@progress/kendo-react-buttons": "7.0.2-develop.2",
|
|
30
|
+
"@progress/kendo-react-common": "7.0.2-develop.2",
|
|
31
|
+
"@progress/kendo-react-dialogs": "7.0.2-develop.2",
|
|
32
|
+
"@progress/kendo-react-form": "7.0.2-develop.2",
|
|
33
|
+
"@progress/kendo-react-intl": "7.0.2-develop.2",
|
|
34
|
+
"@progress/kendo-react-labels": "7.0.2-develop.2",
|
|
35
|
+
"@progress/kendo-react-popup": "7.0.2-develop.2",
|
|
30
36
|
"@progress/kendo-svg-icons": "^2.0.0",
|
|
31
37
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0",
|
|
32
38
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0"
|
package/slider/Slider.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as React from 'react';
|
|
6
|
-
import
|
|
6
|
+
import PropTypes from 'prop-types';
|
|
7
7
|
import { FormComponentProps, BaseEvent } from '@progress/kendo-react-common';
|
|
8
8
|
import { Direction } from '../interfaces/Direction';
|
|
9
9
|
/**
|
package/switch/Switch.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as React from 'react';
|
|
6
|
-
import
|
|
6
|
+
import PropTypes from 'prop-types';
|
|
7
7
|
import { BaseEvent } from '@progress/kendo-react-common';
|
|
8
8
|
import { ToggleBaseProps } from '../interfaces/ToggleBaseProps';
|
|
9
9
|
import { FormComponent, FormComponentProps, FormComponentValidity } from '@progress/kendo-react-common';
|