@wix/site-ui 1.55.0 → 1.57.0
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/8685.css +86 -0
- package/dist/{1268.js → 8685.js} +4 -1
- package/dist/Accordion/index.css +1 -1
- package/dist/AlertDialog/index.css +33 -25
- package/dist/AlertDialog/index.js +1 -0
- package/dist/Autocomplete/index.css +149 -56
- package/dist/Autocomplete/index.js +9 -0
- package/dist/Avatar/index.css +7 -11
- package/dist/Badge/index.css +10 -9
- package/dist/Checkbox/index.css +40 -31
- package/dist/CheckboxGroup/index.css +3 -3
- package/dist/Collapsible/index.css +20 -22
- package/dist/Combobox/index.css +91 -71
- package/dist/ContextMenu/index.css +100 -51
- package/dist/ContextMenu/index.d.ts +7 -5
- package/dist/ContextMenu/index.js +15 -3
- package/dist/Dialog/index.css +49 -20
- package/dist/Drawer/index.css +74 -23
- package/dist/Drawer/index.js +7 -1
- package/dist/Field/index.css +7 -8
- package/dist/Field/index.js +21 -3
- package/dist/Fieldset/index.css +15 -0
- package/dist/Fieldset/index.js +2 -1
- package/dist/Form/index.css +6 -1
- package/dist/Form/index.js +3 -1
- package/dist/Input/index.js +1 -4
- package/dist/Menu/index.css +149 -24
- package/dist/Menu/index.d.ts +3 -1
- package/dist/Menu/index.js +17 -2
- package/dist/Menubar/index.css +11 -1
- package/dist/Menubar/index.js +3 -1
- package/dist/Meter/index.css +13 -15
- package/dist/NavigationMenu/index.css +117 -19
- package/dist/NavigationMenu/index.js +8 -1
- package/dist/NumberField/index.css +41 -38
- package/dist/Popover/index.css +52 -61
- package/dist/Popover/index.js +5 -2
- package/dist/PreviewCard/index.css +0 -73
- package/dist/PreviewCard/index.js +1 -5
- package/dist/Progress/index.css +18 -8
- package/dist/Radio/index.css +16 -17
- package/dist/RadioGroup/index.css +3 -5
- package/dist/ScrollArea/index.css +19 -13
- package/dist/ScrollArea/index.js +2 -1
- package/dist/Select/index.css +76 -49
- package/dist/Select/index.js +2 -0
- package/dist/Slider/index.css +40 -21
- package/dist/Switch/index.css +18 -11
- package/dist/Toggle/index.css +12 -32
- package/dist/ToggleGroup/index.css +11 -1
- package/dist/Toolbar/index.css +58 -14
- package/dist/Toolbar/index.js +2 -0
- package/dist/Tooltip/index.css +14 -64
- package/dist/index.d.ts +6 -2
- package/package.json +2 -2
- package/dist/Input/index.css +0 -72
|
@@ -11,7 +11,7 @@ import { getTarget, contains } from "../4549.js";
|
|
|
11
11
|
import { useRenderElement } from "../8272.js";
|
|
12
12
|
import { pressableTriggerOpenStateMapping } from "../4388.js";
|
|
13
13
|
import { useId } from "../6046.js";
|
|
14
|
-
import { Separator } from "../9635.js";
|
|
14
|
+
import { Separator as Separator_Separator } from "../9635.js";
|
|
15
15
|
import * as __rspack_external_react from "react";
|
|
16
16
|
const LONG_PRESS_DELAY = 500;
|
|
17
17
|
const ContextMenuTrigger_ContextMenuTrigger = /*#__PURE__*/ __rspack_external_react.forwardRef(function(componentProps, forwardedRef) {
|
|
@@ -178,12 +178,19 @@ function ContextMenuRoot(props) {
|
|
|
178
178
|
});
|
|
179
179
|
}
|
|
180
180
|
const ContextMenu_module = {
|
|
181
|
+
trigger: "trigger-D0oBie",
|
|
182
|
+
backdrop: "backdrop-SPwmGh",
|
|
183
|
+
positioner: "positioner-ZCJXBK",
|
|
181
184
|
popup: "popup-exWvLg",
|
|
185
|
+
separator: "separator-FAmS6X",
|
|
186
|
+
arrow: "arrow-_xxSbP",
|
|
182
187
|
groupLabel: "groupLabel-nJbnHC",
|
|
183
188
|
item: "item-u6sdTm",
|
|
184
189
|
checkboxItem: "checkboxItem-lQUwTw",
|
|
190
|
+
checkboxItemIndicator: "checkboxItemIndicator-kWKt4r",
|
|
185
191
|
linkItem: "linkItem-w7Buqf",
|
|
186
192
|
radioItem: "radioItem-GkHQXK",
|
|
193
|
+
radioItemIndicator: "radioItemIndicator-gKBhmr",
|
|
187
194
|
submenuTrigger: "submenuTrigger-vAkD3A"
|
|
188
195
|
};
|
|
189
196
|
const Trigger = /*#__PURE__*/ __rspack_external_react.forwardRef(({ className, ...props }, ref)=>/*#__PURE__*/ jsx(ContextMenuTrigger_ContextMenuTrigger, {
|
|
@@ -261,6 +268,11 @@ const SubmenuTrigger = /*#__PURE__*/ __rspack_external_react.forwardRef(({ class
|
|
|
261
268
|
className: clsx(ContextMenu_module.submenuTrigger, className),
|
|
262
269
|
...props
|
|
263
270
|
}));
|
|
271
|
+
const Separator = /*#__PURE__*/ __rspack_external_react.forwardRef(({ className, ...props }, ref)=>/*#__PURE__*/ jsx(Separator_Separator, {
|
|
272
|
+
ref: ref,
|
|
273
|
+
className: clsx(ContextMenu_module.separator, className),
|
|
274
|
+
...props
|
|
275
|
+
}));
|
|
264
276
|
const ContextMenu = {
|
|
265
277
|
Trigger: Trigger,
|
|
266
278
|
Backdrop: Backdrop,
|
|
@@ -277,9 +289,9 @@ const ContextMenu = {
|
|
|
277
289
|
RadioItem: RadioItem,
|
|
278
290
|
RadioItemIndicator: RadioItemIndicator,
|
|
279
291
|
SubmenuTrigger: SubmenuTrigger,
|
|
292
|
+
Separator: Separator,
|
|
280
293
|
Root: ContextMenuRoot,
|
|
281
294
|
SubmenuRoot: MenuSubmenuRoot,
|
|
282
|
-
Portal: MenuPortal_MenuPortal
|
|
283
|
-
Separator: Separator
|
|
295
|
+
Portal: MenuPortal_MenuPortal
|
|
284
296
|
};
|
|
285
297
|
export { ContextMenu };
|
package/dist/Dialog/index.css
CHANGED
|
@@ -1,50 +1,79 @@
|
|
|
1
1
|
.backdrop-EHLKAc {
|
|
2
|
+
background-color: color-mix(in srgb, var(--wst-system-default-dark-color, #212121) 60%, transparent);
|
|
3
|
+
z-index: 1000;
|
|
4
|
+
transition: opacity .2s;
|
|
2
5
|
position: fixed;
|
|
3
6
|
inset: 0;
|
|
4
7
|
}
|
|
5
8
|
|
|
9
|
+
.backdrop-EHLKAc[data-starting-style], .backdrop-EHLKAc[data-ending-style] {
|
|
10
|
+
opacity: 0;
|
|
11
|
+
}
|
|
12
|
+
|
|
6
13
|
.viewport-nOzLZZ {
|
|
14
|
+
box-sizing: border-box;
|
|
15
|
+
z-index: 1001;
|
|
16
|
+
justify-content: center;
|
|
17
|
+
align-items: center;
|
|
18
|
+
padding: 24px;
|
|
19
|
+
display: flex;
|
|
7
20
|
position: fixed;
|
|
8
21
|
inset: 0;
|
|
9
|
-
overflow:
|
|
22
|
+
overflow-y: auto;
|
|
10
23
|
}
|
|
11
24
|
|
|
12
25
|
.viewport-nOzLZZ :focus-visible {
|
|
13
|
-
outline: 2px solid
|
|
14
|
-
outline: 2px solid -webkit-focus-ring-color;
|
|
26
|
+
outline: 2px solid var(--wst-links-and-actions-color, #116dff);
|
|
15
27
|
outline-offset: 2px;
|
|
16
28
|
}
|
|
17
29
|
|
|
18
30
|
.popup-RjSkgq {
|
|
31
|
+
background-color: var(--wst-primary-background-color, #fff);
|
|
19
32
|
box-sizing: border-box;
|
|
20
|
-
|
|
33
|
+
border-radius: 8px;
|
|
21
34
|
flex-direction: column;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
35
|
+
gap: 16px;
|
|
36
|
+
width: 100%;
|
|
37
|
+
max-width: 500px;
|
|
38
|
+
padding: 24px;
|
|
39
|
+
transition: transform .2s cubic-bezier(.25, .46, .45, .94), opacity .2s cubic-bezier(.25, .46, .45, .94);
|
|
27
40
|
display: flex;
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
41
|
+
box-shadow: 0 8px 24px #00000029, 0 0 4px #00000014;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.popup-RjSkgq[data-starting-style], .popup-RjSkgq[data-ending-style] {
|
|
45
|
+
opacity: 0;
|
|
46
|
+
transform: scale(.96) translateY(4px);
|
|
33
47
|
}
|
|
34
48
|
|
|
35
49
|
.close-zqdBdX {
|
|
36
|
-
|
|
50
|
+
cursor: pointer;
|
|
51
|
+
color: var(--wst-paragraph-2-color, #000);
|
|
52
|
+
background: none;
|
|
53
|
+
border: none;
|
|
54
|
+
border-radius: 4px;
|
|
55
|
+
justify-content: center;
|
|
56
|
+
align-items: center;
|
|
57
|
+
margin: 0;
|
|
58
|
+
padding: 4px;
|
|
59
|
+
line-height: 0;
|
|
60
|
+
display: inline-flex;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.close-zqdBdX:hover {
|
|
64
|
+
background-color: color-mix(in srgb, var(--wst-paragraph-2-color, #000) 8%, transparent);
|
|
37
65
|
}
|
|
38
66
|
|
|
39
67
|
.title-U8Hyut {
|
|
40
|
-
font: var(--wst-
|
|
41
|
-
color: var(--wst-
|
|
42
|
-
margin: 0
|
|
68
|
+
font: var(--wst-paragraph-2-font);
|
|
69
|
+
color: var(--wst-paragraph-2-color, #000);
|
|
70
|
+
margin: 0;
|
|
71
|
+
font-weight: 700;
|
|
43
72
|
}
|
|
44
73
|
|
|
45
74
|
.description-ZV1a4j {
|
|
46
75
|
font: var(--wst-paragraph-2-font);
|
|
47
|
-
color: var(--wst-
|
|
48
|
-
margin: 0
|
|
76
|
+
color: var(--wst-shade-3-color, #767676);
|
|
77
|
+
margin: 0;
|
|
49
78
|
}
|
|
50
79
|
|
package/dist/Drawer/index.css
CHANGED
|
@@ -1,48 +1,99 @@
|
|
|
1
1
|
.description-hsuUfX {
|
|
2
2
|
font: var(--wst-paragraph-2-font);
|
|
3
|
-
color: var(--wst-
|
|
4
|
-
margin: 0
|
|
3
|
+
color: var(--wst-shade-3-color, #767676);
|
|
4
|
+
margin: 0;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
.title-A0LbRg {
|
|
8
|
-
font: var(--wst-
|
|
9
|
-
color: var(--wst-
|
|
10
|
-
margin: 0
|
|
8
|
+
font: var(--wst-paragraph-2-font);
|
|
9
|
+
color: var(--wst-paragraph-2-color, #000);
|
|
10
|
+
margin: 0;
|
|
11
|
+
font-weight: 700;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.close-Dq55Tj {
|
|
15
|
+
cursor: pointer;
|
|
16
|
+
color: var(--wst-paragraph-2-color, #000);
|
|
17
|
+
background: none;
|
|
18
|
+
border: none;
|
|
19
|
+
border-radius: 4px;
|
|
20
|
+
justify-content: center;
|
|
21
|
+
align-items: center;
|
|
22
|
+
margin: 0;
|
|
23
|
+
padding: 4px;
|
|
24
|
+
line-height: 0;
|
|
25
|
+
display: inline-flex;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.backdrop-ZQf73g {
|
|
29
|
+
background-color: color-mix(in srgb, var(--wst-system-default-dark-color, #212121) 60%, transparent);
|
|
30
|
+
z-index: 1000;
|
|
31
|
+
transition: opacity .2s;
|
|
32
|
+
position: fixed;
|
|
33
|
+
inset: 0;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.content-ouQWaR {
|
|
37
|
+
box-sizing: border-box;
|
|
38
|
+
flex: 1;
|
|
39
|
+
min-height: 0;
|
|
40
|
+
overflow-y: auto;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.indentBackground-JX6m1u {
|
|
44
|
+
background-color: var(--wst-primary-background-color, #fff);
|
|
11
45
|
}
|
|
12
46
|
|
|
13
47
|
.popup-FjIEpg {
|
|
14
48
|
background-color: var(--wst-primary-background-color, #fff);
|
|
49
|
+
box-sizing: border-box;
|
|
15
50
|
flex-direction: column;
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
transition
|
|
19
|
-
transition-timing-function: cubic-bezier(.25, .46, .45, .94);
|
|
51
|
+
width: 100%;
|
|
52
|
+
max-height: 90dvh;
|
|
53
|
+
transition: transform .3s cubic-bezier(.25, .46, .45, .94), opacity .2s;
|
|
20
54
|
display: flex;
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
left: 0;
|
|
24
|
-
right: 0;
|
|
25
|
-
overflow-y: auto;
|
|
26
|
-
box-shadow: 0 -4px 24px #00000026;
|
|
55
|
+
overflow: hidden;
|
|
56
|
+
box-shadow: 0 -4px 24px #0000001f, 0 0 4px #00000014;
|
|
27
57
|
}
|
|
28
58
|
|
|
29
59
|
.popup-FjIEpg[data-swipe-direction="up"] {
|
|
30
|
-
border-top-left-radius:
|
|
31
|
-
border-top-right-radius:
|
|
60
|
+
border-top-left-radius: 12px;
|
|
61
|
+
border-top-right-radius: 12px;
|
|
32
62
|
}
|
|
33
63
|
|
|
34
64
|
.popup-FjIEpg[data-swipe-direction="down"] {
|
|
35
|
-
border-bottom-right-radius:
|
|
36
|
-
border-bottom-left-radius:
|
|
65
|
+
border-bottom-right-radius: 12px;
|
|
66
|
+
border-bottom-left-radius: 12px;
|
|
37
67
|
}
|
|
38
68
|
|
|
39
69
|
.popup-FjIEpg[data-swipe-direction="left"] {
|
|
40
|
-
border-top-left-radius:
|
|
41
|
-
border-bottom-left-radius:
|
|
70
|
+
border-top-left-radius: 12px;
|
|
71
|
+
border-bottom-left-radius: 12px;
|
|
72
|
+
width: auto;
|
|
73
|
+
min-width: 280px;
|
|
74
|
+
max-height: 100dvh;
|
|
42
75
|
}
|
|
43
76
|
|
|
44
77
|
.popup-FjIEpg[data-swipe-direction="right"] {
|
|
45
|
-
border-top-right-radius:
|
|
46
|
-
border-bottom-right-radius:
|
|
78
|
+
border-top-right-radius: 12px;
|
|
79
|
+
border-bottom-right-radius: 12px;
|
|
80
|
+
width: auto;
|
|
81
|
+
min-width: 280px;
|
|
82
|
+
max-height: 100dvh;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.swipeArea-Nt_PFS {
|
|
86
|
+
touch-action: none;
|
|
87
|
+
position: fixed;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.viewport-XO9NfW {
|
|
91
|
+
z-index: 1001;
|
|
92
|
+
pointer-events: none;
|
|
93
|
+
justify-content: center;
|
|
94
|
+
align-items: flex-end;
|
|
95
|
+
display: flex;
|
|
96
|
+
position: fixed;
|
|
97
|
+
inset: 0;
|
|
47
98
|
}
|
|
48
99
|
|
package/dist/Drawer/index.js
CHANGED
|
@@ -2782,7 +2782,13 @@ function createVisualStateStore() {
|
|
|
2782
2782
|
const Drawer_module = {
|
|
2783
2783
|
description: "description-hsuUfX",
|
|
2784
2784
|
title: "title-A0LbRg",
|
|
2785
|
-
|
|
2785
|
+
close: "close-Dq55Tj",
|
|
2786
|
+
backdrop: "backdrop-ZQf73g",
|
|
2787
|
+
content: "content-ouQWaR",
|
|
2788
|
+
indentBackground: "indentBackground-JX6m1u",
|
|
2789
|
+
popup: "popup-FjIEpg",
|
|
2790
|
+
swipeArea: "swipeArea-Nt_PFS",
|
|
2791
|
+
viewport: "viewport-XO9NfW"
|
|
2786
2792
|
};
|
|
2787
2793
|
const Backdrop = /*#__PURE__*/ __rspack_external_react.forwardRef(({ className, ...props }, ref)=>/*#__PURE__*/ jsx(DrawerBackdrop_DrawerBackdrop, {
|
|
2788
2794
|
ref: ref,
|
package/dist/Field/index.css
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
.root-ECdHfF {
|
|
2
2
|
flex-direction: column;
|
|
3
|
-
gap:
|
|
3
|
+
gap: 4px;
|
|
4
4
|
display: flex;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
.label-YSWZBs {
|
|
8
8
|
font: var(--wst-paragraph-3-font);
|
|
9
|
-
color: var(--wst-paragraph-
|
|
9
|
+
color: var(--wst-paragraph-2-color, #000);
|
|
10
|
+
margin-bottom: 4px;
|
|
10
11
|
}
|
|
11
12
|
|
|
12
13
|
.root-ECdHfF:has([disabled]) .label-YSWZBs, .root-ECdHfF[data-disabled] .label-YSWZBs {
|
|
@@ -15,17 +16,15 @@
|
|
|
15
16
|
|
|
16
17
|
.error-BUDKWp {
|
|
17
18
|
font: var(--wst-paragraph-3-font);
|
|
18
|
-
color: var(--wst-system-error-color);
|
|
19
|
+
color: var(--wst-system-error-color, #df3131);
|
|
19
20
|
}
|
|
20
21
|
|
|
21
22
|
.description-IVviYU {
|
|
22
23
|
font: var(--wst-paragraph-3-font);
|
|
23
|
-
color: var(--wst-
|
|
24
|
+
color: var(--wst-shade-3-color, #767676);
|
|
24
25
|
}
|
|
25
26
|
|
|
26
|
-
.item-kQeHOQ {
|
|
27
|
-
|
|
28
|
-
gap: 8px;
|
|
29
|
-
display: flex;
|
|
27
|
+
.control-fRhDZ8, .item-kQeHOQ {
|
|
28
|
+
width: 100%;
|
|
30
29
|
}
|
|
31
30
|
|
package/dist/Field/index.js
CHANGED
|
@@ -13,7 +13,7 @@ import { error } from "../4026.js";
|
|
|
13
13
|
import { transitionStatusMapping, useOpenChangeComplete, useTransitionStatus } from "../880.js";
|
|
14
14
|
import { useCheckboxGroupContext } from "../8979.js";
|
|
15
15
|
import { FieldItemContext } from "../1457.js";
|
|
16
|
-
import { FieldControl_FieldControl } from "../
|
|
16
|
+
import { Input_module, FieldControl_FieldControl } from "../8685.js";
|
|
17
17
|
import * as __rspack_external_react from "react";
|
|
18
18
|
const LabelableProvider_LabelableProvider = function(props) {
|
|
19
19
|
const defaultId = useBaseUiId();
|
|
@@ -674,6 +674,7 @@ const Field_module = {
|
|
|
674
674
|
label: "label-YSWZBs",
|
|
675
675
|
error: "error-BUDKWp",
|
|
676
676
|
description: "description-IVviYU",
|
|
677
|
+
control: "control-fRhDZ8",
|
|
677
678
|
item: "item-kQeHOQ"
|
|
678
679
|
};
|
|
679
680
|
const Root = /*#__PURE__*/ __rspack_external_react.forwardRef(({ className, ...props }, ref)=>/*#__PURE__*/ jsx(FieldRoot_FieldRoot, {
|
|
@@ -696,9 +697,26 @@ const Description = /*#__PURE__*/ __rspack_external_react.forwardRef(({ classNam
|
|
|
696
697
|
className: clsx(Field_module.description, className),
|
|
697
698
|
...props
|
|
698
699
|
}));
|
|
699
|
-
const
|
|
700
|
+
const TEXT_INPUT_TYPES = new Set([
|
|
701
|
+
'text',
|
|
702
|
+
'email',
|
|
703
|
+
'password',
|
|
704
|
+
'search',
|
|
705
|
+
'url',
|
|
706
|
+
'tel',
|
|
707
|
+
'number',
|
|
708
|
+
'date',
|
|
709
|
+
'datetime-local',
|
|
710
|
+
'month',
|
|
711
|
+
'week',
|
|
712
|
+
'time'
|
|
713
|
+
]);
|
|
714
|
+
const Control = /*#__PURE__*/ __rspack_external_react.forwardRef(({ className, type = 'text', ...props }, ref)=>/*#__PURE__*/ jsx(FieldControl_FieldControl, {
|
|
700
715
|
ref: ref,
|
|
701
|
-
|
|
716
|
+
type: type,
|
|
717
|
+
className: clsx({
|
|
718
|
+
[Input_module.root]: TEXT_INPUT_TYPES.has(type)
|
|
719
|
+
}, Field_module.control, className),
|
|
702
720
|
...props
|
|
703
721
|
}));
|
|
704
722
|
const Item = /*#__PURE__*/ __rspack_external_react.forwardRef(({ className, ...props }, ref)=>/*#__PURE__*/ jsx(FieldItem_FieldItem, {
|
package/dist/Fieldset/index.css
CHANGED
|
@@ -2,8 +2,23 @@
|
|
|
2
2
|
border: none;
|
|
3
3
|
flex-direction: column;
|
|
4
4
|
gap: 16px;
|
|
5
|
+
min-width: 0;
|
|
5
6
|
margin: 0;
|
|
6
7
|
padding: 0;
|
|
7
8
|
display: flex;
|
|
8
9
|
}
|
|
9
10
|
|
|
11
|
+
.root-v8M2Sx[data-disabled] {
|
|
12
|
+
opacity: .5;
|
|
13
|
+
pointer-events: none;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.legend-OVr_3r {
|
|
17
|
+
font: var(--wst-paragraph-2-font);
|
|
18
|
+
color: var(--wst-paragraph-2-color, #000);
|
|
19
|
+
width: 100%;
|
|
20
|
+
margin-bottom: 4px;
|
|
21
|
+
padding: 0;
|
|
22
|
+
font-weight: bold;
|
|
23
|
+
}
|
|
24
|
+
|
package/dist/Fieldset/index.js
CHANGED
|
@@ -66,7 +66,8 @@ const FieldsetLegend_FieldsetLegend = /*#__PURE__*/ __rspack_external_react.forw
|
|
|
66
66
|
});
|
|
67
67
|
if ("production" !== process.env.NODE_ENV) FieldsetLegend_FieldsetLegend.displayName = "FieldsetLegend";
|
|
68
68
|
const Fieldset_module = {
|
|
69
|
-
root: "root-v8M2Sx"
|
|
69
|
+
root: "root-v8M2Sx",
|
|
70
|
+
legend: "legend-OVr_3r"
|
|
70
71
|
};
|
|
71
72
|
const Root = /*#__PURE__*/ __rspack_external_react.forwardRef(({ className, ...props }, ref)=>/*#__PURE__*/ jsx(FieldsetRoot_FieldsetRoot, {
|
|
72
73
|
ref: ref,
|
package/dist/Form/index.css
CHANGED
package/dist/Form/index.js
CHANGED
|
@@ -105,7 +105,9 @@ const Form_Form = /*#__PURE__*/ __rspack_external_react.forwardRef(function(comp
|
|
|
105
105
|
});
|
|
106
106
|
});
|
|
107
107
|
if ("production" !== process.env.NODE_ENV) Form_Form.displayName = "Form";
|
|
108
|
-
const Form_module = {
|
|
108
|
+
const Form_module = {
|
|
109
|
+
root: "root-ontz3g"
|
|
110
|
+
};
|
|
109
111
|
const Form_Form_Form = /*#__PURE__*/ __rspack_external_react.forwardRef(({ className, ...props }, ref)=>/*#__PURE__*/ jsx(Form_Form, {
|
|
110
112
|
ref: ref,
|
|
111
113
|
className: clsx(Form_module.root, className),
|
package/dist/Input/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import clsx from "clsx";
|
|
3
|
-
import { FieldControl_FieldControl } from "../
|
|
3
|
+
import { Input_module, FieldControl_FieldControl } from "../8685.js";
|
|
4
4
|
import * as __rspack_external_react from "react";
|
|
5
5
|
const Input_Input = /*#__PURE__*/ __rspack_external_react.forwardRef(function(props, forwardedRef) {
|
|
6
6
|
return /*#__PURE__*/ jsx(FieldControl_FieldControl, {
|
|
@@ -9,9 +9,6 @@ const Input_Input = /*#__PURE__*/ __rspack_external_react.forwardRef(function(pr
|
|
|
9
9
|
});
|
|
10
10
|
});
|
|
11
11
|
if ("production" !== process.env.NODE_ENV) Input_Input.displayName = "Input";
|
|
12
|
-
const Input_module = {
|
|
13
|
-
root: "root-Y7wYn3"
|
|
14
|
-
};
|
|
15
12
|
const Input_Input_Input = /*#__PURE__*/ __rspack_external_react.forwardRef(({ className, ...props }, ref)=>/*#__PURE__*/ jsx(Input_Input, {
|
|
16
13
|
ref: ref,
|
|
17
14
|
className: clsx(Input_module.root, className),
|
package/dist/Menu/index.css
CHANGED
|
@@ -1,22 +1,75 @@
|
|
|
1
1
|
.trigger-OltV1Y {
|
|
2
2
|
font: var(--wst-paragraph-2-font);
|
|
3
|
-
color: var(--wst-paragraph-2-color);
|
|
3
|
+
color: var(--wst-paragraph-2-color, #000);
|
|
4
|
+
cursor: pointer;
|
|
5
|
+
text-align: start;
|
|
6
|
+
background: none;
|
|
7
|
+
border: none;
|
|
8
|
+
padding: 0;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.arrow-ERrbkh {
|
|
12
|
+
width: 10px;
|
|
13
|
+
height: 10px;
|
|
14
|
+
fill: var(--wst-primary-background-color, #fff);
|
|
15
|
+
filter: drop-shadow(0 -1px 1px color-mix(in srgb, var(--wst-paragraph-2-color, #000) 15%, transparent));
|
|
16
|
+
display: block;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.backdrop-ptwUkx {
|
|
20
|
+
background-color: #0000;
|
|
21
|
+
position: fixed;
|
|
22
|
+
inset: 0;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.checkboxItem-U50JXJ {
|
|
26
|
+
font: var(--wst-paragraph-2-font);
|
|
27
|
+
color: var(--wst-paragraph-2-color, #000);
|
|
28
|
+
cursor: pointer;
|
|
29
|
+
user-select: none;
|
|
30
|
+
box-sizing: border-box;
|
|
31
|
+
outline: none;
|
|
32
|
+
align-items: center;
|
|
33
|
+
gap: 8px;
|
|
34
|
+
width: 100%;
|
|
35
|
+
padding: 8px 24px;
|
|
36
|
+
display: flex;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.checkboxItem-U50JXJ[data-highlighted] {
|
|
40
|
+
background-color: color-mix(in srgb, var(--wst-base-2-color) 6%, transparent);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.checkboxItem-U50JXJ[data-disabled] {
|
|
44
|
+
opacity: .3;
|
|
45
|
+
cursor: default;
|
|
46
|
+
pointer-events: none;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.checkboxItemIndicator-Bs1QNS {
|
|
50
|
+
width: 16px;
|
|
51
|
+
height: 16px;
|
|
52
|
+
color: var(--wst-links-and-actions-color, #116dff);
|
|
53
|
+
flex-shrink: 0;
|
|
54
|
+
justify-content: center;
|
|
4
55
|
align-items: center;
|
|
5
|
-
display:
|
|
56
|
+
display: flex;
|
|
6
57
|
}
|
|
7
58
|
|
|
8
59
|
.groupLabel-_L41zu {
|
|
9
60
|
font: var(--wst-paragraph-3-font);
|
|
10
|
-
color: var(--wst-
|
|
61
|
+
color: var(--wst-shade-3-color, #767676);
|
|
11
62
|
padding: 4px 24px;
|
|
12
63
|
}
|
|
13
64
|
|
|
14
65
|
.popup-VQm6g1 {
|
|
15
66
|
background-color: var(--wst-primary-background-color, #fff);
|
|
16
|
-
border
|
|
17
|
-
|
|
18
|
-
border-color: var(--wst-paragraph-2-color, #fff6);
|
|
67
|
+
border: var(--wst-system-line-1-width, 1px) solid
|
|
68
|
+
color-mix(in srgb, var(--wst-paragraph-2-color, #000) 15%, transparent);
|
|
19
69
|
box-sizing: border-box;
|
|
70
|
+
border-radius: 6px;
|
|
71
|
+
outline: none;
|
|
72
|
+
min-width: 120px;
|
|
20
73
|
max-width: 320px;
|
|
21
74
|
margin: 0;
|
|
22
75
|
padding: 12px 0;
|
|
@@ -29,57 +82,129 @@
|
|
|
29
82
|
}
|
|
30
83
|
|
|
31
84
|
.item-toMw6N {
|
|
32
|
-
cursor: pointer;
|
|
33
|
-
width: calc(100% + 2px);
|
|
34
|
-
color: var(--wst-paragraph-2-color, #000);
|
|
35
85
|
font: var(--wst-paragraph-2-font);
|
|
36
|
-
|
|
86
|
+
color: var(--wst-paragraph-2-color, #000);
|
|
87
|
+
cursor: pointer;
|
|
88
|
+
user-select: none;
|
|
89
|
+
outline: none;
|
|
37
90
|
align-items: center;
|
|
91
|
+
width: 100%;
|
|
38
92
|
padding: 8px 24px;
|
|
39
93
|
display: flex;
|
|
40
|
-
position: relative;
|
|
41
|
-
left: -1px;
|
|
42
|
-
right: -1px;
|
|
43
94
|
}
|
|
44
95
|
|
|
45
96
|
.item-toMw6N[data-highlighted] {
|
|
46
|
-
background-color: color-mix(in srgb, var(--wst-
|
|
97
|
+
background-color: color-mix(in srgb, var(--wst-base-2-color) 6%, transparent);
|
|
47
98
|
}
|
|
48
99
|
|
|
49
100
|
.item-toMw6N[data-disabled] {
|
|
50
101
|
opacity: .3;
|
|
51
102
|
cursor: default;
|
|
103
|
+
pointer-events: none;
|
|
52
104
|
}
|
|
53
105
|
|
|
54
106
|
.item-toMw6N[data-disabled]:hover {
|
|
55
|
-
background-color:
|
|
107
|
+
background-color: #0000;
|
|
56
108
|
}
|
|
57
109
|
|
|
58
110
|
.linkItem-UZphBs {
|
|
59
|
-
cursor: pointer;
|
|
60
|
-
width: calc(100% + 2px);
|
|
61
|
-
color: var(--wst-paragraph-2-color, #000);
|
|
62
111
|
font: var(--wst-paragraph-2-font);
|
|
63
|
-
|
|
112
|
+
color: var(--wst-paragraph-2-color, #000);
|
|
113
|
+
cursor: pointer;
|
|
114
|
+
user-select: none;
|
|
115
|
+
outline: none;
|
|
64
116
|
align-items: center;
|
|
117
|
+
width: 100%;
|
|
65
118
|
padding: 8px 24px;
|
|
66
119
|
text-decoration: none;
|
|
67
120
|
display: flex;
|
|
68
|
-
position: relative;
|
|
69
|
-
left: -1px;
|
|
70
|
-
right: -1px;
|
|
71
121
|
}
|
|
72
122
|
|
|
73
123
|
.linkItem-UZphBs[data-highlighted] {
|
|
74
|
-
background-color: color-mix(in srgb, var(--wst-
|
|
124
|
+
background-color: color-mix(in srgb, var(--wst-base-2-color) 6%, transparent);
|
|
75
125
|
}
|
|
76
126
|
|
|
77
127
|
.linkItem-UZphBs[data-disabled] {
|
|
78
128
|
opacity: .3;
|
|
79
129
|
cursor: default;
|
|
130
|
+
pointer-events: none;
|
|
80
131
|
}
|
|
81
132
|
|
|
82
133
|
.linkItem-UZphBs[data-disabled]:hover {
|
|
83
|
-
background-color:
|
|
134
|
+
background-color: #0000;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.positioner-hYbdIP {
|
|
138
|
+
z-index: 1000;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.radioItem-xt5obc {
|
|
142
|
+
font: var(--wst-paragraph-2-font);
|
|
143
|
+
color: var(--wst-paragraph-2-color, #000);
|
|
144
|
+
cursor: pointer;
|
|
145
|
+
user-select: none;
|
|
146
|
+
box-sizing: border-box;
|
|
147
|
+
outline: none;
|
|
148
|
+
align-items: center;
|
|
149
|
+
gap: 8px;
|
|
150
|
+
width: 100%;
|
|
151
|
+
padding: 8px 24px;
|
|
152
|
+
display: flex;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.radioItem-xt5obc[data-highlighted] {
|
|
156
|
+
background-color: color-mix(in srgb, var(--wst-base-2-color) 6%, transparent);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.radioItem-xt5obc[data-disabled] {
|
|
160
|
+
opacity: .3;
|
|
161
|
+
cursor: default;
|
|
162
|
+
pointer-events: none;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.radioItemIndicator-EfDBAO {
|
|
166
|
+
width: 16px;
|
|
167
|
+
height: 16px;
|
|
168
|
+
color: var(--wst-links-and-actions-color, #116dff);
|
|
169
|
+
flex-shrink: 0;
|
|
170
|
+
justify-content: center;
|
|
171
|
+
align-items: center;
|
|
172
|
+
display: flex;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.submenuTrigger-n7NBVv {
|
|
176
|
+
font: var(--wst-paragraph-2-font);
|
|
177
|
+
color: var(--wst-paragraph-2-color, #000);
|
|
178
|
+
cursor: pointer;
|
|
179
|
+
user-select: none;
|
|
180
|
+
text-align: start;
|
|
181
|
+
background: none;
|
|
182
|
+
border: none;
|
|
183
|
+
outline: none;
|
|
184
|
+
justify-content: space-between;
|
|
185
|
+
align-items: center;
|
|
186
|
+
width: 100%;
|
|
187
|
+
padding: 8px 24px;
|
|
188
|
+
display: flex;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.submenuTrigger-n7NBVv[data-highlighted] {
|
|
192
|
+
background-color: color-mix(in srgb, var(--wst-base-2-color) 6%, transparent);
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.submenuTrigger-n7NBVv[data-disabled] {
|
|
196
|
+
opacity: .3;
|
|
197
|
+
cursor: default;
|
|
198
|
+
pointer-events: none;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.separator-mmvmF_ {
|
|
202
|
+
background-color: color-mix(in srgb, var(--wst-paragraph-2-color, #000) 15%, transparent);
|
|
203
|
+
height: 1px;
|
|
204
|
+
margin: 4px 0;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.viewport-RskDAU {
|
|
208
|
+
overflow-y: auto;
|
|
84
209
|
}
|
|
85
210
|
|
package/dist/Menu/index.d.ts
CHANGED
|
@@ -412,7 +412,9 @@ export declare const Menu: {
|
|
|
412
412
|
Trigger: typeof Trigger;
|
|
413
413
|
SubmenuRoot: typeof Menu_2.SubmenuRoot;
|
|
414
414
|
Portal: React_2.ForwardRefExoticComponent<Omit<MenuPortalProps_2, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
415
|
-
Separator: React_2.ForwardRefExoticComponent<Omit<SeparatorProps_2, "ref"> & React_2.RefAttributes<HTMLDivElement
|
|
415
|
+
Separator: React_2.ForwardRefExoticComponent<Omit<Omit<Omit<SeparatorProps_2, "ref"> & React_2.RefAttributes<HTMLDivElement>, "ref">, "className"> & {
|
|
416
|
+
className?: string | undefined;
|
|
417
|
+
} & React_2.RefAttributes<HTMLDivElement>>;
|
|
416
418
|
Handle: typeof Menu_2.Handle;
|
|
417
419
|
createHandle: typeof Menu_2.createHandle;
|
|
418
420
|
};
|