@progress/kendo-react-form 9.0.0-develop.1 → 9.0.0-develop.3

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/Field.mjs CHANGED
@@ -10,10 +10,7 @@ import * as t from "react";
10
10
  import { FormContext as F } from "./FormContext.mjs";
11
11
  const v = (h) => {
12
12
  const { name: e, component: r, validator: s, children: u, onChange: l, ...i } = h, o = t.useContext(F), a = o ? o.id : "";
13
- t.useEffect(
14
- () => o ? o.registerField(e, s) : void 0,
15
- [e, a, s]
16
- );
13
+ t.useEffect(() => o ? o.registerField(e, s) : void 0, [e, a, s]);
17
14
  const m = t.useCallback(
18
15
  (n) => {
19
16
  const f = n && (n.value !== void 0 ? n.value : n.target ? n.target.value : n.target);
@@ -23,13 +20,7 @@ const v = (h) => {
23
20
  ), C = t.useCallback(
24
21
  (n) => o.onChange(e, { value: n.target.value }),
25
22
  [e, a]
26
- ), c = t.useCallback(
27
- () => o.onBlur(e),
28
- [e, a]
29
- ), d = t.useCallback(
30
- () => o.onFocus(e),
31
- [e, a]
32
- );
23
+ ), c = t.useCallback(() => o.onBlur(e), [e, a]), d = t.useCallback(() => o.onFocus(e), [e, a]);
33
24
  if (!o)
34
25
  return null;
35
26
  const g = o.valueGetter(e);
@@ -40,30 +31,27 @@ const v = (h) => {
40
31
  value: g,
41
32
  children: u,
42
33
  ...i
43
- }) : t.createElement(
44
- r,
45
- {
46
- children: u,
47
- ...i,
48
- // input
49
- onChange: m,
50
- onBlur: c,
51
- onFocus: d,
52
- value: g,
53
- // meta
54
- validationMessage: o.errors[e],
55
- touched: o.touched[e],
56
- modified: o.modified[e],
57
- visited: o.visited[e],
58
- // Our `valid` implementation requires double submit to show html5 validation errors,
59
- // however it's NOT recommended to show html5 validation errors at all as:
60
- // - There is no standard way to change validation look and feel with CSS.
61
- // - Look different in each browser / OS
62
- // - You can have a page in one language but an error message displayed in another language (not localizable)
63
- valid: !(o.errors[e] && o.touched[e]),
64
- name: e
65
- }
66
- );
34
+ }) : t.createElement(r, {
35
+ children: u,
36
+ ...i,
37
+ // input
38
+ onChange: m,
39
+ onBlur: c,
40
+ onFocus: d,
41
+ value: g,
42
+ // meta
43
+ validationMessage: o.errors[e],
44
+ touched: o.touched[e],
45
+ modified: o.modified[e],
46
+ visited: o.visited[e],
47
+ // Our `valid` implementation requires double submit to show html5 validation errors,
48
+ // however it's NOT recommended to show html5 validation errors at all as:
49
+ // - There is no standard way to change validation look and feel with CSS.
50
+ // - Look different in each browser / OS
51
+ // - You can have a page in one language but an error message displayed in another language (not localizable)
52
+ valid: !(o.errors[e] && o.touched[e]),
53
+ name: e
54
+ });
67
55
  };
68
56
  v.displayName = "KendoReactField";
69
57
  export {
package/FieldArray.mjs CHANGED
@@ -10,63 +10,36 @@ import * as t from "react";
10
10
  import { FormContext as b } from "./FormContext.mjs";
11
11
  const k = (a) => {
12
12
  const { name: e, component: l, validator: r, type: F, children: c, ...i } = a, o = t.useContext(b), s = o ? o.id : "";
13
- t.useEffect(
14
- () => o ? o.registerField(e, r) : void 0,
15
- [e, s, r]
16
- );
17
- const u = t.useCallback(
18
- (n) => o.onUnshift(e, n),
19
- [e, s]
20
- ), d = t.useCallback(
21
- (n) => o.onPush(e, n),
22
- [e, s]
23
- ), m = t.useCallback(
24
- (n) => o.onInsert(e, n),
25
- [e, s]
26
- ), f = t.useCallback(
27
- () => o.onPop(e),
28
- [e, s]
29
- ), v = t.useCallback(
30
- (n) => o.onRemove(e, n),
31
- [e, s]
32
- ), p = t.useCallback(
33
- (n) => o.onReplace(e, n),
34
- [e, s]
35
- ), h = t.useCallback(
36
- (n) => o.onMove(e, n),
37
- [e, s]
38
- );
13
+ t.useEffect(() => o ? o.registerField(e, r) : void 0, [e, s, r]);
14
+ const u = t.useCallback((n) => o.onUnshift(e, n), [e, s]), d = t.useCallback((n) => o.onPush(e, n), [e, s]), m = t.useCallback((n) => o.onInsert(e, n), [e, s]), f = t.useCallback(() => o.onPop(e), [e, s]), v = t.useCallback((n) => o.onRemove(e, n), [e, s]), p = t.useCallback((n) => o.onReplace(e, n), [e, s]), h = t.useCallback((n) => o.onMove(e, n), [e, s]);
39
15
  if (!o)
40
16
  return null;
41
17
  const C = o.valueGetter(e);
42
- return t.createElement(
43
- l,
44
- {
45
- // input
46
- value: C,
47
- // meta
48
- validationMessage: o.errors[e],
49
- touched: o.touched[e],
50
- modified: o.modified[e],
51
- visited: o.visited[e],
52
- // Our `valid` implementation requires double submit to show html5 validation errors,
53
- // however it's NOT recommended to show html5 validation errors at all as:
54
- // - There is no standard way to change validation look and feel with CSS.
55
- // - Look different in each browser / OS
56
- // - You can have a page in one language but an error message displayed in another language (not localizable)
57
- valid: !(o.errors[e] && o.touched[e]),
58
- onUnshift: u,
59
- onPush: d,
60
- onInsert: m,
61
- onPop: f,
62
- onRemove: v,
63
- onReplace: p,
64
- onMove: h,
65
- children: c,
66
- name: e,
67
- ...i
68
- }
69
- );
18
+ return t.createElement(l, {
19
+ // input
20
+ value: C,
21
+ // meta
22
+ validationMessage: o.errors[e],
23
+ touched: o.touched[e],
24
+ modified: o.modified[e],
25
+ visited: o.visited[e],
26
+ // Our `valid` implementation requires double submit to show html5 validation errors,
27
+ // however it's NOT recommended to show html5 validation errors at all as:
28
+ // - There is no standard way to change validation look and feel with CSS.
29
+ // - Look different in each browser / OS
30
+ // - You can have a page in one language but an error message displayed in another language (not localizable)
31
+ valid: !(o.errors[e] && o.touched[e]),
32
+ onUnshift: u,
33
+ onPush: d,
34
+ onInsert: m,
35
+ onPop: f,
36
+ onRemove: v,
37
+ onReplace: p,
38
+ onMove: h,
39
+ children: c,
40
+ name: e,
41
+ ...i
42
+ });
70
43
  };
71
44
  k.displayName = "KendoReactFieldArray";
72
45
  export {
package/FieldWrapper.mjs CHANGED
@@ -10,10 +10,13 @@ import * as t from "react";
10
10
  import { useUnstyled as d, classNames as m, uForm as i } from "@progress/kendo-react-common";
11
11
  const n = (e) => {
12
12
  const a = d(), s = e.unstyled || a, l = s && s.uForm, c = t.useMemo(
13
- () => m(i.field({
14
- c: l,
15
- isRtl: e.dir === "rtl"
16
- }), e.className),
13
+ () => m(
14
+ i.field({
15
+ c: l,
16
+ isRtl: e.dir === "rtl"
17
+ }),
18
+ e.className
19
+ ),
17
20
  [l, e.className, e.dir]
18
21
  );
19
22
  return /* @__PURE__ */ t.createElement("div", { className: c, style: e.style }, e.children);
package/Form.mjs CHANGED
@@ -17,12 +17,9 @@ const T = 0, n = class n extends a.Component {
17
17
  */
18
18
  constructor(o) {
19
19
  super(o), this._touched = {}, this._visited = {}, this._modified = {}, this._validatorsByField = {}, this._values = {}, this._fields = {}, this._unmounted = !1, this._submitted = !1, this.isValid = () => this.isFormValid(this.errors), this.accumulatedForceUpdate = () => {
20
- this._accumulatorTimeout && clearTimeout(this._accumulatorTimeout), this._accumulatorTimeout = window.setTimeout(
21
- () => {
22
- this._accumulatorTimeout = void 0, this.forceUpdate();
23
- },
24
- T
25
- );
20
+ this._accumulatorTimeout && clearTimeout(this._accumulatorTimeout), this._accumulatorTimeout = window.setTimeout(() => {
21
+ this._accumulatorTimeout = void 0, this.forceUpdate();
22
+ }, T);
26
23
  }, this.resetForm = () => {
27
24
  this.values = l(this.props.initialValues), this._key = F(), this._touched = {}, this._visited = {}, this._modified = {}, this._validatorsByField = {}, this._fields = {}, this._submitted = !1, this.forceUpdate();
28
25
  }, this.onReset = () => this.resetForm(), this.addField = (t) => {
package/FormElement.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 client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const g=require("react"),l=require("@progress/kendo-react-common"),v=require("./FormContext.js");function F(e){const o=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const n in e)if(n!=="default"){const r=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(o,n,r.get?r:{enumerable:!0,get:()=>e[n]})}}return o.default=e,Object.freeze(o)}const t=F(g),b=t.forwardRef((e,o)=>{const n={size:"medium",...e},r=t.useRef(null),a=t.useRef(null);t.useImperativeHandle(a,()=>({element:r.current,props:n})),t.useImperativeHandle(o,()=>a.current);const s=t.useContext(v.FormContext),{className:m,style:R,horizontal:c,size:u,...y}=n,i=l.useUnstyled(),f=i&&i.uForm,d=t.useMemo(()=>c?"horizontal":c===!1?"vertical":void 0,[c]),p=t.useMemo(()=>l.classNames(l.uForm.form({c:f,size:u,orientation:d}),m),[m,f,d,u]);return t.createElement("form",{ref:r,...y,id:s?s.id:void 0,style:e.style,className:p,onSubmit:s?s.onSubmit:void 0},e.children)});b.displayName="KendoReactFormElement";exports.FormElement=b;
8
+ "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const g=require("react"),l=require("@progress/kendo-react-common"),v=require("./FormContext.js");function F(e){const o=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const n in e)if(n!=="default"){const r=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(o,n,r.get?r:{enumerable:!0,get:()=>e[n]})}}return o.default=e,Object.freeze(o)}const t=F(g),b=t.forwardRef((e,o)=>{const n={size:"medium",...e},r=t.useRef(null),a=t.useRef(null);t.useImperativeHandle(a,()=>({element:r.current,props:n})),t.useImperativeHandle(o,()=>a.current);const s=t.useContext(v.FormContext),{className:m,style:R,horizontal:c,size:u,...y}=n,i=l.useUnstyled(),f=i&&i.uForm,d=t.useMemo(()=>{if(c)return"horizontal";if(c===!1)return"vertical"},[c]),p=t.useMemo(()=>l.classNames(l.uForm.form({c:f,size:u,orientation:d}),m),[m,f,d,u]);return t.createElement("form",{ref:r,...y,id:s?s.id:void 0,style:e.style,className:p,onSubmit:s?s.onSubmit:void 0},e.children)});b.displayName="KendoReactFormElement";exports.FormElement=b;
package/FormElement.mjs CHANGED
@@ -15,15 +15,20 @@ const R = e.forwardRef((o, f) => {
15
15
  ...o
16
16
  }, n = e.useRef(null), m = e.useRef(null);
17
17
  e.useImperativeHandle(m, () => ({ element: n.current, props: r })), e.useImperativeHandle(f, () => m.current);
18
- const t = e.useContext(N), { className: l, style: h, horizontal: s, size: a, ...d } = r, i = y(), c = i && i.uForm, u = e.useMemo(
19
- () => s ? "horizontal" : s === !1 ? "vertical" : void 0,
20
- [s]
21
- ), p = e.useMemo(
22
- () => v(F.form({
23
- c,
24
- size: a,
25
- orientation: u
26
- }), l),
18
+ const t = e.useContext(N), { className: l, style: h, horizontal: s, size: a, ...d } = r, i = y(), c = i && i.uForm, u = e.useMemo(() => {
19
+ if (s)
20
+ return "horizontal";
21
+ if (s === !1)
22
+ return "vertical";
23
+ }, [s]), p = e.useMemo(
24
+ () => v(
25
+ F.form({
26
+ c,
27
+ size: a,
28
+ orientation: u
29
+ }),
30
+ l
31
+ ),
27
32
  [l, c, u, a]
28
33
  );
29
34
  return /* @__PURE__ */ e.createElement(
package/README.md CHANGED
@@ -2,14 +2,14 @@
2
2
  <img src="https://www.telerik.com/kendo-react-ui/components/npm-banner.svg" alt="KendoReact NPM Banner">
3
3
  </a>
4
4
 
5
-
6
5
  # KendoReact Form Component for React
7
6
 
8
7
  > **Important**
9
- > * This package is а part of [KendoReact](https://www.telerik.com/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form)&mdash;a commercial UI library.
10
- > * You will need to install a license key when adding the package to your project. For more information, please refer to the [KendoReact My License page](https://www.telerik.com/kendo-react-ui/components/my-license/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form).
11
- > * To receive a license key, you need to either [purchase a license](https://www.telerik.com/kendo-react-ui/pricing?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form) or register for a [free trial](https://www.telerik.com/try/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form). Doing so indicates that you [accept the KendoReact License Agreement](https://www.telerik.com/purchase/license-agreement/progress-kendoreact?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form).
12
- > * The 30-day free trial gives you access to all the KendoReact components and their full functionality. Additionally, for the period of your license, you get access to our legendary technical support provided directly by the KendoReact dev team!
8
+ >
9
+ > - This package is а part of [KendoReact](https://www.telerik.com/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form)&mdash;a commercial UI library.
10
+ > - You will need to install a license key when adding the package to your project. For more information, please refer to the [KendoReact My License page](https://www.telerik.com/kendo-react-ui/components/my-license/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form).
11
+ > - To receive a license key, you need to either [purchase a license](https://www.telerik.com/kendo-react-ui/pricing?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form) or register for a [free trial](https://www.telerik.com/try/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form). Doing so indicates that you [accept the KendoReact License Agreement](https://www.telerik.com/purchase/license-agreement/progress-kendoreact?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form).
12
+ > - The 30-day free trial gives you access to all the KendoReact components and their full functionality. Additionally, for the period of your license, you get access to our legendary technical support provided directly by the KendoReact dev team!
13
13
  >
14
14
  > [Start using KendoReact](https://www.telerik.com/try/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form) and speed up your development process!
15
15
 
@@ -19,35 +19,35 @@ React Form, part of KendoReact, is a small and fast package for form state manag
19
19
 
20
20
  Among the features which the KendoReact Form component delivers are:
21
21
 
22
- * [Custom components](https://www.telerik.com/kendo-react-ui/components/form/custom-components/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form)&mdash;You can render custom components in the [KendoReact field](https://www.telerik.com/kendo-react-ui/components/form/api/Field/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form) component by using the built-in properties of the [`FieldRenderProps`](https://www.telerik.com/kendo-react-ui/components/form/api/FieldRenderProps/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form) interface and any custom properties.
23
- * [Theme support](https://www.telerik.com/kendo-react-ui/components/styling/)&mdash;The KendoReact Form, as well as all 100+ components in the KendoReact suite, are styled in three polished themes (Bootstrap, Material, and Default) and can be further customized to match your specific design guidelines.
22
+ - [Custom components](https://www.telerik.com/kendo-react-ui/components/form/custom-components/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form)&mdash;You can render custom components in the [KendoReact field](https://www.telerik.com/kendo-react-ui/components/form/api/Field/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form) component by using the built-in properties of the [`FieldRenderProps`](https://www.telerik.com/kendo-react-ui/components/form/api/FieldRenderProps/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form) interface and any custom properties.
23
+ - [Theme support](https://www.telerik.com/kendo-react-ui/components/styling/)&mdash;The KendoReact Form, as well as all 100+ components in the KendoReact suite, are styled in three polished themes (Bootstrap, Material, and Default) and can be further customized to match your specific design guidelines.
24
24
 
25
25
  ## Support Options
26
26
 
27
27
  For any issues you might encounter while working with the KendoReact Form, use any of the available support channels:
28
28
 
29
- * Industry-leading technical support&mdash;KendoReact paid license holders and users with an active (free) trial license can take advantage of our outstanding customer support. To submit a ticket, use [the dedicated KendoReact support system](https://www.telerik.com/account/support-tickets?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form).
30
- * Product forums&mdash;The [KendoReact forums](https://www.telerik.com/forums/kendo-ui-react?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form) are part of the free support you can get from the community and from the KendoReact team.
31
- * Feedback portal&mdash;The [KendoReact feedback portal](https://feedback.telerik.com/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form) is where you can request and vote for new features to be added.
29
+ - Industry-leading technical support&mdash;KendoReact paid license holders and users with an active (free) trial license can take advantage of our outstanding customer support. To submit a ticket, use [the dedicated KendoReact support system](https://www.telerik.com/account/support-tickets?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form).
30
+ - Product forums&mdash;The [KendoReact forums](https://www.telerik.com/forums/kendo-ui-react?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form) are part of the free support you can get from the community and from the KendoReact team.
31
+ - Feedback portal&mdash;The [KendoReact feedback portal](https://feedback.telerik.com/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form) is where you can request and vote for new features to be added.
32
32
 
33
33
  ## Resources
34
34
 
35
- * [Getting Started with KendoReact](https://www.telerik.com/kendo-react-ui/components/getting-started/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form)
36
- * [Get Started with the KendoReact Form](https://www.telerik.com/kendo-react-ui/components/form/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form)
37
- * [API Reference of the KendoReact Form](https://www.telerik.com/kendo-react-ui/components/form/api/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form)
38
- * [KendoReact Roadmap](https://www.telerik.com/support/whats-new/kendo-react-ui/roadmap?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form)
39
- * [Blogs](https://www.telerik.com/blogs/tag/kendoreact?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form)
40
- * [Demos, documentation, and component reference](https://www.telerik.com/kendo-react-ui/components/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form)
41
- * [KendoReact pricing and licensing](https://www.telerik.com/kendo-react-ui/pricing?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form)
42
- * [Changelog](https://www.telerik.com/kendo-react-ui/components/changelogs/ui-for-react/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form)
35
+ - [Getting Started with KendoReact](https://www.telerik.com/kendo-react-ui/components/getting-started/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form)
36
+ - [Get Started with the KendoReact Form](https://www.telerik.com/kendo-react-ui/components/form/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form)
37
+ - [API Reference of the KendoReact Form](https://www.telerik.com/kendo-react-ui/components/form/api/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form)
38
+ - [KendoReact Roadmap](https://www.telerik.com/support/whats-new/kendo-react-ui/roadmap?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form)
39
+ - [Blogs](https://www.telerik.com/blogs/tag/kendoreact?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form)
40
+ - [Demos, documentation, and component reference](https://www.telerik.com/kendo-react-ui/components/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form)
41
+ - [KendoReact pricing and licensing](https://www.telerik.com/kendo-react-ui/pricing?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form)
42
+ - [Changelog](https://www.telerik.com/kendo-react-ui/components/changelogs/ui-for-react/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-form)
43
43
 
44
44
  High-level component overview pages
45
45
 
46
- * [React FieldArray Component](https://www.telerik.com/kendo-react-ui/fieldarray)
47
- * [React FieldWrapper Component](https://www.telerik.com/kendo-react-ui/fieldwrapper)
48
- * [React Form Component](https://www.telerik.com/kendo-react-ui/form)
49
- * [React FormElement Component](https://www.telerik.com/kendo-react-ui/formelement)
46
+ - [React FieldArray Component](https://www.telerik.com/kendo-react-ui/fieldarray)
47
+ - [React FieldWrapper Component](https://www.telerik.com/kendo-react-ui/fieldwrapper)
48
+ - [React Form Component](https://www.telerik.com/kendo-react-ui/form)
49
+ - [React FormElement Component](https://www.telerik.com/kendo-react-ui/formelement)
50
50
 
51
- *Copyright © 2024 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.*
51
+ _Copyright © 2024 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved._
52
52
 
53
- *Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries.*
53
+ _Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries._
@@ -10,7 +10,7 @@ const e = {
10
10
  name: "@progress/kendo-react-form",
11
11
  productName: "KendoReact",
12
12
  productCodes: ["KENDOUIREACT", "KENDOUICOMPLETE"],
13
- publishDate: 1729154347,
13
+ publishDate: 1729494666,
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-form",
3
- "version": "9.0.0-develop.1",
3
+ "version": "9.0.0-develop.3",
4
4
  "description": "React Form is a small and fast package for form state management with zero dependencies. KendoReact Form package",
5
5
  "author": "Progress",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -23,7 +23,7 @@
23
23
  "sideEffects": false,
24
24
  "peerDependencies": {
25
25
  "@progress/kendo-licensing": "^1.3.4",
26
- "@progress/kendo-react-common": "9.0.0-develop.1",
26
+ "@progress/kendo-react-common": "9.0.0-develop.3",
27
27
  "react": "^16.8.2 || ^17.0.0 || ^18.0.0",
28
28
  "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0"
29
29
  },