@anyknown/ui 0.6.1 → 0.8.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 (70) hide show
  1. package/README.md +6 -7
  2. package/dist/brand.css +111 -124
  3. package/dist/components/badge/Badge.d.ts +11 -3
  4. package/dist/components/badge/Badge.js +21 -3
  5. package/dist/components/button/Button.d.ts +3 -2
  6. package/dist/components/button/Button.js +32 -48
  7. package/dist/components/checkbox/Checkbox.js +24 -48
  8. package/dist/components/data-table/DataTable.d.ts +7 -1
  9. package/dist/components/data-table/DataTable.js +34 -34
  10. package/dist/components/dialog/Dialog.d.ts +6 -1
  11. package/dist/components/dialog/Dialog.js +11 -3
  12. package/dist/components/empty-state/EmptyState.js +1 -1
  13. package/dist/components/ghost/Ghost.d.ts +16 -0
  14. package/dist/components/ghost/Ghost.js +50 -0
  15. package/dist/components/group/Group.d.ts +66 -0
  16. package/dist/components/group/Group.js +166 -0
  17. package/dist/components/handoff-receipt/HandoffReceipt.js +12 -42
  18. package/dist/components/icon/Chevron.d.ts +9 -0
  19. package/dist/components/icon/Chevron.js +6 -0
  20. package/dist/components/icon/icon.d.ts +35 -0
  21. package/dist/components/icon/icon.js +10 -0
  22. package/dist/components/icon-button/IconButton.d.ts +17 -0
  23. package/dist/components/icon-button/IconButton.js +66 -0
  24. package/dist/components/live-dot/LiveDot.d.ts +7 -0
  25. package/dist/components/live-dot/LiveDot.js +35 -0
  26. package/dist/components/message/Message.d.ts +3 -1
  27. package/dist/components/message/Message.js +2 -2
  28. package/dist/components/page/Page.d.ts +64 -0
  29. package/dist/components/page/Page.js +163 -0
  30. package/dist/components/popover/Popover.js +1 -1
  31. package/dist/components/progress/Progress.js +49 -104
  32. package/dist/components/radio/Radio.js +17 -28
  33. package/dist/components/segmented/Segmented.d.ts +12 -0
  34. package/dist/components/segmented/Segmented.js +43 -0
  35. package/dist/components/settings-rows/SettingsRows.d.ts +25 -0
  36. package/dist/components/settings-rows/SettingsRows.js +63 -0
  37. package/dist/components/slider/Slider.d.ts +19 -0
  38. package/dist/components/slider/Slider.js +103 -0
  39. package/dist/components/spin/Spin.d.ts +5 -0
  40. package/dist/components/spin/Spin.js +25 -0
  41. package/dist/components/status-chip/StatusChip.d.ts +18 -0
  42. package/dist/components/status-chip/StatusChip.js +68 -0
  43. package/dist/components/switch/Switch.js +20 -63
  44. package/dist/components/table/Table.d.ts +39 -0
  45. package/dist/components/table/Table.js +125 -0
  46. package/dist/components/table/TableCells.d.ts +52 -0
  47. package/dist/components/table/TableCells.js +103 -0
  48. package/dist/components/tabs/Tabs.js +16 -48
  49. package/dist/components/text/Text.js +2 -2
  50. package/dist/components/toast/Toast.js +7 -8
  51. package/dist/index.d.ts +14 -0
  52. package/dist/index.js +14 -0
  53. package/dist/lib/layers.d.ts +7 -0
  54. package/dist/lib/layers.js +12 -0
  55. package/dist/themes.stylex.d.ts +54 -206
  56. package/dist/themes.stylex.js +55 -157
  57. package/dist/tokens.css +63 -46
  58. package/dist/tokens.stylex.d.ts +41 -54
  59. package/dist/tokens.stylex.js +64 -85
  60. package/package.json +2 -2
  61. package/dist/lib/paths.d.ts +0 -3
  62. package/dist/lib/paths.js +0 -11
  63. package/dist/lib/progress.d.ts +0 -2
  64. package/dist/lib/progress.js +0 -28
  65. package/dist/lib/silk.d.ts +0 -66
  66. package/dist/lib/silk.js +0 -337
  67. package/dist/lib/svgId.d.ts +0 -1
  68. package/dist/lib/svgId.js +0 -4
  69. package/dist/lib/weave.d.ts +0 -28
  70. package/dist/lib/weave.js +0 -83
@@ -2,193 +2,91 @@
2
2
  // 重生成:pnpm gen:themes(themes.test.ts 會擋住不同步)
3
3
  //
4
4
  // 給有使用者切換主題的 app(例如 next-themes)。tokens 本身跟隨 OS,套上 theme 才會鎖定。
5
- // **要套就整組套**:只套 color 會讓布停在另一個主題,深色布配深色字。
5
+ // **要套就整組套**:只套 color 會讓陰影與 tone 停在另一個主題。
6
6
  import * as stylex from "@stylexjs/stylex";
7
- import { color, yarn, yarnSecondary, yarnGhost, yarnDanger, yarnSubtle, shadow } from "./tokens.stylex.js";
7
+ import { color, shadow, tone } from "./tokens.stylex.js";
8
8
  export const lightColor = stylex.createTheme(color, {
9
- bg: "#FAFAF6",
10
- surface: "#FFFFFF",
9
+ bg: "#FFFFFF",
10
+ surface: "#F5F5F7",
11
11
  surfaceRaised: "#FFFFFF",
12
- border: "#E3E0D5",
13
- borderStrong: "#C8C3B4",
14
- text: "#23211D",
15
- textMuted: "#635D52",
16
- textFaint: "#9C958A",
17
- accent: "#23705A",
18
- accentText: "#FCFCF9",
19
- accentSubtle: "#E7F0EB",
12
+ border: "#E5E5EA",
13
+ borderStrong: "#C7C7CC",
14
+ text: "#1D1D1F",
15
+ textMuted: "#6E6E73",
16
+ textFaint: "#86868B",
17
+ accent: "#1D1D1F",
18
+ accentText: "#FFFFFF",
19
+ accentSubtle: "#E8E8ED",
20
20
  danger: "#B3402E",
21
21
  dangerSubtle: "#F7E7E3",
22
22
  success: "#23705A",
23
23
  successSubtle: "#E7F0EB",
24
- warning: "#9A6A1B",
24
+ warning: "#B25000",
25
25
  warningSubtle: "#F5EBD9",
26
26
  info: "#2C5C86",
27
27
  infoSubtle: "#E4EDF5",
28
- focusRing: "#23705A",
29
- bone: "#ECE9DF",
30
- sheen: "#F6F4EC",
28
+ focusRing: "#1D1D1F",
29
+ bone: "#E6E6EA",
30
+ sheen: "#F2F2F5",
31
31
  successHl: "#C6E0C6",
32
32
  dangerHl: "#EFCEC3",
33
- });
34
- export const lightYarn = stylex.createTheme(yarn, {
35
- un: "#11362C",
36
- sh: "#123C31",
37
- y0: "#1E6250",
38
- y1: "#216A55",
39
- y2: "#23705A",
40
- y3: "#28795F",
41
- y4: "#2E8266",
42
- hi: "#5CAA89",
43
- shadow: "drop-shadow(0 1px 1.5px rgba(18, 60, 49, 0.3))",
44
- });
45
- export const lightYarnSecondary = stylex.createTheme(yarnSecondary, {
46
- un: "#CBC5B4",
47
- sh: "#C9C4B4",
48
- y0: "#E4E0D3",
49
- y1: "#E8E5D9",
50
- y2: "#EDEAE0",
51
- y3: "#F1EEE6",
52
- y4: "#F5F3EC",
53
- hi: "#FFFFFF",
54
- shadow: "drop-shadow(0 1px 1.5px rgba(80, 74, 60, 0.22))",
55
- });
56
- export const lightYarnGhost = stylex.createTheme(yarnGhost, {
57
- un: "transparent",
58
- sh: "transparent",
59
- y0: "#DCD8CA",
60
- y1: "#DFDBCE",
61
- y2: "#E3E0D5",
62
- y3: "#E7E4D9",
63
- y4: "#EBE8DE",
64
- hi: "#C8C3B4",
65
- shadow: "none",
66
- });
67
- export const lightYarnDanger = stylex.createTheme(yarnDanger, {
68
- un: "#401209",
69
- sh: "#4A170D",
70
- y0: "#8F3122",
71
- y1: "#A13928",
72
- y2: "#B3402E",
73
- y3: "#BC4F3C",
74
- y4: "#C55E4A",
75
- hi: "#E39781",
76
- shadow: "drop-shadow(0 1px 1.5px rgba(74, 23, 13, 0.3))",
77
- });
78
- export const lightYarnSubtle = stylex.createTheme(yarnSubtle, {
79
- un: "#CFE2D9",
80
- sh: "#CBDFD5",
81
- y0: "#DFEBE5",
82
- y1: "#E3EEE8",
83
- y2: "#E7F0EB",
84
- y3: "#ECF3EF",
85
- y4: "#F1F7F3",
86
- hi: "#FFFFFF",
33
+ layer1: "#EFEFF2",
34
+ layer2: "#FFFFFF",
35
+ layer3: "#F2F2F5",
36
+ layer4: "#E6E6EA",
37
+ layer5: "#D9D9DE",
87
38
  });
88
39
  export const lightShadow = stylex.createTheme(shadow, {
89
40
  popover: "0 8px 24px rgba(35, 33, 29, 0.1)",
90
41
  raised: "0 1px 2px rgba(35, 33, 29, 0.08)",
91
42
  });
43
+ export const lightTone = stylex.createTheme(tone, {
44
+ layer6: "#CDCDD3",
45
+ faint: "#86868B",
46
+ railLayer2: "#FFFFFF",
47
+ railLayer3: "#E6E6EA",
48
+ });
92
49
  export const darkColor = stylex.createTheme(color, {
93
- bg: "#181613",
94
- surface: "#201D18",
95
- surfaceRaised: "#282420",
96
- border: "#35302A",
97
- borderStrong: "#4A443C",
98
- text: "#EAE6DC",
99
- textMuted: "#B0A697",
100
- textFaint: "#736A5D",
101
- accent: "#4FA184",
102
- accentText: "#14120F",
103
- accentSubtle: "#22352E",
50
+ bg: "#000000",
51
+ surface: "#1C1C1E",
52
+ surfaceRaised: "#2C2C2E",
53
+ border: "#38383A",
54
+ borderStrong: "#48484A",
55
+ text: "#F5F5F7",
56
+ textMuted: "#98989D",
57
+ textFaint: "#8E8E93",
58
+ accent: "#F5F5F7",
59
+ accentText: "#000000",
60
+ accentSubtle: "#2C2C2E",
104
61
  danger: "#DD7059",
105
62
  dangerSubtle: "#3D231E",
106
63
  success: "#4FA184",
107
64
  successSubtle: "#22352E",
108
- warning: "#D9A254",
65
+ warning: "#FFB340",
109
66
  warningSubtle: "#3A2F1D",
110
67
  info: "#6FA3CE",
111
68
  infoSubtle: "#1E2C38",
112
- focusRing: "#4FA184",
113
- bone: "#2A2620",
114
- sheen: "#35302A",
69
+ focusRing: "#F5F5F7",
70
+ bone: "#2C2C2E",
71
+ sheen: "#3F3F42",
115
72
  successHl: "#2F4A2E",
116
73
  dangerHl: "#573328",
117
- });
118
- export const darkYarn = stylex.createTheme(yarn, {
119
- un: "#173629",
120
- sh: "#1B4437",
121
- y0: "#3F8A70",
122
- y1: "#47957A",
123
- y2: "#4FA184",
124
- y3: "#56A98B",
125
- y4: "#5EB193",
126
- hi: "#8FD2B4",
127
- shadow: "drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45))",
128
- });
129
- export const darkYarnSecondary = stylex.createTheme(yarnSecondary, {
130
- un: "#0E0C09",
131
- sh: "#15120E",
132
- y0: "#2B2620",
133
- y1: "#2F2A23",
134
- y2: "#332E26",
135
- y3: "#38322A",
136
- y4: "#3D372E",
137
- hi: "#5E5546",
138
- shadow: "drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5))",
139
- });
140
- export const darkYarnGhost = stylex.createTheme(yarnGhost, {
141
- un: "transparent",
142
- sh: "transparent",
143
- y0: "#2A251F",
144
- y1: "#2F2A23",
145
- y2: "#35302A",
146
- y3: "#39342D",
147
- y4: "#3E3830",
148
- hi: "#57503F",
149
- shadow: "none",
150
- });
151
- export const darkYarnDanger = stylex.createTheme(yarnDanger, {
152
- un: "#38130B",
153
- sh: "#451A10",
154
- y0: "#C25842",
155
- y1: "#D0644E",
156
- y2: "#DD7059",
157
- y3: "#E17E68",
158
- y4: "#E58C77",
159
- hi: "#F4BCA9",
160
- shadow: "drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45))",
161
- });
162
- export const darkYarnSubtle = stylex.createTheme(yarnSubtle, {
163
- un: "#141F1B",
164
- sh: "#17231E",
165
- y0: "#1D2E27",
166
- y1: "#20312B",
167
- y2: "#22352E",
168
- y3: "#263A32",
169
- y4: "#2A4038",
170
- hi: "#3E5F50",
74
+ layer1: "#000000",
75
+ layer2: "#161618",
76
+ layer3: "#242426",
77
+ layer4: "#323234",
78
+ layer5: "#3F3F42",
171
79
  });
172
80
  export const darkShadow = stylex.createTheme(shadow, {
173
81
  popover: "0 8px 24px rgba(0, 0, 0, 0.4)",
174
82
  raised: "0 1px 2px rgba(0, 0, 0, 0.3)",
175
83
  });
84
+ export const darkTone = stylex.createTheme(tone, {
85
+ layer6: "#4C4C50",
86
+ faint: "#8E8E93",
87
+ railLayer2: "#242426",
88
+ railLayer3: "#323234",
89
+ });
176
90
  /** 套在 root element 上:`<div {...stylex.props(...light)}>` */
177
- export const light = [
178
- lightColor,
179
- lightYarn,
180
- lightYarnSecondary,
181
- lightYarnGhost,
182
- lightYarnDanger,
183
- lightYarnSubtle,
184
- lightShadow,
185
- ];
186
- export const dark = [
187
- darkColor,
188
- darkYarn,
189
- darkYarnSecondary,
190
- darkYarnGhost,
191
- darkYarnDanger,
192
- darkYarnSubtle,
193
- darkShadow,
194
- ];
91
+ export const light = [lightColor, lightShadow, lightTone];
92
+ export const dark = [darkColor, darkShadow, darkTone];
package/dist/tokens.css CHANGED
@@ -1,4 +1,4 @@
1
- /* Ledger tokens as plain CSS variables — for non-StyleX consumers
1
+ /* Tokens as plain CSS variables — for non-StyleX consumers
2
2
  * (desktop uses Tailwind v4 @theme; reference these vars there).
3
3
  * Source of truth: tokens.stylex.ts. Keep values in sync manually for now. */
4
4
 
@@ -8,35 +8,41 @@ html {
8
8
  }
9
9
 
10
10
  :root {
11
- --ak-bg: #fafaf6;
12
- --ak-surface: #ffffff;
11
+ --ak-bg: #ffffff;
12
+ --ak-surface: #f5f5f7;
13
13
  --ak-surface-raised: #ffffff;
14
- --ak-border: #e3e0d5;
15
- --ak-border-strong: #c8c3b4;
16
- --ak-text: #23211d;
17
- --ak-text-muted: #635d52;
18
- --ak-text-faint: #9c958a;
19
- --ak-accent: #23705a;
20
- --ak-accent-text: #fcfcf9;
21
- --ak-accent-subtle: #e7f0eb;
14
+ --ak-border: #e5e5ea;
15
+ --ak-border-strong: #c7c7cc;
16
+ --ak-text: #1d1d1f;
17
+ --ak-text-muted: #6e6e73;
18
+ --ak-text-faint: #86868b;
19
+ --ak-accent: #1d1d1f;
20
+ --ak-accent-text: #ffffff;
21
+ --ak-accent-subtle: #e8e8ed;
22
22
  --ak-danger: #b3402e;
23
23
  --ak-danger-subtle: #f7e7e3;
24
24
  --ak-success: #23705a;
25
25
  --ak-success-subtle: #e7f0eb;
26
- --ak-warning: #9a6a1b;
26
+ --ak-warning: #b25000;
27
27
  --ak-warning-subtle: #f5ebd9;
28
28
  --ak-info: #2c5c86;
29
29
  --ak-info-subtle: #e4edf5;
30
- --ak-focus-ring: #23705a;
31
- --ak-bone: #ece9df;
32
- --ak-sheen: #f6f4ec;
30
+ --ak-focus-ring: #1d1d1f;
31
+ --ak-bone: #e6e6ea;
32
+ --ak-sheen: #f2f2f5;
33
33
  --ak-success-hl: #c6e0c6;
34
34
  --ak-danger-hl: #efcec3;
35
35
 
36
+ --ak-layer1: #efeff2;
37
+ --ak-layer2: #ffffff;
38
+ --ak-layer3: #f2f2f5;
39
+ --ak-layer4: #e6e6ea;
40
+ --ak-layer5: #d9d9de;
41
+
36
42
  --ak-shadow-popover: 0 8px 24px rgba(35, 33, 29, 0.1);
37
43
  --ak-shadow-raised: 0 1px 2px rgba(35, 33, 29, 0.08);
38
44
 
39
- --ak-font-display: "Newsreader Variable", Georgia, "Times New Roman", serif;
45
+ --ak-font-display: "Geist Variable", system-ui, sans-serif;
40
46
  --ak-font-body: "Geist Variable", system-ui, sans-serif;
41
47
  --ak-font-mono: "Geist Mono Variable", ui-monospace, monospace;
42
48
 
@@ -56,61 +62,72 @@ html {
56
62
 
57
63
  @media (prefers-color-scheme: dark) {
58
64
  :root:not([data-theme="light"]) {
59
- --ak-bg: #181613;
60
- --ak-surface: #201d18;
61
- --ak-surface-raised: #282420;
62
- --ak-border: #35302a;
63
- --ak-border-strong: #4a443c;
64
- --ak-text: #eae6dc;
65
- --ak-text-muted: #b0a697;
66
- --ak-text-faint: #736a5d;
67
- --ak-accent: #4fa184;
68
- --ak-accent-text: #14120f;
69
- --ak-accent-subtle: #22352e;
65
+ --ak-bg: #000000;
66
+ --ak-surface: #1c1c1e;
67
+ --ak-surface-raised: #2c2c2e;
68
+ --ak-border: #38383a;
69
+ --ak-border-strong: #48484a;
70
+ --ak-text: #f5f5f7;
71
+ --ak-text-muted: #98989d;
72
+ --ak-text-faint: #8e8e93;
73
+ --ak-accent: #f5f5f7;
74
+ --ak-accent-text: #000000;
75
+ --ak-accent-subtle: #2c2c2e;
70
76
  --ak-danger: #dd7059;
71
77
  --ak-danger-subtle: #3d231e;
72
78
  --ak-success: #4fa184;
73
79
  --ak-success-subtle: #22352e;
74
- --ak-warning: #d9a254;
80
+ --ak-warning: #ffb340;
75
81
  --ak-warning-subtle: #3a2f1d;
76
82
  --ak-info: #6fa3ce;
77
83
  --ak-info-subtle: #1e2c38;
78
- --ak-focus-ring: #4fa184;
79
- --ak-bone: #2a2620;
80
- --ak-sheen: #35302a;
84
+ --ak-focus-ring: #f5f5f7;
85
+ --ak-bone: #2c2c2e;
86
+ --ak-sheen: #3f3f42;
81
87
  --ak-success-hl: #2f4a2e;
82
88
  --ak-danger-hl: #573328;
83
89
 
90
+ --ak-layer1: #000000;
91
+ --ak-layer2: #161618;
92
+ --ak-layer3: #242426;
93
+ --ak-layer4: #323234;
94
+ --ak-layer5: #3f3f42;
95
+
84
96
  --ak-shadow-popover: 0 8px 24px rgba(0, 0, 0, 0.4);
85
97
  --ak-shadow-raised: 0 1px 2px rgba(0, 0, 0, 0.3);
86
98
  }
87
99
  }
88
100
 
89
101
  [data-theme="dark"] {
90
- --ak-bone: #2a2620;
91
- --ak-sheen: #35302a;
102
+ --ak-layer1: #000000;
103
+ --ak-layer2: #161618;
104
+ --ak-layer3: #242426;
105
+ --ak-layer4: #323234;
106
+ --ak-layer5: #3f3f42;
107
+ --ak-bone: #2c2c2e;
108
+ --ak-sheen: #3f3f42;
92
109
  --ak-success-hl: #2f4a2e;
93
110
  --ak-danger-hl: #573328;
94
111
  --ak-shadow-popover: 0 8px 24px rgba(0, 0, 0, 0.4);
95
112
  --ak-shadow-raised: 0 1px 2px rgba(0, 0, 0, 0.3);
96
- --ak-bg: #181613;
97
- --ak-surface: #201d18;
98
- --ak-surface-raised: #282420;
99
- --ak-border: #35302a;
100
- --ak-border-strong: #4a443c;
101
- --ak-text: #eae6dc;
102
- --ak-text-muted: #b0a697;
103
- --ak-text-faint: #736a5d;
104
- --ak-accent: #4fa184;
105
- --ak-accent-text: #14120f;
106
- --ak-accent-subtle: #22352e;
113
+ --ak-bg: #000000;
114
+ --ak-surface: #1c1c1e;
115
+ --ak-surface-raised: #2c2c2e;
116
+ --ak-border: #38383a;
117
+ --ak-border-strong: #48484a;
118
+ --ak-text: #f5f5f7;
119
+ --ak-text-muted: #98989d;
120
+ --ak-text-faint: #8e8e93;
121
+ --ak-accent: #f5f5f7;
122
+ --ak-accent-text: #000000;
123
+ --ak-accent-subtle: #2c2c2e;
107
124
  --ak-danger: #dd7059;
108
125
  --ak-danger-subtle: #3d231e;
109
126
  --ak-success: #4fa184;
110
127
  --ak-success-subtle: #22352e;
111
- --ak-warning: #d9a254;
128
+ --ak-warning: #ffb340;
112
129
  --ak-warning-subtle: #3a2f1d;
113
130
  --ak-info: #6fa3ce;
114
131
  --ak-info-subtle: #1e2c38;
115
- --ak-focus-ring: #4fa184;
132
+ --ak-focus-ring: #f5f5f7;
116
133
  }
@@ -24,64 +24,18 @@ export declare const color: stylex.VarGroup<Readonly<{
24
24
  sheen: string;
25
25
  successHl: string;
26
26
  dangerHl: string;
27
- }>, symbol>;
28
- export declare const yarn: stylex.VarGroup<Readonly<{
29
- un: string;
30
- sh: string;
31
- y0: string;
32
- y1: string;
33
- y2: string;
34
- y3: string;
35
- y4: string;
36
- hi: string;
37
- shadow: string;
38
- }>, symbol>;
39
- export declare const yarnSecondary: stylex.VarGroup<Readonly<{
40
- un: string;
41
- sh: string;
42
- y0: string;
43
- y1: string;
44
- y2: string;
45
- y3: string;
46
- y4: string;
47
- hi: string;
48
- shadow: string;
49
- }>, symbol>;
50
- export declare const yarnGhost: stylex.VarGroup<Readonly<{
51
- un: string;
52
- sh: string;
53
- y0: string;
54
- y1: string;
55
- y2: string;
56
- y3: string;
57
- y4: string;
58
- hi: string;
59
- shadow: string;
60
- }>, symbol>;
61
- export declare const yarnDanger: stylex.VarGroup<Readonly<{
62
- un: string;
63
- sh: string;
64
- y0: string;
65
- y1: string;
66
- y2: string;
67
- y3: string;
68
- y4: string;
69
- hi: string;
70
- shadow: string;
71
- }>, symbol>;
72
- export declare const yarnSubtle: stylex.VarGroup<Readonly<{
73
- un: string;
74
- sh: string;
75
- y0: string;
76
- y1: string;
77
- y2: string;
78
- y3: string;
79
- y4: string;
80
- hi: string;
27
+ layer1: string;
28
+ layer2: string;
29
+ layer3: string;
30
+ layer4: string;
31
+ layer5: string;
81
32
  }>, symbol>;
82
33
  export declare const shadow: stylex.VarGroup<Readonly<{
83
34
  popover: string;
84
35
  raised: string;
36
+ pop: string;
37
+ sheet: string;
38
+ dock: string;
85
39
  }>, symbol>;
86
40
  export declare const font: stylex.VarGroup<Readonly<{
87
41
  display: string;
@@ -126,3 +80,36 @@ export declare const motion: stylex.VarGroup<Readonly<{
126
80
  easeOut: string;
127
81
  spring: string;
128
82
  }>, symbol>;
83
+ export declare const type: stylex.VarGroup<Readonly<{
84
+ t1: string;
85
+ t2: string;
86
+ t3: string;
87
+ t4: string;
88
+ body: string;
89
+ tight: string;
90
+ snug: string;
91
+ }>, symbol>;
92
+ export declare const tone: stylex.VarGroup<Readonly<{
93
+ layer6: string;
94
+ faint: string;
95
+ railLayer2: string;
96
+ railLayer3: string;
97
+ }>, symbol>;
98
+ export declare const corner: stylex.VarGroup<Readonly<{
99
+ card: string;
100
+ ib: string;
101
+ md: string;
102
+ btn: string;
103
+ sm: string;
104
+ xs: string;
105
+ }>, symbol>;
106
+ export declare const ink: stylex.VarGroup<Readonly<{
107
+ n4: string;
108
+ n5: string;
109
+ n6: string;
110
+ n8: string;
111
+ n10: string;
112
+ n12: string;
113
+ n14: string;
114
+ n18: string;
115
+ }>, symbol>;