@progress/kendo-react-common 9.2.0-develop.4 → 9.2.0-develop.6
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/clone.js +1 -1
- package/clone.mjs +3 -3
- package/contexts/AdaptiveModeContext.js +8 -0
- package/contexts/AdaptiveModeContext.mjs +17 -0
- package/dist/cdn/js/kendo-react-common.js +1 -1
- package/hocs/use-adaptive-mode-hoc.js +8 -0
- package/hocs/use-adaptive-mode-hoc.mjs +17 -0
- package/index.d.mts +49 -0
- package/index.d.ts +49 -0
- package/index.js +1 -1
- package/index.mjs +234 -228
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -8,236 +8,242 @@
|
|
|
8
8
|
"use client";
|
|
9
9
|
import * as e from "./tree-utils/itemIdUtils.mjs";
|
|
10
10
|
import { ZIndexContext as t, useZIndexContext as p } from "./contexts/ZIndexContext.mjs";
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
11
|
+
import { AdaptiveModeContext as m, defaultValue as s, useAdaptiveModeContext as n } from "./contexts/AdaptiveModeContext.mjs";
|
|
12
|
+
import { BrowserSupportService as x } from "./browser-support.service.mjs";
|
|
13
|
+
import { canUseDOM as l } from "./canUseDOM.mjs";
|
|
14
|
+
import { canUseRef as d } from "./canUseRef.mjs";
|
|
15
|
+
import { classNames as I, strippedClassNames as C } from "./classNames.mjs";
|
|
16
|
+
import { clone as E, cloneArray as h, cloneDate as D, cloneObject as b, cloneValue as g } from "./clone.mjs";
|
|
17
|
+
import { applyTrappedFocus as T, disableNavigatableContainer as v, enableNavigatableContainer as B, firstFocusableChild as S, focusFirstFocusableChild as M, focusLastFocusableChild as L, focusableChildren as y, keepFocusInContainer as F, lastFocusableChild as N } from "./trappedFocus.mjs";
|
|
18
|
+
import { FormComponent as O } from "./FormComponent.mjs";
|
|
19
|
+
import { getTabIndex as k } from "./getTabIndex.mjs";
|
|
20
|
+
import { getter as R } from "./getter.mjs";
|
|
21
|
+
import { guid as W } from "./guid.mjs";
|
|
22
|
+
import { KEYS as H, Keys as K } from "./keys.mjs";
|
|
23
|
+
import { noop as z } from "./noop.mjs";
|
|
24
|
+
import { getScrollbarWidth as X, setScrollbarWidth as Y } from "./scrollbarWidth.mjs";
|
|
25
|
+
import { setter as J } from "./setter.mjs";
|
|
26
|
+
import { ADAPTIVE_MEDIUM_BREAKPOINT as $, ADAPTIVE_SMALL_BREAKPOINT as ee, FIELD_REGEX as oe, FOCUSABLE_ELEMENTS as re, FOCUSABLE_ELEMENTS_BASE as te, TABBABLE_ELEMENTS as pe } from "./constants/main.mjs";
|
|
27
|
+
import { extendDataItem as me, getItemPath as se, mapTree as ne, mapTreeItem as ie } from "./treeDataOperations.mjs";
|
|
28
|
+
import { shouldShowValidationUI as fe, validatePackage as le } from "./validate-package.mjs";
|
|
29
|
+
import { hasRelativeStackingContext as de } from "./hasRelativeStackingContext.mjs";
|
|
30
|
+
import { WatermarkOverlay as Ie } from "./watermark/WatermarkOverlay.mjs";
|
|
31
|
+
import { applyDefaultProps as Ae } from "./apply-default-props.mjs";
|
|
32
|
+
import { dispatchEvent as he } from "./events/dispatchEvent.mjs";
|
|
33
|
+
import { AsyncFocusBlur as be } from "./hocs/AsyncFocusBlur.mjs";
|
|
34
|
+
import { createPropsContext as Pe, withPropsContext as Te } from "./hocs/withPropsContext.mjs";
|
|
35
|
+
import { withIdHOC as Be } from "./hocs/use-id-hoc.mjs";
|
|
36
|
+
import { withUnstyledHOC as Me } from "./hocs/use-unstyled-hoc.mjs";
|
|
37
|
+
import { withAdaptiveModeContext as ye } from "./hocs/use-adaptive-mode-hoc.mjs";
|
|
38
|
+
import { useDir as Ne } from "./hooks/useDir.mjs";
|
|
39
|
+
import { useAsyncFocusBlur as Oe } from "./hooks/useAsyncFocusBlur.mjs";
|
|
40
|
+
import { useRtl as ke } from "./hooks/useRtl.mjs";
|
|
41
|
+
import { useMouse as Re } from "./hooks/useMouse.mjs";
|
|
42
|
+
import { useCustomComponent as We } from "./hooks/useCustomComponent.mjs";
|
|
43
|
+
import { usePropsContext as He } from "./hooks/usePropsContext.mjs";
|
|
44
|
+
import { COLLECTION_ACTION as je, useCollection as ze } from "./hooks/useCollection.mjs";
|
|
45
|
+
import { useDocument as Xe } from "./hooks/useDocument.mjs";
|
|
46
|
+
import { useWindow as qe } from "./hooks/useWindow.mjs";
|
|
47
|
+
import { useId as Qe } from "./hooks/use-id.mjs";
|
|
48
|
+
import { useIsomorphicLayoutEffect as eo } from "./hooks/use-isomorphic-layout-effect.mjs";
|
|
49
|
+
import { Icon as ro } from "./icons/Icon.mjs";
|
|
50
|
+
import { SvgIcon as po } from "./icons/SvgIcon.mjs";
|
|
51
|
+
import { IconWrap as mo } from "./icons/IconWrap.mjs";
|
|
52
|
+
import { IconsContext as no } from "./icons/IconsContext.mjs";
|
|
53
|
+
import { svgIconPropType as xo, toIconClass as fo, toIconName as lo } from "./icons/utils.mjs";
|
|
54
|
+
import { Typography as co } from "./typography/Typography.mjs";
|
|
55
|
+
import { DragAndDrop as Co } from "./drag-n-drop/index.mjs";
|
|
56
|
+
import { Draggable as Eo } from "./Draggable.mjs";
|
|
57
|
+
import { Droppable as Do } from "./Droppable.mjs";
|
|
58
|
+
import { useDraggable as go } from "./hooks/useDraggable.mjs";
|
|
59
|
+
import { useDroppable as To } from "./hooks/useDroppable.mjs";
|
|
60
|
+
import { kendoThemeMaps as Bo } from "./theme.mjs";
|
|
61
|
+
import { memoizeOne as Mo } from "./memoize.mjs";
|
|
62
|
+
import { Navigation as yo } from "./navigation.mjs";
|
|
63
|
+
import { getActiveElement as No, getInnerActiveElement as wo } from "./getActiveElement.mjs";
|
|
64
|
+
import { TreeFieldsService as Uo } from "./tree-utils/FieldsService.mjs";
|
|
65
|
+
import { SortedPublicItemIds as _o } from "./tree-utils/SortedPublicItemIds.mjs";
|
|
66
|
+
import { addItem as Vo, areAllDirectChildrenChecked as Wo, getAllDirectIndirectChildrenIds as Go, getAllParents as Ho, hasChildren as Ko, isEnabledAndAllParentsEnabled as jo, isItemExpandedAndWithChildren as zo, removeItem as Zo, resolveItemId as Xo, resolveItemsIds as Yo, updateItem as qo } from "./tree-utils/itemUtils.mjs";
|
|
67
|
+
import { getNestedValue as Qo, isArray as $o } from "./tree-utils/misc.mjs";
|
|
68
|
+
import { RowHeightService as or } from "./rowHeightService.mjs";
|
|
69
|
+
import { UnstyledContext as tr, useUnstyled as pr } from "./unstyled/main.mjs";
|
|
70
|
+
import { uAnimation as mr } from "./unstyled/animations.mjs";
|
|
71
|
+
import { uSvgIcon as nr } from "./unstyled/icons.mjs";
|
|
72
|
+
import { uButton as xr, uButtonGroup as fr, uDropDownButton as lr } from "./unstyled/buttons.mjs";
|
|
73
|
+
import { uComboBox as dr, uDropDownList as cr, uDropDownsActionSheet as Ir, uDropDownsBase as Cr } from "./unstyled/dropdowns.mjs";
|
|
74
|
+
import { uCalendar as Er, uDateInput as hr, uDateTimePicker as Dr, uTime as br, uTimePicker as gr } from "./unstyled/dateinputs.mjs";
|
|
75
|
+
import { radioButtonClasses as Tr, radioGroupClasses as vr, uInput as Br, uMaskedTextBox as Sr, uRadioButton as Mr, uRadioGroup as Lr, uTextBox as yr } from "./unstyled/inputs.mjs";
|
|
76
|
+
import { uError as Nr, uFloatingLabel as wr, uHint as Or, uLabel as Ur } from "./unstyled/labels.mjs";
|
|
77
|
+
import { uForm as _r } from "./unstyled/form.mjs";
|
|
78
|
+
import { uPopup as Vr } from "./unstyled/popup.mjs";
|
|
79
|
+
import { uGrid as Gr } from "./unstyled/grid.mjs";
|
|
80
|
+
import { actions as Kr, animationStyles as jr, base as zr, buttonPrefix as Zr, calendarPrefix as Xr, comboBoxPrefix as Yr, components as qr, containers as Jr, cssUtils as Qr, cursor as $r, dateInputs as et, ddbPrefix as ot, dimensions as rt, directionMap as tt, dropDownListPrefix as pt, elements as at, fillModeMap as mt, forms as st, grid as nt, gridPrefix as it, icon as xt, inputPrefix as ft, inputs as lt, jsonTheme as ut, labels as dt, maskedPrefix as ct, orientationMap as It, pickerPrefix as Ct, popup as At, radioPrefix as Et, roundedMap as ht, sizeMap as Dt, states as bt, themeColorMap as gt } from "./unstyled/json-classes.mjs";
|
|
79
81
|
export {
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
82
|
+
$ as ADAPTIVE_MEDIUM_BREAKPOINT,
|
|
83
|
+
ee as ADAPTIVE_SMALL_BREAKPOINT,
|
|
84
|
+
m as AdaptiveModeContext,
|
|
85
|
+
be as AsyncFocusBlur,
|
|
86
|
+
x as BrowserSupportService,
|
|
87
|
+
je as COLLECTION_ACTION,
|
|
88
|
+
Co as DragAndDrop,
|
|
89
|
+
Eo as Draggable,
|
|
90
|
+
Do as Droppable,
|
|
91
|
+
oe as FIELD_REGEX,
|
|
92
|
+
re as FOCUSABLE_ELEMENTS,
|
|
93
|
+
te as FOCUSABLE_ELEMENTS_BASE,
|
|
94
|
+
O as FormComponent,
|
|
95
|
+
ro as Icon,
|
|
96
|
+
mo as IconWrap,
|
|
97
|
+
no as IconsContext,
|
|
98
|
+
H as KEYS,
|
|
99
|
+
K as Keys,
|
|
100
|
+
yo as Navigation,
|
|
101
|
+
or as RowHeightService,
|
|
102
|
+
_o as SortedPublicItemIds,
|
|
103
|
+
po as SvgIcon,
|
|
104
|
+
pe as TABBABLE_ELEMENTS,
|
|
105
|
+
Uo as TreeFieldsService,
|
|
106
|
+
co as Typography,
|
|
107
|
+
tr as UnstyledContext,
|
|
108
|
+
Ie as WatermarkOverlay,
|
|
106
109
|
t as ZIndexContext,
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
110
|
+
Kr as actions,
|
|
111
|
+
Vo as addItem,
|
|
112
|
+
jr as animationStyles,
|
|
113
|
+
Ae as applyDefaultProps,
|
|
114
|
+
T as applyTrappedFocus,
|
|
115
|
+
Wo as areAllDirectChildrenChecked,
|
|
116
|
+
zr as base,
|
|
117
|
+
Zr as buttonPrefix,
|
|
118
|
+
Xr as calendarPrefix,
|
|
119
|
+
l as canUseDOM,
|
|
120
|
+
d as canUseRef,
|
|
121
|
+
I as classNames,
|
|
122
|
+
E as clone,
|
|
123
|
+
h as cloneArray,
|
|
124
|
+
D as cloneDate,
|
|
125
|
+
b as cloneObject,
|
|
126
|
+
g as cloneValue,
|
|
127
|
+
Yr as comboBoxPrefix,
|
|
128
|
+
qr as components,
|
|
129
|
+
Jr as containers,
|
|
130
|
+
Pe as createPropsContext,
|
|
131
|
+
Qr as cssUtils,
|
|
132
|
+
$r as cursor,
|
|
133
|
+
et as dateInputs,
|
|
134
|
+
ot as ddbPrefix,
|
|
135
|
+
s as defaultValue,
|
|
136
|
+
rt as dimensions,
|
|
137
|
+
tt as directionMap,
|
|
138
|
+
v as disableNavigatableContainer,
|
|
139
|
+
he as dispatchEvent,
|
|
140
|
+
pt as dropDownListPrefix,
|
|
141
|
+
at as elements,
|
|
142
|
+
B as enableNavigatableContainer,
|
|
143
|
+
me as extendDataItem,
|
|
144
|
+
mt as fillModeMap,
|
|
145
|
+
S as firstFocusableChild,
|
|
146
|
+
M as focusFirstFocusableChild,
|
|
147
|
+
L as focusLastFocusableChild,
|
|
148
|
+
y as focusableChildren,
|
|
149
|
+
st as forms,
|
|
150
|
+
No as getActiveElement,
|
|
151
|
+
Go as getAllDirectIndirectChildrenIds,
|
|
152
|
+
Ho as getAllParents,
|
|
153
|
+
wo as getInnerActiveElement,
|
|
154
|
+
se as getItemPath,
|
|
155
|
+
Qo as getNestedValue,
|
|
156
|
+
X as getScrollbarWidth,
|
|
157
|
+
k as getTabIndex,
|
|
158
|
+
R as getter,
|
|
159
|
+
nt as grid,
|
|
160
|
+
it as gridPrefix,
|
|
161
|
+
W as guid,
|
|
162
|
+
Ko as hasChildren,
|
|
163
|
+
de as hasRelativeStackingContext,
|
|
164
|
+
xt as icon,
|
|
165
|
+
ft as inputPrefix,
|
|
166
|
+
lt as inputs,
|
|
167
|
+
$o as isArray,
|
|
168
|
+
jo as isEnabledAndAllParentsEnabled,
|
|
169
|
+
zo as isItemExpandedAndWithChildren,
|
|
170
|
+
ut as jsonTheme,
|
|
171
|
+
F as keepFocusInContainer,
|
|
172
|
+
Bo as kendoThemeMaps,
|
|
173
|
+
dt as labels,
|
|
174
|
+
N as lastFocusableChild,
|
|
175
|
+
ne as mapTree,
|
|
176
|
+
ie as mapTreeItem,
|
|
177
|
+
ct as maskedPrefix,
|
|
178
|
+
Mo as memoizeOne,
|
|
179
|
+
z as noop,
|
|
180
|
+
It as orientationMap,
|
|
181
|
+
Ct as pickerPrefix,
|
|
182
|
+
At as popup,
|
|
183
|
+
Tr as radioButtonClasses,
|
|
184
|
+
vr as radioGroupClasses,
|
|
185
|
+
Et as radioPrefix,
|
|
186
|
+
Zo as removeItem,
|
|
187
|
+
Xo as resolveItemId,
|
|
188
|
+
Yo as resolveItemsIds,
|
|
189
|
+
ht as roundedMap,
|
|
190
|
+
Y as setScrollbarWidth,
|
|
191
|
+
J as setter,
|
|
192
|
+
fe as shouldShowValidationUI,
|
|
193
|
+
Dt as sizeMap,
|
|
194
|
+
bt as states,
|
|
195
|
+
C as strippedClassNames,
|
|
196
|
+
xo as svgIconPropType,
|
|
197
|
+
gt as themeColorMap,
|
|
198
|
+
fo as toIconClass,
|
|
199
|
+
lo as toIconName,
|
|
196
200
|
e as treeIdUtils,
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
201
|
+
mr as uAnimation,
|
|
202
|
+
xr as uButton,
|
|
203
|
+
fr as uButtonGroup,
|
|
204
|
+
Er as uCalendar,
|
|
205
|
+
dr as uComboBox,
|
|
206
|
+
hr as uDateInput,
|
|
207
|
+
Dr as uDateTimePicker,
|
|
208
|
+
lr as uDropDownButton,
|
|
209
|
+
cr as uDropDownList,
|
|
210
|
+
Ir as uDropDownsActionSheet,
|
|
211
|
+
Cr as uDropDownsBase,
|
|
212
|
+
Nr as uError,
|
|
213
|
+
wr as uFloatingLabel,
|
|
214
|
+
_r as uForm,
|
|
215
|
+
Gr as uGrid,
|
|
216
|
+
Or as uHint,
|
|
217
|
+
Br as uInput,
|
|
218
|
+
Ur as uLabel,
|
|
219
|
+
Sr as uMaskedTextBox,
|
|
220
|
+
Vr as uPopup,
|
|
221
|
+
Mr as uRadioButton,
|
|
222
|
+
Lr as uRadioGroup,
|
|
223
|
+
nr as uSvgIcon,
|
|
224
|
+
yr as uTextBox,
|
|
225
|
+
br as uTime,
|
|
226
|
+
gr as uTimePicker,
|
|
227
|
+
qo as updateItem,
|
|
228
|
+
n as useAdaptiveModeContext,
|
|
229
|
+
Oe as useAsyncFocusBlur,
|
|
230
|
+
ze as useCollection,
|
|
231
|
+
We as useCustomComponent,
|
|
232
|
+
Ne as useDir,
|
|
233
|
+
Xe as useDocument,
|
|
234
|
+
go as useDraggable,
|
|
235
|
+
To as useDroppable,
|
|
236
|
+
Qe as useId,
|
|
237
|
+
eo as useIsomorphicLayoutEffect,
|
|
238
|
+
Re as useMouse,
|
|
239
|
+
He as usePropsContext,
|
|
240
|
+
ke as useRtl,
|
|
241
|
+
pr as useUnstyled,
|
|
242
|
+
qe as useWindow,
|
|
238
243
|
p as useZIndexContext,
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
Te as
|
|
244
|
+
le as validatePackage,
|
|
245
|
+
ye as withAdaptiveModeContext,
|
|
246
|
+
Be as withIdHOC,
|
|
247
|
+
Te as withPropsContext,
|
|
248
|
+
Me as withUnstyledHOC
|
|
243
249
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-common",
|
|
3
|
-
"version": "9.2.0-develop.
|
|
3
|
+
"version": "9.2.0-develop.6",
|
|
4
4
|
"description": "React Common package delivers common utilities that can be used with the KendoReact UI components. KendoReact Common Utilities package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|