@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.
- package/dist/components/Autocomplete/Autocomplete.styles.js +5 -1
- package/dist/components/Autocomplete/hooks/useAutocompleteSearch.js +53 -51
- package/dist/components/Card/Card.styles.d.ts +1 -1
- package/dist/components/Card/Card.styles.js +1 -1
- package/dist/components/Filter/Filter.styles.d.ts +1 -1
- package/dist/components/Filter/components/FilterSearch.d.ts +2 -1
- package/dist/components/Input/Input.d.ts +15 -6
- package/dist/components/Input/Input.js +92 -82
- package/dist/components/Input/Input.styles.d.ts +8 -0
- package/dist/components/Input/Input.styles.js +9 -1
- package/dist/components/Modal/Modal.styles.d.ts +0 -1
- package/dist/components/Modal/Modal.styles.js +3 -1
- package/dist/components/Progress/Progress.d.ts +6 -1
- package/dist/components/Progress/Progress.js +38 -36
- package/dist/components/Progress/Progress.styles.js +6 -0
- package/dist/components/Slideout/Slideout.js +1 -1
- package/dist/components/Slideout/Slideout.styles.js +2 -1
- package/dist/components/Spinner/Spinner.d.ts +22 -3
- package/dist/components/Spinner/Spinner.js +35 -19
- package/dist/components/Spinner/Spinner.styles.d.ts +1 -0
- package/dist/components/Spinner/Spinner.styles.js +30 -4
- package/dist/components/Spinner/index.js +3 -2
- package/dist/main.js +108 -107
- package/dist/patterns/Loading/Loading.styles.d.ts +1 -1
- package/dist/patterns/Shadow/Shadow.js +102 -38
- package/dist/style.css +1 -1
- package/dist/styled-system/types/prop-type.d.ts +1 -1
- package/package.json +3 -2
|
@@ -1,57 +1,59 @@
|
|
|
1
|
-
import { jsx as
|
|
1
|
+
import { jsx as n } from "react/jsx-runtime";
|
|
2
2
|
import { stringReplacer as P } from "../../helpers/formatting/stringReplacer.js";
|
|
3
|
-
import { c as
|
|
4
|
-
import { c as
|
|
5
|
-
import { progress as
|
|
6
|
-
import { s as
|
|
7
|
-
import { s as
|
|
8
|
-
import { GlobalCSSClass as
|
|
9
|
-
import { t as
|
|
10
|
-
const
|
|
11
|
-
|
|
12
|
-
|
|
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:
|
|
16
|
-
style:
|
|
16
|
+
sectionTitle: f = "Progress is {{current}} of {{max}}",
|
|
17
|
+
style: u,
|
|
17
18
|
value: g = 0,
|
|
18
|
-
...
|
|
19
|
+
...d
|
|
19
20
|
}) => {
|
|
20
|
-
const [
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
), o = Math.min(Math.max(g, s ?? 0), r),
|
|
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
|
-
]),
|
|
28
|
-
"--iress-border-radius":
|
|
29
|
-
|
|
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__ */
|
|
32
|
-
|
|
33
|
+
return s !== void 0 ? /* @__PURE__ */ n(
|
|
34
|
+
p.meter,
|
|
33
35
|
{
|
|
34
|
-
"aria-label":
|
|
35
|
-
className:
|
|
36
|
+
"aria-label": l(),
|
|
37
|
+
className: i,
|
|
36
38
|
max: r,
|
|
37
39
|
min: s,
|
|
38
40
|
value: o,
|
|
39
|
-
...
|
|
40
|
-
style:
|
|
41
|
+
...a,
|
|
42
|
+
style: m
|
|
41
43
|
}
|
|
42
|
-
) : /* @__PURE__ */
|
|
43
|
-
|
|
44
|
+
) : /* @__PURE__ */ n(
|
|
45
|
+
p.progress,
|
|
44
46
|
{
|
|
45
|
-
"aria-label":
|
|
46
|
-
className:
|
|
47
|
+
"aria-label": l(),
|
|
48
|
+
className: i,
|
|
47
49
|
max: r,
|
|
48
50
|
value: o,
|
|
49
|
-
...
|
|
50
|
-
style:
|
|
51
|
+
...a,
|
|
52
|
+
style: m
|
|
51
53
|
}
|
|
52
54
|
);
|
|
53
55
|
};
|
|
54
|
-
|
|
56
|
+
h.displayName = "IressProgress";
|
|
55
57
|
export {
|
|
56
|
-
|
|
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,
|
|
@@ -1,12 +1,31 @@
|
|
|
1
1
|
import { IressIconProps } from '../Icon';
|
|
2
|
-
|
|
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
|
-
(
|
|
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
|
|
2
|
-
import { GlobalCSSClass as
|
|
3
|
-
import { IressIcon as
|
|
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
|
|
6
|
-
import { c as
|
|
7
|
-
const
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
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
|
-
|
|
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
|
-
|
|
38
|
+
S as IressSpinner
|
|
23
39
|
};
|
|
@@ -1,11 +1,37 @@
|
|
|
1
|
-
import { c as
|
|
2
|
-
|
|
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
|
-
|
|
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
|
};
|
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
|
|
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
|
|
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
|
|
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
|
|
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 {
|
|
99
|
-
import { stack as
|
|
100
|
-
import { IressStack as
|
|
101
|
-
import { IressStyled as
|
|
102
|
-
import { IressTable as
|
|
103
|
-
import { table as
|
|
104
|
-
import { IressTableBody as
|
|
105
|
-
import { IressTableFormattedValue as
|
|
106
|
-
import { useTable as
|
|
107
|
-
import { IressTabSet as
|
|
108
|
-
import { tabSet as
|
|
109
|
-
import { IressTab as
|
|
110
|
-
import { tab as
|
|
111
|
-
import { IressTag as
|
|
112
|
-
import { tag as
|
|
113
|
-
import { IressTagInput as
|
|
114
|
-
import { text as
|
|
115
|
-
import { IressText as
|
|
116
|
-
import { IressToasterProvider as
|
|
117
|
-
import { ToasterContext as
|
|
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
|
|
120
|
-
import { IressToggle as
|
|
121
|
-
import { toggle as
|
|
122
|
-
import { IressTooltip as
|
|
123
|
-
import { tooltip as
|
|
124
|
-
import { IressValidationMessage as
|
|
125
|
-
import { IressValidationLink as
|
|
126
|
-
import { IressValidationSummary as
|
|
127
|
-
import { IressForm as
|
|
128
|
-
import { IressFormField as
|
|
129
|
-
import { IressFormFieldset as
|
|
130
|
-
import { IressFormValidationSummary as
|
|
131
|
-
import { IressHookForm as
|
|
132
|
-
import { IressLoading as
|
|
133
|
-
import { IressLoadingSuspense as
|
|
134
|
-
import { IressShadow as
|
|
135
|
-
import { BREAKPOINTS as
|
|
136
|
-
import { GlobalCSSClass as
|
|
137
|
-
import { toArray as
|
|
138
|
-
import { iressCss as
|
|
139
|
-
import { useBreakpoint as
|
|
140
|
-
import { useControlledState as
|
|
141
|
-
import { useIdIfNeeded as
|
|
142
|
-
import { useResponsiveProps as
|
|
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
|
-
|
|
145
|
-
|
|
144
|
+
us as BREAKPOINTS,
|
|
145
|
+
Ss as BREAKPOINT_DETAILS,
|
|
146
146
|
D as CheckboxGroupContext,
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
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
|
-
|
|
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
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
169
|
+
$t as IressForm,
|
|
170
|
+
os as IressFormField,
|
|
171
|
+
ts as IressFormFieldset,
|
|
172
|
+
ps as IressFormValidationSummary,
|
|
173
173
|
Sr as IressHide,
|
|
174
|
-
|
|
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
|
-
|
|
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
|
-
|
|
185
|
-
|
|
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
|
-
|
|
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
|
-
|
|
213
|
+
ns as IressShadow,
|
|
214
214
|
Ge as IressSkeleton,
|
|
215
215
|
he as IressSkipLink,
|
|
216
216
|
Fe as IressSlideout,
|
|
217
|
-
|
|
217
|
+
_e as IressSlideoutProvider,
|
|
218
218
|
Ve as IressSlider,
|
|
219
219
|
Ke as IressSpinner,
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
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
|
-
|
|
238
|
+
gs as STATUSES,
|
|
239
239
|
Oe as SlideoutContext,
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
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
|
-
|
|
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
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
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
|
-
|
|
294
|
-
|
|
294
|
+
wt as toggle,
|
|
295
|
+
Xt as tooltip,
|
|
295
296
|
l as useAutocompleteSearch,
|
|
296
|
-
|
|
297
|
+
Ms as useBreakpoint,
|
|
297
298
|
E as useButtonGroupItem,
|
|
298
|
-
|
|
299
|
-
|
|
299
|
+
ys as useControlledState,
|
|
300
|
+
Ns as useIdIfNeeded,
|
|
300
301
|
fo as useModal,
|
|
301
302
|
Ro as usePopover,
|
|
302
303
|
ho as usePopoverItem,
|
|
303
|
-
|
|
304
|
+
Ds as useResponsiveProps,
|
|
304
305
|
jo as useRichSelectState,
|
|
305
306
|
De as useSlideout,
|
|
306
|
-
|
|
307
|
-
|
|
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" | "
|
|
1
|
+
export declare const loading: import('../../styled-system/types').SlotRecipeRuntimeFn<"overlay" | "root" | "message" | "critical", {
|
|
2
2
|
error: {
|
|
3
3
|
true: {
|
|
4
4
|
root: {
|