@pathscale/ui 1.4.0 → 1.6.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/components/flex/Flex.generated.d.ts +2 -0
- package/dist/components/flex/Flex.generated.js +3 -1
- package/dist/components/flex/Flex.recipe.d.ts +14 -0
- package/dist/components/flex/Flex.recipe.js +14 -0
- 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 +192 -3
- package/package.json +1 -1
|
@@ -12,6 +12,8 @@ export type FlexProps = IComponentBaseProps & Omit<JSX.HTMLAttributes<HTMLElemen
|
|
|
12
12
|
gap?: ResponsiveProp<"none" | "sm" | "md" | "lg" | "xl">;
|
|
13
13
|
gapX?: ResponsiveProp<"none" | "sm" | "md" | "lg" | "xl">;
|
|
14
14
|
gapY?: ResponsiveProp<"none" | "sm" | "md" | "lg" | "xl">;
|
|
15
|
+
paddingInline?: ResponsiveProp<"none" | "sm" | "md" | "lg" | "xl">;
|
|
16
|
+
paddingBlock?: ResponsiveProp<"none" | "sm" | "md" | "lg" | "xl">;
|
|
15
17
|
grow?: ResponsiveProp<boolean>;
|
|
16
18
|
shrink?: ResponsiveProp<boolean>;
|
|
17
19
|
basis?: ResponsiveProp<"none" | "sm" | "md" | "lg" | "xl">;
|
|
@@ -19,13 +19,15 @@ const __solidLayoutFlex = (_stable, p)=>{
|
|
|
19
19
|
"gap",
|
|
20
20
|
"gapX",
|
|
21
21
|
"gapY",
|
|
22
|
+
"paddingInline",
|
|
23
|
+
"paddingBlock",
|
|
22
24
|
"grow",
|
|
23
25
|
"shrink",
|
|
24
26
|
"basis"
|
|
25
27
|
]);
|
|
26
28
|
const tag = createMemo(()=>local.as || "div");
|
|
27
29
|
const resolvedChildren = children(()=>local.children);
|
|
28
|
-
const classes = createMemo(()=>twMerge(clsx(CLASSES.base, mapResponsiveProp(local.direction, CLASSES.direction), mapResponsiveProp(local.justify, CLASSES.justify), mapResponsiveProp(local.align, CLASSES.align), mapResponsiveProp(local.wrap, CLASSES.wrap), mapResponsiveProp(local.gap, CLASSES.gap), mapResponsiveProp(local.gapX, CLASSES.gapX), mapResponsiveProp(local.gapY, CLASSES.gapY), mapResponsiveProp(local.grow, CLASSES.grow), mapResponsiveProp(local.shrink, CLASSES.shrink), mapResponsiveProp(local.basis, CLASSES.basis), local.class, local.className)));
|
|
30
|
+
const classes = createMemo(()=>twMerge(clsx(CLASSES.base, mapResponsiveProp(local.direction, CLASSES.direction), mapResponsiveProp(local.justify, CLASSES.justify), mapResponsiveProp(local.align, CLASSES.align), mapResponsiveProp(local.wrap, CLASSES.wrap), mapResponsiveProp(local.gap, CLASSES.gap), mapResponsiveProp(local.gapX, CLASSES.gapX), mapResponsiveProp(local.gapY, CLASSES.gapY), mapResponsiveProp(local.paddingInline, CLASSES.paddingInline), mapResponsiveProp(local.paddingBlock, CLASSES.paddingBlock), mapResponsiveProp(local.grow, CLASSES.grow), mapResponsiveProp(local.shrink, CLASSES.shrink), mapResponsiveProp(local.basis, CLASSES.basis), local.class, local.className)));
|
|
29
31
|
return createComponent(Dynamic, mergeProps({
|
|
30
32
|
get component () {
|
|
31
33
|
return tag();
|
|
@@ -47,6 +47,20 @@ export declare const CLASSES: {
|
|
|
47
47
|
readonly lg: "gap-y-6";
|
|
48
48
|
readonly xl: "gap-y-8";
|
|
49
49
|
};
|
|
50
|
+
readonly paddingInline: {
|
|
51
|
+
readonly none: "px-0";
|
|
52
|
+
readonly sm: "px-2";
|
|
53
|
+
readonly md: "px-4";
|
|
54
|
+
readonly lg: "px-6";
|
|
55
|
+
readonly xl: "px-8";
|
|
56
|
+
};
|
|
57
|
+
readonly paddingBlock: {
|
|
58
|
+
readonly none: "py-0";
|
|
59
|
+
readonly sm: "py-2";
|
|
60
|
+
readonly md: "py-4";
|
|
61
|
+
readonly lg: "py-6";
|
|
62
|
+
readonly xl: "py-8";
|
|
63
|
+
};
|
|
50
64
|
readonly grow: {
|
|
51
65
|
readonly true: "flex-grow";
|
|
52
66
|
readonly false: "flex-grow-0";
|
|
@@ -48,6 +48,20 @@ const CLASSES = {
|
|
|
48
48
|
lg: "gap-y-6",
|
|
49
49
|
xl: "gap-y-8"
|
|
50
50
|
},
|
|
51
|
+
paddingInline: {
|
|
52
|
+
none: "px-0",
|
|
53
|
+
sm: "px-2",
|
|
54
|
+
md: "px-4",
|
|
55
|
+
lg: "px-6",
|
|
56
|
+
xl: "px-8"
|
|
57
|
+
},
|
|
58
|
+
paddingBlock: {
|
|
59
|
+
none: "py-0",
|
|
60
|
+
sm: "py-2",
|
|
61
|
+
md: "py-4",
|
|
62
|
+
lg: "py-6",
|
|
63
|
+
xl: "py-8"
|
|
64
|
+
},
|
|
51
65
|
grow: {
|
|
52
66
|
true: "flex-grow",
|
|
53
67
|
false: "flex-grow-0"
|
|
@@ -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
|
@@ -8912,6 +8912,20 @@
|
|
|
8912
8912
|
"lg": [],
|
|
8913
8913
|
"xl": []
|
|
8914
8914
|
},
|
|
8915
|
+
"paddingInline": {
|
|
8916
|
+
"none": [],
|
|
8917
|
+
"sm": [],
|
|
8918
|
+
"md": [],
|
|
8919
|
+
"lg": [],
|
|
8920
|
+
"xl": []
|
|
8921
|
+
},
|
|
8922
|
+
"paddingBlock": {
|
|
8923
|
+
"none": [],
|
|
8924
|
+
"sm": [],
|
|
8925
|
+
"md": [],
|
|
8926
|
+
"lg": [],
|
|
8927
|
+
"xl": []
|
|
8928
|
+
},
|
|
8915
8929
|
"grow": {
|
|
8916
8930
|
"true": [],
|
|
8917
8931
|
"false": []
|
|
@@ -16234,29 +16248,61 @@
|
|
|
16234
16248
|
"byProp": {}
|
|
16235
16249
|
},
|
|
16236
16250
|
"attributeSelectors": [
|
|
16251
|
+
"[data-family=\"body\"]",
|
|
16252
|
+
"[data-family=\"display\"]",
|
|
16253
|
+
"[data-family=\"heading\"]",
|
|
16254
|
+
"[data-family=\"mono\"]",
|
|
16255
|
+
"[data-leading=\"none\"]",
|
|
16237
16256
|
"[data-size=\"base\"]",
|
|
16238
16257
|
"[data-size=\"lg\"]",
|
|
16239
16258
|
"[data-size=\"sm\"]",
|
|
16240
16259
|
"[data-size=\"xl\"]",
|
|
16241
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\"]",
|
|
16242
16267
|
"[data-variant=\"danger\"]",
|
|
16243
16268
|
"[data-variant=\"default\"]",
|
|
16244
16269
|
"[data-variant=\"muted\"]",
|
|
16270
|
+
"[data-variant=\"subtle\"]",
|
|
16245
16271
|
"[data-variant=\"success\"]",
|
|
16246
|
-
"[data-variant=\"warning\"]"
|
|
16272
|
+
"[data-variant=\"warning\"]",
|
|
16273
|
+
"[data-weight=\"bold\"]",
|
|
16274
|
+
"[data-weight=\"medium\"]",
|
|
16275
|
+
"[data-weight=\"normal\"]",
|
|
16276
|
+
"[data-weight=\"semibold\"]"
|
|
16247
16277
|
],
|
|
16248
16278
|
"selectors": [
|
|
16249
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\"]",
|
|
16250
16285
|
".text[data-size=\"base\"]",
|
|
16251
16286
|
".text[data-size=\"lg\"]",
|
|
16252
16287
|
".text[data-size=\"sm\"]",
|
|
16253
16288
|
".text[data-size=\"xl\"]",
|
|
16254
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\"]",
|
|
16255
16296
|
".text[data-variant=\"danger\"]",
|
|
16256
16297
|
".text[data-variant=\"default\"]",
|
|
16257
16298
|
".text[data-variant=\"muted\"]",
|
|
16299
|
+
".text[data-variant=\"subtle\"]",
|
|
16258
16300
|
".text[data-variant=\"success\"]",
|
|
16259
|
-
".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\"]"
|
|
16260
16306
|
],
|
|
16261
16307
|
"cssVars": {
|
|
16262
16308
|
"declared": [
|
|
@@ -16264,6 +16310,7 @@
|
|
|
16264
16310
|
"--text-color-danger",
|
|
16265
16311
|
"--text-color-default",
|
|
16266
16312
|
"--text-color-muted",
|
|
16313
|
+
"--text-color-subtle",
|
|
16267
16314
|
"--text-color-success",
|
|
16268
16315
|
"--text-color-warning",
|
|
16269
16316
|
"--text-font-size",
|
|
@@ -16274,12 +16321,19 @@
|
|
|
16274
16321
|
"--color-danger",
|
|
16275
16322
|
"--color-foreground",
|
|
16276
16323
|
"--color-muted",
|
|
16324
|
+
"--color-subtle",
|
|
16277
16325
|
"--color-success",
|
|
16278
16326
|
"--color-warning",
|
|
16327
|
+
"--font-body",
|
|
16328
|
+
"--font-display",
|
|
16329
|
+
"--font-heading",
|
|
16330
|
+
"--font-mono",
|
|
16331
|
+
"--font-sans",
|
|
16279
16332
|
"--text-color",
|
|
16280
16333
|
"--text-color-danger",
|
|
16281
16334
|
"--text-color-default",
|
|
16282
16335
|
"--text-color-muted",
|
|
16336
|
+
"--text-color-subtle",
|
|
16283
16337
|
"--text-color-success",
|
|
16284
16338
|
"--text-color-warning",
|
|
16285
16339
|
"--text-font-size",
|
|
@@ -32258,6 +32312,36 @@
|
|
|
32258
32312
|
"TextField"
|
|
32259
32313
|
]
|
|
32260
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
|
+
},
|
|
32261
32345
|
{
|
|
32262
32346
|
"selector": ".text[data-size=\"base\"]",
|
|
32263
32347
|
"components": [
|
|
@@ -32288,6 +32372,42 @@
|
|
|
32288
32372
|
"Text"
|
|
32289
32373
|
]
|
|
32290
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
|
+
},
|
|
32291
32411
|
{
|
|
32292
32412
|
"selector": ".text[data-variant=\"danger\"]",
|
|
32293
32413
|
"components": [
|
|
@@ -32306,6 +32426,12 @@
|
|
|
32306
32426
|
"Text"
|
|
32307
32427
|
]
|
|
32308
32428
|
},
|
|
32429
|
+
{
|
|
32430
|
+
"selector": ".text[data-variant=\"subtle\"]",
|
|
32431
|
+
"components": [
|
|
32432
|
+
"Text"
|
|
32433
|
+
]
|
|
32434
|
+
},
|
|
32309
32435
|
{
|
|
32310
32436
|
"selector": ".text[data-variant=\"success\"]",
|
|
32311
32437
|
"components": [
|
|
@@ -32318,6 +32444,30 @@
|
|
|
32318
32444
|
"Text"
|
|
32319
32445
|
]
|
|
32320
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
|
+
},
|
|
32321
32471
|
{
|
|
32322
32472
|
"selector": ".textarea",
|
|
32323
32473
|
"components": [
|
|
@@ -37205,7 +37355,8 @@
|
|
|
37205
37355
|
"--font-sans": {
|
|
37206
37356
|
"declaredBy": [],
|
|
37207
37357
|
"referencedBy": [
|
|
37208
|
-
"Kbd"
|
|
37358
|
+
"Kbd",
|
|
37359
|
+
"Text"
|
|
37209
37360
|
]
|
|
37210
37361
|
},
|
|
37211
37362
|
"--color-link": {
|
|
@@ -38220,6 +38371,14 @@
|
|
|
38220
38371
|
"Text"
|
|
38221
38372
|
]
|
|
38222
38373
|
},
|
|
38374
|
+
"--text-color-subtle": {
|
|
38375
|
+
"declaredBy": [
|
|
38376
|
+
"Text"
|
|
38377
|
+
],
|
|
38378
|
+
"referencedBy": [
|
|
38379
|
+
"Text"
|
|
38380
|
+
]
|
|
38381
|
+
},
|
|
38223
38382
|
"--text-color-success": {
|
|
38224
38383
|
"declaredBy": [
|
|
38225
38384
|
"Text"
|
|
@@ -38252,6 +38411,36 @@
|
|
|
38252
38411
|
"Text"
|
|
38253
38412
|
]
|
|
38254
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
|
+
},
|
|
38255
38444
|
"--progress-circle-stroke": {
|
|
38256
38445
|
"declaredBy": [
|
|
38257
38446
|
"ProgressCircle"
|