@dso-toolkit/react 87.0.0 → 88.1.0-ghi-3495.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.
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ export const children = (React.createElement("div", { className: "dso-rich-content" },
3
+ React.createElement("h2", null, "Samenspel tussen wetgever en ontwikkelaars"),
4
+ React.createElement("p", null,
5
+ "Het DSO wordt ontwikkeld door het programma",
6
+ " ",
7
+ React.createElement("a", { href: "https://aandeslagmetdeomgevingswet.nl/digitaal-stelsel/" }, "Aan de slag met de Omgevingswet"),
8
+ " in samenwerking met haar partners. De ontwikkeling vraagt een intensief samenspel tussen de wetgever en de ontwikkelpartners van het DSO. Enerzijds moeten wetgever en de ontwikkelpartners zorgen dat alles wat in de wet- en regelgeving wordt geregeld ook makkelijk toegankelijk is of kan worden. Anderzijds moeten zij zorgen dat alles wat digitaal wordt gerealiseerd, ook juridisch verankerd is of kan worden.")));
@@ -1,9 +1,9 @@
1
- import * as React from "react";
1
+ import React from "react";
2
2
  import { DsoInfoButton } from "../../components";
3
3
  export const reactInfoButton = {
4
4
  component: "infoButton",
5
5
  implementation: "react",
6
- template: () => function infoButtonTemplate({ label, active, secondary, dsoToggle }) {
7
- return (React.createElement(DsoInfoButton, { label: label, active: active, secondary: secondary, onDsoToggle: (e) => dsoToggle?.(e.detail) }));
6
+ template: () => function infoButtonTemplate({ label, active, toggletipPlacement, secondary, dsoToggle, children }) {
7
+ return (React.createElement(DsoInfoButton, { label: label, active: active, secondary: secondary, toggletipPlacement: toggletipPlacement, onDsoToggle: (e) => dsoToggle?.(e.detail) }, children && React.createElement("div", { slot: "toggletip" }, children)));
8
8
  },
9
9
  };
@@ -1,16 +1,20 @@
1
1
  import { infoButtonMeta, infoButtonStories } from "dso-toolkit";
2
2
  import { templateContainer } from "../../templates";
3
+ import { children } from "./info-button.content";
3
4
  import readme from "./readme.md?raw";
4
5
  const meta = {
5
6
  ...infoButtonMeta({ readme }),
6
7
  title: "Info Button",
7
8
  };
8
9
  export default meta;
9
- const { Active, Inactive, SecondaryActive, SecondaryInactive } = infoButtonStories({
10
+ const { Default, Information, SecondaryActive, SecondaryInactive } = infoButtonStories({
10
11
  templateContainer,
11
12
  storyTemplates: (templates) => {
12
13
  const { infoButtonTemplate } = templates;
13
- return { infoButtonTemplate };
14
+ return {
15
+ infoButtonTemplate,
16
+ children,
17
+ };
14
18
  },
15
19
  });
16
- export { Active, Inactive, SecondaryActive, SecondaryInactive };
20
+ export { Default, Information, SecondaryActive, SecondaryInactive };
@@ -34,6 +34,7 @@ import { DsoInfoButton as DsoInfoButtonElement, defineCustomElement as defineDso
34
34
  import { DsoInfo as DsoInfoElement, defineCustomElement as defineDsoInfo } from "@dso-toolkit/core/dist/components/dso-info.js";
35
35
  import { DsoInputRange as DsoInputRangeElement, defineCustomElement as defineDsoInputRange } from "@dso-toolkit/core/dist/components/dso-input-range.js";
36
36
  import { DsoLabel as DsoLabelElement, defineCustomElement as defineDsoLabel } from "@dso-toolkit/core/dist/components/dso-label.js";
37
+ import { DsoLegendGroup as DsoLegendGroupElement, defineCustomElement as defineDsoLegendGroup } from "@dso-toolkit/core/dist/components/dso-legend-group.js";
37
38
  import { DsoLegendItem as DsoLegendItemElement, defineCustomElement as defineDsoLegendItem } from "@dso-toolkit/core/dist/components/dso-legend-item.js";
38
39
  import { DsoLegend as DsoLegendElement, defineCustomElement as defineDsoLegend } from "@dso-toolkit/core/dist/components/dso-legend.js";
39
40
  import { DsoListButton as DsoListButtonElement, defineCustomElement as defineDsoListButton } from "@dso-toolkit/core/dist/components/dso-list-button.js";
@@ -390,6 +391,14 @@ export const DsoLegend = /*@__PURE__*/ createComponent({
390
391
  },
391
392
  defineCustomElement: defineDsoLegend
392
393
  });
394
+ export const DsoLegendGroup = /*@__PURE__*/ createComponent({
395
+ tagName: 'dso-legend-group',
396
+ elementClass: DsoLegendGroupElement,
397
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
398
+ react: React,
399
+ events: { onDsoLegendGroupModeChange: 'dsoLegendGroupModeChange' },
400
+ defineCustomElement: defineDsoLegendGroup
401
+ });
393
402
  export const DsoLegendItem = /*@__PURE__*/ createComponent({
394
403
  tagName: 'dso-legend-item',
395
404
  elementClass: DsoLegendItemElement,
@@ -397,6 +406,7 @@ export const DsoLegendItem = /*@__PURE__*/ createComponent({
397
406
  react: React,
398
407
  events: {
399
408
  onDsoActiveChange: 'dsoActiveChange',
409
+ onDsoDelete: 'dsoDelete',
400
410
  onDsoMouseEnter: 'dsoMouseEnter',
401
411
  onDsoMouseLeave: 'dsoMouseLeave'
402
412
  },
@@ -0,0 +1,2 @@
1
+ import * as React from "react";
2
+ export declare const children: React.JSX.Element;
@@ -1,3 +1,4 @@
1
1
  import { InfoButton } from "dso-toolkit";
2
+ import { JSX } from "react";
2
3
  import { ComponentImplementation } from "../../templates";
3
- export declare const reactInfoButton: ComponentImplementation<InfoButton>;
4
+ export declare const reactInfoButton: ComponentImplementation<InfoButton<JSX.Element>>;
@@ -2,7 +2,7 @@ import type { Meta } from "@storybook/react-vite";
2
2
  import { InfoButtonArgs } from "dso-toolkit";
3
3
  declare const meta: Meta<InfoButtonArgs>;
4
4
  export default meta;
5
- declare const Active: import("storybook/internal/csf").BaseAnnotations<import("storybook/internal/csf").Renderer, InfoButtonArgs> & {
5
+ declare const Default: import("storybook/internal/csf").BaseAnnotations<import("storybook/internal/csf").Renderer, InfoButtonArgs> & {
6
6
  name?: import("storybook/internal/csf").StoryName;
7
7
  storyName?: import("storybook/internal/csf").StoryName;
8
8
  play?: import("storybook/internal/csf").PlayFunction<import("storybook/internal/csf").Renderer, InfoButtonArgs> | undefined;
@@ -10,7 +10,7 @@ declare const Active: import("storybook/internal/csf").BaseAnnotations<import("s
10
10
  story?: Omit<import("storybook/internal/csf").StoryAnnotations<import("storybook/internal/csf").Renderer, InfoButtonArgs, Partial<InfoButtonArgs>>, "story"> | undefined;
11
11
  } & {
12
12
  args?: Partial<InfoButtonArgs> | undefined;
13
- }, Inactive: import("storybook/internal/csf").BaseAnnotations<import("storybook/internal/csf").Renderer, InfoButtonArgs> & {
13
+ }, Information: import("storybook/internal/csf").BaseAnnotations<import("storybook/internal/csf").Renderer, InfoButtonArgs> & {
14
14
  name?: import("storybook/internal/csf").StoryName;
15
15
  storyName?: import("storybook/internal/csf").StoryName;
16
16
  play?: import("storybook/internal/csf").PlayFunction<import("storybook/internal/csf").Renderer, InfoButtonArgs> | undefined;
@@ -35,4 +35,4 @@ declare const Active: import("storybook/internal/csf").BaseAnnotations<import("s
35
35
  } & {
36
36
  args?: Partial<InfoButtonArgs> | undefined;
37
37
  };
38
- export { Active, Inactive, SecondaryActive, SecondaryInactive };
38
+ export { Default, Information, SecondaryActive, SecondaryInactive };
@@ -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 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";
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 DsoLegendGroupCustomEvent, 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 LegendGroupModeChangeEvent, type LegendItemActiveChangeEvent, type LegendItemDeleteEvent, 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,6 +38,7 @@ import { DsoInfoButton as DsoInfoButtonElement } from "@dso-toolkit/core/dist/co
38
38
  import { DsoInfo as DsoInfoElement } from "@dso-toolkit/core/dist/components/dso-info.js";
39
39
  import { DsoInputRange as DsoInputRangeElement } from "@dso-toolkit/core/dist/components/dso-input-range.js";
40
40
  import { DsoLabel as DsoLabelElement } from "@dso-toolkit/core/dist/components/dso-label.js";
41
+ import { DsoLegendGroup as DsoLegendGroupElement } from "@dso-toolkit/core/dist/components/dso-legend-group.js";
41
42
  import { DsoLegendItem as DsoLegendItemElement } from "@dso-toolkit/core/dist/components/dso-legend-item.js";
42
43
  import { DsoLegend as DsoLegendElement } from "@dso-toolkit/core/dist/components/dso-legend.js";
43
44
  import { DsoListButton as DsoListButtonElement } from "@dso-toolkit/core/dist/components/dso-list-button.js";
@@ -120,8 +121,8 @@ export type DsoAttachmentsCounterEvents = NonNullable<unknown>;
120
121
  export declare const DsoAttachmentsCounter: StencilReactComponent<DsoAttachmentsCounterElement, DsoAttachmentsCounterEvents>;
121
122
  export type DsoAutosuggestEvents = {
122
123
  onDsoSelect: EventName<DsoAutosuggestCustomEvent<Suggestion>>;
123
- onDsoChange: EventName<CustomEvent<string>>;
124
- onDsoSearch: EventName<CustomEvent<string>>;
124
+ onDsoChange: EventName<DsoAutosuggestCustomEvent<string>>;
125
+ onDsoSearch: EventName<DsoAutosuggestCustomEvent<string>>;
125
126
  };
126
127
  export declare const DsoAutosuggest: StencilReactComponent<DsoAutosuggestElement, DsoAutosuggestEvents>;
127
128
  export type DsoBadgeEvents = NonNullable<unknown>;
@@ -207,10 +208,15 @@ export type DsoLegendEvents = {
207
208
  onDsoClose: EventName<DsoLegendCustomEvent<LegendCloseEvent>>;
208
209
  };
209
210
  export declare const DsoLegend: StencilReactComponent<DsoLegendElement, DsoLegendEvents>;
211
+ export type DsoLegendGroupEvents = {
212
+ onDsoLegendGroupModeChange: EventName<DsoLegendGroupCustomEvent<LegendGroupModeChangeEvent>>;
213
+ };
214
+ export declare const DsoLegendGroup: StencilReactComponent<DsoLegendGroupElement, DsoLegendGroupEvents>;
210
215
  export type DsoLegendItemEvents = {
211
216
  onDsoActiveChange: EventName<DsoLegendItemCustomEvent<LegendItemActiveChangeEvent>>;
212
- onDsoMouseEnter: EventName<CustomEvent<any>>;
213
- onDsoMouseLeave: EventName<CustomEvent<any>>;
217
+ onDsoDelete: EventName<DsoLegendItemCustomEvent<LegendItemDeleteEvent>>;
218
+ onDsoMouseEnter: EventName<DsoLegendItemCustomEvent<any>>;
219
+ onDsoMouseLeave: EventName<DsoLegendItemCustomEvent<any>>;
214
220
  };
215
221
  export declare const DsoLegendItem: StencilReactComponent<DsoLegendItemElement, DsoLegendItemEvents>;
216
222
  export type DsoListButtonEvents = {
@@ -239,8 +245,8 @@ export type DsoMapLayerEvents = {
239
245
  export declare const DsoMapLayer: StencilReactComponent<DsoMapLayerElement, DsoMapLayerEvents>;
240
246
  export type DsoMapLayerObjectEvents = {
241
247
  onDsoActiveChange: EventName<DsoMapLayerObjectCustomEvent<MapLayerObjectActiveChangeEvent>>;
242
- onDsoMouseEnter: EventName<CustomEvent<any>>;
243
- onDsoMouseLeave: EventName<CustomEvent<any>>;
248
+ onDsoMouseEnter: EventName<DsoMapLayerObjectCustomEvent<any>>;
249
+ onDsoMouseLeave: EventName<DsoMapLayerObjectCustomEvent<any>>;
244
250
  };
245
251
  export declare const DsoMapLayerObject: StencilReactComponent<DsoMapLayerObjectElement, DsoMapLayerObjectEvents>;
246
252
  export type DsoMapOverlaysEvents = {
@@ -20,7 +20,7 @@ export interface Components {
20
20
  icon: Icon;
21
21
  imageOverlay: ImageOverlay;
22
22
  info: Info<JSX.Element>;
23
- infoButton: InfoButton;
23
+ infoButton: InfoButton<JSX.Element>;
24
24
  label: Label;
25
25
  listButton: ListButton;
26
26
  modal: Modal<JSX.Element>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dso-toolkit/react",
3
3
  "type": "module",
4
- "version": "87.0.0",
4
+ "version": "88.1.0-ghi-3495.0",
5
5
  "description": "React specific wrapper for @dso-toolkit/core web components",
6
6
  "homepage": "https://www.dso-toolkit.nl/",
7
7
  "repository": {
@@ -18,34 +18,34 @@
18
18
  "dist/"
19
19
  ],
20
20
  "dependencies": {
21
- "@stencil/react-output-target": "^1.2.0"
21
+ "@stencil/react-output-target": "^1.4.1"
22
22
  },
23
23
  "devDependencies": {
24
- "@iframe-resizer/child": "^5.5.7",
25
- "@stencil/core": "4.39.0",
26
- "@storybook/addon-a11y": "10.1.9",
27
- "@storybook/addon-docs": "10.1.9",
28
- "@storybook/builder-vite": "10.1.9",
29
- "@storybook/react-vite": "10.1.9",
24
+ "@iframe-resizer/child": "^5.5.9",
25
+ "@stencil/core": "4.43.0",
26
+ "@storybook/addon-a11y": "10.2.10",
27
+ "@storybook/addon-docs": "10.2.10",
28
+ "@storybook/builder-vite": "10.2.10",
29
+ "@storybook/react-vite": "10.2.10",
30
30
  "@types/lodash.startcase": "^4.4.9",
31
- "@types/react": "^19.2.7",
31
+ "@types/react": "^19.2.14",
32
32
  "@types/react-dom": "^19.2.3",
33
- "dso-toolkit": "^87.0.0",
33
+ "dso-toolkit": "^88.1.0-ghi-3495.0",
34
34
  "eslint": "^9.39.2",
35
- "eslint-plugin-storybook": "10.1.9",
35
+ "eslint-plugin-storybook": "10.2.8",
36
36
  "http-proxy-middleware": "^3.0.5",
37
37
  "lodash.startcase": "^4.4.0",
38
- "react": "^19.2.3",
39
- "react-dom": "^19.2.3",
40
- "rimraf": "^6.1.2",
41
- "storybook": "10.1.9",
38
+ "react": "^19.2.4",
39
+ "react-dom": "^19.2.4",
40
+ "rimraf": "^6.1.3",
41
+ "storybook": "10.2.10",
42
42
  "tslib": "^2.8.1",
43
43
  "typescript": "~5.9.3",
44
- "vite": "^7.3.0",
45
- "wait-on": "^9.0.3"
44
+ "vite": "^7.3.1",
45
+ "wait-on": "^9.0.4"
46
46
  },
47
47
  "peerDependencies": {
48
- "@dso-toolkit/core": "87.0.0",
48
+ "@dso-toolkit/core": "88.1.0-ghi-3495.0",
49
49
  "react": "^18.3.0 || ^19.0.0",
50
50
  "react-dom": "^18.3.0 || ^19.0.0"
51
51
  },