@ogcio/design-system-react 1.17.0 → 1.17.2

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.
@@ -33,7 +33,6 @@ const I = h({
33
33
  onKeyDown: (x) => {
34
34
  x.key === "Enter" && !e && a(!o);
35
35
  },
36
- "aria-expanded": o,
37
36
  tabIndex: 0,
38
37
  className: "gi-accordion",
39
38
  children: /* @__PURE__ */ d(
@@ -82,8 +82,9 @@ type AlertProps = {
82
82
  children?: ReactNode;
83
83
  dismissible?: boolean;
84
84
  dataTestid?: string;
85
+ className?: string;
85
86
  onClose?: (event: React.MouseEvent<HTMLButtonElement>) => void;
86
87
  };
87
- declare function Alert({ title, children, variant, dismissible, onClose, dataTestid, }: AlertProps): import("react/jsx-runtime").JSX.Element | null;
88
+ declare function Alert({ title, children, variant, dismissible, onClose, dataTestid, className, }: AlertProps): import("react/jsx-runtime").JSX.Element | null;
88
89
  export { Alert, alertVariants };
89
90
  export type { AlertProps };
@@ -1,12 +1,12 @@
1
1
  "use client";
2
2
  import { jsxs as n, jsx as r } from "react/jsx-runtime";
3
- import { useState as D } from "react";
4
- import { c as h } from "../index-CB-zPpNk.js";
5
- import { cn as v } from "../cn.js";
6
- import { translate as k } from "../i18n/utility.js";
7
- import { Icon as w } from "../icon/icon.js";
8
- import { IconButton as N } from "../icon-button/icon-button.js";
9
- const V = h({
3
+ import { useState as h } from "react";
4
+ import { c as v } from "../index-CB-zPpNk.js";
5
+ import { cn as k } from "../cn.js";
6
+ import { translate as w } from "../i18n/utility.js";
7
+ import { Icon as N } from "../icon/icon.js";
8
+ import { IconButton as V } from "../icon-button/icon-button.js";
9
+ const x = v({
10
10
  slots: {
11
11
  base: "gi-alert-base",
12
12
  baseDismissible: "gi-alert-base-dismissible",
@@ -30,16 +30,16 @@ const V = h({
30
30
  },
31
31
  warning: {
32
32
  base: "gi-alert-warning",
33
- baseDismissible: "gi-alert-success"
33
+ baseDismissible: "gi-alert-warning"
34
34
  }
35
35
  }
36
36
  },
37
37
  defaultVariants: {
38
38
  variant: "info"
39
39
  }
40
- }), x = ({ variant: e }) => {
40
+ }), I = ({ variant: i }) => {
41
41
  let s;
42
- switch (e) {
42
+ switch (i) {
43
43
  case "warning": {
44
44
  s = "warning";
45
45
  break;
@@ -57,50 +57,51 @@ const V = h({
57
57
  }
58
58
  return s;
59
59
  };
60
- function _({
61
- title: e,
60
+ function q({
61
+ title: i,
62
62
  children: s,
63
- variant: i = "info",
63
+ variant: a = "info",
64
64
  dismissible: t,
65
- onClose: a,
66
- dataTestid: l
65
+ onClose: e,
66
+ dataTestid: l,
67
+ className: c
67
68
  }) {
68
- const [c, o] = D(!1), { base: m, heading: d, container: b, dismiss: g, baseDismissible: f } = V({
69
- variant: i
70
- }), u = t ? f : m;
71
- return c ? null : /* @__PURE__ */ n(
69
+ const [o, m] = h(!1), { base: d, heading: g, container: b, dismiss: f, baseDismissible: u } = x({
70
+ variant: a
71
+ }), p = t ? u : d;
72
+ return o ? null : /* @__PURE__ */ n(
72
73
  "div",
73
74
  {
74
- className: v(u(), "gi-not-prose"),
75
+ className: k(p(), c, "gi-not-prose"),
75
76
  "data-testid": l,
76
77
  role: "alert",
77
78
  "aria-live": "assertive",
78
79
  children: [
79
80
  /* @__PURE__ */ r(
80
- w,
81
+ N,
81
82
  {
82
- icon: x({ variant: i }),
83
+ icon: I({ variant: a }),
83
84
  ariaHidden: !0,
84
85
  className: "gi-alert-icon",
85
- "data-variant": i
86
+ "data-variant": a
86
87
  }
87
88
  ),
88
89
  /* @__PURE__ */ n("div", { className: b(), children: [
89
- /* @__PURE__ */ r("p", { className: d(), children: e }),
90
+ /* @__PURE__ */ r("p", { className: g(), children: i }),
90
91
  s
91
92
  ] }),
92
93
  t && /* @__PURE__ */ r(
93
- N,
94
+ V,
94
95
  {
95
- onClick: (p) => {
96
- o(!0), a == null || a(p);
96
+ onClick: (D) => {
97
+ m(!0), e == null || e(D);
97
98
  },
98
- className: g(),
99
+ className: f(),
99
100
  size: "small",
100
101
  appearance: "dark",
101
102
  variant: "flat",
102
103
  icon: { icon: "close" },
103
- "aria-label": k("alert.dismissAlert", {
104
+ "aria-label": w("alert.dismissAlert", {
104
105
  defaultValue: "Dismiss alert"
105
106
  })
106
107
  }
@@ -110,6 +111,6 @@ function _({
110
111
  );
111
112
  }
112
113
  export {
113
- _ as Alert,
114
- V as alertVariants
114
+ q as Alert,
115
+ x as alertVariants
115
116
  };
@@ -1,22 +1,22 @@
1
1
  "use client";
2
- import { jsx as s, jsxs as x, Fragment as y } from "react/jsx-runtime";
3
- import { useState as D, cloneElement as O } from "react";
4
- import { cn as a } from "../cn.js";
5
- import { ModalBody as F, ModalFooter as M, ModalWrapper as N } from "../modal/modal.js";
2
+ import { jsx as a, jsxs as x, Fragment as y } from "react/jsx-runtime";
3
+ import { useState as D, cloneElement as M } from "react";
4
+ import { cn as r } from "../cn.js";
5
+ import { ModalBody as O, ModalFooter as F, ModalWrapper as N } from "../modal/modal.js";
6
6
  const b = ({
7
7
  children: o,
8
8
  className: e,
9
- ...r
10
- }) => /* @__PURE__ */ s(N, { className: a("gi-drawer-container", e), ...r, children: o }), I = ({
9
+ ...s
10
+ }) => /* @__PURE__ */ a(N, { className: r("gi-drawer-container", e), ...s, children: o }), I = ({
11
11
  children: o,
12
12
  triggerButton: e,
13
- startsOpen: r,
13
+ startsOpen: s,
14
14
  closeButtonLabel: p,
15
15
  position: i = "right",
16
16
  className: m,
17
17
  closeButtonSize: f
18
18
  }) => {
19
- const [t, n] = D(!!r), w = () => n(!0), C = () => n(!1), h = O(e, {
19
+ const [t, n] = D(!!s), w = () => n(!0), C = () => n(!1), h = M(e, {
20
20
  "data-testid": "drawer-trigger-button-container",
21
21
  onClick: (k) => {
22
22
  var l, d;
@@ -26,7 +26,7 @@ const b = ({
26
26
  });
27
27
  return /* @__PURE__ */ x(y, { children: [
28
28
  h,
29
- /* @__PURE__ */ s(
29
+ /* @__PURE__ */ a(
30
30
  b,
31
31
  {
32
32
  children: o,
@@ -39,11 +39,18 @@ const b = ({
39
39
  }
40
40
  )
41
41
  ] });
42
- }, S = ({ children: o, className: e }) => /* @__PURE__ */ s(F, { className: a("gi-drawer-body", e), children: o }), T = ({
42
+ }, S = ({ children: o, className: e }) => /* @__PURE__ */ a(
43
+ O,
44
+ {
45
+ includeModalClass: !1,
46
+ className: r("gi-drawer-body", e),
47
+ children: o
48
+ }
49
+ ), T = ({
43
50
  children: o,
44
51
  className: e,
45
- stacked: r
46
- }) => /* @__PURE__ */ s(M, { stacked: r, className: a("gi-drawer-footer", e), children: o });
52
+ stacked: s
53
+ }) => /* @__PURE__ */ a(F, { stacked: s, className: r("gi-drawer-footer", e), children: o });
47
54
  export {
48
55
  I as Drawer,
49
56
  S as DrawerBody,
@@ -1,40 +1,42 @@
1
1
  "use client";
2
2
  import { jsx as m } from "react/jsx-runtime";
3
- import { forwardRef as f } from "react";
4
- import { isButtonDisabled as p, getButtonIconSizeClass as B, getVariantAppearanceClass as I } from "../button/helpers.js";
5
- import { cn as b } from "../cn.js";
3
+ import { forwardRef as p } from "react";
4
+ import { isButtonDisabled as B, getButtonIconSizeClass as I, getVariantAppearanceClass as b } from "../button/helpers.js";
5
+ import { cn as d } from "../cn.js";
6
6
  import { Icon as g } from "../icon/icon.js";
7
- const x = f(
7
+ const x = p(
8
8
  ({
9
9
  icon: i,
10
- variant: t,
10
+ variant: o,
11
11
  appearance: n,
12
12
  size: r,
13
- disabled: o,
13
+ disabled: t,
14
14
  onClick: s,
15
15
  className: e = "",
16
16
  type: c = "button",
17
+ dataTestid: a,
17
18
  ...u
18
- }, a) => {
19
- const l = r === "small" ? "sm" : "md";
19
+ }, l) => {
20
+ const f = r === "small" ? "sm" : "md";
20
21
  return /* @__PURE__ */ m(
21
22
  "button",
22
23
  {
23
- ref: a,
24
+ ref: l,
24
25
  type: c,
25
- "aria-disabled": o,
26
- disabled: o,
26
+ "aria-disabled": t,
27
+ disabled: t,
27
28
  role: "button",
28
29
  onClick: s,
30
+ "data-testid": a,
29
31
  ...u,
30
- className: b(
32
+ className: d(
31
33
  "gi-btn",
32
- I({ disabled: o, variant: t, appearance: n }),
33
- B(r),
34
- p({ disabled: o, variant: t, appearance: n }),
34
+ b({ disabled: t, variant: o, appearance: n }),
35
+ I(r),
36
+ B({ disabled: t, variant: o, appearance: n }),
35
37
  e
36
38
  ),
37
- children: /* @__PURE__ */ m(g, { size: l, ...i })
39
+ children: /* @__PURE__ */ m(g, { size: f, ...i })
38
40
  }
39
41
  );
40
42
  }
package/dist/index.d.ts CHANGED
@@ -65,6 +65,7 @@ export { PhaseBanner, type PhaseBannerProps, } from './phase-banner/phase-banner
65
65
  export { Popover } from './popover/popover.js';
66
66
  export type { PopoverProps } from './popover/types.js';
67
67
  export { ProgressBar, type ProgressBarProps, } from './progress-bar/progress-bar.js';
68
+ export { type ProgressStepperProps, StepFillLevel, StepStatus, } from './progress-stepper/types.js';
68
69
  export * from './progress-stepper/progress-stepper.js';
69
70
  export { RadioGroup } from './radio/radio-group.js';
70
71
  export { Radio } from './radio/radio.js';
package/dist/index.js CHANGED
@@ -4,13 +4,13 @@ import { Alert as a } from "./alert/alert.js";
4
4
  import { Autocomplete as f, AutocompleteItem as l } from "./autocomplete/autocomplete.js";
5
5
  import { Blockquote as n } from "./blockquote/blockquote.js";
6
6
  import { BreadcrumbCurrentLink as u, BreadcrumbEllipsis as c, BreadcrumbLink as b, Breadcrumbs as T } from "./breadcrumbs/breadcrumbs.js";
7
- import { ButtonGroup as I, ButtonGroupItem as S } from "./button-group/button-group.js";
7
+ import { ButtonGroup as S, ButtonGroupItem as I } from "./button-group/button-group.js";
8
8
  import { Button as F } from "./button/button.js";
9
- import { CardAction as k, CardContainer as D, CardDescription as h, CardHeader as L, CardMedia as g, CardSubtitle as G, CardTag as P, CardTitle as w } from "./card/card-next.js";
9
+ import { CardAction as k, CardContainer as D, CardDescription as L, CardHeader as h, CardMedia as g, CardSubtitle as G, CardTag as P, CardTitle as w } from "./card/card-next.js";
10
10
  import { Card as A } from "./card/card.js";
11
11
  import { CheckboxGroup as H } from "./checkbox/checkbox-group.js";
12
12
  import { Checkbox as M } from "./checkbox/checkbox.js";
13
- import { Chip as v } from "./chip/chip.js";
13
+ import { Chip as N } from "./chip/chip.js";
14
14
  import { Combobox as z } from "./combo-box/combo-box.js";
15
15
  import { DropdownItem as U } from "./combo-box/dropdown-item.js";
16
16
  import { Container as j } from "./container/container.js";
@@ -24,16 +24,16 @@ import { FormField as xo, FormFieldError as fo, FormFieldHint as lo, FormFieldLa
24
24
  import { Form as uo } from "./forms/form.js";
25
25
  import { HeaderSearch as bo } from "./header/components/header-search.js";
26
26
  import { Header as Co } from "./header/header.js";
27
- import { Heading as So } from "./heading/heading.js";
27
+ import { Heading as Io } from "./heading/heading.js";
28
28
  import { initI18n as Fo } from "./i18n/config.js";
29
29
  import { IconButton as ko } from "./icon-button/icon-button.js";
30
- import { Icon as ho } from "./icon/icon.js";
30
+ import { Icon as Lo } from "./icon/icon.js";
31
31
  import { Icons as go } from "./icon/icons.js";
32
32
  import { InputCheckboxGroup as Po } from "./input-checkbox-group/input-checkbox-group.js";
33
33
  import { InputCheckbox as yo, InputCheckboxTableCell as Ao } from "./input-checkbox/input-checkbox.js";
34
34
  import { InputCheckboxSizeEnum as Ho } from "./input-checkbox/types.js";
35
35
  import { InputFile as Mo } from "./input-file/input-file.js";
36
- import { InputPassword as vo } from "./input-password/input-password.js";
36
+ import { InputPassword as No } from "./input-password/input-password.js";
37
37
  import { InputRadioGroup as zo } from "./input-radio-group/input-radio-group.js";
38
38
  import { InputRadio as Uo } from "./input-radio/input-radio.js";
39
39
  import { InputRadioSizeEnum as jo } from "./input-radio/types.js";
@@ -47,40 +47,41 @@ import { Paragraph as lr } from "./paragraph/paragraph.js";
47
47
  import { PhaseBanner as nr } from "./phase-banner/phase-banner.js";
48
48
  import { Popover as ur } from "./popover/popover.js";
49
49
  import { ProgressBar as br } from "./progress-bar/progress-bar.js";
50
- import { ProgressStepper as Cr, Step as Ir, StepItem as Sr } from "./progress-stepper/progress-stepper.js";
51
- import { RadioGroup as Fr } from "./radio/radio-group.js";
52
- import { Radio as kr } from "./radio/radio.js";
53
- import { ScoreSelect as hr } from "./score-select/score-select.js";
54
- import { SectionBreak as gr } from "./section-break/section-break.js";
55
- import { Select as Pr } from "./select/select.js";
56
- import { SelectGroupItemNext as yr, SelectItemNext as Ar, SelectNext as Er } from "./select/select-next.js";
57
- import { SideNav as Rr, SideNavItem as Mr } from "./side-nav/side-nav.js";
58
- import { Spinner as vr } from "./spinner/spinner.js";
59
- import { Stack as zr } from "./stack/stack.js";
60
- import { SummaryList as Ur, SummaryListAction as Vr, SummaryListRow as jr, SummaryListValue as Jr } from "./summary-list/summary-list.js";
61
- import { Caption as Or } from "./table/caption.js";
62
- import { ColumnGroup as Xr } from "./table/column-group.js";
63
- import { Column as Zr } from "./table/column.js";
64
- import { TableBody as $r } from "./table/table-body.js";
65
- import { TableData as re } from "./table/table-data.js";
66
- import { TableFoot as te } from "./table/table-foot.js";
67
- import { TableHead as me } from "./table/table-head.js";
68
- import { TableHeader as xe } from "./table/table-header.js";
69
- import { TableRow as le } from "./table/table-row.js";
70
- import { Table as ne } from "./table/table.js";
71
- import { TabItem as ue } from "./tabs/tab-item.js";
72
- import { TabList as be } from "./tabs/tab-list.js";
73
- import { TabPanel as Ce } from "./tabs/tab-panel.js";
74
- import { Tabs as Se } from "./tabs/tabs.js";
75
- import { DataTableFooter as Fe, DataTableFooterCenter as Be, DataTableFooterEnd as ke, DataTableFooterStart as De } from "./data-table/data-table-footer.js";
76
- import { Tag as Le, TagTypeEnum as ge } from "./tag/tag.js";
77
- import { TextInput as Pe } from "./text-input/text-input.js";
78
- import { TextArea as ye } from "./textarea/textarea.js";
79
- import { ToastProvider as Ee, toaster as He } from "./toast/toast.js";
80
- import { Tooltip as Me } from "./tooltip/tooltip.js";
81
- import { EditableTableCell as ve } from "./data-table/editable-table-cell.js";
82
- import { SelectGroupItem as ze, SelectItem as qe, SelectTableCell as Ue } from "./select/select-native.js";
83
- import { i as je } from "./i18next-DxWa09nx.js";
50
+ import { StepFillLevel as Cr, StepStatus as Sr } from "./progress-stepper/types.js";
51
+ import { ProgressStepper as sr, Step as Fr, StepItem as Br } from "./progress-stepper/progress-stepper.js";
52
+ import { RadioGroup as Dr } from "./radio/radio-group.js";
53
+ import { Radio as hr } from "./radio/radio.js";
54
+ import { ScoreSelect as Gr } from "./score-select/score-select.js";
55
+ import { SectionBreak as wr } from "./section-break/section-break.js";
56
+ import { Select as Ar } from "./select/select.js";
57
+ import { SelectGroupItemNext as Hr, SelectItemNext as Rr, SelectNext as Mr } from "./select/select-next.js";
58
+ import { SideNav as Nr, SideNavItem as Wr } from "./side-nav/side-nav.js";
59
+ import { Spinner as qr } from "./spinner/spinner.js";
60
+ import { Stack as Vr } from "./stack/stack.js";
61
+ import { SummaryList as Jr, SummaryListAction as Kr, SummaryListRow as Or, SummaryListValue as Qr } from "./summary-list/summary-list.js";
62
+ import { Caption as Yr } from "./table/caption.js";
63
+ import { ColumnGroup as _r } from "./table/column-group.js";
64
+ import { Column as oe } from "./table/column.js";
65
+ import { TableBody as ee } from "./table/table-body.js";
66
+ import { TableData as pe } from "./table/table-data.js";
67
+ import { TableFoot as ae } from "./table/table-foot.js";
68
+ import { TableHead as fe } from "./table/table-head.js";
69
+ import { TableHeader as ie } from "./table/table-header.js";
70
+ import { TableRow as de } from "./table/table-row.js";
71
+ import { Table as ce } from "./table/table.js";
72
+ import { TabItem as Te } from "./tabs/tab-item.js";
73
+ import { TabList as Se } from "./tabs/tab-list.js";
74
+ import { TabPanel as se } from "./tabs/tab-panel.js";
75
+ import { Tabs as Be } from "./tabs/tabs.js";
76
+ import { DataTableFooter as De, DataTableFooterCenter as Le, DataTableFooterEnd as he, DataTableFooterStart as ge } from "./data-table/data-table-footer.js";
77
+ import { Tag as Pe, TagTypeEnum as we } from "./tag/tag.js";
78
+ import { TextInput as Ae } from "./text-input/text-input.js";
79
+ import { TextArea as He } from "./textarea/textarea.js";
80
+ import { ToastProvider as Me, toaster as ve } from "./toast/toast.js";
81
+ import { Tooltip as We } from "./tooltip/tooltip.js";
82
+ import { EditableTableCell as qe } from "./data-table/editable-table-cell.js";
83
+ import { SelectGroupItem as Ve, SelectItem as je, SelectTableCell as Je } from "./select/select-native.js";
84
+ import { i as Oe } from "./i18next-DxWa09nx.js";
84
85
  export {
85
86
  p as Accordion,
86
87
  e as AccordionItem,
@@ -93,37 +94,37 @@ export {
93
94
  b as BreadcrumbLink,
94
95
  T as Breadcrumbs,
95
96
  F as Button,
96
- I as ButtonGroup,
97
- S as ButtonGroupItem,
98
- Or as Caption,
97
+ S as ButtonGroup,
98
+ I as ButtonGroupItem,
99
+ Yr as Caption,
99
100
  A as Card,
100
101
  k as CardAction,
101
102
  D as CardContainer,
102
- h as CardDescription,
103
- L as CardHeader,
103
+ L as CardDescription,
104
+ h as CardHeader,
104
105
  g as CardMedia,
105
106
  G as CardSubtitle,
106
107
  P as CardTag,
107
108
  w as CardTitle,
108
109
  M as Checkbox,
109
110
  H as CheckboxGroup,
110
- v as Chip,
111
- Zr as Column,
112
- Xr as ColumnGroup,
111
+ N as Chip,
112
+ oe as Column,
113
+ _r as ColumnGroup,
113
114
  z as Combobox,
114
115
  j as Container,
115
116
  K as CookieBanner,
116
- Fe as DataTableFooter,
117
- Be as DataTableFooterCenter,
118
- ke as DataTableFooterEnd,
119
- De as DataTableFooterStart,
117
+ De as DataTableFooter,
118
+ Le as DataTableFooterCenter,
119
+ he as DataTableFooterEnd,
120
+ ge as DataTableFooterStart,
120
121
  Q as Details,
121
122
  Y as Drawer,
122
123
  Z as DrawerBody,
123
124
  _ as DrawerFooter,
124
125
  $ as DrawerWrapper,
125
126
  U as DropdownItem,
126
- ve as EditableTableCell,
127
+ qe as EditableTableCell,
127
128
  ro as FileUpload,
128
129
  to as Footer,
129
130
  uo as Form,
@@ -134,8 +135,8 @@ export {
134
135
  mo as FormFieldWithTag,
135
136
  Co as Header,
136
137
  bo as HeaderSearch,
137
- So as Heading,
138
- ho as Icon,
138
+ Io as Heading,
139
+ Lo as Icon,
139
140
  ko as IconButton,
140
141
  go as Icons,
141
142
  yo as InputCheckbox,
@@ -143,7 +144,7 @@ export {
143
144
  Ho as InputCheckboxSizeEnum,
144
145
  Ao as InputCheckboxTableCell,
145
146
  Mo as InputFile,
146
- vo as InputPassword,
147
+ No as InputPassword,
147
148
  Uo as InputRadio,
148
149
  zo as InputRadioGroup,
149
150
  jo as InputRadioSizeEnum,
@@ -162,46 +163,48 @@ export {
162
163
  nr as PhaseBanner,
163
164
  ur as Popover,
164
165
  br as ProgressBar,
165
- Cr as ProgressStepper,
166
- kr as Radio,
167
- Fr as RadioGroup,
168
- hr as ScoreSelect,
169
- gr as SectionBreak,
170
- Pr as Select,
171
- ze as SelectGroupItem,
172
- yr as SelectGroupItemNext,
173
- qe as SelectItem,
174
- Ar as SelectItemNext,
175
- Er as SelectNext,
176
- Ue as SelectTableCell,
177
- Rr as SideNav,
178
- Mr as SideNavItem,
179
- vr as Spinner,
180
- zr as Stack,
181
- Ir as Step,
182
- Sr as StepItem,
183
- Ur as SummaryList,
184
- Vr as SummaryListAction,
185
- jr as SummaryListRow,
186
- Jr as SummaryListValue,
187
- ue as TabItem,
188
- be as TabList,
189
- Ce as TabPanel,
190
- ne as Table,
191
- $r as TableBody,
192
- re as TableData,
193
- te as TableFoot,
194
- me as TableHead,
195
- xe as TableHeader,
196
- le as TableRow,
197
- Se as Tabs,
198
- Le as Tag,
199
- ge as TagTypeEnum,
200
- ye as TextArea,
201
- Pe as TextInput,
202
- Ee as ToastProvider,
203
- Me as Tooltip,
204
- je as i18next,
166
+ sr as ProgressStepper,
167
+ hr as Radio,
168
+ Dr as RadioGroup,
169
+ Gr as ScoreSelect,
170
+ wr as SectionBreak,
171
+ Ar as Select,
172
+ Ve as SelectGroupItem,
173
+ Hr as SelectGroupItemNext,
174
+ je as SelectItem,
175
+ Rr as SelectItemNext,
176
+ Mr as SelectNext,
177
+ Je as SelectTableCell,
178
+ Nr as SideNav,
179
+ Wr as SideNavItem,
180
+ qr as Spinner,
181
+ Vr as Stack,
182
+ Fr as Step,
183
+ Cr as StepFillLevel,
184
+ Br as StepItem,
185
+ Sr as StepStatus,
186
+ Jr as SummaryList,
187
+ Kr as SummaryListAction,
188
+ Or as SummaryListRow,
189
+ Qr as SummaryListValue,
190
+ Te as TabItem,
191
+ Se as TabList,
192
+ se as TabPanel,
193
+ ce as Table,
194
+ ee as TableBody,
195
+ pe as TableData,
196
+ ae as TableFoot,
197
+ fe as TableHead,
198
+ ie as TableHeader,
199
+ de as TableRow,
200
+ Be as Tabs,
201
+ Pe as Tag,
202
+ we as TagTypeEnum,
203
+ He as TextArea,
204
+ Ae as TextInput,
205
+ Me as ToastProvider,
206
+ We as Tooltip,
207
+ Oe as i18next,
205
208
  Fo as initI18n,
206
- He as toaster
209
+ ve as toaster
207
210
  };
@@ -6,9 +6,10 @@ export declare const ModalTitle: {
6
6
  ({ children, as, ...props }: HeadingProps): import("react/jsx-runtime").JSX.Element;
7
7
  displayName: string;
8
8
  };
9
- export declare const ModalBody: ({ children, className, }: {
9
+ export declare const ModalBody: ({ children, className, includeModalClass, }: {
10
10
  children: ReactNode;
11
11
  className?: string;
12
+ includeModalClass?: boolean;
12
13
  }) => import("react/jsx-runtime").JSX.Element;
13
14
  export declare const ModalFooter: {
14
15
  ({ className, children, orientation, dataModalSize, stacked, }: ModalFooterProps): import("react/jsx-runtime").JSX.Element;