@wix/site-ui 1.12.0 → 1.14.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.
Files changed (82) hide show
  1. package/dist/Accordion/index.css +40 -0
  2. package/dist/Accordion/index.d.ts +5 -0
  3. package/dist/Accordion/index.js +23 -2
  4. package/dist/AlertDialog/index.css +48 -0
  5. package/dist/AlertDialog/index.js +8 -1
  6. package/dist/Autocomplete/index.css +114 -0
  7. package/dist/Autocomplete/index.js +9 -1
  8. package/dist/Avatar/index.css +34 -0
  9. package/dist/Avatar/index.d.ts +11 -0
  10. package/dist/Avatar/index.js +19 -3
  11. package/dist/Button/index.css +78 -55
  12. package/dist/Button/index.d.ts +0 -3
  13. package/dist/Button/index.js +3 -19
  14. package/dist/Checkbox/index.css +73 -0
  15. package/dist/Checkbox/index.d.ts +8 -0
  16. package/dist/Checkbox/index.js +15 -3
  17. package/dist/CheckboxGroup/index.css +8 -1
  18. package/dist/CheckboxGroup/index.js +3 -1
  19. package/dist/Collapsible/index.css +45 -0
  20. package/dist/Collapsible/index.js +5 -1
  21. package/dist/Combobox/index.css +216 -0
  22. package/dist/Combobox/index.js +19 -1
  23. package/dist/ContextMenu/index.css +150 -0
  24. package/dist/ContextMenu/index.js +9 -1
  25. package/dist/Dialog/index.css +48 -0
  26. package/dist/Dialog/index.js +8 -1
  27. package/dist/Drawer/index.css +46 -0
  28. package/dist/Drawer/index.js +5 -1
  29. package/dist/Field/index.css +34 -0
  30. package/dist/Field/index.js +7 -1
  31. package/dist/Fieldset/index.css +8 -1
  32. package/dist/Fieldset/index.js +3 -1
  33. package/dist/Input/index.css +70 -0
  34. package/dist/Input/index.js +3 -1
  35. package/dist/Menu/index.css +83 -0
  36. package/dist/Menu/index.js +7 -1
  37. package/dist/Meter/index.css +38 -0
  38. package/dist/Meter/index.js +7 -1
  39. package/dist/NavigationMenu/index.css +47 -0
  40. package/dist/NavigationMenu/index.js +7 -1
  41. package/dist/NumberField/index.css +114 -0
  42. package/dist/NumberField/index.js +8 -1
  43. package/dist/Popover/index.css +88 -0
  44. package/dist/Popover/index.js +7 -1
  45. package/dist/PreviewCard/index.css +73 -0
  46. package/dist/PreviewCard/index.js +5 -1
  47. package/dist/Progress/index.css +24 -0
  48. package/dist/Progress/index.d.ts +9 -0
  49. package/dist/Progress/index.js +19 -3
  50. package/dist/Radio/index.css +59 -0
  51. package/dist/Radio/index.d.ts +11 -1
  52. package/dist/Radio/index.js +16 -4
  53. package/dist/RadioGroup/index.css +7 -1
  54. package/dist/RadioGroup/index.js +3 -1
  55. package/dist/ScrollArea/index.css +35 -0
  56. package/dist/ScrollArea/index.js +6 -1
  57. package/dist/Select/index.css +160 -0
  58. package/dist/Select/index.js +15 -1
  59. package/dist/Separator/index.css +19 -0
  60. package/dist/Separator/index.js +3 -1
  61. package/dist/Slider/index.css +60 -0
  62. package/dist/Slider/index.d.ts +11 -1
  63. package/dist/Slider/index.js +21 -4
  64. package/dist/Switch/index.css +44 -0
  65. package/dist/Switch/index.d.ts +18 -0
  66. package/dist/Switch/index.js +26 -3
  67. package/dist/Tabs/index.css +81 -0
  68. package/dist/Tabs/index.js +6 -1
  69. package/dist/Toggle/index.css +70 -0
  70. package/dist/Toggle/index.js +5 -1
  71. package/dist/ToggleGroup/index.css +4 -1
  72. package/dist/ToggleGroup/index.js +3 -1
  73. package/dist/Toolbar/index.css +56 -0
  74. package/dist/Toolbar/index.js +6 -1
  75. package/dist/Tooltip/index.css +132 -0
  76. package/dist/Tooltip/index.js +6 -1
  77. package/dist/Typography/index.css +45 -0
  78. package/dist/Typography/index.d.ts +12 -0
  79. package/dist/Typography/index.js +44 -0
  80. package/dist/index.d.ts +82 -5
  81. package/dist/index.js +7 -6
  82. package/package.json +2 -2
@@ -1,2 +1,48 @@
1
+ .description-hsuUfX {
2
+ font: var(--wst-paragraph-2-font);
3
+ color: var(--wst-paragraph-2-color);
4
+ margin: 0 0 16px;
5
+ }
1
6
 
7
+ .title-A0LbRg {
8
+ font: var(--wst-heading-6-font);
9
+ color: var(--wst-heading-6-color);
10
+ margin: 0 0 8px;
11
+ }
12
+
13
+ .popup-FjIEpg {
14
+ background-color: var(--wst-primary-background-color, #fff);
15
+ flex-direction: column;
16
+ max-height: 80vh;
17
+ padding: 24px;
18
+ transition-duration: .3s;
19
+ transition-timing-function: cubic-bezier(.25, .46, .45, .94);
20
+ display: flex;
21
+ position: fixed;
22
+ bottom: 0;
23
+ left: 0;
24
+ right: 0;
25
+ overflow-y: auto;
26
+ box-shadow: 0 -4px 24px #00000026;
27
+ }
28
+
29
+ .popup-FjIEpg[data-swipe-direction="up"] {
30
+ border-top-left-radius: 8px;
31
+ border-top-right-radius: 8px;
32
+ }
33
+
34
+ .popup-FjIEpg[data-swipe-direction="down"] {
35
+ border-bottom-right-radius: 8px;
36
+ border-bottom-left-radius: 8px;
37
+ }
38
+
39
+ .popup-FjIEpg[data-swipe-direction="left"] {
40
+ border-top-left-radius: 8px;
41
+ border-bottom-left-radius: 8px;
42
+ }
43
+
44
+ .popup-FjIEpg[data-swipe-direction="right"] {
45
+ border-top-right-radius: 8px;
46
+ border-bottom-right-radius: 8px;
47
+ }
2
48
 
@@ -2,7 +2,11 @@ import { jsx } from "react/jsx-runtime";
2
2
  import { Drawer } from "@base-ui/react/drawer";
3
3
  import clsx from "clsx";
4
4
  import * as __rspack_external_react from "react";
5
- const Drawer_module = {};
5
+ const Drawer_module = {
6
+ description: "description-hsuUfX",
7
+ title: "title-A0LbRg",
8
+ popup: "popup-FjIEpg"
9
+ };
6
10
  const Backdrop = /*#__PURE__*/ __rspack_external_react.forwardRef(({ className, ...props }, ref)=>/*#__PURE__*/ jsx(Drawer.Backdrop, {
7
11
  ref: ref,
8
12
  className: clsx(Drawer_module.backdrop, className),
@@ -1,2 +1,36 @@
1
+ .root-ECdHfF {
2
+ flex-direction: column;
3
+ display: flex;
4
+ }
1
5
 
6
+ .label-YSWZBs {
7
+ font: var(--wst-paragraph-3-font);
8
+ color: var(--wst-paragraph-3-color);
9
+ margin-bottom: 8px;
10
+ display: inline-block;
11
+ }
12
+
13
+ .root-ECdHfF:has([disabled]) .label-YSWZBs, .root-ECdHfF[data-disabled] .label-YSWZBs {
14
+ color: var(--wst-system-disabled-color, #939393);
15
+ }
16
+
17
+ .error-BUDKWp {
18
+ font: var(--wst-paragraph-3-font);
19
+ color: var(--wst-system-error-color);
20
+ margin-top: 8px;
21
+ display: block;
22
+ }
23
+
24
+ .description-IVviYU {
25
+ font: var(--wst-paragraph-3-font);
26
+ color: var(--wst-paragraph-3-color);
27
+ margin-top: 8px;
28
+ display: block;
29
+ }
30
+
31
+ .item-kQeHOQ {
32
+ align-items: center;
33
+ gap: 8px;
34
+ display: flex;
35
+ }
2
36
 
@@ -2,7 +2,13 @@ import { jsx } from "react/jsx-runtime";
2
2
  import { Field } from "@base-ui/react/field";
3
3
  import clsx from "clsx";
4
4
  import * as __rspack_external_react from "react";
5
- const Field_module = {};
5
+ const Field_module = {
6
+ root: "root-ECdHfF",
7
+ label: "label-YSWZBs",
8
+ error: "error-BUDKWp",
9
+ description: "description-IVviYU",
10
+ item: "item-kQeHOQ"
11
+ };
6
12
  const Root = /*#__PURE__*/ __rspack_external_react.forwardRef(({ className, ...props }, ref)=>/*#__PURE__*/ jsx(Field.Root, {
7
13
  ref: ref,
8
14
  className: clsx(Field_module.root, className),
@@ -1,2 +1,9 @@
1
-
1
+ .root-v8M2Sx {
2
+ border: none;
3
+ flex-direction: column;
4
+ gap: 16px;
5
+ margin: 0;
6
+ padding: 0;
7
+ display: flex;
8
+ }
2
9
 
@@ -2,7 +2,9 @@ import { jsx } from "react/jsx-runtime";
2
2
  import { Fieldset } from "@base-ui/react/fieldset";
3
3
  import clsx from "clsx";
4
4
  import * as __rspack_external_react from "react";
5
- const Fieldset_module = {};
5
+ const Fieldset_module = {
6
+ root: "root-v8M2Sx"
7
+ };
6
8
  const Root = /*#__PURE__*/ __rspack_external_react.forwardRef(({ className, ...props }, ref)=>/*#__PURE__*/ jsx(Fieldset.Root, {
7
9
  ref: ref,
8
10
  className: clsx(Fieldset_module.root, className),
@@ -1,2 +1,72 @@
1
+ .root-Y7wYn3 {
2
+ box-sizing: border-box;
3
+ border: 1px solid var(--wst-paragraph-2-color, #0009);
4
+ background-color: var(--wst-primary-background-color, #fff);
5
+ width: 100%;
6
+ min-width: 0;
7
+ font: var(--wst-paragraph-2-font);
8
+ color: var(--wst-paragraph-2-color, #000);
9
+ vertical-align: middle;
10
+ border-radius: 0;
11
+ outline: 0;
12
+ margin: 0;
13
+ padding-block: 8px;
14
+ padding-inline: 12px;
15
+ transition: border-color .1s ease-in;
16
+ }
1
17
 
18
+ .root-Y7wYn3:hover {
19
+ border-color: var(--wst-paragraph-2-color, #000);
20
+ }
21
+
22
+ .root-Y7wYn3:focus {
23
+ border-color: var(--wst-paragraph-2-color, #000);
24
+ outline: 0;
25
+ }
26
+
27
+ .root-Y7wYn3:focus-visible {
28
+ border-color: var(--wst-links-and-actions-color, #116dff);
29
+ outline: none;
30
+ }
31
+
32
+ .root-Y7wYn3:disabled {
33
+ color: var(--wst-system-disabled-color, #ccc);
34
+ background-color: var(--wst-primary-background-color, #fff);
35
+ cursor: not-allowed;
36
+ border-color: #0009;
37
+ }
38
+
39
+ .root-Y7wYn3[aria-invalid="true"], .root-Y7wYn3[aria-invalid="true"]:hover, .root-Y7wYn3[aria-invalid="true"]:focus {
40
+ border-color: var(--wst-system-error-color, #df3131);
41
+ }
42
+
43
+ .root-Y7wYn3[data-valid] {
44
+ border-color: var(--wst-system-success-color, #60d1a8);
45
+ }
46
+
47
+ .root-Y7wYn3::selection {
48
+ background: var(--wst-paragraph-2-color, #0003);
49
+ opacity: .2;
50
+ }
51
+
52
+ .root-Y7wYn3::placeholder {
53
+ color: var(--wst-shade-3-color, #0006);
54
+ }
55
+
56
+ .root-Y7wYn3:disabled::placeholder {
57
+ color: var(--wst-system-disabled-color, #ccc);
58
+ }
59
+
60
+ .root-Y7wYn3:-webkit-autofill {
61
+ -webkit-text-fill-color: var(--wst-paragraph-2-color, #000);
62
+ -webkit-box-shadow: 0 0 0 1.5em var(--wst-primary-background-color, #fff) inset !important;
63
+ }
64
+
65
+ .root-Y7wYn3[type="number"]::-webkit-inner-spin-button, .root-Y7wYn3[type="number"]::-webkit-outer-spin-button {
66
+ -webkit-appearance: none;
67
+ }
68
+
69
+ .root-Y7wYn3[type="number"] {
70
+ appearance: textfield;
71
+ }
2
72
 
@@ -2,7 +2,9 @@ import { jsx } from "react/jsx-runtime";
2
2
  import { Input } from "@base-ui/react/input";
3
3
  import clsx from "clsx";
4
4
  import * as __rspack_external_react from "react";
5
- const Input_module = {};
5
+ const Input_module = {
6
+ root: "root-Y7wYn3"
7
+ };
6
8
  const Input_Input = /*#__PURE__*/ __rspack_external_react.forwardRef(({ className, ...props }, ref)=>/*#__PURE__*/ jsx(Input, {
7
9
  ref: ref,
8
10
  className: clsx(Input_module.root, className),
@@ -1,2 +1,85 @@
1
+ .trigger-OltV1Y {
2
+ font: var(--wst-paragraph-2-font);
3
+ color: var(--wst-paragraph-2-color);
4
+ align-items: center;
5
+ display: inline-flex;
6
+ }
1
7
 
8
+ .groupLabel-_L41zu {
9
+ font: var(--wst-paragraph-3-font);
10
+ color: var(--wst-paragraph-3-color);
11
+ padding: 4px 24px;
12
+ }
13
+
14
+ .popup-VQm6g1 {
15
+ background-color: var(--wst-primary-background-color, #fff);
16
+ border-style: solid;
17
+ border-width: 1px;
18
+ border-color: var(--wst-paragraph-2-color, #fff6);
19
+ box-sizing: border-box;
20
+ max-width: 320px;
21
+ margin: 0;
22
+ padding: 12px 0;
23
+ list-style: none;
24
+ box-shadow: 0 0 4px #0000001a, 0 4px 8px #0000001a;
25
+ }
26
+
27
+ .popup-VQm6g1 * {
28
+ box-sizing: border-box;
29
+ }
30
+
31
+ .item-toMw6N {
32
+ cursor: pointer;
33
+ width: calc(100% + 2px);
34
+ color: var(--wst-paragraph-2-color, #000);
35
+ font: var(--wst-paragraph-2-font);
36
+ text-align: initial;
37
+ align-items: center;
38
+ padding: 8px 24px;
39
+ display: flex;
40
+ position: relative;
41
+ left: -1px;
42
+ right: -1px;
43
+ }
44
+
45
+ .item-toMw6N[data-highlighted] {
46
+ background-color: color-mix(in srgb, var(--wst-paragraph-2-color, #000) 6%, transparent);
47
+ }
48
+
49
+ .item-toMw6N[data-disabled] {
50
+ opacity: .3;
51
+ cursor: default;
52
+ }
53
+
54
+ .item-toMw6N[data-disabled]:hover {
55
+ background-color: inherit;
56
+ }
57
+
58
+ .linkItem-UZphBs {
59
+ cursor: pointer;
60
+ width: calc(100% + 2px);
61
+ color: var(--wst-paragraph-2-color, #000);
62
+ font: var(--wst-paragraph-2-font);
63
+ text-align: initial;
64
+ align-items: center;
65
+ padding: 8px 24px;
66
+ text-decoration: none;
67
+ display: flex;
68
+ position: relative;
69
+ left: -1px;
70
+ right: -1px;
71
+ }
72
+
73
+ .linkItem-UZphBs[data-highlighted] {
74
+ background-color: color-mix(in srgb, var(--wst-paragraph-2-color, #000) 6%, transparent);
75
+ }
76
+
77
+ .linkItem-UZphBs[data-disabled] {
78
+ opacity: .3;
79
+ cursor: default;
80
+ }
81
+
82
+ .linkItem-UZphBs[data-disabled]:hover {
83
+ background-color: inherit;
84
+ }
2
85
 
@@ -2,7 +2,13 @@ import { jsx } from "react/jsx-runtime";
2
2
  import { Menu } from "@base-ui/react/menu";
3
3
  import clsx from "clsx";
4
4
  import * as __rspack_external_react from "react";
5
- const Menu_module = {};
5
+ const Menu_module = {
6
+ trigger: "trigger-OltV1Y",
7
+ groupLabel: "groupLabel-_L41zu",
8
+ popup: "popup-VQm6g1",
9
+ item: "item-toMw6N",
10
+ linkItem: "linkItem-UZphBs"
11
+ };
6
12
  const Arrow = /*#__PURE__*/ __rspack_external_react.forwardRef(({ className, ...props }, ref)=>/*#__PURE__*/ jsx(Menu.Arrow, {
7
13
  ref: ref,
8
14
  className: clsx(Menu_module.arrow, className),
@@ -1,2 +1,40 @@
1
+ .root-bc9hfF {
2
+ align-items: center;
3
+ width: 100%;
4
+ display: flex;
5
+ }
1
6
 
7
+ .track-BJK3T1 {
8
+ background: #fff3;
9
+ background-color: color-mix(in srgb, var(--wst-paragraph-2-color, #000) 20%, transparent);
10
+ flex: 1;
11
+ min-width: 0;
12
+ height: 6px;
13
+ position: relative;
14
+ }
15
+
16
+ .indicator-YaPgI9 {
17
+ background-color: var(--wst-links-and-actions-color, #116dff);
18
+ height: 100%;
19
+ transition: width .5s ease-in-out;
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ }
24
+
25
+ .value-Uz_0kH {
26
+ color: var(--wst-paragraph-2-color, #000);
27
+ flex-shrink: 0;
28
+ padding-inline-start: 8px;
29
+ font-size: 12px;
30
+ line-height: 1.4em;
31
+ }
32
+
33
+ .label-yJGBDG {
34
+ color: var(--wst-paragraph-2-color, #000);
35
+ flex-shrink: 0;
36
+ padding-inline-end: 8px;
37
+ font-size: 12px;
38
+ line-height: 1.4em;
39
+ }
2
40
 
@@ -2,7 +2,13 @@ import { jsx } from "react/jsx-runtime";
2
2
  import { Meter } from "@base-ui/react/meter";
3
3
  import clsx from "clsx";
4
4
  import * as __rspack_external_react from "react";
5
- const Meter_module = {};
5
+ const Meter_module = {
6
+ root: "root-bc9hfF",
7
+ track: "track-BJK3T1",
8
+ indicator: "indicator-YaPgI9",
9
+ value: "value-Uz_0kH",
10
+ label: "label-yJGBDG"
11
+ };
6
12
  const Root = /*#__PURE__*/ __rspack_external_react.forwardRef(({ className, ...props }, ref)=>/*#__PURE__*/ jsx(Meter.Root, {
7
13
  ref: ref,
8
14
  className: clsx(Meter_module.root, className),
@@ -1,2 +1,49 @@
1
+ .root-Gth795 {
2
+ position: relative;
3
+ }
1
4
 
5
+ .list-kus7O6 {
6
+ gap: 4px;
7
+ margin: 0;
8
+ padding: 0;
9
+ list-style: none;
10
+ display: flex;
11
+ }
12
+
13
+ .trigger-L7xhgv {
14
+ cursor: pointer;
15
+ font: var(--wst-paragraph-2-font);
16
+ color: var(--wst-paragraph-2-color);
17
+ background: none;
18
+ border: none;
19
+ border-radius: 6px;
20
+ padding: 8px 12px;
21
+ font-weight: 500;
22
+ }
23
+
24
+ .trigger-L7xhgv:hover {
25
+ background-color: color-mix(in srgb, var(--wst-paragraph-2-color) 6%, transparent);
26
+ }
27
+
28
+ .popup-jElt_o {
29
+ background-color: var(--wst-primary-background-color);
30
+ border: 1px solid color-mix(in srgb, var(--wst-paragraph-2-color) 15%, transparent);
31
+ border-radius: 8px;
32
+ min-width: 220px;
33
+ padding: 16px;
34
+ box-shadow: 0 4px 16px #0000001f;
35
+ }
36
+
37
+ .link-jrEqu4 {
38
+ color: var(--wst-paragraph-2-color);
39
+ font: var(--wst-paragraph-2-font);
40
+ border-radius: 4px;
41
+ padding: 6px 8px;
42
+ text-decoration: none;
43
+ display: block;
44
+ }
45
+
46
+ .link-jrEqu4:hover {
47
+ background-color: color-mix(in srgb, var(--wst-paragraph-2-color) 6%, transparent);
48
+ }
2
49
 
@@ -2,7 +2,13 @@ import { jsx } from "react/jsx-runtime";
2
2
  import { NavigationMenu } from "@base-ui/react/navigation-menu";
3
3
  import clsx from "clsx";
4
4
  import * as __rspack_external_react from "react";
5
- const NavigationMenu_module = {};
5
+ const NavigationMenu_module = {
6
+ root: "root-Gth795",
7
+ list: "list-kus7O6",
8
+ trigger: "trigger-L7xhgv",
9
+ popup: "popup-jElt_o",
10
+ link: "link-jrEqu4"
11
+ };
6
12
  const List = /*#__PURE__*/ __rspack_external_react.forwardRef(({ className, ...props }, ref)=>/*#__PURE__*/ jsx(NavigationMenu.List, {
7
13
  ref: ref,
8
14
  className: clsx(NavigationMenu_module.list, className),
@@ -1,2 +1,116 @@
1
+ .root-XA6trs {
2
+ flex-direction: column;
3
+ display: inline-flex;
4
+ }
1
5
 
6
+ .group-lqMZOf {
7
+ box-sizing: border-box;
8
+ border: 1px solid var(--wst-paragraph-2-color, #0009);
9
+ background-color: var(--wst-primary-background-color, #fff);
10
+ border-radius: 0;
11
+ align-items: center;
12
+ font-size: 16px;
13
+ line-height: 24px;
14
+ transition: border-color .1s ease-in;
15
+ display: flex;
16
+ }
17
+
18
+ .group-lqMZOf:hover, .group-lqMZOf:focus-within {
19
+ border-color: var(--wst-paragraph-2-color, #000);
20
+ }
21
+
22
+ .root-XA6trs[data-disabled] .group-lqMZOf {
23
+ background-color: var(--wst-primary-background-color, #fff);
24
+ border-color: #0009;
25
+ }
26
+
27
+ .root-XA6trs[data-invalid] .group-lqMZOf, .root-XA6trs[data-invalid] .group-lqMZOf:hover, .root-XA6trs[data-invalid] .group-lqMZOf:focus-within {
28
+ border-color: var(--wst-system-error-color, #df3131);
29
+ }
30
+
31
+ .input-BRhN7p {
32
+ box-sizing: border-box;
33
+ vertical-align: middle;
34
+ width: 100%;
35
+ min-width: 0;
36
+ color: var(--wst-paragraph-2-color, #000);
37
+ background-color: #0000;
38
+ border: 0;
39
+ outline: 0;
40
+ margin: 0;
41
+ padding-block: 8px;
42
+ padding-inline: 12px;
43
+ font-size: 16px;
44
+ line-height: 24px;
45
+ }
46
+
47
+ .group-lqMZOf:hover .input-BRhN7p, .group-lqMZOf:focus-within .input-BRhN7p {
48
+ color: var(--wst-paragraph-2-color, #000);
49
+ }
50
+
51
+ .root-XA6trs[data-disabled] .input-BRhN7p {
52
+ color: var(--wst-system-disabled-color, #ccc);
53
+ cursor: not-allowed;
54
+ }
55
+
56
+ .input-BRhN7p:focus {
57
+ outline: 0;
58
+ }
59
+
60
+ .input-BRhN7p::selection {
61
+ background: var(--wst-paragraph-2-color, #0003);
62
+ opacity: .2;
63
+ }
64
+
65
+ .input-BRhN7p::placeholder {
66
+ color: var(--wst-shade-3-color, #0006);
67
+ }
68
+
69
+ .root-XA6trs[data-disabled] .input-BRhN7p::placeholder {
70
+ color: var(--wst-system-disabled-color, #ccc);
71
+ }
72
+
73
+ .input-BRhN7p:-webkit-autofill {
74
+ -webkit-text-fill-color: var(--wst-paragraph-2-color, #000);
75
+ -webkit-box-shadow: 0 0 0 1.5em var(--wst-primary-background-color, #fff) inset !important;
76
+ }
77
+
78
+ .input-BRhN7p[type="number"]::-webkit-inner-spin-button, .input-BRhN7p[type="number"]::-webkit-outer-spin-button {
79
+ -webkit-appearance: none;
80
+ }
81
+
82
+ .input-BRhN7p[type="number"] {
83
+ appearance: textfield;
84
+ }
85
+
86
+ .increment-qnw0yh, .decrement-zkpqlA {
87
+ all: unset;
88
+ cursor: pointer;
89
+ color: var(--wst-paragraph-2-color);
90
+ font: var(--wst-paragraph-2-font);
91
+ border-inline-start: 1px solid color-mix(in srgb, var(--wst-paragraph-2-color) 20%, transparent);
92
+ justify-content: center;
93
+ align-self: stretch;
94
+ align-items: center;
95
+ padding: 0 10px;
96
+ display: flex;
97
+ }
98
+
99
+ .decrement-zkpqlA {
100
+ border-inline-start: none;
101
+ border-inline-end: 1px solid color-mix(in srgb, var(--wst-paragraph-2-color) 20%, transparent);
102
+ }
103
+
104
+ .increment-qnw0yh:hover, .decrement-zkpqlA:hover {
105
+ opacity: .7;
106
+ }
107
+
108
+ .root-XA6trs[data-disabled] .increment-qnw0yh, .root-XA6trs[data-disabled] .decrement-zkpqlA {
109
+ color: var(--wst-system-disabled-color, #ccc);
110
+ cursor: not-allowed;
111
+ }
112
+
113
+ .scrubArea-XsXHM_ {
114
+ cursor: ew-resize;
115
+ }
2
116
 
@@ -2,7 +2,14 @@ import { jsx } from "react/jsx-runtime";
2
2
  import { NumberField } from "@base-ui/react/number-field";
3
3
  import clsx from "clsx";
4
4
  import * as __rspack_external_react from "react";
5
- const NumberField_module = {};
5
+ const NumberField_module = {
6
+ root: "root-XA6trs",
7
+ group: "group-lqMZOf",
8
+ input: "input-BRhN7p",
9
+ increment: "increment-qnw0yh",
10
+ decrement: "decrement-zkpqlA",
11
+ scrubArea: "scrubArea-XsXHM_"
12
+ };
6
13
  const Root = /*#__PURE__*/ __rspack_external_react.forwardRef(({ className, ...props }, ref)=>/*#__PURE__*/ jsx(NumberField.Root, {
7
14
  ref: ref,
8
15
  className: clsx(NumberField_module.root, className),
@@ -1,2 +1,90 @@
1
+ .popup-Wrjs4v {
2
+ padding: var(--wst-popover-padding, 20px);
3
+ background-color: var(--wst-primary-background-color, #fff);
4
+ border: 0;
5
+ border-color: var(--wst-primary-background-color, #fff6);
6
+ border-radius: var(--wst-popover-border-radius, 0px);
7
+ border-style: solid;
8
+ border-width: 1px;
9
+ min-width: 40px;
10
+ max-width: 320px;
11
+ min-height: 20px;
12
+ box-shadow: 0 4px 8px #0000001f, 0 0 4px #0000001a;
13
+ }
1
14
 
15
+ .arrow-FmdRXW {
16
+ border-color: #0000;
17
+ }
18
+
19
+ .arrow-FmdRXW:after, .arrow-FmdRXW:before {
20
+ content: "";
21
+ background: none;
22
+ position: absolute;
23
+ inset: 0;
24
+ transform: rotate(45deg);
25
+ }
26
+
27
+ .arrow-FmdRXW:before {
28
+ z-index: -1;
29
+ }
30
+
31
+ .positioner-t0X5uo[data-side="right"] .arrow-FmdRXW {
32
+ border-right-color: var(--wst-primary-background-color, #fff);
33
+ }
34
+
35
+ .positioner-t0X5uo[data-side="left"] .arrow-FmdRXW {
36
+ border-left-color: var(--wst-primary-background-color, #fff);
37
+ }
38
+
39
+ .positioner-t0X5uo[data-side="bottom"] .arrow-FmdRXW {
40
+ border-bottom-color: var(--wst-primary-background-color, #fff);
41
+ }
42
+
43
+ .positioner-t0X5uo[data-side="top"] .arrow-FmdRXW {
44
+ border-top-color: var(--wst-primary-background-color, #fff);
45
+ }
46
+
47
+ .positioner-t0X5uo[data-side="right"] .arrow-FmdRXW:before {
48
+ box-shadow: 5px -5px 0 6px var(--wst-primary-background-color, #fff6);
49
+ }
50
+
51
+ .positioner-t0X5uo[data-side="right"] .arrow-FmdRXW:after {
52
+ box-shadow: 5px -5px 0 5px var(--wst-primary-background-color, #fff);
53
+ }
54
+
55
+ .positioner-t0X5uo[data-side="left"] .arrow-FmdRXW:before {
56
+ box-shadow: -5px 5px 0 6px var(--wst-primary-background-color, #fff6);
57
+ }
58
+
59
+ .positioner-t0X5uo[data-side="left"] .arrow-FmdRXW:after {
60
+ box-shadow: -5px 5px 0 5px var(--wst-primary-background-color, #fff);
61
+ }
62
+
63
+ .positioner-t0X5uo[data-side="top"] .arrow-FmdRXW:before {
64
+ box-shadow: -5px -5px 0 6px var(--wst-primary-background-color, #fff6);
65
+ }
66
+
67
+ .positioner-t0X5uo[data-side="top"] .arrow-FmdRXW:after {
68
+ box-shadow: -5px -5px 0 5px var(--wst-primary-background-color, #fff);
69
+ }
70
+
71
+ .positioner-t0X5uo[data-side="bottom"] .arrow-FmdRXW:before {
72
+ box-shadow: 5px 5px 0 6px var(--wst-primary-background-color, #fff6);
73
+ }
74
+
75
+ .positioner-t0X5uo[data-side="bottom"] .arrow-FmdRXW:after {
76
+ box-shadow: 5px 5px 0 5px var(--wst-primary-background-color, #fff);
77
+ }
78
+
79
+ .title-kQ490g {
80
+ font: var(--wst-heading-6-font);
81
+ color: var(--wst-heading-6-color);
82
+ margin: 0 0 4px;
83
+ }
84
+
85
+ .description-IgC4Ak {
86
+ font: var(--wst-paragraph-3-font);
87
+ color: var(--wst-paragraph-3-color);
88
+ margin: 0 0 12px;
89
+ }
2
90
 
@@ -2,7 +2,13 @@ import { jsx } from "react/jsx-runtime";
2
2
  import { Popover } from "@base-ui/react/popover";
3
3
  import clsx from "clsx";
4
4
  import * as __rspack_external_react from "react";
5
- const Popover_module = {};
5
+ const Popover_module = {
6
+ popup: "popup-Wrjs4v",
7
+ arrow: "arrow-FmdRXW",
8
+ positioner: "positioner-t0X5uo",
9
+ title: "title-kQ490g",
10
+ description: "description-IgC4Ak"
11
+ };
6
12
  const Positioner = /*#__PURE__*/ __rspack_external_react.forwardRef(({ className, ...props }, ref)=>/*#__PURE__*/ jsx(Popover.Positioner, {
7
13
  ref: ref,
8
14
  className: clsx(Popover_module.positioner, className),