@progress/kendo-react-animation 13.3.0-develop.2 → 13.3.0-develop.4
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 +22 -22
- package/index.d.ts +22 -22
- package/package.json +2 -2
package/index.d.mts
CHANGED
|
@@ -154,27 +154,27 @@ declare interface AnimationInterface {
|
|
|
154
154
|
*/
|
|
155
155
|
componentChildStyle?: any;
|
|
156
156
|
/**
|
|
157
|
-
* Called when you add a component to an existing Animation component and the Animation has not started yet ([more information and example](
|
|
157
|
+
* Called when you add a component to an existing Animation component and the Animation has not started yet ([more information and example](https://www.telerik.com/kendo-react-ui/components/animation/hooks#toc-adding-child-elements)).
|
|
158
158
|
*/
|
|
159
159
|
onEnter?: (event: AnimationEventArguments) => void;
|
|
160
160
|
/**
|
|
161
|
-
* Called when you add a component to an existing Animation component and the Animation is now happening ([more information and example](
|
|
161
|
+
* Called when you add a component to an existing Animation component and the Animation is now happening ([more information and example](https://www.telerik.com/kendo-react-ui/components/animation/hooks#toc-adding-child-elements)).
|
|
162
162
|
*/
|
|
163
163
|
onEntering?: (event: AnimationEventArguments) => void;
|
|
164
164
|
/**
|
|
165
|
-
* Called when you add a component to an existing Animation component and the Animation is now finished ([more information and example](
|
|
165
|
+
* Called when you add a component to an existing Animation component and the Animation is now finished ([more information and example](https://www.telerik.com/kendo-react-ui/components/animation/hooks#toc-adding-child-elements)).
|
|
166
166
|
*/
|
|
167
167
|
onEntered?: (event: AnimationEventArguments) => void;
|
|
168
168
|
/**
|
|
169
|
-
* An event called after the Animation has reached its exit state ([more information and example](
|
|
169
|
+
* An event called after the Animation has reached its exit state ([more information and example](https://www.telerik.com/kendo-react-ui/components/animation/hooks#toc-removing-child-elements)).
|
|
170
170
|
*/
|
|
171
171
|
onExit?: (event: AnimationEventArguments) => void;
|
|
172
172
|
/**
|
|
173
|
-
* An event called after the Animation has reached its exiting state ([more information and example](
|
|
173
|
+
* An event called after the Animation has reached its exiting state ([more information and example](https://www.telerik.com/kendo-react-ui/components/animation/hooks#toc-removing-child-elements)).
|
|
174
174
|
*/
|
|
175
175
|
onExiting?: (event: AnimationEventArguments) => void;
|
|
176
176
|
/**
|
|
177
|
-
* An event called after the Animation has reached its exited state ([more information and example](
|
|
177
|
+
* An event called after the Animation has reached its exited state ([more information and example](https://www.telerik.com/kendo-react-ui/components/animation/hooks#toc-removing-child-elements)).
|
|
178
178
|
*/
|
|
179
179
|
onExited?: (event: AnimationEventArguments) => void;
|
|
180
180
|
/**
|
|
@@ -189,25 +189,25 @@ declare interface AnimationInterface {
|
|
|
189
189
|
*/
|
|
190
190
|
appear?: boolean;
|
|
191
191
|
/**
|
|
192
|
-
* Specifies whether to animate the entering (showing) element ([see example](
|
|
192
|
+
* Specifies whether to animate the entering (showing) element ([see example](https://www.telerik.com/kendo-react-ui/components/animation/disabled-state)).
|
|
193
193
|
*
|
|
194
194
|
* @default true
|
|
195
195
|
*/
|
|
196
196
|
enter?: boolean;
|
|
197
197
|
/**
|
|
198
|
-
* Specifies whether to animate a leaving (disappearing) element ([see example](
|
|
198
|
+
* Specifies whether to animate a leaving (disappearing) element ([see example](https://www.telerik.com/kendo-react-ui/components/animation/disabled-state)).
|
|
199
199
|
*
|
|
200
200
|
* @default true
|
|
201
201
|
*/
|
|
202
202
|
exit?: boolean;
|
|
203
203
|
/**
|
|
204
|
-
* Specifies the duration of the transition for the entering (`animation in`) Animation ([see example](
|
|
204
|
+
* Specifies the duration of the transition for the entering (`animation in`) Animation ([see example](https://www.telerik.com/kendo-react-ui/components/animation/duration)). After the time runs out, the Animation is terminated.
|
|
205
205
|
*
|
|
206
206
|
* @default 300
|
|
207
207
|
*/
|
|
208
208
|
transitionEnterDuration?: number;
|
|
209
209
|
/**
|
|
210
|
-
* Specifies the duration of the transition for the exiting (`animation out`) Animation ([see example](
|
|
210
|
+
* Specifies the duration of the transition for the exiting (`animation out`) Animation ([see example](https://www.telerik.com/kendo-react-ui/components/animation/duration)). After the time runs out, the Animation is terminated.
|
|
211
211
|
*
|
|
212
212
|
* @default 300
|
|
213
213
|
*/
|
|
@@ -227,7 +227,7 @@ declare interface AnimationInterface {
|
|
|
227
227
|
}
|
|
228
228
|
|
|
229
229
|
/**
|
|
230
|
-
* Represents the props of the [KendoReact Animation component](
|
|
230
|
+
* Represents the props of the [KendoReact Animation component](https://www.telerik.com/kendo-react-ui/components/animation).
|
|
231
231
|
*/
|
|
232
232
|
export declare interface AnimationProps extends AnimationInterface {
|
|
233
233
|
/**
|
|
@@ -331,7 +331,7 @@ export declare const Expand: {
|
|
|
331
331
|
};
|
|
332
332
|
|
|
333
333
|
/**
|
|
334
|
-
* Specifies the direction of the Expand Animation ([see example](
|
|
334
|
+
* Specifies the direction of the Expand Animation ([see example](https://www.telerik.com/kendo-react-ui/components/animation/direction#toc-expand)).
|
|
335
335
|
*
|
|
336
336
|
* The supported directions are:
|
|
337
337
|
* * (Default) `vertical`—Expands the content from center to top and bottom, and vice-versa.
|
|
@@ -340,7 +340,7 @@ export declare const Expand: {
|
|
|
340
340
|
export declare type ExpandDirection = 'horizontal' | 'vertical';
|
|
341
341
|
|
|
342
342
|
/**
|
|
343
|
-
* Represents the props of the [KendoReact Expand Animation component](
|
|
343
|
+
* Represents the props of the [KendoReact Expand Animation component](https://www.telerik.com/kendo-react-ui/components/animation/types#toc-expand).
|
|
344
344
|
*/
|
|
345
345
|
export declare interface ExpandProps extends AnimationInterface {
|
|
346
346
|
/**
|
|
@@ -402,7 +402,7 @@ export declare const Fade: {
|
|
|
402
402
|
};
|
|
403
403
|
|
|
404
404
|
/**
|
|
405
|
-
* Represents the props of the [KendoReact Fade Animation component](
|
|
405
|
+
* Represents the props of the [KendoReact Fade Animation component](https://www.telerik.com/kendo-react-ui/components/animation/types#toc-fade).
|
|
406
406
|
*/
|
|
407
407
|
export declare interface FadeProps extends AnimationInterface {
|
|
408
408
|
/**
|
|
@@ -458,7 +458,7 @@ export declare const Push: {
|
|
|
458
458
|
};
|
|
459
459
|
|
|
460
460
|
/**
|
|
461
|
-
* Specifies the direction of the Push Animation ([see example](
|
|
461
|
+
* Specifies the direction of the Push Animation ([see example](https://www.telerik.com/kendo-react-ui/components/animation/direction#toc-push)).
|
|
462
462
|
*
|
|
463
463
|
* The supported directions are:
|
|
464
464
|
* * (Default) `right`—Pushes the content from left to right.
|
|
@@ -469,7 +469,7 @@ export declare const Push: {
|
|
|
469
469
|
export declare type PushDirection = 'up' | 'down' | 'left' | 'right';
|
|
470
470
|
|
|
471
471
|
/**
|
|
472
|
-
* Represents the props of the [KendoReact Push Animation component](
|
|
472
|
+
* Represents the props of the [KendoReact Push Animation component](https://www.telerik.com/kendo-react-ui/components/animation/types#toc-push).
|
|
473
473
|
*/
|
|
474
474
|
export declare interface PushProps extends AnimationInterface {
|
|
475
475
|
/**
|
|
@@ -540,7 +540,7 @@ export declare const Reveal: {
|
|
|
540
540
|
};
|
|
541
541
|
|
|
542
542
|
/**
|
|
543
|
-
* Specifies the direction of the Reveal Animation ([see example](
|
|
543
|
+
* Specifies the direction of the Reveal Animation ([see example](https://www.telerik.com/kendo-react-ui/components/animation/direction#toc-reveal)).
|
|
544
544
|
*
|
|
545
545
|
* The supported directions are:
|
|
546
546
|
* * (Default) `vertical`—Reveals the height of the content.
|
|
@@ -549,7 +549,7 @@ export declare const Reveal: {
|
|
|
549
549
|
export declare type RevealDirection = 'horizontal' | 'vertical';
|
|
550
550
|
|
|
551
551
|
/**
|
|
552
|
-
* Represents the props of the [KendoReact Reveal Animation component](
|
|
552
|
+
* Represents the props of the [KendoReact Reveal Animation component](https://www.telerik.com/kendo-react-ui/components/animation/types#toc-reveal).
|
|
553
553
|
*/
|
|
554
554
|
export declare interface RevealProps extends AnimationInterface {
|
|
555
555
|
/**
|
|
@@ -617,7 +617,7 @@ export declare const Slide: {
|
|
|
617
617
|
};
|
|
618
618
|
|
|
619
619
|
/**
|
|
620
|
-
* Specifies the direction of the Slide Animation ([see example](
|
|
620
|
+
* Specifies the direction of the Slide Animation ([see example](https://www.telerik.com/kendo-react-ui/components/animation/direction#toc-slide)).
|
|
621
621
|
*
|
|
622
622
|
* The supported directions are:
|
|
623
623
|
* * (Default) `down`—On showing, slides the content from top to bottom, and vice-versa.
|
|
@@ -628,7 +628,7 @@ export declare const Slide: {
|
|
|
628
628
|
export declare type SlideDirection = 'up' | 'down' | 'left' | 'right';
|
|
629
629
|
|
|
630
630
|
/**
|
|
631
|
-
* Represents the props of the [KendoReact Slide Animation component](
|
|
631
|
+
* Represents the props of the [KendoReact Slide Animation component](https://www.telerik.com/kendo-react-ui/components/animation/types#toc-slide).
|
|
632
632
|
*/
|
|
633
633
|
export declare interface SlideProps extends AnimationInterface {
|
|
634
634
|
/**
|
|
@@ -695,7 +695,7 @@ export declare const Zoom: {
|
|
|
695
695
|
};
|
|
696
696
|
|
|
697
697
|
/**
|
|
698
|
-
* Specifies the direction of the Zoom Animation ([see example](
|
|
698
|
+
* Specifies the direction of the Zoom Animation ([see example](https://www.telerik.com/kendo-react-ui/components/animation/direction#toc-zoom)).
|
|
699
699
|
*
|
|
700
700
|
* The supported directions are:
|
|
701
701
|
* * (Default) `out`—Zooms the content from the outside to the inside.
|
|
@@ -704,7 +704,7 @@ export declare const Zoom: {
|
|
|
704
704
|
export declare type ZoomDirection = 'in' | 'out';
|
|
705
705
|
|
|
706
706
|
/**
|
|
707
|
-
* Represents the props of the [KendoReact Zoom Animation component](
|
|
707
|
+
* Represents the props of the [KendoReact Zoom Animation component](https://www.telerik.com/kendo-react-ui/components/animation/types#toc-zoom).
|
|
708
708
|
*/
|
|
709
709
|
export declare interface ZoomProps extends AnimationInterface {
|
|
710
710
|
/**
|
package/index.d.ts
CHANGED
|
@@ -154,27 +154,27 @@ declare interface AnimationInterface {
|
|
|
154
154
|
*/
|
|
155
155
|
componentChildStyle?: any;
|
|
156
156
|
/**
|
|
157
|
-
* Called when you add a component to an existing Animation component and the Animation has not started yet ([more information and example](
|
|
157
|
+
* Called when you add a component to an existing Animation component and the Animation has not started yet ([more information and example](https://www.telerik.com/kendo-react-ui/components/animation/hooks#toc-adding-child-elements)).
|
|
158
158
|
*/
|
|
159
159
|
onEnter?: (event: AnimationEventArguments) => void;
|
|
160
160
|
/**
|
|
161
|
-
* Called when you add a component to an existing Animation component and the Animation is now happening ([more information and example](
|
|
161
|
+
* Called when you add a component to an existing Animation component and the Animation is now happening ([more information and example](https://www.telerik.com/kendo-react-ui/components/animation/hooks#toc-adding-child-elements)).
|
|
162
162
|
*/
|
|
163
163
|
onEntering?: (event: AnimationEventArguments) => void;
|
|
164
164
|
/**
|
|
165
|
-
* Called when you add a component to an existing Animation component and the Animation is now finished ([more information and example](
|
|
165
|
+
* Called when you add a component to an existing Animation component and the Animation is now finished ([more information and example](https://www.telerik.com/kendo-react-ui/components/animation/hooks#toc-adding-child-elements)).
|
|
166
166
|
*/
|
|
167
167
|
onEntered?: (event: AnimationEventArguments) => void;
|
|
168
168
|
/**
|
|
169
|
-
* An event called after the Animation has reached its exit state ([more information and example](
|
|
169
|
+
* An event called after the Animation has reached its exit state ([more information and example](https://www.telerik.com/kendo-react-ui/components/animation/hooks#toc-removing-child-elements)).
|
|
170
170
|
*/
|
|
171
171
|
onExit?: (event: AnimationEventArguments) => void;
|
|
172
172
|
/**
|
|
173
|
-
* An event called after the Animation has reached its exiting state ([more information and example](
|
|
173
|
+
* An event called after the Animation has reached its exiting state ([more information and example](https://www.telerik.com/kendo-react-ui/components/animation/hooks#toc-removing-child-elements)).
|
|
174
174
|
*/
|
|
175
175
|
onExiting?: (event: AnimationEventArguments) => void;
|
|
176
176
|
/**
|
|
177
|
-
* An event called after the Animation has reached its exited state ([more information and example](
|
|
177
|
+
* An event called after the Animation has reached its exited state ([more information and example](https://www.telerik.com/kendo-react-ui/components/animation/hooks#toc-removing-child-elements)).
|
|
178
178
|
*/
|
|
179
179
|
onExited?: (event: AnimationEventArguments) => void;
|
|
180
180
|
/**
|
|
@@ -189,25 +189,25 @@ declare interface AnimationInterface {
|
|
|
189
189
|
*/
|
|
190
190
|
appear?: boolean;
|
|
191
191
|
/**
|
|
192
|
-
* Specifies whether to animate the entering (showing) element ([see example](
|
|
192
|
+
* Specifies whether to animate the entering (showing) element ([see example](https://www.telerik.com/kendo-react-ui/components/animation/disabled-state)).
|
|
193
193
|
*
|
|
194
194
|
* @default true
|
|
195
195
|
*/
|
|
196
196
|
enter?: boolean;
|
|
197
197
|
/**
|
|
198
|
-
* Specifies whether to animate a leaving (disappearing) element ([see example](
|
|
198
|
+
* Specifies whether to animate a leaving (disappearing) element ([see example](https://www.telerik.com/kendo-react-ui/components/animation/disabled-state)).
|
|
199
199
|
*
|
|
200
200
|
* @default true
|
|
201
201
|
*/
|
|
202
202
|
exit?: boolean;
|
|
203
203
|
/**
|
|
204
|
-
* Specifies the duration of the transition for the entering (`animation in`) Animation ([see example](
|
|
204
|
+
* Specifies the duration of the transition for the entering (`animation in`) Animation ([see example](https://www.telerik.com/kendo-react-ui/components/animation/duration)). After the time runs out, the Animation is terminated.
|
|
205
205
|
*
|
|
206
206
|
* @default 300
|
|
207
207
|
*/
|
|
208
208
|
transitionEnterDuration?: number;
|
|
209
209
|
/**
|
|
210
|
-
* Specifies the duration of the transition for the exiting (`animation out`) Animation ([see example](
|
|
210
|
+
* Specifies the duration of the transition for the exiting (`animation out`) Animation ([see example](https://www.telerik.com/kendo-react-ui/components/animation/duration)). After the time runs out, the Animation is terminated.
|
|
211
211
|
*
|
|
212
212
|
* @default 300
|
|
213
213
|
*/
|
|
@@ -227,7 +227,7 @@ declare interface AnimationInterface {
|
|
|
227
227
|
}
|
|
228
228
|
|
|
229
229
|
/**
|
|
230
|
-
* Represents the props of the [KendoReact Animation component](
|
|
230
|
+
* Represents the props of the [KendoReact Animation component](https://www.telerik.com/kendo-react-ui/components/animation).
|
|
231
231
|
*/
|
|
232
232
|
export declare interface AnimationProps extends AnimationInterface {
|
|
233
233
|
/**
|
|
@@ -331,7 +331,7 @@ export declare const Expand: {
|
|
|
331
331
|
};
|
|
332
332
|
|
|
333
333
|
/**
|
|
334
|
-
* Specifies the direction of the Expand Animation ([see example](
|
|
334
|
+
* Specifies the direction of the Expand Animation ([see example](https://www.telerik.com/kendo-react-ui/components/animation/direction#toc-expand)).
|
|
335
335
|
*
|
|
336
336
|
* The supported directions are:
|
|
337
337
|
* * (Default) `vertical`—Expands the content from center to top and bottom, and vice-versa.
|
|
@@ -340,7 +340,7 @@ export declare const Expand: {
|
|
|
340
340
|
export declare type ExpandDirection = 'horizontal' | 'vertical';
|
|
341
341
|
|
|
342
342
|
/**
|
|
343
|
-
* Represents the props of the [KendoReact Expand Animation component](
|
|
343
|
+
* Represents the props of the [KendoReact Expand Animation component](https://www.telerik.com/kendo-react-ui/components/animation/types#toc-expand).
|
|
344
344
|
*/
|
|
345
345
|
export declare interface ExpandProps extends AnimationInterface {
|
|
346
346
|
/**
|
|
@@ -402,7 +402,7 @@ export declare const Fade: {
|
|
|
402
402
|
};
|
|
403
403
|
|
|
404
404
|
/**
|
|
405
|
-
* Represents the props of the [KendoReact Fade Animation component](
|
|
405
|
+
* Represents the props of the [KendoReact Fade Animation component](https://www.telerik.com/kendo-react-ui/components/animation/types#toc-fade).
|
|
406
406
|
*/
|
|
407
407
|
export declare interface FadeProps extends AnimationInterface {
|
|
408
408
|
/**
|
|
@@ -458,7 +458,7 @@ export declare const Push: {
|
|
|
458
458
|
};
|
|
459
459
|
|
|
460
460
|
/**
|
|
461
|
-
* Specifies the direction of the Push Animation ([see example](
|
|
461
|
+
* Specifies the direction of the Push Animation ([see example](https://www.telerik.com/kendo-react-ui/components/animation/direction#toc-push)).
|
|
462
462
|
*
|
|
463
463
|
* The supported directions are:
|
|
464
464
|
* * (Default) `right`—Pushes the content from left to right.
|
|
@@ -469,7 +469,7 @@ export declare const Push: {
|
|
|
469
469
|
export declare type PushDirection = 'up' | 'down' | 'left' | 'right';
|
|
470
470
|
|
|
471
471
|
/**
|
|
472
|
-
* Represents the props of the [KendoReact Push Animation component](
|
|
472
|
+
* Represents the props of the [KendoReact Push Animation component](https://www.telerik.com/kendo-react-ui/components/animation/types#toc-push).
|
|
473
473
|
*/
|
|
474
474
|
export declare interface PushProps extends AnimationInterface {
|
|
475
475
|
/**
|
|
@@ -540,7 +540,7 @@ export declare const Reveal: {
|
|
|
540
540
|
};
|
|
541
541
|
|
|
542
542
|
/**
|
|
543
|
-
* Specifies the direction of the Reveal Animation ([see example](
|
|
543
|
+
* Specifies the direction of the Reveal Animation ([see example](https://www.telerik.com/kendo-react-ui/components/animation/direction#toc-reveal)).
|
|
544
544
|
*
|
|
545
545
|
* The supported directions are:
|
|
546
546
|
* * (Default) `vertical`—Reveals the height of the content.
|
|
@@ -549,7 +549,7 @@ export declare const Reveal: {
|
|
|
549
549
|
export declare type RevealDirection = 'horizontal' | 'vertical';
|
|
550
550
|
|
|
551
551
|
/**
|
|
552
|
-
* Represents the props of the [KendoReact Reveal Animation component](
|
|
552
|
+
* Represents the props of the [KendoReact Reveal Animation component](https://www.telerik.com/kendo-react-ui/components/animation/types#toc-reveal).
|
|
553
553
|
*/
|
|
554
554
|
export declare interface RevealProps extends AnimationInterface {
|
|
555
555
|
/**
|
|
@@ -617,7 +617,7 @@ export declare const Slide: {
|
|
|
617
617
|
};
|
|
618
618
|
|
|
619
619
|
/**
|
|
620
|
-
* Specifies the direction of the Slide Animation ([see example](
|
|
620
|
+
* Specifies the direction of the Slide Animation ([see example](https://www.telerik.com/kendo-react-ui/components/animation/direction#toc-slide)).
|
|
621
621
|
*
|
|
622
622
|
* The supported directions are:
|
|
623
623
|
* * (Default) `down`—On showing, slides the content from top to bottom, and vice-versa.
|
|
@@ -628,7 +628,7 @@ export declare const Slide: {
|
|
|
628
628
|
export declare type SlideDirection = 'up' | 'down' | 'left' | 'right';
|
|
629
629
|
|
|
630
630
|
/**
|
|
631
|
-
* Represents the props of the [KendoReact Slide Animation component](
|
|
631
|
+
* Represents the props of the [KendoReact Slide Animation component](https://www.telerik.com/kendo-react-ui/components/animation/types#toc-slide).
|
|
632
632
|
*/
|
|
633
633
|
export declare interface SlideProps extends AnimationInterface {
|
|
634
634
|
/**
|
|
@@ -695,7 +695,7 @@ export declare const Zoom: {
|
|
|
695
695
|
};
|
|
696
696
|
|
|
697
697
|
/**
|
|
698
|
-
* Specifies the direction of the Zoom Animation ([see example](
|
|
698
|
+
* Specifies the direction of the Zoom Animation ([see example](https://www.telerik.com/kendo-react-ui/components/animation/direction#toc-zoom)).
|
|
699
699
|
*
|
|
700
700
|
* The supported directions are:
|
|
701
701
|
* * (Default) `out`—Zooms the content from the outside to the inside.
|
|
@@ -704,7 +704,7 @@ export declare const Zoom: {
|
|
|
704
704
|
export declare type ZoomDirection = 'in' | 'out';
|
|
705
705
|
|
|
706
706
|
/**
|
|
707
|
-
* Represents the props of the [KendoReact Zoom Animation component](
|
|
707
|
+
* Represents the props of the [KendoReact Zoom Animation component](https://www.telerik.com/kendo-react-ui/components/animation/types#toc-zoom).
|
|
708
708
|
*/
|
|
709
709
|
export declare interface ZoomProps extends AnimationInterface {
|
|
710
710
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-animation",
|
|
3
|
-
"version": "13.3.0-develop.
|
|
3
|
+
"version": "13.3.0-develop.4",
|
|
4
4
|
"description": "React Animation component assists with animating HTML elements. KendoReact Animation package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"sideEffects": false,
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"@progress/kendo-licensing": "^1.7.2",
|
|
29
|
-
"@progress/kendo-react-common": "13.3.0-develop.
|
|
29
|
+
"@progress/kendo-react-common": "13.3.0-develop.4",
|
|
30
30
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
31
31
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
|
|
32
32
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
|