@pathscale/ui 1.5.0 → 2.0.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/README.md +37 -4
- package/dist/components/text/Text.css +81 -0
- package/dist/components/text/Text.generated.d.ts +11 -1
- package/dist/components/text/Text.generated.js +21 -1
- package/dist/components/text/index.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/layouts.manifest.json +1 -1
- package/dist/purge-manifest.json +178 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,22 +11,44 @@ dark themes built in.
|
|
|
11
11
|
## Install
|
|
12
12
|
|
|
13
13
|
```sh
|
|
14
|
-
bun add @pathscale/ui
|
|
14
|
+
bun add @pathscale/ui solid-layouts
|
|
15
|
+
bun add -d rsbuild-plugin-solid-layouts
|
|
15
16
|
```
|
|
16
17
|
|
|
17
18
|
<details>
|
|
18
19
|
<summary>npm · pnpm · yarn</summary>
|
|
19
20
|
|
|
20
21
|
```sh
|
|
21
|
-
npm install @pathscale/ui
|
|
22
|
-
pnpm add @pathscale/ui
|
|
23
|
-
yarn add @pathscale/ui
|
|
22
|
+
npm install @pathscale/ui solid-layouts && npm install -D rsbuild-plugin-solid-layouts
|
|
23
|
+
pnpm add @pathscale/ui solid-layouts && pnpm add -D rsbuild-plugin-solid-layouts
|
|
24
|
+
yarn add @pathscale/ui solid-layouts && yarn add -D rsbuild-plugin-solid-layouts
|
|
24
25
|
```
|
|
25
26
|
|
|
26
27
|
</details>
|
|
27
28
|
|
|
28
29
|
## Setup
|
|
29
30
|
|
|
31
|
+
`@pathscale/ui` 2.x is a compiled Layout bundle. Configure the application compiler before
|
|
32
|
+
Solid transforms JSX:
|
|
33
|
+
|
|
34
|
+
```ts
|
|
35
|
+
import { pluginBabel } from "@rsbuild/plugin-babel";
|
|
36
|
+
import { pluginSolid } from "@rsbuild/plugin-solid";
|
|
37
|
+
import { defineConfig } from "@rsbuild/core";
|
|
38
|
+
import { pluginSolidLayoutsApplication } from "rsbuild-plugin-solid-layouts";
|
|
39
|
+
|
|
40
|
+
export default defineConfig({
|
|
41
|
+
plugins: [
|
|
42
|
+
pluginSolidLayoutsApplication({ layouts: ["@pathscale/ui"] }),
|
|
43
|
+
pluginBabel({ include: /\.(?:jsx|tsx|ts)$/ }),
|
|
44
|
+
pluginSolid(),
|
|
45
|
+
],
|
|
46
|
+
});
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
The Layout plugin must run before Solid. A missing package, manifest, recipe, compiler, or
|
|
50
|
+
runtime is an error; there is no uncompiled fallback.
|
|
51
|
+
|
|
30
52
|
Two imports. Everything comes from the root barrel, and **one stylesheet is all you need** —
|
|
31
53
|
`index.css` pulls in the base styles, both themes and the icon set:
|
|
32
54
|
|
|
@@ -102,8 +124,19 @@ from hooks. Both, with toasts, icons and dates, are covered in
|
|
|
102
124
|
## Requirements
|
|
103
125
|
|
|
104
126
|
- **SolidJS ^1.9**
|
|
127
|
+
- **solid-layouts** runtime
|
|
128
|
+
- **rsbuild-plugin-solid-layouts** application compiler integration
|
|
105
129
|
- **Tailwind v4** — optional, but required for the `@theme` token utilities
|
|
106
130
|
|
|
131
|
+
## Migrating from 1.x
|
|
132
|
+
|
|
133
|
+
`1.4.0` is the last pre-Layouts 1.x release. Layout-authored components begin at `2.0.0` and
|
|
134
|
+
require the setup above. Versions `1.5.0` and `1.6.0` were incorrectly published on the 1.x
|
|
135
|
+
line and must not be used.
|
|
136
|
+
|
|
137
|
+
The complete compiler contract, hard-error behavior, commands, and porting analyzer are
|
|
138
|
+
documented in [docs/layouts.md](docs/layouts.md).
|
|
139
|
+
|
|
107
140
|
Peers include `@solid-primitives/*`, `@tanstack/solid-form` and `@tanstack/solid-table`.
|
|
108
141
|
Two are optional and only needed for the features they back: `popmotion` (JS animation
|
|
109
142
|
driver) and `@standard-schema/spec` (schema validation).
|
|
@@ -5,6 +5,10 @@
|
|
|
5
5
|
--color-muted,
|
|
6
6
|
color-mix(in oklab, var(--color-base-content) 55%, transparent)
|
|
7
7
|
);
|
|
8
|
+
--text-color-subtle: var(
|
|
9
|
+
--color-subtle,
|
|
10
|
+
color-mix(in oklab, var(--color-base-content) 40%, transparent)
|
|
11
|
+
);
|
|
8
12
|
--text-color-success: var(--color-success);
|
|
9
13
|
--text-color-warning: var(--color-warning);
|
|
10
14
|
--text-color-danger: var(--color-danger);
|
|
@@ -52,6 +56,10 @@
|
|
|
52
56
|
--text-color: var(--text-color-muted);
|
|
53
57
|
}
|
|
54
58
|
|
|
59
|
+
.text[data-variant="subtle"] {
|
|
60
|
+
--text-color: var(--text-color-subtle);
|
|
61
|
+
}
|
|
62
|
+
|
|
55
63
|
.text[data-variant="success"] {
|
|
56
64
|
--text-color: var(--text-color-success);
|
|
57
65
|
}
|
|
@@ -63,4 +71,77 @@
|
|
|
63
71
|
.text[data-variant="danger"] {
|
|
64
72
|
--text-color: var(--text-color-danger);
|
|
65
73
|
}
|
|
74
|
+
|
|
75
|
+
.text[data-weight="normal"] {
|
|
76
|
+
font-weight: 400;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.text[data-weight="medium"] {
|
|
80
|
+
font-weight: 500;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.text[data-weight="semibold"] {
|
|
84
|
+
font-weight: 600;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.text[data-weight="bold"] {
|
|
88
|
+
font-weight: 700;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.text[data-transform="none"] {
|
|
92
|
+
text-transform: none;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.text[data-transform="uppercase"] {
|
|
96
|
+
text-transform: uppercase;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.text[data-transform="lowercase"] {
|
|
100
|
+
text-transform: lowercase;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.text[data-transform="capitalize"] {
|
|
104
|
+
text-transform: capitalize;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.text[data-tracking="normal"] {
|
|
108
|
+
letter-spacing: normal;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.text[data-tracking="wide"] {
|
|
112
|
+
letter-spacing: 0.04em;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.text[data-leading="none"] {
|
|
116
|
+
line-height: 1;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.text[data-family="body"] {
|
|
120
|
+
font-family: var(--font-body, var(--font-sans, inherit));
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.text[data-family="heading"] {
|
|
124
|
+
font-family: var(--font-heading, var(--font-sans, inherit));
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.text[data-family="display"] {
|
|
128
|
+
font-family: var(
|
|
129
|
+
--font-display,
|
|
130
|
+
var(--font-heading, var(--font-sans, inherit))
|
|
131
|
+
);
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.text[data-family="mono"] {
|
|
135
|
+
font-family: var(
|
|
136
|
+
--font-mono,
|
|
137
|
+
ui-monospace,
|
|
138
|
+
SFMono-Regular,
|
|
139
|
+
Menlo,
|
|
140
|
+
Monaco,
|
|
141
|
+
Consolas,
|
|
142
|
+
"Liberation Mono",
|
|
143
|
+
"Courier New",
|
|
144
|
+
monospace
|
|
145
|
+
);
|
|
146
|
+
}
|
|
66
147
|
}
|
|
@@ -3,10 +3,20 @@ import "./Text.css";
|
|
|
3
3
|
import { type JSX } from "solid-js";
|
|
4
4
|
import type { IComponentBaseProps } from "../types";
|
|
5
5
|
export type TextSize = "xs" | "sm" | "base" | "lg" | "xl";
|
|
6
|
-
export type TextVariant = "default" | "muted" | "success" | "warning" | "danger";
|
|
6
|
+
export type TextVariant = "default" | "muted" | "subtle" | "success" | "warning" | "danger";
|
|
7
|
+
export type TextWeight = "normal" | "medium" | "semibold" | "bold";
|
|
8
|
+
export type TextTransform = "none" | "uppercase" | "lowercase" | "capitalize";
|
|
9
|
+
export type TextTracking = "normal" | "wide";
|
|
10
|
+
export type TextLeading = "normal" | "none";
|
|
11
|
+
export type TextFamily = "body" | "heading" | "display" | "mono";
|
|
7
12
|
export type TextRootProps = Omit<JSX.HTMLAttributes<HTMLSpanElement>, "color"> & IComponentBaseProps & {
|
|
8
13
|
size?: TextSize;
|
|
9
14
|
variant?: TextVariant;
|
|
15
|
+
weight?: TextWeight;
|
|
16
|
+
transform?: TextTransform;
|
|
17
|
+
tracking?: TextTracking;
|
|
18
|
+
leading?: TextLeading;
|
|
19
|
+
family?: TextFamily;
|
|
10
20
|
children?: JSX.Element;
|
|
11
21
|
};
|
|
12
22
|
declare const TextRoot: __LayoutComponent<TextRootProps>;
|
|
@@ -13,7 +13,12 @@ const __solidLayoutTextRoot = (_stable, p)=>{
|
|
|
13
13
|
"dataTheme",
|
|
14
14
|
"style",
|
|
15
15
|
"size",
|
|
16
|
-
"variant"
|
|
16
|
+
"variant",
|
|
17
|
+
"weight",
|
|
18
|
+
"transform",
|
|
19
|
+
"tracking",
|
|
20
|
+
"leading",
|
|
21
|
+
"family"
|
|
17
22
|
]);
|
|
18
23
|
const size = ()=>local.size ?? "base";
|
|
19
24
|
const variant = ()=>local.variant ?? "default";
|
|
@@ -29,6 +34,21 @@ const __solidLayoutTextRoot = (_stable, p)=>{
|
|
|
29
34
|
get ["data-variant"] () {
|
|
30
35
|
return variant();
|
|
31
36
|
},
|
|
37
|
+
get ["data-weight"] () {
|
|
38
|
+
return local.weight;
|
|
39
|
+
},
|
|
40
|
+
get ["data-transform"] () {
|
|
41
|
+
return local.transform;
|
|
42
|
+
},
|
|
43
|
+
get ["data-tracking"] () {
|
|
44
|
+
return local.tracking;
|
|
45
|
+
},
|
|
46
|
+
get ["data-leading"] () {
|
|
47
|
+
return local.leading;
|
|
48
|
+
},
|
|
49
|
+
get ["data-family"] () {
|
|
50
|
+
return local.family;
|
|
51
|
+
},
|
|
32
52
|
get ["data-theme"] () {
|
|
33
53
|
return local.dataTheme;
|
|
34
54
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default, Text, TextRoot, type TextProps, type TextRootProps, type TextSize, type TextVariant, } from "./Text.generated";
|
|
1
|
+
export { default, Text, TextRoot, type TextProps, type TextRootProps, type TextSize, type TextVariant, type TextWeight, type TextTransform, type TextTracking, type TextLeading, type TextFamily, } from "./Text.generated";
|
package/dist/index.d.ts
CHANGED
|
@@ -161,7 +161,7 @@ export type { TagGroupProps, TagGroupRootProps, TagGroupListProps, TagSelectionM
|
|
|
161
161
|
export { default as Tabs } from "./components/tabs";
|
|
162
162
|
export type { TabsRootProps, TabListContainerProps, TabListProps, TabProps, TabIndicatorProps, TabSeparatorProps, TabPanelProps, } from "./components/tabs";
|
|
163
163
|
export { default as Text, TextRoot } from "./components/text";
|
|
164
|
-
export type { TextProps, TextRootProps, TextSize, TextVariant, } from "./components/text";
|
|
164
|
+
export type { TextProps, TextRootProps, TextSize, TextVariant, TextWeight, TextTransform, TextTracking, TextLeading, TextFamily, } from "./components/text";
|
|
165
165
|
export { default as TextField, TextFieldRoot, TextFieldContext, } from "./components/text-field";
|
|
166
166
|
export type { TextFieldProps, TextFieldRootProps, TextFieldVariant, TextFieldRenderProps, TextFieldContextValue, } from "./components/text-field";
|
|
167
167
|
export { default as TextArea, TextAreaRoot } from "./components/text-area";
|
package/dist/purge-manifest.json
CHANGED
|
@@ -16248,29 +16248,61 @@
|
|
|
16248
16248
|
"byProp": {}
|
|
16249
16249
|
},
|
|
16250
16250
|
"attributeSelectors": [
|
|
16251
|
+
"[data-family=\"body\"]",
|
|
16252
|
+
"[data-family=\"display\"]",
|
|
16253
|
+
"[data-family=\"heading\"]",
|
|
16254
|
+
"[data-family=\"mono\"]",
|
|
16255
|
+
"[data-leading=\"none\"]",
|
|
16251
16256
|
"[data-size=\"base\"]",
|
|
16252
16257
|
"[data-size=\"lg\"]",
|
|
16253
16258
|
"[data-size=\"sm\"]",
|
|
16254
16259
|
"[data-size=\"xl\"]",
|
|
16255
16260
|
"[data-size=\"xs\"]",
|
|
16261
|
+
"[data-tracking=\"normal\"]",
|
|
16262
|
+
"[data-tracking=\"wide\"]",
|
|
16263
|
+
"[data-transform=\"capitalize\"]",
|
|
16264
|
+
"[data-transform=\"lowercase\"]",
|
|
16265
|
+
"[data-transform=\"none\"]",
|
|
16266
|
+
"[data-transform=\"uppercase\"]",
|
|
16256
16267
|
"[data-variant=\"danger\"]",
|
|
16257
16268
|
"[data-variant=\"default\"]",
|
|
16258
16269
|
"[data-variant=\"muted\"]",
|
|
16270
|
+
"[data-variant=\"subtle\"]",
|
|
16259
16271
|
"[data-variant=\"success\"]",
|
|
16260
|
-
"[data-variant=\"warning\"]"
|
|
16272
|
+
"[data-variant=\"warning\"]",
|
|
16273
|
+
"[data-weight=\"bold\"]",
|
|
16274
|
+
"[data-weight=\"medium\"]",
|
|
16275
|
+
"[data-weight=\"normal\"]",
|
|
16276
|
+
"[data-weight=\"semibold\"]"
|
|
16261
16277
|
],
|
|
16262
16278
|
"selectors": [
|
|
16263
16279
|
".text",
|
|
16280
|
+
".text[data-family=\"body\"]",
|
|
16281
|
+
".text[data-family=\"display\"]",
|
|
16282
|
+
".text[data-family=\"heading\"]",
|
|
16283
|
+
".text[data-family=\"mono\"]",
|
|
16284
|
+
".text[data-leading=\"none\"]",
|
|
16264
16285
|
".text[data-size=\"base\"]",
|
|
16265
16286
|
".text[data-size=\"lg\"]",
|
|
16266
16287
|
".text[data-size=\"sm\"]",
|
|
16267
16288
|
".text[data-size=\"xl\"]",
|
|
16268
16289
|
".text[data-size=\"xs\"]",
|
|
16290
|
+
".text[data-tracking=\"normal\"]",
|
|
16291
|
+
".text[data-tracking=\"wide\"]",
|
|
16292
|
+
".text[data-transform=\"capitalize\"]",
|
|
16293
|
+
".text[data-transform=\"lowercase\"]",
|
|
16294
|
+
".text[data-transform=\"none\"]",
|
|
16295
|
+
".text[data-transform=\"uppercase\"]",
|
|
16269
16296
|
".text[data-variant=\"danger\"]",
|
|
16270
16297
|
".text[data-variant=\"default\"]",
|
|
16271
16298
|
".text[data-variant=\"muted\"]",
|
|
16299
|
+
".text[data-variant=\"subtle\"]",
|
|
16272
16300
|
".text[data-variant=\"success\"]",
|
|
16273
|
-
".text[data-variant=\"warning\"]"
|
|
16301
|
+
".text[data-variant=\"warning\"]",
|
|
16302
|
+
".text[data-weight=\"bold\"]",
|
|
16303
|
+
".text[data-weight=\"medium\"]",
|
|
16304
|
+
".text[data-weight=\"normal\"]",
|
|
16305
|
+
".text[data-weight=\"semibold\"]"
|
|
16274
16306
|
],
|
|
16275
16307
|
"cssVars": {
|
|
16276
16308
|
"declared": [
|
|
@@ -16278,6 +16310,7 @@
|
|
|
16278
16310
|
"--text-color-danger",
|
|
16279
16311
|
"--text-color-default",
|
|
16280
16312
|
"--text-color-muted",
|
|
16313
|
+
"--text-color-subtle",
|
|
16281
16314
|
"--text-color-success",
|
|
16282
16315
|
"--text-color-warning",
|
|
16283
16316
|
"--text-font-size",
|
|
@@ -16288,12 +16321,19 @@
|
|
|
16288
16321
|
"--color-danger",
|
|
16289
16322
|
"--color-foreground",
|
|
16290
16323
|
"--color-muted",
|
|
16324
|
+
"--color-subtle",
|
|
16291
16325
|
"--color-success",
|
|
16292
16326
|
"--color-warning",
|
|
16327
|
+
"--font-body",
|
|
16328
|
+
"--font-display",
|
|
16329
|
+
"--font-heading",
|
|
16330
|
+
"--font-mono",
|
|
16331
|
+
"--font-sans",
|
|
16293
16332
|
"--text-color",
|
|
16294
16333
|
"--text-color-danger",
|
|
16295
16334
|
"--text-color-default",
|
|
16296
16335
|
"--text-color-muted",
|
|
16336
|
+
"--text-color-subtle",
|
|
16297
16337
|
"--text-color-success",
|
|
16298
16338
|
"--text-color-warning",
|
|
16299
16339
|
"--text-font-size",
|
|
@@ -32272,6 +32312,36 @@
|
|
|
32272
32312
|
"TextField"
|
|
32273
32313
|
]
|
|
32274
32314
|
},
|
|
32315
|
+
{
|
|
32316
|
+
"selector": ".text[data-family=\"body\"]",
|
|
32317
|
+
"components": [
|
|
32318
|
+
"Text"
|
|
32319
|
+
]
|
|
32320
|
+
},
|
|
32321
|
+
{
|
|
32322
|
+
"selector": ".text[data-family=\"display\"]",
|
|
32323
|
+
"components": [
|
|
32324
|
+
"Text"
|
|
32325
|
+
]
|
|
32326
|
+
},
|
|
32327
|
+
{
|
|
32328
|
+
"selector": ".text[data-family=\"heading\"]",
|
|
32329
|
+
"components": [
|
|
32330
|
+
"Text"
|
|
32331
|
+
]
|
|
32332
|
+
},
|
|
32333
|
+
{
|
|
32334
|
+
"selector": ".text[data-family=\"mono\"]",
|
|
32335
|
+
"components": [
|
|
32336
|
+
"Text"
|
|
32337
|
+
]
|
|
32338
|
+
},
|
|
32339
|
+
{
|
|
32340
|
+
"selector": ".text[data-leading=\"none\"]",
|
|
32341
|
+
"components": [
|
|
32342
|
+
"Text"
|
|
32343
|
+
]
|
|
32344
|
+
},
|
|
32275
32345
|
{
|
|
32276
32346
|
"selector": ".text[data-size=\"base\"]",
|
|
32277
32347
|
"components": [
|
|
@@ -32302,6 +32372,42 @@
|
|
|
32302
32372
|
"Text"
|
|
32303
32373
|
]
|
|
32304
32374
|
},
|
|
32375
|
+
{
|
|
32376
|
+
"selector": ".text[data-tracking=\"normal\"]",
|
|
32377
|
+
"components": [
|
|
32378
|
+
"Text"
|
|
32379
|
+
]
|
|
32380
|
+
},
|
|
32381
|
+
{
|
|
32382
|
+
"selector": ".text[data-tracking=\"wide\"]",
|
|
32383
|
+
"components": [
|
|
32384
|
+
"Text"
|
|
32385
|
+
]
|
|
32386
|
+
},
|
|
32387
|
+
{
|
|
32388
|
+
"selector": ".text[data-transform=\"capitalize\"]",
|
|
32389
|
+
"components": [
|
|
32390
|
+
"Text"
|
|
32391
|
+
]
|
|
32392
|
+
},
|
|
32393
|
+
{
|
|
32394
|
+
"selector": ".text[data-transform=\"lowercase\"]",
|
|
32395
|
+
"components": [
|
|
32396
|
+
"Text"
|
|
32397
|
+
]
|
|
32398
|
+
},
|
|
32399
|
+
{
|
|
32400
|
+
"selector": ".text[data-transform=\"none\"]",
|
|
32401
|
+
"components": [
|
|
32402
|
+
"Text"
|
|
32403
|
+
]
|
|
32404
|
+
},
|
|
32405
|
+
{
|
|
32406
|
+
"selector": ".text[data-transform=\"uppercase\"]",
|
|
32407
|
+
"components": [
|
|
32408
|
+
"Text"
|
|
32409
|
+
]
|
|
32410
|
+
},
|
|
32305
32411
|
{
|
|
32306
32412
|
"selector": ".text[data-variant=\"danger\"]",
|
|
32307
32413
|
"components": [
|
|
@@ -32320,6 +32426,12 @@
|
|
|
32320
32426
|
"Text"
|
|
32321
32427
|
]
|
|
32322
32428
|
},
|
|
32429
|
+
{
|
|
32430
|
+
"selector": ".text[data-variant=\"subtle\"]",
|
|
32431
|
+
"components": [
|
|
32432
|
+
"Text"
|
|
32433
|
+
]
|
|
32434
|
+
},
|
|
32323
32435
|
{
|
|
32324
32436
|
"selector": ".text[data-variant=\"success\"]",
|
|
32325
32437
|
"components": [
|
|
@@ -32332,6 +32444,30 @@
|
|
|
32332
32444
|
"Text"
|
|
32333
32445
|
]
|
|
32334
32446
|
},
|
|
32447
|
+
{
|
|
32448
|
+
"selector": ".text[data-weight=\"bold\"]",
|
|
32449
|
+
"components": [
|
|
32450
|
+
"Text"
|
|
32451
|
+
]
|
|
32452
|
+
},
|
|
32453
|
+
{
|
|
32454
|
+
"selector": ".text[data-weight=\"medium\"]",
|
|
32455
|
+
"components": [
|
|
32456
|
+
"Text"
|
|
32457
|
+
]
|
|
32458
|
+
},
|
|
32459
|
+
{
|
|
32460
|
+
"selector": ".text[data-weight=\"normal\"]",
|
|
32461
|
+
"components": [
|
|
32462
|
+
"Text"
|
|
32463
|
+
]
|
|
32464
|
+
},
|
|
32465
|
+
{
|
|
32466
|
+
"selector": ".text[data-weight=\"semibold\"]",
|
|
32467
|
+
"components": [
|
|
32468
|
+
"Text"
|
|
32469
|
+
]
|
|
32470
|
+
},
|
|
32335
32471
|
{
|
|
32336
32472
|
"selector": ".textarea",
|
|
32337
32473
|
"components": [
|
|
@@ -37219,7 +37355,8 @@
|
|
|
37219
37355
|
"--font-sans": {
|
|
37220
37356
|
"declaredBy": [],
|
|
37221
37357
|
"referencedBy": [
|
|
37222
|
-
"Kbd"
|
|
37358
|
+
"Kbd",
|
|
37359
|
+
"Text"
|
|
37223
37360
|
]
|
|
37224
37361
|
},
|
|
37225
37362
|
"--color-link": {
|
|
@@ -38234,6 +38371,14 @@
|
|
|
38234
38371
|
"Text"
|
|
38235
38372
|
]
|
|
38236
38373
|
},
|
|
38374
|
+
"--text-color-subtle": {
|
|
38375
|
+
"declaredBy": [
|
|
38376
|
+
"Text"
|
|
38377
|
+
],
|
|
38378
|
+
"referencedBy": [
|
|
38379
|
+
"Text"
|
|
38380
|
+
]
|
|
38381
|
+
},
|
|
38237
38382
|
"--text-color-success": {
|
|
38238
38383
|
"declaredBy": [
|
|
38239
38384
|
"Text"
|
|
@@ -38266,6 +38411,36 @@
|
|
|
38266
38411
|
"Text"
|
|
38267
38412
|
]
|
|
38268
38413
|
},
|
|
38414
|
+
"--color-subtle": {
|
|
38415
|
+
"declaredBy": [],
|
|
38416
|
+
"referencedBy": [
|
|
38417
|
+
"Text"
|
|
38418
|
+
]
|
|
38419
|
+
},
|
|
38420
|
+
"--font-body": {
|
|
38421
|
+
"declaredBy": [],
|
|
38422
|
+
"referencedBy": [
|
|
38423
|
+
"Text"
|
|
38424
|
+
]
|
|
38425
|
+
},
|
|
38426
|
+
"--font-display": {
|
|
38427
|
+
"declaredBy": [],
|
|
38428
|
+
"referencedBy": [
|
|
38429
|
+
"Text"
|
|
38430
|
+
]
|
|
38431
|
+
},
|
|
38432
|
+
"--font-heading": {
|
|
38433
|
+
"declaredBy": [],
|
|
38434
|
+
"referencedBy": [
|
|
38435
|
+
"Text"
|
|
38436
|
+
]
|
|
38437
|
+
},
|
|
38438
|
+
"--font-mono": {
|
|
38439
|
+
"declaredBy": [],
|
|
38440
|
+
"referencedBy": [
|
|
38441
|
+
"Text"
|
|
38442
|
+
]
|
|
38443
|
+
},
|
|
38269
38444
|
"--progress-circle-stroke": {
|
|
38270
38445
|
"declaredBy": [
|
|
38271
38446
|
"ProgressCircle"
|