@iress-oss/ids-components 6.0.0-alpha.16 → 6.0.0-alpha.17

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.
@@ -1,57 +1,59 @@
1
- import { jsx as m } from "react/jsx-runtime";
1
+ import { jsx as n } from "react/jsx-runtime";
2
2
  import { stringReplacer as P } from "../../helpers/formatting/stringReplacer.js";
3
- import { c as v } from "../../css-DNdLYQld.js";
4
- import { c as y } from "../../cx-DN21T1EH.js";
5
- import { progress as S } from "./Progress.styles.js";
6
- import { s as n } from "../../factory-CsinCTPr.js";
7
- import { s as b } from "../../is-valid-prop-DweT-eOL.js";
8
- import { GlobalCSSClass as x } from "../../enums.js";
9
- import { t as C } from "../../index-Bm5rQqn5.js";
10
- const N = ({
11
- borderRadius: e,
12
- className: p,
3
+ import { c as y } from "../../css-DNdLYQld.js";
4
+ import { c as S } from "../../cx-DN21T1EH.js";
5
+ import { progress as b } from "./Progress.styles.js";
6
+ import { s as p } from "../../factory-CsinCTPr.js";
7
+ import { s as x } from "../../is-valid-prop-DweT-eOL.js";
8
+ import { GlobalCSSClass as C } from "../../enums.js";
9
+ import { t as N } from "../../index-Bm5rQqn5.js";
10
+ const h = ({
11
+ backgroundImage: e,
12
+ borderRadius: t,
13
+ className: c,
13
14
  max: r = 100,
14
15
  min: s,
15
- sectionTitle: c = "Progress is {{current}} of {{max}}",
16
- style: f,
16
+ sectionTitle: f = "Progress is {{current}} of {{max}}",
17
+ style: u,
17
18
  value: g = 0,
18
- ...u
19
+ ...d
19
20
  }) => {
20
- const [d, t] = b(u), a = y(
21
- p,
22
- v(S.raw(), d),
23
- x.Progress
24
- ), o = Math.min(Math.max(g, s ?? 0), r), i = () => P(c, [
21
+ const [v, a] = x(d), i = S(
22
+ c,
23
+ y(b.raw(), v),
24
+ C.Progress
25
+ ), o = Math.min(Math.max(g, s ?? 0), r), l = () => P(f, [
25
26
  { name: "{{current}}", value: String(o) },
26
27
  { name: "{{max}}", value: r.toString() }
27
- ]), l = {
28
- "--iress-border-radius": e ? C(`radii.${e}`) : void 0,
29
- ...f
28
+ ]), m = {
29
+ "--iress-border-radius": t ? N(`radii.${t}`) : void 0,
30
+ "--iress-background-image": e ? `url(${e})` : void 0,
31
+ ...u
30
32
  };
31
- return s !== void 0 ? /* @__PURE__ */ m(
32
- n.meter,
33
+ return s !== void 0 ? /* @__PURE__ */ n(
34
+ p.meter,
33
35
  {
34
- "aria-label": i(),
35
- className: a,
36
+ "aria-label": l(),
37
+ className: i,
36
38
  max: r,
37
39
  min: s,
38
40
  value: o,
39
- ...t,
40
- style: l
41
+ ...a,
42
+ style: m
41
43
  }
42
- ) : /* @__PURE__ */ m(
43
- n.progress,
44
+ ) : /* @__PURE__ */ n(
45
+ p.progress,
44
46
  {
45
- "aria-label": i(),
46
- className: a,
47
+ "aria-label": l(),
48
+ className: i,
47
49
  max: r,
48
50
  value: o,
49
- ...t,
50
- style: l
51
+ ...a,
52
+ style: m
51
53
  }
52
54
  );
53
55
  };
54
- N.displayName = "IressProgress";
56
+ h.displayName = "IressProgress";
55
57
  export {
56
- N as IressProgress
58
+ h as IressProgress
57
59
  };
@@ -18,6 +18,9 @@ const e = r({
18
18
  _progressValue: {
19
19
  appearance: "none",
20
20
  bg: "[currentColor]",
21
+ backgroundImage: "var(--iress-background-image)",
22
+ backgroundSize: "cover",
23
+ backgroundPosition: "center",
21
24
  borderRadius: "var(--iress-border-radius)",
22
25
  margin: "spacing.0",
23
26
  transition: "all"
@@ -25,6 +28,9 @@ const e = r({
25
28
  _mozProgressValue: {
26
29
  appearance: "none",
27
30
  bg: "[currentColor]",
31
+ backgroundImage: "var(--iress-background-image)",
32
+ backgroundSize: "cover",
33
+ backgroundPosition: "center",
28
34
  borderRadius: "var(--iress-border-radius)",
29
35
  margin: "spacing.0",
30
36
  transition: "all"
@@ -230,7 +230,7 @@ const xe = ({
230
230
  ...H.getFloatingProps(Y),
231
231
  onTransitionEnd: K
232
232
  };
233
- return /* @__PURE__ */ _(ie, { root: t, children: /* @__PURE__ */ _(
233
+ return /* @__PURE__ */ _(ie, { root: t ?? E?.container, children: /* @__PURE__ */ _(
234
234
  fe,
235
235
  {
236
236
  ...Z,
@@ -24,7 +24,8 @@ const i = t({
24
24
  },
25
25
  content: {
26
26
  overflow: "auto",
27
- flex: "[1 1 auto]"
27
+ flex: "[1 1 auto]",
28
+ scrollable: "y"
28
29
  },
29
30
  footer: {
30
31
  borderBlockStart: "divider"
@@ -1,12 +1,31 @@
1
1
  import { IressIconProps } from '../Icon';
2
- export interface IressSpinnerProps extends Omit<IressIconProps, 'name'> {
2
+ import { IressStyledProps } from '../../types';
3
+ type IressSpinnerDefaultProps = Omit<IressIconProps, 'name'> & {
3
4
  /**
4
5
  * Spin speed of spinner.
5
6
  * @default half
6
7
  **/
7
8
  spin?: IressIconProps['spin'];
8
- }
9
+ /**
10
+ * Variant of spinner.
11
+ * - 'default': Standard rotating spinner
12
+ **/
13
+ variant?: 'default';
14
+ };
15
+ type IressSpinnerChattyProps = IressStyledProps<'span'> & {
16
+ /**
17
+ * Variant of spinner.
18
+ * - 'chatty': Animated dots for chatting/typing indicator
19
+ **/
20
+ variant: 'chatty';
21
+ /**
22
+ * Screen reader text for the chatty spinner.
23
+ */
24
+ screenreaderText: string;
25
+ };
26
+ export type IressSpinnerProps = IressSpinnerDefaultProps | IressSpinnerChattyProps;
9
27
  export declare const IressSpinner: {
10
- ({ className, spin, ...restProps }: IressSpinnerProps): import("react/jsx-runtime").JSX.Element;
28
+ (props: IressSpinnerProps): import("react/jsx-runtime").JSX.Element;
11
29
  displayName: string;
12
30
  };
31
+ export {};
@@ -1,23 +1,39 @@
1
- import { jsx as m } from "react/jsx-runtime";
2
- import { GlobalCSSClass as n } from "../../enums.js";
3
- import { IressIcon as e } from "../Icon/Icon.js";
1
+ import { jsxs as p, jsx as a } from "react/jsx-runtime";
2
+ import { GlobalCSSClass as e } from "../../enums.js";
3
+ import { IressIcon as N } from "../Icon/Icon.js";
4
4
  import "../Icon/Icon.styles.js";
5
- import { spinner as i } from "./Spinner.styles.js";
6
- import { c as p } from "../../cx-DN21T1EH.js";
7
- const t = ({
8
- className: r,
9
- spin: s = "half",
10
- ...o
11
- }) => /* @__PURE__ */ m(
12
- e,
13
- {
14
- ...o,
15
- className: p(r, i(), n.Spinner),
16
- name: "spinner-third",
17
- spin: s
5
+ import { chatty as d, spinner as f } from "./Spinner.styles.js";
6
+ import { c as n } from "../../cx-DN21T1EH.js";
7
+ const S = (r) => {
8
+ if (r.variant === "chatty") {
9
+ const { className: c, screenreaderText: i, ...l } = r, s = d();
10
+ return /* @__PURE__ */ p(
11
+ "span",
12
+ {
13
+ className: n(c, s.root, e.Spinner),
14
+ "aria-label": i,
15
+ role: "status",
16
+ ...l,
17
+ children: [
18
+ /* @__PURE__ */ a("span", { className: s.dot }),
19
+ /* @__PURE__ */ a("span", { className: s.dot }),
20
+ /* @__PURE__ */ a("span", { className: s.dot })
21
+ ]
22
+ }
23
+ );
18
24
  }
19
- );
20
- t.displayName = "IressSpinner";
25
+ const { className: t, spin: o = "half", ...m } = r;
26
+ return /* @__PURE__ */ a(
27
+ N,
28
+ {
29
+ ...m,
30
+ className: n(t, f(), e.Spinner),
31
+ name: "spinner-third",
32
+ spin: o
33
+ }
34
+ );
35
+ };
36
+ S.displayName = "IressSpinner";
21
37
  export {
22
- t as IressSpinner
38
+ S as IressSpinner
23
39
  };
@@ -1 +1,2 @@
1
1
  export declare const spinner: import('../../styled-system/types').RecipeRuntimeFn<{}>;
2
+ export declare const chatty: import('../../styled-system/types').SlotRecipeRuntimeFn<"root" | "dot", import('../../styled-system/types').SlotRecipeVariantRecord<"root" | "dot">>;
@@ -1,11 +1,37 @@
1
- import { c as a } from "../../cva-DtPMccE9.js";
2
- const o = a({
1
+ import { c as i } from "../../cva-DtPMccE9.js";
2
+ import { s as t } from "../../sva-B7kca5XO.js";
3
+ const o = i({
3
4
  base: {
4
5
  boxSizing: "border-box"
5
6
  },
6
- variants: {},
7
- defaultVariants: {}
7
+ variants: {}
8
+ }), e = t({
9
+ slots: ["root", "dot"],
10
+ base: {
11
+ root: {
12
+ display: "inline-flex",
13
+ alignItems: "center",
14
+ gap: "spacing.1"
15
+ },
16
+ dot: {
17
+ width: "[0.5em]",
18
+ height: "[0.5em]",
19
+ borderRadius: "50%",
20
+ bg: "colour.neutral.50",
21
+ animation: "chatty 1.4s infinite ease-in-out",
22
+ "&:nth-child(1)": {
23
+ animationDelay: "0s"
24
+ },
25
+ "&:nth-child(2)": {
26
+ animationDelay: "0.2s"
27
+ },
28
+ "&:nth-child(3)": {
29
+ animationDelay: "0.4s"
30
+ }
31
+ }
32
+ }
8
33
  });
9
34
  export {
35
+ e as chatty,
10
36
  o as spinner
11
37
  };
@@ -1,6 +1,7 @@
1
1
  import { IressSpinner as n } from "./Spinner.js";
2
- import { spinner as p } from "./Spinner.styles.js";
2
+ import { chatty as p, spinner as t } from "./Spinner.styles.js";
3
3
  export {
4
4
  n as IressSpinner,
5
- p as spinner
5
+ p as chatty,
6
+ t as spinner
6
7
  };
package/dist/main.js CHANGED
@@ -12,7 +12,7 @@ import { buttonGroup as L } from "./components/ButtonGroup/ButtonGroup.styles.js
12
12
  import { useButtonGroupItem as E } from "./components/ButtonGroup/hooks/useButtonGroupItem.js";
13
13
  import { IressButtonCard as A, IressCard as P, IressLinkCard as v } from "./components/Card/Card.js";
14
14
  import { card as M } from "./components/Card/Card.styles.js";
15
- import { IressCheckbox as _ } from "./components/Checkbox/Checkbox.js";
15
+ import { IressCheckbox as y } from "./components/Checkbox/Checkbox.js";
16
16
  import { checkbox as N } from "./components/Checkbox/Checkbox.styles.js";
17
17
  import { CheckboxGroupContext as D, IressCheckboxGroup as H, getCheckboxGroupContext as V } from "./components/CheckboxGroup/CheckboxGroup.js";
18
18
  import { checkboxGroup as U } from "./components/CheckboxGroup/CheckboxGroup.styles.js";
@@ -38,7 +38,7 @@ import { inline as Er } from "./components/Inline/Inline.styles.js";
38
38
  import { IressInline as Ar } from "./components/Inline/Inline.js";
39
39
  import { IressInput as vr } from "./components/Input/Input.js";
40
40
  import { input as Mr } from "./components/Input/Input.styles.js";
41
- import { IressInputCurrency as _r } from "./components/InputCurrency/InputCurrency.js";
41
+ import { IressInputCurrency as yr } from "./components/InputCurrency/InputCurrency.js";
42
42
  import { IressLabel as Nr } from "./components/Label/Label.js";
43
43
  import { label as Dr } from "./components/Label/Label.styles.js";
44
44
  import { IressLink as Vr } from "./components/Link/Link.js";
@@ -64,7 +64,7 @@ import { usePopoverItem as ho } from "./components/Popover/hooks/usePopoverItem.
64
64
  import { IressProgress as Po } from "./components/Progress/Progress.js";
65
65
  import { progress as Fo } from "./components/Progress/Progress.styles.js";
66
66
  import { I as Bo } from "./Provider-B87u_maF.js";
67
- import { IressRadio as yo } from "./components/Radio/Radio.js";
67
+ import { IressRadio as _o } from "./components/Radio/Radio.js";
68
68
  import { radio as Oo } from "./components/Radio/Radio.styles.js";
69
69
  import { IressRadioGroup as Ho, RadioGroupContext as Vo, getRadioGroupContext as wo } from "./components/RadioGroup/RadioGroup.js";
70
70
  import { radioGroup as Zo } from "./components/RadioGroup/RadioGroup.styles.js";
@@ -90,65 +90,65 @@ import { IressSkipLink as he } from "./components/SkipLink/SkipLink.js";
90
90
  import { skipLink as Pe } from "./components/SkipLink/SkipLink.styles.js";
91
91
  import { IressSlideout as Fe } from "./components/Slideout/Slideout.js";
92
92
  import { slideout as Be } from "./components/Slideout/Slideout.styles.js";
93
- import { IressSlideoutProvider as ye } from "./components/Slideout/SlideoutProvider.js";
93
+ import { IressSlideoutProvider as _e } from "./components/Slideout/SlideoutProvider.js";
94
94
  import { SlideoutContext as Oe, useSlideout as De } from "./components/Slideout/hooks/useSlideout.js";
95
95
  import { IressSlider as Ve } from "./components/Slider/Slider.js";
96
96
  import { slider as Ue } from "./components/Slider/Slider.styles.js";
97
97
  import { IressSpinner as Ke } from "./components/Spinner/Spinner.js";
98
- import { spinner as Qe } from "./components/Spinner/Spinner.styles.js";
99
- import { stack as Ye } from "./components/Stack/Stack.styles.js";
100
- import { IressStack as qe } from "./components/Stack/Stack.js";
101
- import { IressStyled as Je } from "./components/Styled/Styled.js";
102
- import { IressTable as rt } from "./components/Table/Table.js";
103
- import { table as et, tableCell as tt } from "./components/Table/Table.styles.js";
104
- import { IressTableBody as pt } from "./components/Table/TableBody/TableBody.js";
105
- import { IressTableFormattedValue as xt } from "./components/Table/TableFormattedValue/TableFormattedValue.js";
106
- import { useTable as It } from "./components/Table/hooks/useTable.js";
107
- import { IressTabSet as lt } from "./components/TabSet/TabSet.js";
108
- import { tabSet as nt } from "./components/TabSet/TabSet.styles.js";
109
- import { IressTab as ut } from "./components/TabSet/Tab/Tab.js";
110
- import { tab as ct } from "./components/TabSet/Tab/Tab.styles.js";
111
- import { IressTag as Tt } from "./components/Tag/Tag.js";
112
- import { tag as gt } from "./components/Tag/Tag.styles.js";
113
- import { IressTagInput as Gt } from "./components/Tag/TagInput/TagInput.js";
114
- import { text as Rt } from "./components/Text/Text.styles.js";
115
- import { IressText as ht } from "./components/Text/Text.js";
116
- import { IressToasterProvider as Pt } from "./components/Toaster/ToasterProvider.js";
117
- import { ToasterContext as Ft, useToaster as Mt } from "./components/Toaster/hooks/useToaster.js";
98
+ import { chatty as Qe, spinner as We } from "./components/Spinner/Spinner.styles.js";
99
+ import { stack as je } from "./components/Stack/Stack.styles.js";
100
+ import { IressStack as ze } from "./components/Stack/Stack.js";
101
+ import { IressStyled as $e } from "./components/Styled/Styled.js";
102
+ import { IressTable as ot } from "./components/Table/Table.js";
103
+ import { table as tt, tableCell as st } from "./components/Table/Table.styles.js";
104
+ import { IressTableBody as mt } from "./components/Table/TableBody/TableBody.js";
105
+ import { IressTableFormattedValue as ft } from "./components/Table/TableFormattedValue/TableFormattedValue.js";
106
+ import { useTable as at } from "./components/Table/hooks/useTable.js";
107
+ import { IressTabSet as it } from "./components/TabSet/TabSet.js";
108
+ import { tabSet as dt } from "./components/TabSet/TabSet.styles.js";
109
+ import { IressTab as St } from "./components/TabSet/Tab/Tab.js";
110
+ import { tab as Ct } from "./components/TabSet/Tab/Tab.styles.js";
111
+ import { IressTag as bt } from "./components/Tag/Tag.js";
112
+ import { tag as kt } from "./components/Tag/Tag.styles.js";
113
+ import { IressTagInput as Lt } from "./components/Tag/TagInput/TagInput.js";
114
+ import { text as Et } from "./components/Text/Text.styles.js";
115
+ import { IressText as At } from "./components/Text/Text.js";
116
+ import { IressToasterProvider as vt } from "./components/Toaster/ToasterProvider.js";
117
+ import { ToasterContext as Mt, useToaster as Bt } from "./components/Toaster/hooks/useToaster.js";
118
118
  import { toaster as _t } from "./components/Toaster/Toaster.styles.js";
119
- import { toast as Nt } from "./components/Toaster/components/Toast/Toast.styles.js";
120
- import { IressToggle as Dt } from "./components/Toggle/Toggle.js";
121
- import { toggle as Vt } from "./components/Toggle/Toggle.styles.js";
122
- import { IressTooltip as Ut } from "./components/Tooltip/Tooltip.js";
123
- import { tooltip as Kt } from "./components/Tooltip/Tooltip.styles.js";
124
- import { IressValidationMessage as Qt } from "./components/ValidationMessage/ValidationMessage.js";
125
- import { IressValidationLink as Yt } from "./components/ValidationMessage/ValidationLink/ValidationLink.js";
126
- import { IressValidationSummary as qt } from "./components/ValidationMessage/ValidationSummary/ValidationSummary.js";
127
- import { IressForm as Jt } from "./patterns/Form/Form.js";
128
- import { IressFormField as rs } from "./patterns/Form/FormField/FormField.js";
129
- import { IressFormFieldset as es } from "./patterns/Form/FormField/FormFieldset.js";
130
- import { IressFormValidationSummary as ss } from "./patterns/Form/FormValidationSummary/FormValidationSummary.js";
131
- import { IressHookForm as ms } from "./patterns/Form/HookForm/HookForm.js";
132
- import { IressLoading as fs } from "./patterns/Loading/Loading.js";
133
- import { IressLoadingSuspense as as } from "./patterns/Loading/LoadingSuspense.js";
134
- import { IressShadow as is } from "./patterns/Shadow/Shadow.js";
135
- import { BREAKPOINTS as ds, BREAKPOINT_DETAILS as us, FOCUSABLE_QUERY_SELECTOR as Ss, FORM_ELEMENT_WIDTHS as cs, GRID_SIZE as Cs, HORIZONTAL_ALIGNS as Ts, STATUSES as bs, TEXT_ALIGNS as gs, VERTICAL_ALIGNS as ks, Z_INDEX as Gs } from "./constants.js";
136
- import { GlobalCSSClass as Rs } from "./enums.js";
137
- import { toArray as hs } from "./helpers/formatting/toArray.js";
138
- import { iressCss as Ps } from "./helpers/styling/iressCss.js";
139
- import { useBreakpoint as Fs } from "./hooks/useBreakpoint.js";
140
- import { useControlledState as Bs } from "./hooks/useControlledState.js";
141
- import { useIdIfNeeded as ys } from "./hooks/useIdIfNeeded.js";
142
- import { useResponsiveProps as Os } from "./hooks/useResponsiveProps.js";
119
+ import { toast as Ot } from "./components/Toaster/components/Toast/Toast.styles.js";
120
+ import { IressToggle as Ht } from "./components/Toggle/Toggle.js";
121
+ import { toggle as wt } from "./components/Toggle/Toggle.styles.js";
122
+ import { IressTooltip as Zt } from "./components/Tooltip/Tooltip.js";
123
+ import { tooltip as Xt } from "./components/Tooltip/Tooltip.styles.js";
124
+ import { IressValidationMessage as Wt } from "./components/ValidationMessage/ValidationMessage.js";
125
+ import { IressValidationLink as jt } from "./components/ValidationMessage/ValidationLink/ValidationLink.js";
126
+ import { IressValidationSummary as zt } from "./components/ValidationMessage/ValidationSummary/ValidationSummary.js";
127
+ import { IressForm as $t } from "./patterns/Form/Form.js";
128
+ import { IressFormField as os } from "./patterns/Form/FormField/FormField.js";
129
+ import { IressFormFieldset as ts } from "./patterns/Form/FormField/FormFieldset.js";
130
+ import { IressFormValidationSummary as ps } from "./patterns/Form/FormValidationSummary/FormValidationSummary.js";
131
+ import { IressHookForm as xs } from "./patterns/Form/HookForm/HookForm.js";
132
+ import { IressLoading as Is } from "./patterns/Loading/Loading.js";
133
+ import { IressLoadingSuspense as ls } from "./patterns/Loading/LoadingSuspense.js";
134
+ import { IressShadow as ns } from "./patterns/Shadow/Shadow.js";
135
+ import { BREAKPOINTS as us, BREAKPOINT_DETAILS as Ss, FOCUSABLE_QUERY_SELECTOR as cs, FORM_ELEMENT_WIDTHS as Cs, GRID_SIZE as Ts, HORIZONTAL_ALIGNS as bs, STATUSES as gs, TEXT_ALIGNS as ks, VERTICAL_ALIGNS as Gs, Z_INDEX as Ls } from "./constants.js";
136
+ import { GlobalCSSClass as Es } from "./enums.js";
137
+ import { toArray as As } from "./helpers/formatting/toArray.js";
138
+ import { iressCss as vs } from "./helpers/styling/iressCss.js";
139
+ import { useBreakpoint as Ms } from "./hooks/useBreakpoint.js";
140
+ import { useControlledState as ys } from "./hooks/useControlledState.js";
141
+ import { useIdIfNeeded as Ns } from "./hooks/useIdIfNeeded.js";
142
+ import { useResponsiveProps as Ds } from "./hooks/useResponsiveProps.js";
143
143
  export {
144
- ds as BREAKPOINTS,
145
- us as BREAKPOINT_DETAILS,
144
+ us as BREAKPOINTS,
145
+ Ss as BREAKPOINT_DETAILS,
146
146
  D as CheckboxGroupContext,
147
- Ss as FOCUSABLE_QUERY_SELECTOR,
148
- cs as FORM_ELEMENT_WIDTHS,
149
- Cs as GRID_SIZE,
150
- Rs as GlobalCSSClass,
151
- Ts as HORIZONTAL_ALIGNS,
147
+ cs as FOCUSABLE_QUERY_SELECTOR,
148
+ Cs as FORM_ELEMENT_WIDTHS,
149
+ Ts as GRID_SIZE,
150
+ Es as GlobalCSSClass,
151
+ bs as HORIZONTAL_ALIGNS,
152
152
  e as IressAlert,
153
153
  m as IressAutocomplete,
154
154
  n as IressBadge,
@@ -156,7 +156,7 @@ export {
156
156
  A as IressButtonCard,
157
157
  k as IressButtonGroup,
158
158
  P as IressCard,
159
- _ as IressCheckbox,
159
+ y as IressCheckbox,
160
160
  H as IressCheckboxGroup,
161
161
  b as IressCloseButton,
162
162
  Q as IressCol,
@@ -166,23 +166,23 @@ export {
166
166
  mr as IressField,
167
167
  ar as IressFieldGroup,
168
168
  dr as IressFilter,
169
- Jt as IressForm,
170
- rs as IressFormField,
171
- es as IressFormFieldset,
172
- ss as IressFormValidationSummary,
169
+ $t as IressForm,
170
+ os as IressFormField,
171
+ ts as IressFormFieldset,
172
+ ps as IressFormValidationSummary,
173
173
  Sr as IressHide,
174
- ms as IressHookForm,
174
+ xs as IressHookForm,
175
175
  Cr as IressIcon,
176
176
  kr as IressImage,
177
177
  Ar as IressInline,
178
178
  vr as IressInput,
179
- _r as IressInputCurrency,
179
+ yr as IressInputCurrency,
180
180
  Go as IressInputPopover,
181
181
  Nr as IressLabel,
182
182
  Vr as IressLink,
183
183
  v as IressLinkCard,
184
- fs as IressLoading,
185
- as as IressLoadingSuspense,
184
+ Is as IressLoading,
185
+ ls as IressLoadingSuspense,
186
186
  Kr as IressMenu,
187
187
  Yr as IressMenuDivider,
188
188
  Jr as IressMenuHeading,
@@ -195,7 +195,7 @@ export {
195
195
  To as IressPopover,
196
196
  Po as IressProgress,
197
197
  Bo as IressProvider,
198
- yo as IressRadio,
198
+ _o as IressRadio,
199
199
  Ho as IressRadioGroup,
200
200
  Xo as IressReadonly,
201
201
  x as IressRichSelect,
@@ -210,43 +210,44 @@ export {
210
210
  xe as IressSelectSearch,
211
211
  Ie as IressSelectSearchInput,
212
212
  le as IressSelectTags,
213
- is as IressShadow,
213
+ ns as IressShadow,
214
214
  Ge as IressSkeleton,
215
215
  he as IressSkipLink,
216
216
  Fe as IressSlideout,
217
- ye as IressSlideoutProvider,
217
+ _e as IressSlideoutProvider,
218
218
  Ve as IressSlider,
219
219
  Ke as IressSpinner,
220
- qe as IressStack,
221
- Je as IressStyled,
222
- ut as IressTab,
223
- lt as IressTabSet,
224
- rt as IressTable,
225
- pt as IressTableBody,
226
- xt as IressTableFormattedValue,
227
- Tt as IressTag,
228
- Gt as IressTagInput,
229
- ht as IressText,
230
- Pt as IressToasterProvider,
231
- Dt as IressToggle,
232
- Ut as IressTooltip,
233
- Yt as IressValidationLink,
234
- Qt as IressValidationMessage,
235
- qt as IressValidationSummary,
220
+ ze as IressStack,
221
+ $e as IressStyled,
222
+ St as IressTab,
223
+ it as IressTabSet,
224
+ ot as IressTable,
225
+ mt as IressTableBody,
226
+ ft as IressTableFormattedValue,
227
+ bt as IressTag,
228
+ Lt as IressTagInput,
229
+ At as IressText,
230
+ vt as IressToasterProvider,
231
+ Ht as IressToggle,
232
+ Zt as IressTooltip,
233
+ jt as IressValidationLink,
234
+ Wt as IressValidationMessage,
235
+ zt as IressValidationSummary,
236
236
  xo as ModalContext,
237
237
  Vo as RadioGroupContext,
238
- bs as STATUSES,
238
+ gs as STATUSES,
239
239
  Oe as SlideoutContext,
240
- gs as TEXT_ALIGNS,
241
- Ft as ToasterContext,
242
- ks as VERTICAL_ALIGNS,
243
- Gs as Z_INDEX,
240
+ ks as TEXT_ALIGNS,
241
+ Mt as ToasterContext,
242
+ Gs as VERTICAL_ALIGNS,
243
+ Ls as Z_INDEX,
244
244
  s as alert,
245
245
  I as autoComplete,
246
246
  u as badge,
247
247
  C as button,
248
248
  L as buttonGroup,
249
249
  M as card,
250
+ Qe as chatty,
250
251
  N as checkbox,
251
252
  U as checkboxGroup,
252
253
  K as col,
@@ -261,7 +262,7 @@ export {
261
262
  Lr as image,
262
263
  Er as inline,
263
264
  Mr as input,
264
- Ps as iressCss,
265
+ vs as iressCss,
265
266
  Dr as label,
266
267
  Ur as link,
267
268
  Qr as menu,
@@ -279,30 +280,30 @@ export {
279
280
  Pe as skipLink,
280
281
  Be as slideout,
281
282
  Ue as slider,
282
- Qe as spinner,
283
- Ye as stack,
284
- ct as tab,
285
- nt as tabSet,
286
- et as table,
287
- tt as tableCell,
288
- gt as tag,
289
- Rt as text,
290
- hs as toArray,
291
- Nt as toast,
283
+ We as spinner,
284
+ je as stack,
285
+ Ct as tab,
286
+ dt as tabSet,
287
+ tt as table,
288
+ st as tableCell,
289
+ kt as tag,
290
+ Et as text,
291
+ As as toArray,
292
+ Ot as toast,
292
293
  _t as toaster,
293
- Vt as toggle,
294
- Kt as tooltip,
294
+ wt as toggle,
295
+ Xt as tooltip,
295
296
  l as useAutocompleteSearch,
296
- Fs as useBreakpoint,
297
+ Ms as useBreakpoint,
297
298
  E as useButtonGroupItem,
298
- Bs as useControlledState,
299
- ys as useIdIfNeeded,
299
+ ys as useControlledState,
300
+ Ns as useIdIfNeeded,
300
301
  fo as useModal,
301
302
  Ro as usePopover,
302
303
  ho as usePopoverItem,
303
- Os as useResponsiveProps,
304
+ Ds as useResponsiveProps,
304
305
  jo as useRichSelectState,
305
306
  De as useSlideout,
306
- It as useTable,
307
- Mt as useToaster
307
+ at as useTable,
308
+ Bt as useToaster
308
309
  };
@@ -1,4 +1,4 @@
1
- export declare const loading: import('../../styled-system/types').SlotRecipeRuntimeFn<"overlay" | "message" | "root" | "critical", {
1
+ export declare const loading: import('../../styled-system/types').SlotRecipeRuntimeFn<"overlay" | "root" | "message" | "critical", {
2
2
  error: {
3
3
  true: {
4
4
  root: {