@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.
- package/dist/{Button-ZGbOkyOo.js → Button-BTkololu.js} +124 -117
- package/dist/{Provider-BPoPUE-B.js → Provider-B87u_maF.js} +4 -4
- package/dist/components/Alert/Alert.js +35 -36
- package/dist/components/Alert/Alert.styles.d.ts +24 -32
- package/dist/components/Alert/Alert.styles.js +24 -32
- package/dist/components/Button/Button.d.ts +3 -2
- package/dist/components/Button/Button.js +1 -1
- package/dist/components/Button/CloseButton/CloseButton.js +1 -1
- package/dist/components/Button/index.js +1 -1
- package/dist/components/Card/Card.styles.js +1 -1
- package/dist/components/Divider/Divider.d.ts +1 -1
- package/dist/components/Divider/Divider.js +24 -20
- package/dist/components/Divider/Divider.styles.d.ts +6 -1
- package/dist/components/Divider/Divider.styles.js +17 -3
- package/dist/components/Expander/Expander.js +65 -52
- package/dist/components/Expander/Expander.styles.d.ts +23 -11
- package/dist/components/Expander/Expander.styles.js +44 -31
- package/dist/components/Filter/Filter.js +120 -117
- package/dist/components/Filter/Filter.styles.js +5 -3
- package/dist/components/Filter/components/FilterResetButton.js +1 -1
- package/dist/components/Input/Input.js +1 -1
- package/dist/components/Link/Link.styles.js +0 -1
- package/dist/components/Menu/MenuText/MenuText.js +1 -1
- package/dist/components/Modal/Modal.js +1 -1
- package/dist/components/Modal/Modal.styles.d.ts +1 -1
- package/dist/components/Modal/Modal.styles.js +1 -1
- package/dist/components/Progress/Progress.js +1 -1
- package/dist/components/Provider/Provider.js +1 -1
- package/dist/components/Provider/index.js +1 -1
- package/dist/components/RichSelect/SelectHeading/SelectHeading.js +19 -19
- package/dist/components/RichSelect/SelectTags/SelectTags.js +1 -1
- package/dist/components/SkipLink/SkipLink.js +1 -1
- package/dist/components/Slideout/components/SlideoutInner.js +1 -1
- package/dist/components/Slideout/hooks/usePushElement.js +1 -1
- package/dist/components/Stack/Stack.d.ts +5 -1
- package/dist/components/Stack/Stack.styles.d.ts +20 -0
- package/dist/components/Stack/Stack.styles.js +23 -3
- package/dist/components/TabSet/TabSet.styles.js +1 -1
- package/dist/components/Tag/Tag.d.ts +27 -4
- package/dist/components/Tag/Tag.js +50 -33
- package/dist/components/Tag/Tag.styles.d.ts +25 -0
- package/dist/components/Tag/Tag.styles.js +39 -12
- package/dist/components/Tag/TagInput/TagInput.js +51 -48
- package/dist/components/Tag/TagInput/TagInput.styles.js +4 -10
- package/dist/components/Toaster/components/Toast/Toast.d.ts +5 -3
- package/dist/components/Toaster/components/Toast/Toast.js +65 -58
- package/dist/components/Toaster/components/Toast/Toast.styles.d.ts +31 -1
- package/dist/components/Toaster/components/Toast/Toast.styles.js +33 -6
- package/dist/{index-gmMGso0u.js → index-Bm5rQqn5.js} +5 -1
- package/dist/interfaces.d.ts +7 -2
- package/dist/main.js +2 -2
- package/dist/patterns/Loading/components/LongLoading.js +28 -28
- package/dist/patterns/Loading/components/PageLoading.js +32 -32
- package/dist/patterns/Loading/components/ValidateLoading.js +1 -1
- package/dist/patterns/Loading/hooks/useEstimatedProgressValue.js +14 -14
- package/dist/patterns/Shadow/Shadow.js +469 -776
- package/dist/style.css +1 -1
- package/dist/styled-system/recipes/button.d.ts +1 -1
- package/dist/styled-system/tokens/tokens.d.ts +1 -1
- package/dist/styled-system/types/prop-type.d.ts +2 -2
- package/package.json +4 -4
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
import { s as e } from "../../sva-B7kca5XO.js";
|
|
2
|
-
const
|
|
3
|
-
slots: [
|
|
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.
|
|
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
|
-
|
|
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
|
-
|
|
84
|
-
|
|
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
|
-
|
|
111
|
+
r as expander
|
|
99
112
|
};
|
|
@@ -1,133 +1,137 @@
|
|
|
1
|
-
import { jsx as e, jsxs as
|
|
2
|
-
import { forwardRef as
|
|
3
|
-
import { c as
|
|
4
|
-
import { filter as
|
|
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
|
|
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
|
|
12
|
+
import { I as ce } from "../../Button-BTkololu.js";
|
|
11
13
|
import "../Button/CloseButton/CloseButton.js";
|
|
12
|
-
import { useRichSelectState as
|
|
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
|
|
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
|
|
24
|
-
import { IressPanel as
|
|
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
|
|
27
|
-
import { useIdIfNeeded as
|
|
28
|
-
import { FilterSearch as
|
|
29
|
-
import { IressDivider as
|
|
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
|
|
32
|
-
import { FilterLabel as
|
|
33
|
-
import { IressIcon as
|
|
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
|
|
36
|
-
import { FilterResultsDescriptor as
|
|
37
|
-
|
|
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:
|
|
42
|
-
className:
|
|
42
|
+
children: x,
|
|
43
|
+
className: D,
|
|
43
44
|
"data-testid": t,
|
|
44
|
-
debounceThreshold:
|
|
45
|
+
debounceThreshold: A,
|
|
45
46
|
defaultValue: h,
|
|
46
|
-
id:
|
|
47
|
-
initialOptions:
|
|
48
|
-
inputProps:
|
|
47
|
+
id: O,
|
|
48
|
+
initialOptions: Q,
|
|
49
|
+
inputProps: _ = {
|
|
49
50
|
clearable: !0,
|
|
50
|
-
prepend: /* @__PURE__ */ e(
|
|
51
|
+
prepend: /* @__PURE__ */ e(w, { name: "search" })
|
|
51
52
|
},
|
|
52
|
-
limitDesktop:
|
|
53
|
-
limitMobile:
|
|
54
|
-
label:
|
|
53
|
+
limitDesktop: L = 12,
|
|
54
|
+
limitMobile: M = 6,
|
|
55
|
+
label: j,
|
|
55
56
|
multiSelect: s,
|
|
56
|
-
onChange:
|
|
57
|
-
onReset:
|
|
57
|
+
onChange: k,
|
|
58
|
+
onReset: E,
|
|
58
59
|
options: i,
|
|
59
60
|
popoverProps: {
|
|
60
|
-
footer:
|
|
61
|
-
header:
|
|
62
|
-
...
|
|
63
|
-
} =
|
|
61
|
+
footer: H,
|
|
62
|
+
header: W,
|
|
63
|
+
...q
|
|
64
|
+
} = N,
|
|
64
65
|
searchable: v,
|
|
65
66
|
searchNoResultsText: g,
|
|
66
|
-
selectedOptionsText:
|
|
67
|
-
value:
|
|
68
|
-
visibleResetButton:
|
|
69
|
-
...
|
|
70
|
-
},
|
|
71
|
-
const F =
|
|
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
|
-
),
|
|
75
|
+
), $ = {
|
|
75
76
|
clearable: !0,
|
|
76
|
-
prepend: /* @__PURE__ */ e(
|
|
77
|
-
...
|
|
78
|
-
},
|
|
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:
|
|
83
|
-
}), [
|
|
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
|
-
},
|
|
89
|
+
}, B = () => {
|
|
86
90
|
d("");
|
|
87
|
-
},
|
|
88
|
-
|
|
89
|
-
},
|
|
90
|
-
c(void 0),
|
|
91
|
+
}, T = (p) => {
|
|
92
|
+
k?.(p), c(p), s || a(!1);
|
|
93
|
+
}, ee = () => {
|
|
94
|
+
c(void 0), E?.(), s || a(!1);
|
|
91
95
|
};
|
|
92
|
-
|
|
93
|
-
element:
|
|
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:
|
|
102
|
+
debouncedQuery: te,
|
|
99
103
|
loading: u,
|
|
100
104
|
results: f,
|
|
101
|
-
shouldShowInstructions:
|
|
102
|
-
shouldShowDebounceWaiting:
|
|
103
|
-
shouldShowNoResults:
|
|
104
|
-
} =
|
|
105
|
-
debounceThreshold:
|
|
106
|
-
initialOptions:
|
|
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:
|
|
109
|
-
}),
|
|
110
|
-
debouncedQuery:
|
|
112
|
+
query: J
|
|
113
|
+
}), l = ve({
|
|
114
|
+
debouncedQuery: te,
|
|
111
115
|
loading: u,
|
|
112
116
|
results: f,
|
|
113
|
-
searchable:
|
|
114
|
-
visibleResetButton:
|
|
115
|
-
}), r =
|
|
116
|
-
return /* @__PURE__ */
|
|
117
|
-
|
|
117
|
+
searchable: C,
|
|
118
|
+
visibleResetButton: n
|
|
119
|
+
}), r = ne();
|
|
120
|
+
return /* @__PURE__ */ m(
|
|
121
|
+
le.div,
|
|
118
122
|
{
|
|
119
|
-
...
|
|
120
|
-
className:
|
|
123
|
+
...Y,
|
|
124
|
+
className: ae(D, r.root, Ce.Filter),
|
|
121
125
|
"data-testid": t,
|
|
122
126
|
id: F,
|
|
123
|
-
ref:
|
|
127
|
+
ref: S,
|
|
124
128
|
children: [
|
|
125
|
-
/* @__PURE__ */
|
|
126
|
-
|
|
129
|
+
/* @__PURE__ */ m(
|
|
130
|
+
me,
|
|
127
131
|
{
|
|
128
|
-
|
|
129
|
-
activator: /* @__PURE__ */
|
|
130
|
-
|
|
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
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
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:
|
|
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
|
-
|
|
160
|
-
|
|
161
|
-
/* @__PURE__ */
|
|
162
|
-
|
|
163
|
-
|
|
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
|
-
|
|
168
|
+
...$,
|
|
166
169
|
className: r.searchInput,
|
|
167
170
|
"data-testid": o(t, "input"),
|
|
168
171
|
loading: u,
|
|
169
|
-
onChange:
|
|
170
|
-
onClear:
|
|
172
|
+
onChange: Z,
|
|
173
|
+
onClear: B
|
|
171
174
|
}
|
|
172
175
|
),
|
|
173
|
-
|
|
174
|
-
|
|
176
|
+
n && /* @__PURE__ */ e(
|
|
177
|
+
be,
|
|
175
178
|
{
|
|
176
179
|
"data-testid": o(t, "reset-button"),
|
|
177
|
-
onClick:
|
|
178
|
-
children: typeof
|
|
180
|
+
onClick: ee,
|
|
181
|
+
children: typeof n == "string" ? n : "Reset filter"
|
|
179
182
|
}
|
|
180
183
|
)
|
|
181
184
|
] }),
|
|
182
|
-
|
|
185
|
+
l.showResults && /* @__PURE__ */ e(Fe, {})
|
|
183
186
|
] }),
|
|
184
|
-
|
|
185
|
-
|
|
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:
|
|
191
|
-
limitMobile:
|
|
193
|
+
limitDesktop: L,
|
|
194
|
+
limitMobile: M,
|
|
192
195
|
multiSelect: s,
|
|
193
|
-
onChange:
|
|
194
|
-
selected:
|
|
196
|
+
onChange: T,
|
|
197
|
+
selected: P,
|
|
195
198
|
selectedFirst: s
|
|
196
199
|
}
|
|
197
200
|
),
|
|
198
|
-
|
|
199
|
-
|
|
201
|
+
l.showNoResults && /* @__PURE__ */ e("div", { className: r.noResults, children: g }),
|
|
202
|
+
H
|
|
200
203
|
]
|
|
201
204
|
}
|
|
202
205
|
),
|
|
203
|
-
|
|
206
|
+
x,
|
|
204
207
|
/* @__PURE__ */ e(
|
|
205
|
-
|
|
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
|
-
},
|
|
218
|
-
|
|
220
|
+
}, Ie = oe(Re);
|
|
221
|
+
Ie.displayName = "IressFilter";
|
|
219
222
|
export {
|
|
220
|
-
|
|
223
|
+
Ie as IressFilter
|
|
221
224
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { s as t } from "../../sva-B7kca5XO.js";
|
|
2
|
-
const
|
|
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.
|
|
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
|
-
|
|
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-
|
|
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-
|
|
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 {
|
|
@@ -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-
|
|
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
|
-
|
|
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))]";
|
|
@@ -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-
|
|
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-
|
|
15
|
+
import { I as c } from "../../Provider-B87u_maF.js";
|
|
16
16
|
export {
|
|
17
17
|
c as IressProvider
|
|
18
18
|
};
|