@pandacss/studio 0.0.0-dev-20230920234116 → 0.0.0-dev-20230922200913
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/astro.config.mjs +1 -1
- package/dist/studio.d.mts +3 -2
- package/dist/studio.d.ts +3 -2
- package/dist/studio.js +10 -4
- package/dist/studio.mjs +10 -4
- package/package.json +8 -8
- package/src/lib/panda.context.ts +3 -5
- package/src/lib/virtual-panda.d.ts +3 -0
- package/styled-system/chunks/src__components__analyzer__category-utilities.css +61 -168
- package/styled-system/chunks/src__components__analyzer__data-combobox.css +69 -114
- package/styled-system/chunks/src__components__analyzer__data-table.css +24 -23
- package/styled-system/chunks/src__components__analyzer__file-details.css +53 -112
- package/styled-system/chunks/src__components__analyzer__report-item-columns.css +20 -19
- package/styled-system/chunks/src__components__analyzer__report-item-link.css +39 -222
- package/styled-system/chunks/src__components__analyzer__section.css +16 -15
- package/styled-system/chunks/src__components__analyzer__text-with-count.css +18 -17
- package/styled-system/chunks/src__components__analyzer__truncated-text.css +10 -9
- package/styled-system/chunks/src__components__analyzer__utility-details.css +71 -178
- package/styled-system/chunks/src__components__color-constrast.css +54 -61
- package/styled-system/chunks/src__components__color-item.css +12 -11
- package/styled-system/chunks/src__components__color-wrapper.css +37 -196
- package/styled-system/chunks/src__components__colors.css +54 -53
- package/styled-system/chunks/src__components__empty-state.css +24 -23
- package/styled-system/chunks/src__components__font-family.css +44 -43
- package/styled-system/chunks/src__components__font-tokens.css +32 -31
- package/styled-system/chunks/src__components__input.css +34 -137
- package/styled-system/chunks/src__components__layer-styles.css +34 -76
- package/styled-system/chunks/src__components__nav-item.css +37 -161
- package/styled-system/chunks/src__components__overview.css +63 -102
- package/styled-system/chunks/src__components__radii.css +26 -25
- package/styled-system/chunks/src__components__semantic-color.css +34 -33
- package/styled-system/chunks/src__components__side-nav-item.css +17 -56
- package/styled-system/chunks/src__components__side-nav.css +26 -25
- package/styled-system/chunks/src__components__sizes.css +22 -21
- package/styled-system/chunks/src__components__text-styles.css +16 -15
- package/styled-system/chunks/src__components__theme-toggle.css +28 -47
- package/styled-system/chunks/src__components__token-analyzer.css +114 -379
- package/styled-system/chunks/src__components__token-content.css +8 -7
- package/styled-system/chunks/src__components__token-group.css +12 -11
- package/styled-system/chunks/src__components__typography-playground.css +32 -31
- package/styled-system/chunks/src__layouts__Sidebar.css +59 -94
- package/styled-system/styles.css +507 -516
- package/{virtual-panda.mjs → virtual-panda.ts} +24 -28
package/astro.config.mjs
CHANGED
package/dist/studio.d.mts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
type BuildOpts = {
|
|
2
2
|
outDir: string;
|
|
3
|
+
configPath: string;
|
|
3
4
|
};
|
|
4
|
-
declare function buildStudio({ outDir }: BuildOpts): Promise<void>;
|
|
5
|
-
declare function serveStudio(): Promise<void>;
|
|
5
|
+
declare function buildStudio({ outDir, configPath }: BuildOpts): Promise<void>;
|
|
6
|
+
declare function serveStudio({ configPath }: BuildOpts): Promise<void>;
|
|
6
7
|
declare function previewStudio({ outDir }: BuildOpts): Promise<void>;
|
|
7
8
|
declare function printUrls(options: {
|
|
8
9
|
host: string;
|
package/dist/studio.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
type BuildOpts = {
|
|
2
2
|
outDir: string;
|
|
3
|
+
configPath: string;
|
|
3
4
|
};
|
|
4
|
-
declare function buildStudio({ outDir }: BuildOpts): Promise<void>;
|
|
5
|
-
declare function serveStudio(): Promise<void>;
|
|
5
|
+
declare function buildStudio({ outDir, configPath }: BuildOpts): Promise<void>;
|
|
6
|
+
declare function serveStudio({ configPath }: BuildOpts): Promise<void>;
|
|
6
7
|
declare function previewStudio({ outDir }: BuildOpts): Promise<void>;
|
|
7
8
|
declare function printUrls(options: {
|
|
8
9
|
host: string;
|
package/dist/studio.js
CHANGED
|
@@ -2069,17 +2069,23 @@ var import_node_module = require("module");
|
|
|
2069
2069
|
var require2 = (0, import_node_module.createRequire)(importMetaUrl);
|
|
2070
2070
|
var astroBin = require2.resolve("astro");
|
|
2071
2071
|
var appPath = (0, import_node_path3.join)(__dirname, "..");
|
|
2072
|
-
async function buildStudio({ outDir }) {
|
|
2072
|
+
async function buildStudio({ outDir, configPath }) {
|
|
2073
2073
|
process.env.ASTRO_OUT_DIR = outDir;
|
|
2074
2074
|
const { stdout } = await execa(astroBin, ["build", "--root", appPath], {
|
|
2075
|
-
cwd: appPath
|
|
2075
|
+
cwd: appPath,
|
|
2076
|
+
env: {
|
|
2077
|
+
PUBLIC_CONFIG_PATH: configPath
|
|
2078
|
+
}
|
|
2076
2079
|
});
|
|
2077
2080
|
import_logger.logger.log(stdout);
|
|
2078
2081
|
}
|
|
2079
|
-
async function serveStudio() {
|
|
2082
|
+
async function serveStudio({ configPath }) {
|
|
2080
2083
|
const result = execa(astroBin, ["dev", "--root", appPath], {
|
|
2081
2084
|
stdio: "inherit",
|
|
2082
|
-
cwd: appPath
|
|
2085
|
+
cwd: appPath,
|
|
2086
|
+
env: {
|
|
2087
|
+
PUBLIC_CONFIG_PATH: configPath
|
|
2088
|
+
}
|
|
2083
2089
|
});
|
|
2084
2090
|
result.stdout?.pipe(process.stdout);
|
|
2085
2091
|
result.stderr?.pipe(process.stderr);
|
package/dist/studio.mjs
CHANGED
|
@@ -2065,17 +2065,23 @@ import { createRequire } from "node:module";
|
|
|
2065
2065
|
var require2 = createRequire(import.meta.url);
|
|
2066
2066
|
var astroBin = require2.resolve("astro");
|
|
2067
2067
|
var appPath = join(__dirname, "..");
|
|
2068
|
-
async function buildStudio({ outDir }) {
|
|
2068
|
+
async function buildStudio({ outDir, configPath }) {
|
|
2069
2069
|
process.env.ASTRO_OUT_DIR = outDir;
|
|
2070
2070
|
const { stdout } = await execa(astroBin, ["build", "--root", appPath], {
|
|
2071
|
-
cwd: appPath
|
|
2071
|
+
cwd: appPath,
|
|
2072
|
+
env: {
|
|
2073
|
+
PUBLIC_CONFIG_PATH: configPath
|
|
2074
|
+
}
|
|
2072
2075
|
});
|
|
2073
2076
|
logger.log(stdout);
|
|
2074
2077
|
}
|
|
2075
|
-
async function serveStudio() {
|
|
2078
|
+
async function serveStudio({ configPath }) {
|
|
2076
2079
|
const result = execa(astroBin, ["dev", "--root", appPath], {
|
|
2077
2080
|
stdio: "inherit",
|
|
2078
|
-
cwd: appPath
|
|
2081
|
+
cwd: appPath,
|
|
2082
|
+
env: {
|
|
2083
|
+
PUBLIC_CONFIG_PATH: configPath
|
|
2084
|
+
}
|
|
2079
2085
|
});
|
|
2080
2086
|
result.stdout?.pipe(process.stdout);
|
|
2081
2087
|
result.stderr?.pipe(process.stderr);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/studio",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20230922200913",
|
|
4
4
|
"description": "The automated token documentation for Panda CSS",
|
|
5
5
|
"main": "dist/studio.js",
|
|
6
6
|
"module": "dist/studio.mjs",
|
|
@@ -33,19 +33,19 @@
|
|
|
33
33
|
"react": "18.2.0",
|
|
34
34
|
"react-dom": "18.2.0",
|
|
35
35
|
"vite": "4.4.9",
|
|
36
|
-
"@pandacss/
|
|
37
|
-
"@pandacss/
|
|
38
|
-
"@pandacss/
|
|
39
|
-
"@pandacss/
|
|
40
|
-
"@pandacss/
|
|
41
|
-
"@pandacss/
|
|
36
|
+
"@pandacss/config": "0.0.0-dev-20230922200913",
|
|
37
|
+
"@pandacss/logger": "0.0.0-dev-20230922200913",
|
|
38
|
+
"@pandacss/node": "0.0.0-dev-20230922200913",
|
|
39
|
+
"@pandacss/shared": "0.0.0-dev-20230922200913",
|
|
40
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20230922200913",
|
|
41
|
+
"@pandacss/types": "0.0.0-dev-20230922200913"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/react": "18.2.22",
|
|
45
45
|
"@types/react-dom": "18.2.7",
|
|
46
46
|
"@vitejs/plugin-react": "4.0.4",
|
|
47
47
|
"execa": "7.2.0",
|
|
48
|
-
"@pandacss/dev": "0.0.0-dev-
|
|
48
|
+
"@pandacss/dev": "0.0.0-dev-20230922200913"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"codegen": "panda",
|
package/src/lib/panda.context.ts
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
import { flatten } from '@pandacss/shared'
|
|
2
2
|
import { TokenDictionary } from '@pandacss/token-dictionary'
|
|
3
|
-
import type { TokenDataTypes
|
|
3
|
+
import type { TokenDataTypes } from '@pandacss/types'
|
|
4
|
+
import { config } from 'virtual:panda'
|
|
4
5
|
|
|
5
|
-
//
|
|
6
|
-
import { config as _config } from 'virtual:panda'
|
|
7
|
-
|
|
8
|
-
const config = _config as UserConfig
|
|
6
|
+
// console.log('_config', config)
|
|
9
7
|
|
|
10
8
|
const { theme } = config
|
|
11
9
|
|
|
@@ -1,225 +1,118 @@
|
|
|
1
1
|
@layer utilities {
|
|
2
|
-
.\[\&_li\]\:cursor_pointer {
|
|
3
|
-
& li {
|
|
4
|
-
cursor: pointer;
|
|
5
|
-
}
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.\[\&_li\]\:cursor_pointer {
|
|
9
|
-
& li {
|
|
10
|
-
cursor: pointer;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.\[\&_li\]\:cursor_pointer {
|
|
15
|
-
& li {
|
|
16
|
-
cursor: pointer;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
2
|
|
|
20
3
|
.p_4px_8px {
|
|
21
|
-
padding: 4px 8px
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.\[\&_li\]\:cursor_pointer {
|
|
25
|
-
& li {
|
|
26
|
-
cursor: pointer;
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.hover\:opacity_0\.6 {
|
|
31
|
-
&:where(:hover, [data-hover]) {
|
|
32
|
-
opacity: 0.6;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.hover\:opacity_1 {
|
|
37
|
-
&:where(:hover, [data-hover]) {
|
|
38
|
-
opacity: 1;
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.hover\:border-b_black {
|
|
43
|
-
&:where(:hover, [data-hover]) {
|
|
44
|
-
border-bottom-color: var(--colors-black);
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.hover\:opacity_0\.6 {
|
|
49
|
-
&:where(:hover, [data-hover]) {
|
|
50
|
-
opacity: 0.6;
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.hover\:opacity_1 {
|
|
55
|
-
&:where(:hover, [data-hover]) {
|
|
56
|
-
opacity: 1;
|
|
4
|
+
padding: 4px 8px
|
|
57
5
|
}
|
|
58
|
-
}
|
|
59
6
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.hover\:opacity_0\.6 {
|
|
67
|
-
&:where(:hover, [data-hover]) {
|
|
68
|
-
opacity: 0.6;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.hover\:opacity_1 {
|
|
73
|
-
&:where(:hover, [data-hover]) {
|
|
74
|
-
opacity: 1;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.hover\:border-b_black {
|
|
79
|
-
&:where(:hover, [data-hover]) {
|
|
80
|
-
border-bottom-color: var(--colors-black);
|
|
81
|
-
}
|
|
82
|
-
}
|
|
7
|
+
.\[\&_li\]\:cursor_pointer li {
|
|
8
|
+
cursor: pointer
|
|
9
|
+
}
|
|
83
10
|
|
|
84
11
|
.list-style_none {
|
|
85
|
-
list-style: none
|
|
86
|
-
|
|
12
|
+
list-style: none
|
|
13
|
+
}
|
|
87
14
|
|
|
88
15
|
.p_0 {
|
|
89
|
-
padding: var(--spacing-0)
|
|
90
|
-
|
|
16
|
+
padding: var(--spacing-0)
|
|
17
|
+
}
|
|
91
18
|
|
|
92
19
|
.ml_auto {
|
|
93
|
-
margin-left: auto
|
|
94
|
-
|
|
20
|
+
margin-left: auto
|
|
21
|
+
}
|
|
95
22
|
|
|
96
23
|
.w_26px {
|
|
97
|
-
width: 26px
|
|
98
|
-
|
|
24
|
+
width: 26px
|
|
25
|
+
}
|
|
99
26
|
|
|
100
27
|
.ml_2 {
|
|
101
|
-
margin-left: var(--spacing-2)
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.hover\:opacity_0\.6 {
|
|
105
|
-
&:where(:hover, [data-hover]) {
|
|
106
|
-
opacity: 0.6;
|
|
28
|
+
margin-left: var(--spacing-2)
|
|
107
29
|
}
|
|
108
|
-
}
|
|
109
30
|
|
|
110
31
|
.font_semibold {
|
|
111
|
-
font-weight: var(--font-weights-semibold)
|
|
112
|
-
|
|
32
|
+
font-weight: var(--font-weights-semibold)
|
|
33
|
+
}
|
|
113
34
|
|
|
114
35
|
.d_grid {
|
|
115
|
-
display: grid
|
|
116
|
-
|
|
36
|
+
display: grid
|
|
37
|
+
}
|
|
117
38
|
|
|
118
39
|
.grid-cols_repeat\(2\,_minmax\(0\,_1fr\)\) {
|
|
119
|
-
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
120
|
-
|
|
40
|
+
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
41
|
+
}
|
|
121
42
|
|
|
122
43
|
.gap_4 {
|
|
123
|
-
gap: var(--spacing-4)
|
|
124
|
-
|
|
44
|
+
gap: var(--spacing-4)
|
|
45
|
+
}
|
|
125
46
|
|
|
126
47
|
.col-span_span_2 {
|
|
127
|
-
grid-column: span 2
|
|
128
|
-
|
|
48
|
+
grid-column: span 2
|
|
49
|
+
}
|
|
129
50
|
|
|
130
51
|
.flex_column {
|
|
131
|
-
flex-direction: column
|
|
132
|
-
|
|
52
|
+
flex-direction: column
|
|
53
|
+
}
|
|
133
54
|
|
|
134
55
|
.p_4 {
|
|
135
|
-
padding: var(--spacing-4)
|
|
136
|
-
|
|
56
|
+
padding: var(--spacing-4)
|
|
57
|
+
}
|
|
137
58
|
|
|
138
59
|
.bg_card {
|
|
139
|
-
background: var(--colors-card)
|
|
140
|
-
|
|
60
|
+
background: var(--colors-card)
|
|
61
|
+
}
|
|
141
62
|
|
|
142
63
|
.text_text {
|
|
143
|
-
color: var(--colors-text)
|
|
144
|
-
|
|
64
|
+
color: var(--colors-text)
|
|
65
|
+
}
|
|
145
66
|
|
|
146
67
|
.rounded_md {
|
|
147
|
-
border-radius: var(--radii-md)
|
|
148
|
-
|
|
68
|
+
border-radius: var(--radii-md)
|
|
69
|
+
}
|
|
149
70
|
|
|
150
71
|
.d_inline-flex {
|
|
151
|
-
display: inline-flex
|
|
152
|
-
|
|
72
|
+
display: inline-flex
|
|
73
|
+
}
|
|
153
74
|
|
|
154
75
|
.items_center {
|
|
155
|
-
align-items: center
|
|
156
|
-
|
|
76
|
+
align-items: center
|
|
77
|
+
}
|
|
157
78
|
|
|
158
79
|
.opacity_0\.5 {
|
|
159
|
-
opacity: 0.5
|
|
160
|
-
|
|
80
|
+
opacity: 0.5
|
|
81
|
+
}
|
|
161
82
|
|
|
162
83
|
.border-b_1px_solid_transparent {
|
|
163
|
-
border-bottom: 1px solid transparent
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
.cursor_pointer {
|
|
167
|
-
cursor: pointer;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
.hover\:opacity_1 {
|
|
171
|
-
&:where(:hover, [data-hover]) {
|
|
172
|
-
opacity: 1;
|
|
84
|
+
border-bottom: 1px solid transparent
|
|
173
85
|
}
|
|
174
|
-
}
|
|
175
86
|
|
|
176
|
-
.
|
|
177
|
-
|
|
178
|
-
border-bottom-color: var(--colors-black);
|
|
87
|
+
.cursor_pointer {
|
|
88
|
+
cursor: pointer
|
|
179
89
|
}
|
|
180
|
-
}
|
|
181
90
|
|
|
182
91
|
.d_flex {
|
|
183
|
-
display: flex
|
|
184
|
-
|
|
92
|
+
display: flex
|
|
93
|
+
}
|
|
185
94
|
|
|
186
95
|
.flex-wrap_wrap {
|
|
187
|
-
flex-wrap: wrap
|
|
188
|
-
|
|
96
|
+
flex-wrap: wrap
|
|
97
|
+
}
|
|
189
98
|
|
|
190
99
|
.gap_2 {
|
|
191
|
-
gap: var(--spacing-2)
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
.\[\&_li\]\:hover\:opacity_0\.8 {
|
|
195
|
-
& li {
|
|
196
|
-
&:where(:hover, [data-hover]) {
|
|
197
|
-
opacity: 0.8;
|
|
198
|
-
}
|
|
100
|
+
gap: var(--spacing-2)
|
|
199
101
|
}
|
|
200
|
-
}
|
|
201
102
|
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
opacity: 0.8;
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
}
|
|
103
|
+
.hover\:opacity_0\.6:is(:hover, [data-hover]) {
|
|
104
|
+
opacity: 0.6
|
|
105
|
+
}
|
|
209
106
|
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
opacity: 0.8;
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
}
|
|
107
|
+
.hover\:opacity_1:is(:hover, [data-hover]) {
|
|
108
|
+
opacity: 1
|
|
109
|
+
}
|
|
217
110
|
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
}
|
|
111
|
+
.hover\:border-b_black:is(:hover, [data-hover]) {
|
|
112
|
+
border-bottom-color: var(--colors-black)
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.\[\&_li\]\:hover\:opacity_0\.8 li:is(:hover, [data-hover]) {
|
|
116
|
+
opacity: 0.8
|
|
117
|
+
}
|
|
118
|
+
}
|
|
@@ -1,182 +1,137 @@
|
|
|
1
1
|
@layer utilities {
|
|
2
|
-
.m_4 {
|
|
3
|
-
margin: var(--spacing-4);
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.highlighted\:bg_border {
|
|
7
|
-
&[data-highlighted] {
|
|
8
|
-
background: var(--colors-border);
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.expanded\:transform_rotate\(180deg\) {
|
|
13
|
-
&:where([aria-expanded='true'], [data-expanded]) {
|
|
14
|
-
transform: rotate(180deg);
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.highlighted\:bg_border {
|
|
19
|
-
&[data-highlighted] {
|
|
20
|
-
background: var(--colors-border);
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.expanded\:transform_rotate\(180deg\) {
|
|
25
|
-
&:where([aria-expanded='true'], [data-expanded]) {
|
|
26
|
-
transform: rotate(180deg);
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
2
|
|
|
30
|
-
.
|
|
31
|
-
|
|
32
|
-
background: var(--colors-border);
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.expanded\:transform_rotate\(180deg\) {
|
|
37
|
-
&:where([aria-expanded='true'], [data-expanded]) {
|
|
38
|
-
transform: rotate(180deg);
|
|
3
|
+
.m_4 {
|
|
4
|
+
margin: var(--spacing-4)
|
|
39
5
|
}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.transition_all_\.2s_ease {
|
|
43
|
-
transition: all 0.2s ease;
|
|
44
|
-
}
|
|
45
6
|
|
|
46
7
|
.max-h_300px {
|
|
47
|
-
max-height: 300px
|
|
48
|
-
|
|
8
|
+
max-height: 300px
|
|
9
|
+
}
|
|
49
10
|
|
|
50
11
|
.overflow_auto {
|
|
51
|
-
overflow: auto
|
|
52
|
-
|
|
12
|
+
overflow: auto
|
|
13
|
+
}
|
|
53
14
|
|
|
54
15
|
.bg_card {
|
|
55
|
-
background: var(--colors-card)
|
|
56
|
-
|
|
16
|
+
background: var(--colors-card)
|
|
17
|
+
}
|
|
57
18
|
|
|
58
19
|
.list-style_none {
|
|
59
|
-
list-style: none
|
|
60
|
-
|
|
20
|
+
list-style: none
|
|
21
|
+
}
|
|
61
22
|
|
|
62
23
|
.border_1px_solid_token\(colors\.border\) {
|
|
63
|
-
border: 1px solid var(--colors-border)
|
|
64
|
-
|
|
24
|
+
border: 1px solid var(--colors-border)
|
|
25
|
+
}
|
|
65
26
|
|
|
66
27
|
.shadow_sm {
|
|
67
|
-
box-shadow: var(--shadows-sm)
|
|
68
|
-
|
|
28
|
+
box-shadow: var(--shadows-sm)
|
|
29
|
+
}
|
|
69
30
|
|
|
70
31
|
.p_4px_8px {
|
|
71
|
-
padding: 4px 8px
|
|
72
|
-
|
|
32
|
+
padding: 4px 8px
|
|
33
|
+
}
|
|
73
34
|
|
|
74
35
|
.rounded_md {
|
|
75
|
-
border-radius: var(--radii-md)
|
|
76
|
-
|
|
36
|
+
border-radius: var(--radii-md)
|
|
37
|
+
}
|
|
77
38
|
|
|
78
39
|
.word-wrap_break-word {
|
|
79
|
-
word-wrap: break-word
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
.highlighted\:bg_border {
|
|
83
|
-
&[data-highlighted] {
|
|
84
|
-
background: var(--colors-border);
|
|
40
|
+
word-wrap: break-word
|
|
85
41
|
}
|
|
86
|
-
|
|
42
|
+
.highlighted\:bg_border[data-highlighted] {
|
|
43
|
+
background: var(--colors-border)
|
|
44
|
+
}
|
|
87
45
|
|
|
88
46
|
.flex_column {
|
|
89
|
-
flex-direction: column
|
|
90
|
-
|
|
47
|
+
flex-direction: column
|
|
48
|
+
}
|
|
91
49
|
|
|
92
50
|
.gap_2 {
|
|
93
|
-
gap: var(--spacing-2)
|
|
94
|
-
|
|
51
|
+
gap: var(--spacing-2)
|
|
52
|
+
}
|
|
95
53
|
|
|
96
54
|
.pos_relative {
|
|
97
|
-
position: relative
|
|
98
|
-
|
|
55
|
+
position: relative
|
|
56
|
+
}
|
|
99
57
|
|
|
100
58
|
.isolation_isolate {
|
|
101
|
-
isolation: isolate
|
|
102
|
-
|
|
59
|
+
isolation: isolate
|
|
60
|
+
}
|
|
103
61
|
|
|
104
62
|
.font_bold {
|
|
105
|
-
font-weight: var(--font-weights-bold)
|
|
106
|
-
|
|
63
|
+
font-weight: var(--font-weights-bold)
|
|
64
|
+
}
|
|
107
65
|
|
|
108
66
|
.px_2 {
|
|
109
|
-
padding-inline: var(--spacing-2)
|
|
110
|
-
|
|
67
|
+
padding-inline: var(--spacing-2)
|
|
68
|
+
}
|
|
111
69
|
|
|
112
70
|
.select_none {
|
|
113
71
|
-webkit-user-select: none;
|
|
114
|
-
user-select: none
|
|
115
|
-
|
|
72
|
+
user-select: none
|
|
73
|
+
}
|
|
116
74
|
|
|
117
75
|
.ml_auto {
|
|
118
|
-
margin-left: auto
|
|
119
|
-
|
|
76
|
+
margin-left: auto
|
|
77
|
+
}
|
|
120
78
|
|
|
121
79
|
.p_2 {
|
|
122
|
-
padding: var(--spacing-2)
|
|
123
|
-
|
|
80
|
+
padding: var(--spacing-2)
|
|
81
|
+
}
|
|
124
82
|
|
|
125
83
|
.cursor_pointer {
|
|
126
|
-
cursor: pointer
|
|
127
|
-
|
|
84
|
+
cursor: pointer
|
|
85
|
+
}
|
|
128
86
|
|
|
129
87
|
.border-l_solid_1px {
|
|
130
|
-
border-left: solid 1px
|
|
131
|
-
|
|
88
|
+
border-left: solid 1px
|
|
89
|
+
}
|
|
132
90
|
|
|
133
91
|
.border_border {
|
|
134
|
-
border-color: var(--colors-border)
|
|
135
|
-
|
|
92
|
+
border-color: var(--colors-border)
|
|
93
|
+
}
|
|
136
94
|
|
|
137
95
|
.text_text {
|
|
138
|
-
color: var(--colors-text)
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
.expanded\:transform_rotate\(180deg\) {
|
|
142
|
-
&:where([aria-expanded='true'], [data-expanded]) {
|
|
143
|
-
transform: rotate(180deg);
|
|
96
|
+
color: var(--colors-text)
|
|
144
97
|
}
|
|
145
|
-
|
|
98
|
+
.expanded\:transform_rotate\(180deg\):is([aria-expanded=true], [data-expanded], [data-state="expanded"]) {
|
|
99
|
+
transform: rotate(180deg)
|
|
100
|
+
}
|
|
146
101
|
|
|
147
102
|
.transition_all_\.2s_ease {
|
|
148
|
-
transition: all
|
|
149
|
-
|
|
103
|
+
transition: all .2s ease
|
|
104
|
+
}
|
|
150
105
|
|
|
151
106
|
.d_flex {
|
|
152
|
-
display: flex
|
|
153
|
-
|
|
107
|
+
display: flex
|
|
108
|
+
}
|
|
154
109
|
|
|
155
110
|
.items_center {
|
|
156
|
-
align-items: center
|
|
157
|
-
|
|
111
|
+
align-items: center
|
|
112
|
+
}
|
|
158
113
|
|
|
159
114
|
.justify_center {
|
|
160
|
-
justify-content: center
|
|
161
|
-
|
|
115
|
+
justify-content: center
|
|
116
|
+
}
|
|
162
117
|
|
|
163
118
|
.top_0px {
|
|
164
|
-
top: 0px
|
|
165
|
-
|
|
119
|
+
top: 0px
|
|
120
|
+
}
|
|
166
121
|
|
|
167
122
|
.right_0px {
|
|
168
|
-
right: 0px
|
|
169
|
-
|
|
123
|
+
right: 0px
|
|
124
|
+
}
|
|
170
125
|
|
|
171
126
|
.pos_absolute {
|
|
172
|
-
position: absolute
|
|
173
|
-
|
|
127
|
+
position: absolute
|
|
128
|
+
}
|
|
174
129
|
|
|
175
130
|
.z_2 {
|
|
176
|
-
z-index: 2
|
|
177
|
-
|
|
131
|
+
z-index: 2
|
|
132
|
+
}
|
|
178
133
|
|
|
179
134
|
.h_full {
|
|
180
|
-
height: var(--sizes-full)
|
|
181
|
-
|
|
182
|
-
}
|
|
135
|
+
height: var(--sizes-full)
|
|
136
|
+
}
|
|
137
|
+
}
|