@seed-design/css 1.0.7 → 1.1.3

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 (78) hide show
  1. package/all.css +907 -474
  2. package/all.min.css +1 -1
  3. package/base.css +32 -0
  4. package/base.min.css +1 -1
  5. package/package.json +1 -1
  6. package/recipes/action-button.css +8 -1
  7. package/recipes/action-sheet.css +8 -2
  8. package/recipes/app-bar.css +8 -1
  9. package/recipes/app-screen.css +16 -0
  10. package/recipes/app-screen.d.ts +4 -0
  11. package/recipes/app-screen.mjs +6 -1
  12. package/recipes/bottom-sheet-handle.css +24 -0
  13. package/recipes/bottom-sheet-handle.d.ts +21 -0
  14. package/recipes/bottom-sheet-handle.mjs +36 -0
  15. package/recipes/bottom-sheet.css +67 -35
  16. package/recipes/callout.css +1 -0
  17. package/recipes/dialog.css +8 -2
  18. package/recipes/extended-action-sheet.css +8 -2
  19. package/recipes/field-label.css +29 -0
  20. package/recipes/field-label.d.ts +24 -0
  21. package/recipes/field-label.mjs +47 -0
  22. package/recipes/field.css +63 -0
  23. package/recipes/field.d.ts +21 -0
  24. package/recipes/field.mjs +60 -0
  25. package/recipes/input-button.css +103 -0
  26. package/recipes/input-button.d.ts +21 -0
  27. package/recipes/input-button.mjs +64 -0
  28. package/recipes/list-header.css +1 -0
  29. package/recipes/list-item.css +13 -3
  30. package/recipes/menu-sheet-item.css +3 -0
  31. package/recipes/menu-sheet.css +12 -2
  32. package/recipes/page-banner.css +5 -4
  33. package/recipes/page-banner.d.ts +1 -1
  34. package/recipes/page-banner.mjs +6 -2
  35. package/recipes/scroll-fog.css +23 -0
  36. package/recipes/scroll-fog.d.ts +22 -0
  37. package/recipes/scroll-fog.mjs +28 -0
  38. package/recipes/slider-marker.css +42 -0
  39. package/recipes/slider-marker.d.ts +22 -0
  40. package/recipes/slider-marker.mjs +30 -0
  41. package/recipes/slider-tick.css +19 -0
  42. package/recipes/slider-tick.d.ts +22 -0
  43. package/recipes/slider-tick.mjs +29 -0
  44. package/recipes/slider.css +174 -0
  45. package/recipes/slider.d.ts +21 -0
  46. package/recipes/slider.mjs +68 -0
  47. package/recipes/text-input.css +194 -0
  48. package/recipes/text-input.d.ts +28 -0
  49. package/recipes/text-input.mjs +73 -0
  50. package/vars/component/bottom-sheet-handle.d.ts +24 -0
  51. package/vars/component/bottom-sheet-handle.mjs +24 -0
  52. package/vars/component/bottom-sheet.d.ts +2 -2
  53. package/vars/component/bottom-sheet.mjs +2 -2
  54. package/vars/component/field-label.d.ts +25 -0
  55. package/vars/component/field-label.mjs +25 -0
  56. package/vars/component/field.d.ts +72 -0
  57. package/vars/component/field.mjs +72 -0
  58. package/vars/component/index.d.ts +9 -1
  59. package/vars/component/index.mjs +9 -1
  60. package/vars/component/input-button.d.ts +78 -0
  61. package/vars/component/input-button.mjs +78 -0
  62. package/vars/component/page-banner.d.ts +1 -1
  63. package/vars/component/page-banner.mjs +1 -1
  64. package/vars/component/scroll-fog.d.ts +11 -0
  65. package/vars/component/scroll-fog.mjs +11 -0
  66. package/vars/component/slider-thumb.d.ts +25 -0
  67. package/vars/component/slider-thumb.mjs +25 -0
  68. package/vars/component/slider-tick.d.ts +23 -0
  69. package/vars/component/slider-tick.mjs +23 -0
  70. package/vars/component/slider.d.ts +74 -0
  71. package/vars/component/slider.mjs +74 -0
  72. package/vars/component/text-input.d.ts +212 -0
  73. package/vars/component/text-input.mjs +212 -0
  74. package/recipes/text-field.css +0 -385
  75. package/recipes/text-field.d.ts +0 -24
  76. package/recipes/text-field.mjs +0 -104
  77. package/vars/component/text-field.d.ts +0 -294
  78. package/vars/component/text-field.mjs +0 -294
@@ -0,0 +1,73 @@
1
+ import './text-input.css';
2
+ import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
3
+
4
+ const textInputSlotNames = [
5
+ [
6
+ "root",
7
+ "seed-text-input__root"
8
+ ],
9
+ [
10
+ "value",
11
+ "seed-text-input__value"
12
+ ],
13
+ [
14
+ "prefixText",
15
+ "seed-text-input__prefixText"
16
+ ],
17
+ [
18
+ "prefixIcon",
19
+ "seed-text-input__prefixIcon"
20
+ ],
21
+ [
22
+ "suffixText",
23
+ "seed-text-input__suffixText"
24
+ ],
25
+ [
26
+ "suffixIcon",
27
+ "seed-text-input__suffixIcon"
28
+ ]
29
+ ];
30
+
31
+ const defaultVariant = {
32
+ "variant": "outline",
33
+ "size": "large"
34
+ };
35
+
36
+ const compoundVariants = [
37
+ {
38
+ "variant": "outline",
39
+ "size": "large"
40
+ },
41
+ {
42
+ "variant": "outline",
43
+ "size": "medium"
44
+ }
45
+ ];
46
+
47
+ export const textInputVariantMap = {
48
+ "variant": [
49
+ "outline",
50
+ "underline"
51
+ ],
52
+ "size": [
53
+ "large",
54
+ "medium"
55
+ ]
56
+ };
57
+
58
+ export const textInputVariantKeys = Object.keys(textInputVariantMap);
59
+
60
+ export function textInput(props) {
61
+ return Object.fromEntries(
62
+ textInputSlotNames.map(([slot, className]) => {
63
+ return [
64
+ slot,
65
+ createClassName(className, mergeVariants(defaultVariant, props), compoundVariants),
66
+ ];
67
+ }),
68
+ );
69
+ }
70
+
71
+ Object.assign(textInput, { splitVariantProps: (props) => splitVariantProps(props, textInputVariantMap) });
72
+
73
+ // @recipe(seed): text-input
@@ -0,0 +1,24 @@
1
+ export declare const vars: {
2
+ "base": {
3
+ "enabled": {
4
+ "root": {
5
+ "fromTop": "6px",
6
+ "width": "36px",
7
+ "height": "4px",
8
+ "color": "var(--seed-color-palette-gray-400)",
9
+ "borderRadius": "9999px",
10
+ "colorDuration": "var(--seed-duration-d4)",
11
+ "colorTimingFunction": "var(--seed-timing-function-easing)"
12
+ },
13
+ "touchArea": {
14
+ "width": "44px",
15
+ "height": "44px"
16
+ }
17
+ },
18
+ "pressed": {
19
+ "root": {
20
+ "color": "var(--seed-color-palette-gray-500)"
21
+ }
22
+ }
23
+ }
24
+ }
@@ -0,0 +1,24 @@
1
+ export const vars = {
2
+ "base": {
3
+ "enabled": {
4
+ "root": {
5
+ "fromTop": "6px",
6
+ "width": "36px",
7
+ "height": "4px",
8
+ "color": "var(--seed-color-palette-gray-400)",
9
+ "borderRadius": "9999px",
10
+ "colorDuration": "var(--seed-duration-d4)",
11
+ "colorTimingFunction": "var(--seed-timing-function-easing)"
12
+ },
13
+ "touchArea": {
14
+ "width": "44px",
15
+ "height": "44px"
16
+ }
17
+ },
18
+ "pressed": {
19
+ "root": {
20
+ "color": "var(--seed-color-palette-gray-500)"
21
+ }
22
+ }
23
+ }
24
+ }
@@ -3,10 +3,10 @@ export declare const vars: {
3
3
  "enabled": {
4
4
  "backdrop": {
5
5
  "color": "var(--seed-color-bg-overlay)",
6
- "enterDuration": "var(--seed-duration-d2)",
6
+ "enterDuration": "var(--seed-duration-d6)",
7
7
  "enterTimingFunction": "var(--seed-timing-function-enter)",
8
8
  "enterOpacity": "0",
9
- "exitDuration": "var(--seed-duration-d2)",
9
+ "exitDuration": "var(--seed-duration-d4)",
10
10
  "exitTimingFunction": "var(--seed-timing-function-exit)",
11
11
  "exitOpacity": "0"
12
12
  },
@@ -3,10 +3,10 @@ export const vars = {
3
3
  "enabled": {
4
4
  "backdrop": {
5
5
  "color": "var(--seed-color-bg-overlay)",
6
- "enterDuration": "var(--seed-duration-d2)",
6
+ "enterDuration": "var(--seed-duration-d6)",
7
7
  "enterTimingFunction": "var(--seed-timing-function-enter)",
8
8
  "enterOpacity": "0",
9
- "exitDuration": "var(--seed-duration-d2)",
9
+ "exitDuration": "var(--seed-duration-d4)",
10
10
  "exitTimingFunction": "var(--seed-timing-function-exit)",
11
11
  "exitOpacity": "0"
12
12
  },
@@ -0,0 +1,25 @@
1
+ export declare const vars: {
2
+ "base": {
3
+ "enabled": {
4
+ "root": {
5
+ "color": "var(--seed-color-fg-neutral)",
6
+ "fontSize": "var(--seed-font-size-t5)",
7
+ "lineHeight": "var(--seed-line-height-t5)"
8
+ }
9
+ }
10
+ },
11
+ "weightMedium": {
12
+ "enabled": {
13
+ "root": {
14
+ "fontWeight": "var(--seed-font-weight-medium)"
15
+ }
16
+ }
17
+ },
18
+ "weightBold": {
19
+ "enabled": {
20
+ "root": {
21
+ "fontWeight": "var(--seed-font-weight-bold)"
22
+ }
23
+ }
24
+ }
25
+ }
@@ -0,0 +1,25 @@
1
+ export const vars = {
2
+ "base": {
3
+ "enabled": {
4
+ "root": {
5
+ "color": "var(--seed-color-fg-neutral)",
6
+ "fontSize": "var(--seed-font-size-t5)",
7
+ "lineHeight": "var(--seed-line-height-t5)"
8
+ }
9
+ }
10
+ },
11
+ "weightMedium": {
12
+ "enabled": {
13
+ "root": {
14
+ "fontWeight": "var(--seed-font-weight-medium)"
15
+ }
16
+ }
17
+ },
18
+ "weightBold": {
19
+ "enabled": {
20
+ "root": {
21
+ "fontWeight": "var(--seed-font-weight-bold)"
22
+ }
23
+ }
24
+ }
25
+ }
@@ -0,0 +1,72 @@
1
+ export declare const vars: {
2
+ "base": {
3
+ "enabled": {
4
+ "root": {
5
+ "gap": "var(--seed-dimension-x2)"
6
+ },
7
+ "header": {
8
+ "paddingX": "var(--seed-dimension-x0_5)",
9
+ "gap": "var(--seed-dimension-x2_5)"
10
+ },
11
+ "indicatorIcon": {
12
+ "color": "var(--seed-color-fg-critical)",
13
+ "size": "0.375rem",
14
+ "paddingTop": "0.25rem",
15
+ "paddingLeft": "0.125rem"
16
+ },
17
+ "indicatorText": {
18
+ "color": "var(--seed-color-fg-neutral-subtle)",
19
+ "fontSize": "var(--seed-font-size-t4)",
20
+ "lineHeight": "var(--seed-line-height-t5)",
21
+ "fontWeight": "var(--seed-font-weight-regular)",
22
+ "paddingLeft": "0.25rem"
23
+ },
24
+ "footer": {
25
+ "paddingX": "var(--seed-dimension-x0_5)",
26
+ "gap": "var(--seed-dimension-x2)"
27
+ },
28
+ "description": {
29
+ "color": "var(--seed-color-fg-neutral-subtle)",
30
+ "fontWeight": "var(--seed-font-weight-regular)",
31
+ "fontSize": "var(--seed-font-size-t4)",
32
+ "lineHeight": "var(--seed-line-height-t4)"
33
+ },
34
+ "descriptionIcon": {
35
+ "paddingRight": "var(--seed-dimension-x1_5)",
36
+ "color": "var(--seed-color-fg-neutral-subtle)",
37
+ "size": "var(--seed-dimension-x4)"
38
+ },
39
+ "errorMessage": {
40
+ "color": "var(--seed-color-fg-critical)",
41
+ "fontWeight": "var(--seed-font-weight-regular)",
42
+ "fontSize": "var(--seed-font-size-t4)",
43
+ "lineHeight": "var(--seed-line-height-t4)"
44
+ },
45
+ "errorIcon": {
46
+ "paddingRight": "var(--seed-dimension-x1_5)",
47
+ "color": "var(--seed-color-fg-critical)",
48
+ "size": "var(--seed-dimension-x4)"
49
+ },
50
+ "characterCount": {
51
+ "color": "var(--seed-color-fg-neutral)",
52
+ "fontWeight": "var(--seed-font-weight-regular)",
53
+ "fontSize": "var(--seed-font-size-t4)",
54
+ "lineHeight": "var(--seed-line-height-t4)"
55
+ },
56
+ "maxCharacterCount": {
57
+ "color": "var(--seed-color-fg-neutral-subtle)",
58
+ "fontWeight": "var(--seed-font-weight-regular)",
59
+ "fontSize": "var(--seed-font-size-t4)",
60
+ "lineHeight": "var(--seed-line-height-t4)"
61
+ }
62
+ },
63
+ "invalid": {
64
+ "characterCount": {
65
+ "color": "var(--seed-color-fg-critical)"
66
+ },
67
+ "maxCharacterCount": {
68
+ "color": "var(--seed-color-fg-critical)"
69
+ }
70
+ }
71
+ }
72
+ }
@@ -0,0 +1,72 @@
1
+ export const vars = {
2
+ "base": {
3
+ "enabled": {
4
+ "root": {
5
+ "gap": "var(--seed-dimension-x2)"
6
+ },
7
+ "header": {
8
+ "paddingX": "var(--seed-dimension-x0_5)",
9
+ "gap": "var(--seed-dimension-x2_5)"
10
+ },
11
+ "indicatorIcon": {
12
+ "color": "var(--seed-color-fg-critical)",
13
+ "size": "0.375rem",
14
+ "paddingTop": "0.25rem",
15
+ "paddingLeft": "0.125rem"
16
+ },
17
+ "indicatorText": {
18
+ "color": "var(--seed-color-fg-neutral-subtle)",
19
+ "fontSize": "var(--seed-font-size-t4)",
20
+ "lineHeight": "var(--seed-line-height-t5)",
21
+ "fontWeight": "var(--seed-font-weight-regular)",
22
+ "paddingLeft": "0.25rem"
23
+ },
24
+ "footer": {
25
+ "paddingX": "var(--seed-dimension-x0_5)",
26
+ "gap": "var(--seed-dimension-x2)"
27
+ },
28
+ "description": {
29
+ "color": "var(--seed-color-fg-neutral-subtle)",
30
+ "fontWeight": "var(--seed-font-weight-regular)",
31
+ "fontSize": "var(--seed-font-size-t4)",
32
+ "lineHeight": "var(--seed-line-height-t4)"
33
+ },
34
+ "descriptionIcon": {
35
+ "paddingRight": "var(--seed-dimension-x1_5)",
36
+ "color": "var(--seed-color-fg-neutral-subtle)",
37
+ "size": "var(--seed-dimension-x4)"
38
+ },
39
+ "errorMessage": {
40
+ "color": "var(--seed-color-fg-critical)",
41
+ "fontWeight": "var(--seed-font-weight-regular)",
42
+ "fontSize": "var(--seed-font-size-t4)",
43
+ "lineHeight": "var(--seed-line-height-t4)"
44
+ },
45
+ "errorIcon": {
46
+ "paddingRight": "var(--seed-dimension-x1_5)",
47
+ "color": "var(--seed-color-fg-critical)",
48
+ "size": "var(--seed-dimension-x4)"
49
+ },
50
+ "characterCount": {
51
+ "color": "var(--seed-color-fg-neutral)",
52
+ "fontWeight": "var(--seed-font-weight-regular)",
53
+ "fontSize": "var(--seed-font-size-t4)",
54
+ "lineHeight": "var(--seed-line-height-t4)"
55
+ },
56
+ "maxCharacterCount": {
57
+ "color": "var(--seed-color-fg-neutral-subtle)",
58
+ "fontWeight": "var(--seed-font-weight-regular)",
59
+ "fontSize": "var(--seed-font-size-t4)",
60
+ "lineHeight": "var(--seed-line-height-t4)"
61
+ }
62
+ },
63
+ "invalid": {
64
+ "characterCount": {
65
+ "color": "var(--seed-color-fg-critical)"
66
+ },
67
+ "maxCharacterCount": {
68
+ "color": "var(--seed-color-fg-critical)"
69
+ }
70
+ }
71
+ }
72
+ }
@@ -7,6 +7,7 @@ export { vars as avatarStack } from "./avatar-stack";
7
7
  export { vars as avatar } from "./avatar";
8
8
  export { vars as badge } from "./badge";
9
9
  export { vars as bottomSheetCloseButton } from "./bottom-sheet-close-button";
10
+ export { vars as bottomSheetHandle } from "./bottom-sheet-handle";
10
11
  export { vars as bottomSheet } from "./bottom-sheet";
11
12
  export { vars as callout } from "./callout";
12
13
  export { vars as checkbox } from "./checkbox";
@@ -23,10 +24,13 @@ export { vars as extendedActionSheetItem } from "./extended-action-sheet-item";
23
24
  export { vars as extendedActionSheet } from "./extended-action-sheet";
24
25
  export { vars as extendedFab } from "./extended-fab";
25
26
  export { vars as fab } from "./fab";
27
+ export { vars as fieldLabel } from "./field-label";
28
+ export { vars as field } from "./field";
26
29
  export { vars as floatingActionButton } from "./floating-action-button";
27
30
  export { vars as helpBubble } from "./help-bubble";
28
31
  export { vars as identityPlaceholder } from "./identity-placeholder";
29
32
  export { vars as inlineBanner } from "./inline-banner";
33
+ export { vars as inputButton } from "./input-button";
30
34
  export { vars as linkContent } from "./link-content";
31
35
  export { vars as listHeader } from "./list-header";
32
36
  export { vars as listItem } from "./list-item";
@@ -41,10 +45,14 @@ export { vars as progressCircle } from "./progress-circle";
41
45
  export { vars as radio } from "./radio";
42
46
  export { vars as radiomark } from "./radiomark";
43
47
  export { vars as reactionButton } from "./reaction-button";
48
+ export { vars as scrollFog } from "./scroll-fog";
44
49
  export { vars as segmentedControlItem } from "./segmented-control-item";
45
50
  export { vars as segmentedControl } from "./segmented-control";
46
51
  export { vars as selectBox } from "./select-box";
47
52
  export { vars as skeleton } from "./skeleton";
53
+ export { vars as sliderThumb } from "./slider-thumb";
54
+ export { vars as sliderTick } from "./slider-tick";
55
+ export { vars as slider } from "./slider";
48
56
  export { vars as snackbar } from "./snackbar";
49
57
  export { vars as switchMark } from "./switch-mark";
50
58
  export { vars as switch } from "./switch";
@@ -53,7 +61,7 @@ export { vars as tablist } from "./tablist";
53
61
  export { vars as tagGroupItem } from "./tag-group-item";
54
62
  export { vars as tagGroup } from "./tag-group";
55
63
  export { vars as textButton } from "./text-button";
56
- export { vars as textField } from "./text-field";
64
+ export { vars as textInput } from "./text-input";
57
65
  export { vars as toggleButton } from "./toggle-button";
58
66
  export { vars as topNavigation } from "./top-navigation";
59
67
  export { vars as typography } from "./typography";
@@ -7,6 +7,7 @@ export { vars as avatarStack } from "./avatar-stack.mjs";
7
7
  export { vars as avatar } from "./avatar.mjs";
8
8
  export { vars as badge } from "./badge.mjs";
9
9
  export { vars as bottomSheetCloseButton } from "./bottom-sheet-close-button.mjs";
10
+ export { vars as bottomSheetHandle } from "./bottom-sheet-handle.mjs";
10
11
  export { vars as bottomSheet } from "./bottom-sheet.mjs";
11
12
  export { vars as callout } from "./callout.mjs";
12
13
  export { vars as checkbox } from "./checkbox.mjs";
@@ -23,10 +24,13 @@ export { vars as extendedActionSheetItem } from "./extended-action-sheet-item.mj
23
24
  export { vars as extendedActionSheet } from "./extended-action-sheet.mjs";
24
25
  export { vars as extendedFab } from "./extended-fab.mjs";
25
26
  export { vars as fab } from "./fab.mjs";
27
+ export { vars as fieldLabel } from "./field-label.mjs";
28
+ export { vars as field } from "./field.mjs";
26
29
  export { vars as floatingActionButton } from "./floating-action-button.mjs";
27
30
  export { vars as helpBubble } from "./help-bubble.mjs";
28
31
  export { vars as identityPlaceholder } from "./identity-placeholder.mjs";
29
32
  export { vars as inlineBanner } from "./inline-banner.mjs";
33
+ export { vars as inputButton } from "./input-button.mjs";
30
34
  export { vars as linkContent } from "./link-content.mjs";
31
35
  export { vars as listHeader } from "./list-header.mjs";
32
36
  export { vars as listItem } from "./list-item.mjs";
@@ -41,10 +45,14 @@ export { vars as progressCircle } from "./progress-circle.mjs";
41
45
  export { vars as radio } from "./radio.mjs";
42
46
  export { vars as radiomark } from "./radiomark.mjs";
43
47
  export { vars as reactionButton } from "./reaction-button.mjs";
48
+ export { vars as scrollFog } from "./scroll-fog.mjs";
44
49
  export { vars as segmentedControlItem } from "./segmented-control-item.mjs";
45
50
  export { vars as segmentedControl } from "./segmented-control.mjs";
46
51
  export { vars as selectBox } from "./select-box.mjs";
47
52
  export { vars as skeleton } from "./skeleton.mjs";
53
+ export { vars as sliderThumb } from "./slider-thumb.mjs";
54
+ export { vars as sliderTick } from "./slider-tick.mjs";
55
+ export { vars as slider } from "./slider.mjs";
48
56
  export { vars as snackbar } from "./snackbar.mjs";
49
57
  export { vars as switchMark } from "./switch-mark.mjs";
50
58
  export { vars as switch } from "./switch.mjs";
@@ -53,7 +61,7 @@ export { vars as tablist } from "./tablist.mjs";
53
61
  export { vars as tagGroupItem } from "./tag-group-item.mjs";
54
62
  export { vars as tagGroup } from "./tag-group.mjs";
55
63
  export { vars as textButton } from "./text-button.mjs";
56
- export { vars as textField } from "./text-field.mjs";
64
+ export { vars as textInput } from "./text-input.mjs";
57
65
  export { vars as toggleButton } from "./toggle-button.mjs";
58
66
  export { vars as topNavigation } from "./top-navigation.mjs";
59
67
  export { vars as typography } from "./typography.mjs";
@@ -0,0 +1,78 @@
1
+ export declare const vars: {
2
+ "base": {
3
+ "enabled": {
4
+ "root": {
5
+ "height": "var(--seed-dimension-x13)",
6
+ "cornerRadius": "var(--seed-radius-r3)",
7
+ "gap": "var(--seed-dimension-x2_5)",
8
+ "paddingX": "var(--seed-dimension-x4)",
9
+ "strokeWidth": "1px",
10
+ "strokeColor": "var(--seed-color-stroke-neutral-weak)",
11
+ "colorDuration": "var(--seed-duration-d3)",
12
+ "colorTimingFunction": "var(--seed-timing-function-easing)",
13
+ "strokeColorDuration": "var(--seed-duration-d3)",
14
+ "strokeColorTimingFunction": "var(--seed-timing-function-easing)",
15
+ "strokeWidthDuration": "var(--seed-duration-d3)",
16
+ "strokeWidthTimingFunction": "var(--seed-timing-function-easing)"
17
+ },
18
+ "value": {
19
+ "fontSize": "var(--seed-font-size-t5)",
20
+ "lineHeight": "var(--seed-line-height-t5)",
21
+ "fontWeight": "var(--seed-font-weight-regular)",
22
+ "color": "var(--seed-color-fg-neutral)"
23
+ },
24
+ "placeholder": {
25
+ "fontSize": "var(--seed-font-size-t5)",
26
+ "lineHeight": "var(--seed-line-height-t5)",
27
+ "fontWeight": "var(--seed-font-weight-regular)",
28
+ "color": "var(--seed-color-fg-placeholder)"
29
+ },
30
+ "prefixText": {
31
+ "fontSize": "var(--seed-font-size-t5)",
32
+ "lineHeight": "var(--seed-line-height-t5)",
33
+ "fontWeight": "var(--seed-font-weight-regular)",
34
+ "color": "var(--seed-color-fg-neutral-muted)"
35
+ },
36
+ "prefixIcon": {
37
+ "size": "var(--seed-dimension-x5)",
38
+ "color": "var(--seed-color-fg-neutral-muted)"
39
+ },
40
+ "suffixText": {
41
+ "fontSize": "var(--seed-font-size-t5)",
42
+ "lineHeight": "var(--seed-line-height-t5)",
43
+ "fontWeight": "var(--seed-font-weight-regular)",
44
+ "color": "var(--seed-color-fg-neutral-muted)"
45
+ },
46
+ "suffixIcon": {
47
+ "size": "var(--seed-dimension-x5)",
48
+ "color": "var(--seed-color-fg-neutral-muted)"
49
+ },
50
+ "clearButton": {
51
+ "size": "22px",
52
+ "color": "var(--seed-color-fg-neutral-subtle)"
53
+ }
54
+ },
55
+ "pressed": {
56
+ "root": {
57
+ "color": "var(--seed-color-bg-layer-default-pressed)"
58
+ }
59
+ },
60
+ "invalid": {
61
+ "root": {
62
+ "strokeWidth": "2px",
63
+ "strokeColor": "var(--seed-color-stroke-critical-solid)"
64
+ }
65
+ },
66
+ "disabled": {
67
+ "root": {
68
+ "color": "var(--seed-color-bg-disabled)"
69
+ },
70
+ "value": {
71
+ "color": "var(--seed-color-fg-disabled)"
72
+ },
73
+ "placeholder": {
74
+ "color": "var(--seed-color-fg-disabled)"
75
+ }
76
+ }
77
+ }
78
+ }
@@ -0,0 +1,78 @@
1
+ export const vars = {
2
+ "base": {
3
+ "enabled": {
4
+ "root": {
5
+ "height": "var(--seed-dimension-x13)",
6
+ "cornerRadius": "var(--seed-radius-r3)",
7
+ "gap": "var(--seed-dimension-x2_5)",
8
+ "paddingX": "var(--seed-dimension-x4)",
9
+ "strokeWidth": "1px",
10
+ "strokeColor": "var(--seed-color-stroke-neutral-weak)",
11
+ "colorDuration": "var(--seed-duration-d3)",
12
+ "colorTimingFunction": "var(--seed-timing-function-easing)",
13
+ "strokeColorDuration": "var(--seed-duration-d3)",
14
+ "strokeColorTimingFunction": "var(--seed-timing-function-easing)",
15
+ "strokeWidthDuration": "var(--seed-duration-d3)",
16
+ "strokeWidthTimingFunction": "var(--seed-timing-function-easing)"
17
+ },
18
+ "value": {
19
+ "fontSize": "var(--seed-font-size-t5)",
20
+ "lineHeight": "var(--seed-line-height-t5)",
21
+ "fontWeight": "var(--seed-font-weight-regular)",
22
+ "color": "var(--seed-color-fg-neutral)"
23
+ },
24
+ "placeholder": {
25
+ "fontSize": "var(--seed-font-size-t5)",
26
+ "lineHeight": "var(--seed-line-height-t5)",
27
+ "fontWeight": "var(--seed-font-weight-regular)",
28
+ "color": "var(--seed-color-fg-placeholder)"
29
+ },
30
+ "prefixText": {
31
+ "fontSize": "var(--seed-font-size-t5)",
32
+ "lineHeight": "var(--seed-line-height-t5)",
33
+ "fontWeight": "var(--seed-font-weight-regular)",
34
+ "color": "var(--seed-color-fg-neutral-muted)"
35
+ },
36
+ "prefixIcon": {
37
+ "size": "var(--seed-dimension-x5)",
38
+ "color": "var(--seed-color-fg-neutral-muted)"
39
+ },
40
+ "suffixText": {
41
+ "fontSize": "var(--seed-font-size-t5)",
42
+ "lineHeight": "var(--seed-line-height-t5)",
43
+ "fontWeight": "var(--seed-font-weight-regular)",
44
+ "color": "var(--seed-color-fg-neutral-muted)"
45
+ },
46
+ "suffixIcon": {
47
+ "size": "var(--seed-dimension-x5)",
48
+ "color": "var(--seed-color-fg-neutral-muted)"
49
+ },
50
+ "clearButton": {
51
+ "size": "22px",
52
+ "color": "var(--seed-color-fg-neutral-subtle)"
53
+ }
54
+ },
55
+ "pressed": {
56
+ "root": {
57
+ "color": "var(--seed-color-bg-layer-default-pressed)"
58
+ }
59
+ },
60
+ "invalid": {
61
+ "root": {
62
+ "strokeWidth": "2px",
63
+ "strokeColor": "var(--seed-color-stroke-critical-solid)"
64
+ }
65
+ },
66
+ "disabled": {
67
+ "root": {
68
+ "color": "var(--seed-color-bg-disabled)"
69
+ },
70
+ "value": {
71
+ "color": "var(--seed-color-fg-disabled)"
72
+ },
73
+ "placeholder": {
74
+ "color": "var(--seed-color-fg-disabled)"
75
+ }
76
+ }
77
+ }
78
+ }
@@ -10,7 +10,7 @@ export declare const vars: {
10
10
  "size": "var(--seed-dimension-x4)",
11
11
  "marginRight": "var(--seed-dimension-x2)"
12
12
  },
13
- "textContent": {
13
+ "content": {
14
14
  "gap": "var(--seed-dimension-x1_5)"
15
15
  },
16
16
  "title": {
@@ -10,7 +10,7 @@ export const vars = {
10
10
  "size": "var(--seed-dimension-x4)",
11
11
  "marginRight": "var(--seed-dimension-x2)"
12
12
  },
13
- "textContent": {
13
+ "content": {
14
14
  "gap": "var(--seed-dimension-x1_5)"
15
15
  },
16
16
  "title": {
@@ -0,0 +1,11 @@
1
+ export declare const vars: {
2
+ "base": {
3
+ "enabled": {
4
+ "root": {
5
+ "fromColor": "#00000000",
6
+ "toColor": "#000000ff",
7
+ "size": "20px"
8
+ }
9
+ }
10
+ }
11
+ }
@@ -0,0 +1,11 @@
1
+ export const vars = {
2
+ "base": {
3
+ "enabled": {
4
+ "root": {
5
+ "fromColor": "#00000000",
6
+ "toColor": "#000000ff",
7
+ "size": "20px"
8
+ }
9
+ }
10
+ }
11
+ }
@@ -0,0 +1,25 @@
1
+ export declare const vars: {
2
+ "base": {
3
+ "enabled": {
4
+ "root": {
5
+ "size": "var(--seed-dimension-x5)",
6
+ "cornerRadius": "var(--seed-radius-full)",
7
+ "color": "var(--seed-color-bg-neutral-inverted)",
8
+ "scaleDuration": "var(--seed-duration-d3)",
9
+ "scaleTimingFunction": "var(--seed-timing-function-easing)",
10
+ "translateDuration": "var(--seed-duration-d3)",
11
+ "translateTimingFunction": "var(--seed-timing-function-easing)"
12
+ }
13
+ },
14
+ "disabled": {
15
+ "root": {
16
+ "color": "var(--seed-color-fg-disabled)"
17
+ }
18
+ },
19
+ "pressed": {
20
+ "root": {
21
+ "scale": "1.2"
22
+ }
23
+ }
24
+ }
25
+ }