@iress-oss/ids-components 6.0.0-alpha.12 → 6.0.0-alpha.14

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.
Files changed (61) hide show
  1. package/dist/{Button-ZGbOkyOo.js → Button-BTkololu.js} +124 -117
  2. package/dist/{Provider-BPoPUE-B.js → Provider-B87u_maF.js} +4 -4
  3. package/dist/components/Alert/Alert.js +35 -36
  4. package/dist/components/Alert/Alert.styles.d.ts +24 -32
  5. package/dist/components/Alert/Alert.styles.js +24 -32
  6. package/dist/components/Button/Button.d.ts +3 -2
  7. package/dist/components/Button/Button.js +1 -1
  8. package/dist/components/Button/CloseButton/CloseButton.js +1 -1
  9. package/dist/components/Button/index.js +1 -1
  10. package/dist/components/Card/Card.styles.js +1 -1
  11. package/dist/components/Divider/Divider.d.ts +1 -1
  12. package/dist/components/Divider/Divider.js +24 -20
  13. package/dist/components/Divider/Divider.styles.d.ts +6 -1
  14. package/dist/components/Divider/Divider.styles.js +17 -3
  15. package/dist/components/Expander/Expander.js +65 -52
  16. package/dist/components/Expander/Expander.styles.d.ts +23 -11
  17. package/dist/components/Expander/Expander.styles.js +44 -31
  18. package/dist/components/Filter/Filter.js +120 -117
  19. package/dist/components/Filter/Filter.styles.js +5 -3
  20. package/dist/components/Filter/components/FilterResetButton.js +1 -1
  21. package/dist/components/Input/Input.js +1 -1
  22. package/dist/components/Link/Link.styles.js +0 -1
  23. package/dist/components/Menu/MenuText/MenuText.js +1 -1
  24. package/dist/components/Modal/Modal.js +1 -1
  25. package/dist/components/Modal/Modal.styles.d.ts +1 -1
  26. package/dist/components/Modal/Modal.styles.js +1 -1
  27. package/dist/components/Progress/Progress.js +1 -1
  28. package/dist/components/Provider/Provider.js +1 -1
  29. package/dist/components/Provider/index.js +1 -1
  30. package/dist/components/RichSelect/SelectHeading/SelectHeading.js +19 -19
  31. package/dist/components/RichSelect/SelectTags/SelectTags.js +1 -1
  32. package/dist/components/SkipLink/SkipLink.js +1 -1
  33. package/dist/components/Slideout/components/SlideoutInner.js +1 -1
  34. package/dist/components/Slideout/hooks/usePushElement.js +1 -1
  35. package/dist/components/Stack/Stack.d.ts +5 -1
  36. package/dist/components/Stack/Stack.styles.d.ts +20 -0
  37. package/dist/components/Stack/Stack.styles.js +23 -3
  38. package/dist/components/TabSet/TabSet.styles.js +1 -1
  39. package/dist/components/Tag/Tag.d.ts +27 -4
  40. package/dist/components/Tag/Tag.js +50 -33
  41. package/dist/components/Tag/Tag.styles.d.ts +25 -0
  42. package/dist/components/Tag/Tag.styles.js +39 -12
  43. package/dist/components/Tag/TagInput/TagInput.js +51 -48
  44. package/dist/components/Tag/TagInput/TagInput.styles.js +4 -10
  45. package/dist/components/Toaster/components/Toast/Toast.d.ts +5 -3
  46. package/dist/components/Toaster/components/Toast/Toast.js +65 -58
  47. package/dist/components/Toaster/components/Toast/Toast.styles.d.ts +31 -1
  48. package/dist/components/Toaster/components/Toast/Toast.styles.js +33 -6
  49. package/dist/{index-gmMGso0u.js → index-Bm5rQqn5.js} +5 -1
  50. package/dist/interfaces.d.ts +7 -2
  51. package/dist/main.js +2 -2
  52. package/dist/patterns/Loading/components/LongLoading.js +28 -28
  53. package/dist/patterns/Loading/components/PageLoading.js +32 -32
  54. package/dist/patterns/Loading/components/ValidateLoading.js +1 -1
  55. package/dist/patterns/Loading/hooks/useEstimatedProgressValue.js +14 -14
  56. package/dist/patterns/Shadow/Shadow.js +469 -776
  57. package/dist/style.css +1 -1
  58. package/dist/styled-system/recipes/button.d.ts +1 -1
  59. package/dist/styled-system/tokens/tokens.d.ts +1 -1
  60. package/dist/styled-system/types/prop-type.d.ts +2 -2
  61. package/package.json +4 -4
@@ -1,9 +1,19 @@
1
1
  import { s as e } from "../../sva-B7kca5XO.js";
2
- const o = e({
3
- slots: ["root", "activator", "content", "container", "containerInner"],
2
+ const r = e({
3
+ slots: [
4
+ "root",
5
+ "activator",
6
+ "chevron",
7
+ "content",
8
+ "container",
9
+ "containerInner"
10
+ ],
4
11
  base: {
5
12
  root: {
6
- display: "block"
13
+ display: "block",
14
+ "&:has([aria-controls]:focus-visible)": {
15
+ layerStyle: "elevation.focusNoBorder"
16
+ }
7
17
  },
8
18
  activator: {
9
19
  display: "inline-block",
@@ -12,26 +22,17 @@ const o = e({
12
22
  width: "auto",
13
23
  bg: "transparent",
14
24
  cursor: "pointer",
15
- tableChevron: !0,
16
25
  position: "relative",
17
- _before: {
18
- content: '""',
19
- position: "absolute",
20
- top: "[-1.5px]",
21
- left: "[-1.5px]",
22
- right: "[-1.5px]",
23
- bottom: "[-1.5px]",
24
- pointerEvents: "none",
25
- zIndex: "[-1]",
26
- borderRadius: "radius.system.badge"
27
- },
28
26
  _focusVisible: {
29
- outline: "[none]",
30
- _before: {
31
- layerStyle: "elevation.focus"
32
- }
27
+ outline: "[none]"
33
28
  }
34
29
  },
30
+ chevron: {
31
+ width: "[1.5em]",
32
+ height: "[1.5em]",
33
+ color: "colour.neutral.90",
34
+ transition: "[all 0.3s ease-in-out]"
35
+ },
35
36
  container: {
36
37
  display: "grid",
37
38
  gridTemplateRows: "0fr",
@@ -47,21 +48,30 @@ const o = e({
47
48
  variants: {
48
49
  mode: {
49
50
  section: {
51
+ root: {
52
+ border: "table",
53
+ borderRadius: "radius.system.layout",
54
+ p: "spacing.4",
55
+ transition: "colors",
56
+ "&:has([aria-controls]:hover)": {
57
+ borderColor: "colour.primary.fill"
58
+ }
59
+ },
50
60
  activator: {
51
61
  display: "flex",
52
62
  justifyContent: "space-between",
53
63
  alignItems: "flex-end",
54
64
  width: "[100%]",
55
- textStyle: "typography.heading.4",
56
- py: "spacing.3",
57
- borderBottom: "divider",
58
- transition: "[all 0.2s ease-in-out]",
59
- _after: {
60
- mr: "spacing.2"
61
- },
65
+ textStyle: "typography.heading.3",
62
66
  _hover: {
63
- color: "colour.primary.text",
64
- borderBottom: "hover"
67
+ color: "colour.primary.text"
68
+ }
69
+ },
70
+ chevron: {
71
+ bg: "colour.neutral.30",
72
+ borderRadius: "50%",
73
+ _groupHover: {
74
+ bg: "colour.primary.surfaceHover"
65
75
  }
66
76
  }
67
77
  },
@@ -75,13 +85,16 @@ const o = e({
75
85
  _hover: {
76
86
  textDecoration: "none"
77
87
  }
88
+ },
89
+ chevron: {
90
+ display: "inline"
78
91
  }
79
92
  }
80
93
  },
81
94
  open: {
82
95
  true: {
83
- activator: {
84
- tableChevron: !1
96
+ chevron: {
97
+ transform: "rotate(180deg)"
85
98
  },
86
99
  container: {
87
100
  gridTemplateRows: "1fr"
@@ -95,5 +108,5 @@ const o = e({
95
108
  }
96
109
  });
97
110
  export {
98
- o as expander
111
+ r as expander
99
112
  };
@@ -1,133 +1,137 @@
1
- import { jsx as e, jsxs as n, Fragment as T } from "react/jsx-runtime";
2
- import { forwardRef as ee, useRef as te, useMemo as re, useState as C, useImperativeHandle as oe } from "react";
3
- import { c as se } from "../../cx-DN21T1EH.js";
4
- import { filter as ie } from "./Filter.styles.js";
1
+ import { jsx as e, jsxs as m, Fragment as re } from "react/jsx-runtime";
2
+ import { forwardRef as oe, useRef as se, useMemo as R, useState as I, useImperativeHandle as ie } from "react";
3
+ import { c as ae } from "../../cx-DN21T1EH.js";
4
+ import { filter as ne } from "./Filter.styles.js";
5
+ import { s as le } from "../../factory-CsinCTPr.js";
6
+ import { s as pe } from "../../is-valid-prop-DweT-eOL.js";
5
7
  import { propagateTestid as o } from "../../helpers/utility/propagateTestid.js";
6
- import { IressPopover as ae } from "../Popover/Popover.js";
8
+ import { IressPopover as me } from "../Popover/Popover.js";
7
9
  import "../Popover/Popover.styles.js";
8
10
  import "../Popover/InputPopover/InputPopover.js";
9
11
  import "../Popover/hooks/useFloatingPopover.js";
10
- import { I as ne } from "../../Button-ZGbOkyOo.js";
12
+ import { I as ce } from "../../Button-BTkololu.js";
11
13
  import "../Button/CloseButton/CloseButton.js";
12
- import { useRichSelectState as le } from "../RichSelect/hooks/useRichSelectState.js";
14
+ import { useRichSelectState as de } from "../RichSelect/hooks/useRichSelectState.js";
13
15
  import "../../Autocomplete-DUsna_OY.js";
14
16
  import "../RichSelect/SelectBody/SelectBody.js";
15
17
  import "../RichSelect/SelectCreate/SelectCreate.js";
16
18
  import "../RichSelect/SelectHeading/SelectHeading.js";
17
19
  import "../RichSelect/SelectLabel/SelectLabel.js";
18
- import { IressSelectMenu as me } from "../RichSelect/SelectMenu/SelectMenu.js";
20
+ import { IressSelectMenu as ue } from "../RichSelect/SelectMenu/SelectMenu.js";
19
21
  import "../RichSelect/SelectSearch/SelectSearch.js";
20
22
  import "../RichSelect/SelectSearchInput/SelectSearchInput.js";
21
23
  import "../RichSelect/SelectTags/SelectTags.js";
22
24
  import "../Autocomplete/Autocomplete.styles.js";
23
- import { useAutocompleteSearch as pe } from "../Autocomplete/hooks/useAutocompleteSearch.js";
24
- import { IressPanel as ce } from "../Panel/Panel.js";
25
+ import { useAutocompleteSearch as fe } from "../Autocomplete/hooks/useAutocompleteSearch.js";
26
+ import { IressPanel as he } from "../Panel/Panel.js";
25
27
  import "../Panel/Panel.styles.js";
26
- import { useFilterFlags as de } from "./hooks/useFilterFlags.js";
27
- import { useIdIfNeeded as ue } from "../../hooks/useIdIfNeeded.js";
28
- import { FilterSearch as fe } from "./components/FilterSearch.js";
29
- import { IressDivider as he } from "../Divider/Divider.js";
28
+ import { useFilterFlags as ve } from "./hooks/useFilterFlags.js";
29
+ import { useIdIfNeeded as ge } from "../../hooks/useIdIfNeeded.js";
30
+ import { FilterSearch as ye } from "./components/FilterSearch.js";
31
+ import { IressDivider as Fe } from "../Divider/Divider.js";
30
32
  import "../Divider/Divider.styles.js";
31
- import { FilterResetButton as ve } from "./components/FilterResetButton.js";
32
- import { FilterLabel as ge } from "./components/FilterLabel.js";
33
- import { IressIcon as I } from "../Icon/Icon.js";
33
+ import { FilterResetButton as be } from "./components/FilterResetButton.js";
34
+ import { FilterLabel as Se } from "./components/FilterLabel.js";
35
+ import { IressIcon as w } from "../Icon/Icon.js";
34
36
  import "../Icon/Icon.styles.js";
35
- import { GlobalCSSClass as Fe } from "../../enums.js";
36
- import { FilterResultsDescriptor as be } from "./components/FilterResultsDescriptor.js";
37
- import { s as ye } from "../../factory-CsinCTPr.js";
38
- const w = {
37
+ import { GlobalCSSClass as Ce } from "../../enums.js";
38
+ import { FilterResultsDescriptor as Pe } from "./components/FilterResultsDescriptor.js";
39
+ const N = {
39
40
  align: "bottom-start"
40
41
  }, Re = ({
41
- children: P,
42
- className: N,
42
+ children: x,
43
+ className: D,
43
44
  "data-testid": t,
44
- debounceThreshold: x,
45
+ debounceThreshold: A,
45
46
  defaultValue: h,
46
- id: D,
47
- initialOptions: A,
48
- inputProps: O = {
47
+ id: O,
48
+ initialOptions: Q,
49
+ inputProps: _ = {
49
50
  clearable: !0,
50
- prepend: /* @__PURE__ */ e(I, { name: "search" })
51
+ prepend: /* @__PURE__ */ e(w, { name: "search" })
51
52
  },
52
- limitDesktop: Q = 12,
53
- limitMobile: _ = 6,
54
- label: L,
53
+ limitDesktop: L = 12,
54
+ limitMobile: M = 6,
55
+ label: j,
55
56
  multiSelect: s,
56
- onChange: M,
57
- onReset: j,
57
+ onChange: k,
58
+ onReset: E,
58
59
  options: i,
59
60
  popoverProps: {
60
- footer: k,
61
- header: E,
62
- ...H
63
- } = w,
61
+ footer: H,
62
+ header: W,
63
+ ...q
64
+ } = N,
64
65
  searchable: v,
65
66
  searchNoResultsText: g,
66
- selectedOptionsText: W,
67
- value: q,
68
- visibleResetButton: l,
69
- ...G
70
- }, U) => {
71
- const F = ue({ id: D }), b = `${F}-sr-text`, y = te(null), R = re(
67
+ selectedOptionsText: G,
68
+ value: U,
69
+ visibleResetButton: n,
70
+ ...y
71
+ }, V) => {
72
+ const F = ge({ id: O }), b = `${F}-sr-text`, S = se(null), C = R(
72
73
  () => v ?? typeof i == "function",
73
74
  [i, v]
74
- ), V = {
75
+ ), $ = {
75
76
  clearable: !0,
76
- prepend: /* @__PURE__ */ e(I, { name: "search" }),
77
- ...O
78
- }, $ = { ...w, ...H }, { value: S, setValue: c } = le({
77
+ prepend: /* @__PURE__ */ e(w, { name: "search" }),
78
+ ..._
79
+ }, z = { ...N, ...q }, { value: P, setValue: c } = de({
79
80
  component: "IressFilter",
80
81
  defaultValue: h,
81
82
  multiple: s,
82
- value: q
83
- }), [z, d] = C(""), [J, a] = C(!1), K = (p) => {
83
+ value: U
84
+ }), [J, d] = I(""), [K, a] = I(!1), [X, Y] = R(
85
+ () => pe(y),
86
+ [y]
87
+ ), Z = (p) => {
84
88
  d(p.target.value);
85
- }, X = () => {
89
+ }, B = () => {
86
90
  d("");
87
- }, Y = (p) => {
88
- M?.(p), c(p), s || a(!1);
89
- }, Z = () => {
90
- c(void 0), j?.(), s || a(!1);
91
+ }, T = (p) => {
92
+ k?.(p), c(p), s || a(!1);
93
+ }, ee = () => {
94
+ c(void 0), E?.(), s || a(!1);
91
95
  };
92
- oe(U, () => ({
93
- element: y.current ?? void 0,
96
+ ie(V, () => ({
97
+ element: S.current ?? void 0,
94
98
  clearSearch: () => d(""),
95
99
  reset: () => c(h)
96
100
  }));
97
101
  const {
98
- debouncedQuery: B,
102
+ debouncedQuery: te,
99
103
  loading: u,
100
104
  results: f,
101
- shouldShowInstructions: Ce,
102
- shouldShowDebounceWaiting: Ie,
103
- shouldShowNoResults: we
104
- } = pe({
105
- debounceThreshold: x,
106
- initialOptions: A ?? (typeof i == "function" ? void 0 : i),
105
+ shouldShowInstructions: we,
106
+ shouldShowDebounceWaiting: Ne,
107
+ shouldShowNoResults: xe
108
+ } = fe({
109
+ debounceThreshold: A,
110
+ initialOptions: Q ?? (typeof i == "function" ? void 0 : i),
107
111
  options: i,
108
- query: z
109
- }), m = de({
110
- debouncedQuery: B,
112
+ query: J
113
+ }), l = ve({
114
+ debouncedQuery: te,
111
115
  loading: u,
112
116
  results: f,
113
- searchable: R,
114
- visibleResetButton: l
115
- }), r = ie();
116
- return /* @__PURE__ */ n(
117
- ye.div,
117
+ searchable: C,
118
+ visibleResetButton: n
119
+ }), r = ne();
120
+ return /* @__PURE__ */ m(
121
+ le.div,
118
122
  {
119
- ...G,
120
- className: se(N, r.root, Fe.Filter),
123
+ ...Y,
124
+ className: ae(D, r.root, Ce.Filter),
121
125
  "data-testid": t,
122
126
  id: F,
123
- ref: y,
127
+ ref: S,
124
128
  children: [
125
- /* @__PURE__ */ n(
126
- ae,
129
+ /* @__PURE__ */ m(
130
+ me,
127
131
  {
128
- ...$,
129
- activator: /* @__PURE__ */ n(
130
- ne,
132
+ ...z,
133
+ activator: /* @__PURE__ */ e(
134
+ ce,
131
135
  {
132
136
  "aria-describedby": b,
133
137
  "data-testid": o(
@@ -135,74 +139,73 @@ const w = {
135
139
  "activator-button__button"
136
140
  ),
137
141
  onClick: () => a(!0),
138
- children: [
139
- /* @__PURE__ */ e(
140
- ge,
141
- {
142
- label: L,
143
- selectedOptionsText: W,
144
- value: S
145
- }
146
- ),
147
- /* @__PURE__ */ e("span", { className: r.chevron })
148
- ]
142
+ append: /* @__PURE__ */ e("span", { className: r.chevron }),
143
+ ...X,
144
+ children: /* @__PURE__ */ e(
145
+ Se,
146
+ {
147
+ label: j,
148
+ selectedOptionsText: G,
149
+ value: P
150
+ }
151
+ )
149
152
  }
150
153
  ),
151
154
  contentStyle: { className: r.popoverContent },
152
155
  "data-testid": o(t, "popover"),
153
- show: J,
156
+ show: K,
154
157
  matchActivatorWidth: !0,
155
158
  onActivated: () => a(!0),
156
159
  onDeactivated: () => a(!1),
157
160
  type: "listbox",
158
161
  children: [
159
- E,
160
- m.showHeader && /* @__PURE__ */ n(T, { children: [
161
- /* @__PURE__ */ n(ce, { bg: "transparent", p: "spacing.2", children: [
162
- R && /* @__PURE__ */ e(
163
- fe,
162
+ W,
163
+ l.showHeader && /* @__PURE__ */ m(re, { children: [
164
+ /* @__PURE__ */ m(he, { bg: "transparent", p: "spacing.2", children: [
165
+ C && /* @__PURE__ */ e(
166
+ ye,
164
167
  {
165
- ...V,
168
+ ...$,
166
169
  className: r.searchInput,
167
170
  "data-testid": o(t, "input"),
168
171
  loading: u,
169
- onChange: K,
170
- onClear: X
172
+ onChange: Z,
173
+ onClear: B
171
174
  }
172
175
  ),
173
- l && /* @__PURE__ */ e(
174
- ve,
176
+ n && /* @__PURE__ */ e(
177
+ be,
175
178
  {
176
179
  "data-testid": o(t, "reset-button"),
177
- onClick: Z,
178
- children: typeof l == "string" ? l : "Reset filter"
180
+ onClick: ee,
181
+ children: typeof n == "string" ? n : "Reset filter"
179
182
  }
180
183
  )
181
184
  ] }),
182
- m.showResults && /* @__PURE__ */ e(he, {})
185
+ l.showResults && /* @__PURE__ */ e(Fe, {})
183
186
  ] }),
184
- m.showResults && /* @__PURE__ */ e(
185
- me,
187
+ l.showResults && /* @__PURE__ */ e(
188
+ ue,
186
189
  {
187
190
  className: r.optionList,
188
191
  "data-testid": o(t, "menu"),
189
192
  items: f,
190
- limitDesktop: Q,
191
- limitMobile: _,
193
+ limitDesktop: L,
194
+ limitMobile: M,
192
195
  multiSelect: s,
193
- onChange: Y,
194
- selected: S,
196
+ onChange: T,
197
+ selected: P,
195
198
  selectedFirst: s
196
199
  }
197
200
  ),
198
- m.showNoResults && /* @__PURE__ */ e("div", { className: r.noResults, children: g }),
199
- k
201
+ l.showNoResults && /* @__PURE__ */ e("div", { className: r.noResults, children: g }),
202
+ H
200
203
  ]
201
204
  }
202
205
  ),
203
- P,
206
+ x,
204
207
  /* @__PURE__ */ e(
205
- be,
208
+ Pe,
206
209
  {
207
210
  "data-testid": o(t, "results-sr-text"),
208
211
  id: b,
@@ -214,8 +217,8 @@ const w = {
214
217
  ]
215
218
  }
216
219
  );
217
- }, Se = ee(Re);
218
- Se.displayName = "IressFilter";
220
+ }, Ie = oe(Re);
221
+ Ie.displayName = "IressFilter";
219
222
  export {
220
- Se as IressFilter
223
+ Ie as IressFilter
221
224
  };
@@ -1,5 +1,5 @@
1
1
  import { s as t } from "../../sva-B7kca5XO.js";
2
- const e = t({
2
+ const n = t({
3
3
  slots: [
4
4
  "root",
5
5
  "chevron",
@@ -15,8 +15,10 @@ const e = t({
15
15
  base: {
16
16
  root: {},
17
17
  chevron: {
18
+ position: "relative",
18
19
  selectChevron: !0,
19
- marginInlineStart: "spacing.2",
20
+ marginInlineStart: "spacing.4",
21
+ marginInlineEnd: "-spacing.2",
20
22
  _rtl: {
21
23
  selectChevronRtl: !0
22
24
  }
@@ -61,5 +63,5 @@ const e = t({
61
63
  compoundVariants: []
62
64
  });
63
65
  export {
64
- e as filter
66
+ n as filter
65
67
  };
@@ -1,5 +1,5 @@
1
1
  import { jsx as n } from "react/jsx-runtime";
2
- import { I as i } from "../../../Button-ZGbOkyOo.js";
2
+ import { I as i } from "../../../Button-BTkololu.js";
3
3
  import "../../Button/CloseButton/CloseButton.js";
4
4
  import { filter as p } from "../Filter.styles.js";
5
5
  import { usePopoverItem as f } from "../../Popover/hooks/usePopoverItem.js";
@@ -13,7 +13,7 @@ import { input as Q } from "./Input.styles.js";
13
13
  import { s as W } from "../../factory-CsinCTPr.js";
14
14
  import { s as X } from "../../is-valid-prop-DweT-eOL.js";
15
15
  import { useNoDefaultValueInForms as Y } from "../../patterns/Form/hooks/useNoDefaultValueInForms.js";
16
- import "../../Button-ZGbOkyOo.js";
16
+ import "../../Button-BTkololu.js";
17
17
  import { IressCloseButton as Z } from "../Button/CloseButton/CloseButton.js";
18
18
  const _ = ({ rows: a, ...f }, S) => {
19
19
  const {
@@ -14,7 +14,6 @@ const e = ["root", "content", "prepend", "append", "spinner"], n = o({
14
14
  },
15
15
  root: {
16
16
  alignItems: "baseline",
17
- alignSelf: "flex-start",
18
17
  cursor: "pointer",
19
18
  display: "inline-flex",
20
19
  fontKerning: "none",
@@ -66,7 +66,7 @@ l.displayName = "IressMenuText";
66
66
  const w = ({
67
67
  className: s,
68
68
  element: e = "h2",
69
- textStyle: o = "typography.heading.4",
69
+ textStyle: o = "typography.heading.3",
70
70
  ...t
71
71
  }) => /* @__PURE__ */ r(
72
72
  l,
@@ -1,6 +1,6 @@
1
1
  import { jsx as n, jsxs as v } from "react/jsx-runtime";
2
2
  import { useState as Z, useEffect as w, useMemo as oo } from "react";
3
- import "../../Button-ZGbOkyOo.js";
3
+ import "../../Button-BTkololu.js";
4
4
  import { IressCloseButton as eo } from "../Button/CloseButton/CloseButton.js";
5
5
  import { u as to, b as so, c as ro, d as no, e as ao, F as io, f as lo, g as co } from "../../floating-ui.react-BlU6Nz_4.js";
6
6
  import { idsLogger as mo } from "../../helpers/utility/idsLogger.js";
@@ -21,7 +21,7 @@ export declare const modal: import('../../styled-system/types').SlotRecipeRuntim
21
21
  content: {
22
22
  flex: "[1]";
23
23
  overflowX: "hidden";
24
- overflowY: "auto";
24
+ scrollable: "y";
25
25
  maxHeight: "[calc(100vh - ({spacing.spacing.7} * 2))]";
26
26
  '@media (min-height: 600px)': {
27
27
  maxHeight: "[calc(100vh - (100px * 2))]";
@@ -62,7 +62,7 @@ const o = [
62
62
  content: {
63
63
  flex: "[1]",
64
64
  overflowX: "hidden",
65
- overflowY: "auto",
65
+ scrollable: "y",
66
66
  maxHeight: "[calc(100vh - ({spacing.spacing.7} * 2))]",
67
67
  "@media (min-height: 600px)": {
68
68
  maxHeight: "[calc(100vh - (100px * 2))]"
@@ -6,7 +6,7 @@ import { progress as S } from "./Progress.styles.js";
6
6
  import { s as n } from "../../factory-CsinCTPr.js";
7
7
  import { s as b } from "../../is-valid-prop-DweT-eOL.js";
8
8
  import { GlobalCSSClass as x } from "../../enums.js";
9
- import { t as C } from "../../index-gmMGso0u.js";
9
+ import { t as C } from "../../index-Bm5rQqn5.js";
10
10
  const N = ({
11
11
  borderRadius: e,
12
12
  className: p,
@@ -12,7 +12,7 @@ import "../Slideout/Slideout.styles.js";
12
12
  import "../Slideout/SlideoutProvider.js";
13
13
  import "../Slideout/hooks/useSlideout.js";
14
14
  import "react-dom";
15
- import { I as c } from "../../Provider-BPoPUE-B.js";
15
+ import { I as c } from "../../Provider-B87u_maF.js";
16
16
  export {
17
17
  c as IressProvider
18
18
  };
@@ -1,4 +1,4 @@
1
- import { I as o } from "../../Provider-BPoPUE-B.js";
1
+ import { I as o } from "../../Provider-B87u_maF.js";
2
2
  export {
3
3
  o as IressProvider
4
4
  };