@dso-toolkit/react 83.1.0 → 84.1.0
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.
|
@@ -3,7 +3,7 @@ import { DsoAutosuggest } from "../../components";
|
|
|
3
3
|
export const reactAutosuggest = {
|
|
4
4
|
component: "autosuggest",
|
|
5
5
|
implementation: "react",
|
|
6
|
-
template: () => function autosuggestTemplate({ children, dsoChange, dsoSearch, dsoSelect, loading,
|
|
7
|
-
return (React.createElement(DsoAutosuggest, { suggestions: suggestions, onDsoSelect: dsoSelect, onDsoChange: dsoChange, onDsoSearch: dsoSearch,
|
|
6
|
+
template: () => function autosuggestTemplate({ children, dsoChange, dsoSearch, dsoSelect, loading, suggestions, loadingDelayed, loadingLabel, notFoundLabel, mark, }) {
|
|
7
|
+
return (React.createElement(DsoAutosuggest, { suggestions: suggestions, onDsoSelect: dsoSelect, onDsoChange: dsoChange, onDsoSearch: dsoSearch, loading: loading, loadingLabel: loadingLabel, loadingDelayed: loadingDelayed, notFoundLabel: notFoundLabel, mark: mark }, children));
|
|
8
8
|
},
|
|
9
9
|
};
|
|
@@ -32,7 +32,6 @@ const { Example, Minimal3Characters, InSearchbar, WithProvidedMarkFunction, Sugg
|
|
|
32
32
|
suggestions: this.props.fetchSuggestions(e.detail),
|
|
33
33
|
}));
|
|
34
34
|
},
|
|
35
|
-
suggestOnFocus: this.props.suggestOnFocus,
|
|
36
35
|
loading: this.props.loading,
|
|
37
36
|
loadingLabel: this.props.loadingLabel,
|
|
38
37
|
loadingDelayed: this.props.loadingDelayed,
|
|
@@ -43,7 +42,7 @@ const { Example, Minimal3Characters, InSearchbar, WithProvidedMarkFunction, Sugg
|
|
|
43
42
|
}
|
|
44
43
|
}
|
|
45
44
|
return {
|
|
46
|
-
autosuggestDemoTemplate: (fetchSuggestions, dsoSelect, dsoChange, dsoSearch,
|
|
45
|
+
autosuggestDemoTemplate: (fetchSuggestions, dsoSelect, dsoChange, dsoSearch, loading, loadingLabel, loadingDelay, notFoundLabel) => (React.createElement(AutosuggestDemoTemplate, { fetchSuggestions: fetchSuggestions, dsoChange: dsoChange, dsoSelect: dsoSelect, dsoSearch: dsoSearch, loading: loading, loadingLabel: loadingLabel, loadingDelayed: loadingDelay, notFoundLabel: notFoundLabel })),
|
|
47
46
|
autosuggestInSearchBarTemplate: () => React.createElement("p", null, "Zie Web Component in Core."),
|
|
48
47
|
};
|
|
49
48
|
},
|
package/dist/components.js
CHANGED
|
@@ -34,10 +34,13 @@ import { DsoInfo as DsoInfoElement, defineCustomElement as defineDsoInfo } from
|
|
|
34
34
|
import { DsoInputRange as DsoInputRangeElement, defineCustomElement as defineDsoInputRange } from "@dso-toolkit/core/dist/components/dso-input-range.js";
|
|
35
35
|
import { DsoLabel as DsoLabelElement, defineCustomElement as defineDsoLabel } from "@dso-toolkit/core/dist/components/dso-label.js";
|
|
36
36
|
import { DsoLegendItem as DsoLegendItemElement, defineCustomElement as defineDsoLegendItem } from "@dso-toolkit/core/dist/components/dso-legend-item.js";
|
|
37
|
+
import { DsoLegend as DsoLegendElement, defineCustomElement as defineDsoLegend } from "@dso-toolkit/core/dist/components/dso-legend.js";
|
|
37
38
|
import { DsoListButton as DsoListButtonElement, defineCustomElement as defineDsoListButton } from "@dso-toolkit/core/dist/components/dso-list-button.js";
|
|
38
39
|
import { DsoLogo as DsoLogoElement, defineCustomElement as defineDsoLogo } from "@dso-toolkit/core/dist/components/dso-logo.js";
|
|
39
40
|
import { DsoMapBaseLayers as DsoMapBaseLayersElement, defineCustomElement as defineDsoMapBaseLayers } from "@dso-toolkit/core/dist/components/dso-map-base-layers.js";
|
|
40
41
|
import { DsoMapControls as DsoMapControlsElement, defineCustomElement as defineDsoMapControls } from "@dso-toolkit/core/dist/components/dso-map-controls.js";
|
|
42
|
+
import { DsoMapLayerObject as DsoMapLayerObjectElement, defineCustomElement as defineDsoMapLayerObject } from "@dso-toolkit/core/dist/components/dso-map-layer-object.js";
|
|
43
|
+
import { DsoMapLayer as DsoMapLayerElement, defineCustomElement as defineDsoMapLayer } from "@dso-toolkit/core/dist/components/dso-map-layer.js";
|
|
41
44
|
import { DsoMapOverlays as DsoMapOverlaysElement, defineCustomElement as defineDsoMapOverlays } from "@dso-toolkit/core/dist/components/dso-map-overlays.js";
|
|
42
45
|
import { DsoMarkBar as DsoMarkBarElement, defineCustomElement as defineDsoMarkBar } from "@dso-toolkit/core/dist/components/dso-mark-bar.js";
|
|
43
46
|
import { DsoModal as DsoModalElement, defineCustomElement as defineDsoModal } from "@dso-toolkit/core/dist/components/dso-modal.js";
|
|
@@ -367,6 +370,17 @@ export const DsoLabel = /*@__PURE__*/ createComponent({
|
|
|
367
370
|
events: { onDsoRemoveClick: 'dsoRemoveClick' },
|
|
368
371
|
defineCustomElement: defineDsoLabel
|
|
369
372
|
});
|
|
373
|
+
export const DsoLegend = /*@__PURE__*/ createComponent({
|
|
374
|
+
tagName: 'dso-legend',
|
|
375
|
+
elementClass: DsoLegendElement,
|
|
376
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
377
|
+
react: React,
|
|
378
|
+
events: {
|
|
379
|
+
onDsoContentSwitch: 'dsoContentSwitch',
|
|
380
|
+
onDsoClose: 'dsoClose'
|
|
381
|
+
},
|
|
382
|
+
defineCustomElement: defineDsoLegend
|
|
383
|
+
});
|
|
370
384
|
export const DsoLegendItem = /*@__PURE__*/ createComponent({
|
|
371
385
|
tagName: 'dso-legend-item',
|
|
372
386
|
elementClass: DsoLegendItemElement,
|
|
@@ -421,6 +435,26 @@ export const DsoMapControls = /*@__PURE__*/ createComponent({
|
|
|
421
435
|
},
|
|
422
436
|
defineCustomElement: defineDsoMapControls
|
|
423
437
|
});
|
|
438
|
+
export const DsoMapLayer = /*@__PURE__*/ createComponent({
|
|
439
|
+
tagName: 'dso-map-layer',
|
|
440
|
+
elementClass: DsoMapLayerElement,
|
|
441
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
442
|
+
react: React,
|
|
443
|
+
events: { onDsoActiveChange: 'dsoActiveChange' },
|
|
444
|
+
defineCustomElement: defineDsoMapLayer
|
|
445
|
+
});
|
|
446
|
+
export const DsoMapLayerObject = /*@__PURE__*/ createComponent({
|
|
447
|
+
tagName: 'dso-map-layer-object',
|
|
448
|
+
elementClass: DsoMapLayerObjectElement,
|
|
449
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
450
|
+
react: React,
|
|
451
|
+
events: {
|
|
452
|
+
onDsoActiveChange: 'dsoActiveChange',
|
|
453
|
+
onDsoMouseEnter: 'dsoMouseEnter',
|
|
454
|
+
onDsoMouseLeave: 'dsoMouseLeave'
|
|
455
|
+
},
|
|
456
|
+
defineCustomElement: defineDsoMapLayerObject
|
|
457
|
+
});
|
|
424
458
|
export const DsoMapOverlays = /*@__PURE__*/ createComponent({
|
|
425
459
|
tagName: 'dso-map-overlays',
|
|
426
460
|
elementClass: DsoMapOverlaysElement,
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* This file was automatically generated by the Stencil React Output Target.
|
|
3
3
|
* Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
|
|
4
4
|
*/
|
|
5
|
-
import { type AccordionSectionActiveChangeEvent, type AccordionSectionAnimationEndEvent, type AccordionSectionAnimationStartEvent, type AccordionSectionToggleClickEvent, type AdvancedSelectChangeEvent, type AdvancedSelectRedirectEvent, type AlertCloseEvent, type AnnotationActiveChangeEvent, type AnnotationKaartClickEvent, type BaseLayerChangeEvent, type CardClickEvent, type DatePickerBlurEvent, type DatePickerChangeEvent, type DatePickerFocusEvent, type DatePickerKeyboardEvent, type DocumentCardClickEvent, type DocumentComponentMarkItemHighlightEvent, type DocumentComponentOpenToggleEvent, type DocumentComponentOzonContentClickEvent, type DocumentComponentRecursiveToggleEvent, type DocumentComponentTableOfContentsClickEvent, type DocumentComponentToggleAnnotationEvent, type DsoAccordionSectionCustomEvent, type DsoAdvancedSelectCustomEvent, type DsoAlertCustomEvent, type DsoAnnotationActiviteitCustomEvent, type DsoAnnotationGebiedsaanwijzingCustomEvent, type DsoAnnotationKaartCustomEvent, type DsoAnnotationLocatieCustomEvent, type DsoAnnotationOmgevingsnormwaardeCustomEvent, type DsoAutosuggestCustomEvent, type DsoCardCustomEvent, type DsoDatePickerCustomEvent, type DsoDocumentCardCustomEvent, type DsoDocumentComponentCustomEvent, type DsoExpandableCustomEvent, type DsoHeaderCustomEvent, type DsoHistoryItemCustomEvent, type DsoIconButtonCustomEvent, type DsoInfoButtonCustomEvent, type DsoInfoCustomEvent, type DsoInputRangeCustomEvent, type DsoLabelCustomEvent, type DsoLegendItemCustomEvent, type DsoListButtonCustomEvent, type DsoLogoCustomEvent, type DsoMapBaseLayersCustomEvent, type DsoMapControlsCustomEvent, type DsoMapOverlaysCustomEvent, type DsoMarkBarCustomEvent, type DsoModalCustomEvent, type DsoOnboardingTipCustomEvent, type DsoOzonContentCustomEvent, type DsoPaginationCustomEvent, type DsoPanelCustomEvent, type DsoPlekinfoCardCustomEvent, type DsoRenvooiCustomEvent, type DsoResponsiveElementCustomEvent, type DsoScrollEndEvent, type DsoScrollableCustomEvent, type DsoSelectableCustomEvent, type DsoSkiplinkCustomEvent, type DsoSlideToggleCustomEvent, type DsoSurveyRatingCustomEvent, type DsoTabCustomEvent, type DsoTreeViewCustomEvent, type DsoViewerGridCustomEvent, type DsotDocumentComponentDemoCustomEvent, type ExpandableAnimationEndEvent, type ExpandableAnimationStartEvent, type HeaderEvent, type HistoryItemClickEvent, type IconButtonClickEvent, type InfoButtonToggleEvent, type InputRangeChangeEvent, type LegendItemActiveChangeEvent, type ListButtonChangeEvent, type ListButtonSelectedEvent, type LogoClickEvent, type LogoLabelClickEvent, type MapControlsToggleEvent, type MarkBarClearEvent, type MarkBarInputEvent, type MarkBarPaginationEvent, type ModalCloseEvent, type OnboardingTipCloseEvent, type OverlayChangeEvent, type OzonContentClickEvent, type OzonContentMarkItemHighlightEvent, type PaginationSelectPageEvent, type PanelCloseEvent, type PlekinfoCardClickEvent, type RenvooiMarkItemHighlightEvent, type ResponsiveElementSize, type SelectableChangeEvent, type SkiplinkClickEvent, type SlideToggleActiveEvent, type Suggestion, type SurveyRatingCloseEvent, type SurveyRatingSubmitEvent, type TabsSwitchEvent, type TreeViewItem, type TreeViewPointerEvent, type ViewerGridActiveTabSwitchEvent, type ViewerGridChangeSizeAnimationEndEvent, type ViewerGridChangeSizeEvent, type ViewerGridCloseFilterPanelEvent, type ViewerGridCloseOverlayEvent, type ViewerGridMainToggleEvent } from "@dso-toolkit/core";
|
|
5
|
+
import { type AccordionSectionActiveChangeEvent, type AccordionSectionAnimationEndEvent, type AccordionSectionAnimationStartEvent, type AccordionSectionToggleClickEvent, type AdvancedSelectChangeEvent, type AdvancedSelectRedirectEvent, type AlertCloseEvent, type AnnotationActiveChangeEvent, type AnnotationKaartClickEvent, type BaseLayerChangeEvent, type CardClickEvent, type DatePickerBlurEvent, type DatePickerChangeEvent, type DatePickerFocusEvent, type DatePickerKeyboardEvent, type DocumentCardClickEvent, type DocumentComponentMarkItemHighlightEvent, type DocumentComponentOpenToggleEvent, type DocumentComponentOzonContentClickEvent, type DocumentComponentRecursiveToggleEvent, type DocumentComponentTableOfContentsClickEvent, type DocumentComponentToggleAnnotationEvent, type DsoAccordionSectionCustomEvent, type DsoAdvancedSelectCustomEvent, type DsoAlertCustomEvent, type DsoAnnotationActiviteitCustomEvent, type DsoAnnotationGebiedsaanwijzingCustomEvent, type DsoAnnotationKaartCustomEvent, type DsoAnnotationLocatieCustomEvent, type DsoAnnotationOmgevingsnormwaardeCustomEvent, type DsoAutosuggestCustomEvent, type DsoCardCustomEvent, type DsoDatePickerCustomEvent, type DsoDocumentCardCustomEvent, type DsoDocumentComponentCustomEvent, type DsoExpandableCustomEvent, type DsoHeaderCustomEvent, type DsoHistoryItemCustomEvent, type DsoIconButtonCustomEvent, type DsoInfoButtonCustomEvent, type DsoInfoCustomEvent, type DsoInputRangeCustomEvent, type DsoLabelCustomEvent, type DsoLegendCustomEvent, type DsoLegendItemCustomEvent, type DsoListButtonCustomEvent, type DsoLogoCustomEvent, type DsoMapBaseLayersCustomEvent, type DsoMapControlsCustomEvent, type DsoMapLayerCustomEvent, type DsoMapLayerObjectCustomEvent, type DsoMapOverlaysCustomEvent, type DsoMarkBarCustomEvent, type DsoModalCustomEvent, type DsoOnboardingTipCustomEvent, type DsoOzonContentCustomEvent, type DsoPaginationCustomEvent, type DsoPanelCustomEvent, type DsoPlekinfoCardCustomEvent, type DsoRenvooiCustomEvent, type DsoResponsiveElementCustomEvent, type DsoScrollEndEvent, type DsoScrollableCustomEvent, type DsoSelectableCustomEvent, type DsoSkiplinkCustomEvent, type DsoSlideToggleCustomEvent, type DsoSurveyRatingCustomEvent, type DsoTabCustomEvent, type DsoTreeViewCustomEvent, type DsoViewerGridCustomEvent, type DsotDocumentComponentDemoCustomEvent, type ExpandableAnimationEndEvent, type ExpandableAnimationStartEvent, type HeaderEvent, type HistoryItemClickEvent, type IconButtonClickEvent, type InfoButtonToggleEvent, type InputRangeChangeEvent, type LegendCloseEvent, type LegendContentSwitchEvent, type LegendItemActiveChangeEvent, type ListButtonChangeEvent, type ListButtonSelectedEvent, type LogoClickEvent, type LogoLabelClickEvent, type MapControlsToggleEvent, type MapLayerActiveChangeEvent, type MapLayerObjectActiveChangeEvent, type MarkBarClearEvent, type MarkBarInputEvent, type MarkBarPaginationEvent, type ModalCloseEvent, type OnboardingTipCloseEvent, type OverlayChangeEvent, type OzonContentClickEvent, type OzonContentMarkItemHighlightEvent, type PaginationSelectPageEvent, type PanelCloseEvent, type PlekinfoCardClickEvent, type RenvooiMarkItemHighlightEvent, type ResponsiveElementSize, type SelectableChangeEvent, type SkiplinkClickEvent, type SlideToggleActiveEvent, type Suggestion, type SurveyRatingCloseEvent, type SurveyRatingSubmitEvent, type TabsSwitchEvent, type TreeViewItem, type TreeViewPointerEvent, type ViewerGridActiveTabSwitchEvent, type ViewerGridChangeSizeAnimationEndEvent, type ViewerGridChangeSizeEvent, type ViewerGridCloseFilterPanelEvent, type ViewerGridCloseOverlayEvent, type ViewerGridMainToggleEvent } from "@dso-toolkit/core";
|
|
6
6
|
import { DsoAccordionSection as DsoAccordionSectionElement } from "@dso-toolkit/core/dist/components/dso-accordion-section.js";
|
|
7
7
|
import { DsoAccordion as DsoAccordionElement } from "@dso-toolkit/core/dist/components/dso-accordion.js";
|
|
8
8
|
import { DsoActionListItem as DsoActionListItemElement } from "@dso-toolkit/core/dist/components/dso-action-list-item.js";
|
|
@@ -38,10 +38,13 @@ import { DsoInfo as DsoInfoElement } from "@dso-toolkit/core/dist/components/dso
|
|
|
38
38
|
import { DsoInputRange as DsoInputRangeElement } from "@dso-toolkit/core/dist/components/dso-input-range.js";
|
|
39
39
|
import { DsoLabel as DsoLabelElement } from "@dso-toolkit/core/dist/components/dso-label.js";
|
|
40
40
|
import { DsoLegendItem as DsoLegendItemElement } from "@dso-toolkit/core/dist/components/dso-legend-item.js";
|
|
41
|
+
import { DsoLegend as DsoLegendElement } from "@dso-toolkit/core/dist/components/dso-legend.js";
|
|
41
42
|
import { DsoListButton as DsoListButtonElement } from "@dso-toolkit/core/dist/components/dso-list-button.js";
|
|
42
43
|
import { DsoLogo as DsoLogoElement } from "@dso-toolkit/core/dist/components/dso-logo.js";
|
|
43
44
|
import { DsoMapBaseLayers as DsoMapBaseLayersElement } from "@dso-toolkit/core/dist/components/dso-map-base-layers.js";
|
|
44
45
|
import { DsoMapControls as DsoMapControlsElement } from "@dso-toolkit/core/dist/components/dso-map-controls.js";
|
|
46
|
+
import { DsoMapLayerObject as DsoMapLayerObjectElement } from "@dso-toolkit/core/dist/components/dso-map-layer-object.js";
|
|
47
|
+
import { DsoMapLayer as DsoMapLayerElement } from "@dso-toolkit/core/dist/components/dso-map-layer.js";
|
|
45
48
|
import { DsoMapOverlays as DsoMapOverlaysElement } from "@dso-toolkit/core/dist/components/dso-map-overlays.js";
|
|
46
49
|
import { DsoMarkBar as DsoMarkBarElement } from "@dso-toolkit/core/dist/components/dso-mark-bar.js";
|
|
47
50
|
import { DsoModal as DsoModalElement } from "@dso-toolkit/core/dist/components/dso-modal.js";
|
|
@@ -196,6 +199,11 @@ export type DsoLabelEvents = {
|
|
|
196
199
|
onDsoRemoveClick: EventName<DsoLabelCustomEvent<MouseEvent>>;
|
|
197
200
|
};
|
|
198
201
|
export declare const DsoLabel: StencilReactComponent<DsoLabelElement, DsoLabelEvents>;
|
|
202
|
+
export type DsoLegendEvents = {
|
|
203
|
+
onDsoContentSwitch: EventName<DsoLegendCustomEvent<LegendContentSwitchEvent>>;
|
|
204
|
+
onDsoClose: EventName<DsoLegendCustomEvent<LegendCloseEvent>>;
|
|
205
|
+
};
|
|
206
|
+
export declare const DsoLegend: StencilReactComponent<DsoLegendElement, DsoLegendEvents>;
|
|
199
207
|
export type DsoLegendItemEvents = {
|
|
200
208
|
onDsoActiveChange: EventName<DsoLegendItemCustomEvent<LegendItemActiveChangeEvent>>;
|
|
201
209
|
onDsoMouseEnter: EventName<CustomEvent<any>>;
|
|
@@ -222,6 +230,16 @@ export type DsoMapControlsEvents = {
|
|
|
222
230
|
onDsoToggle: EventName<DsoMapControlsCustomEvent<MapControlsToggleEvent>>;
|
|
223
231
|
};
|
|
224
232
|
export declare const DsoMapControls: StencilReactComponent<DsoMapControlsElement, DsoMapControlsEvents>;
|
|
233
|
+
export type DsoMapLayerEvents = {
|
|
234
|
+
onDsoActiveChange: EventName<DsoMapLayerCustomEvent<MapLayerActiveChangeEvent>>;
|
|
235
|
+
};
|
|
236
|
+
export declare const DsoMapLayer: StencilReactComponent<DsoMapLayerElement, DsoMapLayerEvents>;
|
|
237
|
+
export type DsoMapLayerObjectEvents = {
|
|
238
|
+
onDsoActiveChange: EventName<DsoMapLayerObjectCustomEvent<MapLayerObjectActiveChangeEvent>>;
|
|
239
|
+
onDsoMouseEnter: EventName<CustomEvent<any>>;
|
|
240
|
+
onDsoMouseLeave: EventName<CustomEvent<any>>;
|
|
241
|
+
};
|
|
242
|
+
export declare const DsoMapLayerObject: StencilReactComponent<DsoMapLayerObjectElement, DsoMapLayerObjectEvents>;
|
|
225
243
|
export type DsoMapOverlaysEvents = {
|
|
226
244
|
onDsoToggleOverlay: EventName<DsoMapOverlaysCustomEvent<OverlayChangeEvent>>;
|
|
227
245
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dso-toolkit/react",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "84.1.0",
|
|
5
5
|
"description": "React specific wrapper for @dso-toolkit/core web components",
|
|
6
6
|
"homepage": "https://www.dso-toolkit.nl/",
|
|
7
7
|
"repository": {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@iframe-resizer/child": "^5.5.7",
|
|
25
|
-
"@stencil/core": "4.
|
|
25
|
+
"@stencil/core": "4.39.0",
|
|
26
26
|
"@storybook/addon-a11y": "10.0.8",
|
|
27
27
|
"@storybook/addon-docs": "10.0.8",
|
|
28
28
|
"@storybook/builder-vite": "10.0.8",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@types/lodash.startcase": "^4.4.9",
|
|
31
31
|
"@types/react": "^19.2.6",
|
|
32
32
|
"@types/react-dom": "^19.2.3",
|
|
33
|
-
"dso-toolkit": "^
|
|
33
|
+
"dso-toolkit": "^84.1.0",
|
|
34
34
|
"eslint": "^9.39.1",
|
|
35
35
|
"eslint-plugin-storybook": "10.0.8",
|
|
36
36
|
"http-proxy-middleware": "^3.0.5",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"wait-on": "^9.0.3"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
|
-
"@dso-toolkit/core": "
|
|
48
|
+
"@dso-toolkit/core": "84.1.0",
|
|
49
49
|
"react": "^18.3.0 || ^19.0.0",
|
|
50
50
|
"react-dom": "^18.3.0 || ^19.0.0"
|
|
51
51
|
},
|