@pandacss/studio 0.3.1 → 0.4.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 (78) hide show
  1. package/package.json +8 -8
  2. package/src/components/analyzer/data-combobox.tsx +47 -41
  3. package/src/components/analyzer/data-table.tsx +5 -9
  4. package/src/components/input.tsx +3 -3
  5. package/src/layouts/Sidebar.astro +2 -2
  6. package/styled-system/chunks/..__core____tests____atomic-rule.test.css +363 -0
  7. package/styled-system/chunks/src__components__analyzer__data-combobox.css +48 -40
  8. package/styled-system/chunks/src__components__analyzer__data-table.css +8 -0
  9. package/styled-system/chunks/src__layouts__Sidebar.css +4 -4
  10. package/styled-system/css/css.d.ts +1 -0
  11. package/styled-system/css/css.mjs +8 -0
  12. package/styled-system/css/cva.d.ts +1 -0
  13. package/styled-system/css/cx.d.ts +1 -0
  14. package/styled-system/css/index.d.ts +1 -0
  15. package/styled-system/global.css +1 -1
  16. package/styled-system/jsx/aspect-ratio.d.ts +1 -0
  17. package/styled-system/jsx/box.d.ts +1 -0
  18. package/styled-system/jsx/center.d.ts +1 -0
  19. package/styled-system/jsx/circle.d.ts +1 -0
  20. package/styled-system/jsx/container.d.ts +1 -0
  21. package/styled-system/jsx/divider.d.ts +1 -0
  22. package/styled-system/jsx/factory.d.ts +1 -0
  23. package/styled-system/jsx/flex.d.ts +1 -0
  24. package/styled-system/jsx/float.d.ts +1 -0
  25. package/styled-system/jsx/grid-item.d.ts +1 -0
  26. package/styled-system/jsx/grid.d.ts +1 -0
  27. package/styled-system/jsx/hstack.d.ts +1 -0
  28. package/styled-system/jsx/index.d.ts +1 -0
  29. package/styled-system/jsx/is-valid-prop.mjs +18 -2
  30. package/styled-system/jsx/link-box.d.ts +1 -0
  31. package/styled-system/jsx/link-overlay.d.ts +1 -0
  32. package/styled-system/jsx/spacer.d.ts +1 -0
  33. package/styled-system/jsx/square.d.ts +1 -0
  34. package/styled-system/jsx/stack.d.ts +1 -0
  35. package/styled-system/jsx/styled-link.d.ts +1 -0
  36. package/styled-system/jsx/vstack.d.ts +1 -0
  37. package/styled-system/jsx/wrap.d.ts +1 -0
  38. package/styled-system/patterns/aspect-ratio.d.ts +1 -0
  39. package/styled-system/patterns/aspect-ratio.mjs +18 -8
  40. package/styled-system/patterns/box.d.ts +1 -0
  41. package/styled-system/patterns/center.d.ts +1 -0
  42. package/styled-system/patterns/circle.d.ts +1 -0
  43. package/styled-system/patterns/container.d.ts +1 -0
  44. package/styled-system/patterns/divider.d.ts +1 -0
  45. package/styled-system/patterns/divider.mjs +1 -1
  46. package/styled-system/patterns/flex.d.ts +1 -0
  47. package/styled-system/patterns/float.d.ts +1 -0
  48. package/styled-system/patterns/grid-item.d.ts +1 -0
  49. package/styled-system/patterns/grid.d.ts +1 -0
  50. package/styled-system/patterns/hstack.d.ts +1 -0
  51. package/styled-system/patterns/index.d.ts +1 -0
  52. package/styled-system/patterns/link-box.d.ts +1 -0
  53. package/styled-system/patterns/link-overlay.d.ts +1 -0
  54. package/styled-system/patterns/spacer.d.ts +1 -0
  55. package/styled-system/patterns/square.d.ts +1 -0
  56. package/styled-system/patterns/stack.d.ts +1 -0
  57. package/styled-system/patterns/styled-link.d.ts +1 -0
  58. package/styled-system/patterns/vstack.d.ts +1 -0
  59. package/styled-system/patterns/wrap.d.ts +1 -0
  60. package/styled-system/styles.css +295 -16
  61. package/styled-system/tokens/index.css +3 -0
  62. package/styled-system/tokens/index.d.ts +1 -0
  63. package/styled-system/tokens/index.mjs +12 -0
  64. package/styled-system/tokens/tokens.d.ts +7 -3
  65. package/styled-system/types/composition.d.ts +1 -0
  66. package/styled-system/types/conditions.d.ts +1 -0
  67. package/styled-system/types/csstype.d.ts +1 -0
  68. package/styled-system/types/global.d.ts +6 -5
  69. package/styled-system/types/helpers.d.ts +1 -0
  70. package/styled-system/types/index.d.ts +3 -2
  71. package/styled-system/types/jsx.d.ts +1 -0
  72. package/styled-system/types/parts.d.ts +1 -0
  73. package/styled-system/types/pattern.d.ts +1 -0
  74. package/styled-system/types/prop-type.d.ts +26 -25
  75. package/styled-system/types/recipe.d.ts +1 -0
  76. package/styled-system/types/selectors.d.ts +4 -1
  77. package/styled-system/types/style-props.d.ts +12 -4
  78. package/styled-system/types/system-types.d.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/studio",
3
- "version": "0.3.1",
3
+ "version": "0.4.0",
4
4
  "description": "The automated token documentation for Panda CSS",
5
5
  "main": "dist/studio.js",
6
6
  "module": "dist/studio.mjs",
@@ -32,19 +32,19 @@
32
32
  "react": "18.2.0",
33
33
  "react-dom": "18.2.0",
34
34
  "vite": "4.3.9",
35
- "@pandacss/types": "0.3.1",
36
- "@pandacss/config": "0.3.1",
37
- "@pandacss/shared": "0.3.1",
38
- "@pandacss/token-dictionary": "0.3.1",
39
- "@pandacss/logger": "0.3.1",
40
- "@pandacss/node": "0.3.1"
35
+ "@pandacss/types": "0.4.0",
36
+ "@pandacss/config": "0.4.0",
37
+ "@pandacss/shared": "0.4.0",
38
+ "@pandacss/token-dictionary": "0.4.0",
39
+ "@pandacss/logger": "0.4.0",
40
+ "@pandacss/node": "0.4.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/react": "18.2.12",
44
44
  "@types/react-dom": "18.2.5",
45
45
  "@vitejs/plugin-react": "4.0.0",
46
46
  "execa": "7.1.1",
47
- "@pandacss/dev": "0.3.1"
47
+ "@pandacss/dev": "0.4.0"
48
48
  },
49
49
  "scripts": {
50
50
  "codegen": "panda",
@@ -11,8 +11,9 @@ import {
11
11
  } from '@ark-ui/react'
12
12
  import { useEffect, useState } from 'react'
13
13
  import { css } from '../../../styled-system/css'
14
- import { panda } from '../../../styled-system/jsx'
15
- import { ChevronDownIcon, ChevronUpIcon, XMarkIcon } from '../icons'
14
+ import { Flex, panda } from '../../../styled-system/jsx'
15
+ import { ChevronDownIcon, XMarkIcon } from '../icons'
16
+ import { inputRecipe } from '../input'
16
17
 
17
18
  export type DataComboboxOption = {
18
19
  value: string
@@ -45,28 +46,17 @@ export const DataCombobox = ({ options: allOptions, label, ...props }: DataCombo
45
46
  return (
46
47
  <>
47
48
  <ComboboxControl>
48
- <panda.div display="flex" flexDirection="column">
49
+ <panda.div display="flex" flexDirection="column" gap="2">
49
50
  {label && (
50
51
  <ComboboxLabel>
51
52
  <panda.span fontWeight="bold">{label}</panda.span>
52
53
  </ComboboxLabel>
53
54
  )}
54
- <panda.div
55
- display="flex"
56
- rounded="sm"
57
- border="solid 1px"
58
- borderColor={{ base: 'border', _focusWithin: { base: 'yellow.200', _dark: 'yellow.300' } }}
59
- >
55
+ <panda.div display="flex" position="relative" isolation="isolate">
60
56
  <ComboboxInput
61
57
  defaultValue={props.defaultValue}
62
58
  placeholder={props.placeholder ?? 'Search...'}
63
- className={css({
64
- width: 'full',
65
- p: 2,
66
- color: 'text',
67
- bg: 'transparent',
68
- _focus: { outline: 'none' },
69
- })}
59
+ className={inputRecipe()}
70
60
  onChange={(e) => {
71
61
  const value = e.target.value
72
62
  if (!value) {
@@ -79,31 +69,47 @@ export const DataCombobox = ({ options: allOptions, label, ...props }: DataCombo
79
69
  setOptions(filterFn(value))
80
70
  }}
81
71
  />
82
- {state.selectedValue && (
83
- <panda.span
84
- display="flex"
85
- px="2"
86
- cursor="pointer"
87
- userSelect="none"
88
- onClick={() => state.clearValue()}
89
- alignItems="center"
90
- >
91
- <XMarkIcon />
92
- </panda.span>
93
- )}
94
- <ComboboxTrigger>
95
- <panda.span
96
- ml="auto"
97
- p="2"
98
- display="flex"
99
- cursor="pointer"
100
- borderLeft="solid 1px"
101
- borderColor="border"
102
- color="text"
103
- >
104
- {state.isOpen ? <ChevronUpIcon /> : <ChevronDownIcon />}
105
- </panda.span>
106
- </ComboboxTrigger>
72
+ <Flex
73
+ top="0px"
74
+ right="0px"
75
+ align="center"
76
+ justify="center"
77
+ position="absolute"
78
+ zIndex="2"
79
+ height="full"
80
+ >
81
+ {state.selectedValue && (
82
+ <panda.span
83
+ display="flex"
84
+ px="2"
85
+ cursor="pointer"
86
+ userSelect="none"
87
+ onClick={() => state.clearValue()}
88
+ alignItems="center"
89
+ >
90
+ <XMarkIcon />
91
+ </panda.span>
92
+ )}
93
+ <ComboboxTrigger>
94
+ <panda.span
95
+ ml="auto"
96
+ p="2"
97
+ display="flex"
98
+ cursor="pointer"
99
+ borderLeft="solid 1px"
100
+ borderColor="border"
101
+ color="text"
102
+ >
103
+ <panda.span
104
+ data-expanded={state.isOpen ? '' : undefined}
105
+ transform={{ _expanded: 'rotate(180deg)' }}
106
+ transition="all .2s ease"
107
+ >
108
+ <ChevronDownIcon />
109
+ </panda.span>
110
+ </panda.span>
111
+ </ComboboxTrigger>
112
+ </Flex>
107
113
  </panda.div>
108
114
  </panda.div>
109
115
  </ComboboxControl>
@@ -9,8 +9,7 @@ export function DataTable<T>({ list, columns }: { list: T[]; columns: ReadonlyAr
9
9
  return (
10
10
  <panda.div>
11
11
  <Grid
12
- style={{ gridTemplateColumns: `80px repeat(auto-fit, minmax(30px, 1fr))` }}
13
- // gridTemplateColumns="repeat(auto-fit, minmax(30px, 1fr))"
12
+ gridTemplateColumns="80px repeat(auto-fit, minmax(30px, 1fr))"
14
13
  w="full"
15
14
  fontWeight="bold"
16
15
  fontSize="lg"
@@ -23,15 +22,12 @@ export function DataTable<T>({ list, columns }: { list: T[]; columns: ReadonlyAr
23
22
  <panda.div className={flex({ direction: 'column', gap: '2' })}>
24
23
  {list.map((item, index) => {
25
24
  return (
26
- <Grid
27
- style={{ gridTemplateColumns: `80px repeat(auto-fit, minmax(30px, 1fr))` }}
28
- // gridTemplateColumns="repeat(auto-fit, minmax(30px, 1fr))"
29
- w="full"
30
- key={index}
31
- >
25
+ <Grid gridTemplateColumns="80px repeat(auto-fit, minmax(30px, 1fr))" w="full" key={index}>
32
26
  {columns.map((column) => {
33
27
  return (
34
- <panda.div key={column.accessor}>{column.cell?.(item) ?? (item as any)[column.accessor]}</panda.div>
28
+ <panda.div key={column.accessor} wordBreak="break-word">
29
+ {column.cell?.(item) ?? (item as any)[column.accessor]}
30
+ </panda.div>
35
31
  )
36
32
  })}
37
33
  </Grid>
@@ -1,7 +1,7 @@
1
1
  import { cva } from '../../styled-system/css'
2
2
  import { panda } from '../../styled-system/jsx'
3
3
 
4
- const recipe = cva({
4
+ export const inputRecipe = cva({
5
5
  base: {
6
6
  bg: 'transparent',
7
7
  width: 'full',
@@ -22,6 +22,6 @@ const recipe = cva({
22
22
  variants: {},
23
23
  })
24
24
 
25
- export const Input = panda('input', recipe)
25
+ export const Input = panda('input', inputRecipe)
26
26
 
27
- export const Textarea = panda('textarea', recipe)
27
+ export const Textarea = panda('textarea', inputRecipe)
@@ -24,8 +24,8 @@ const { title } = Astro.props
24
24
  <SideNav />
25
25
  </Stack>
26
26
 
27
- <Container width="full">
28
- <panda.div overflow="auto" px="4" pt="14" pb="8">
27
+ <Container width="full" overflow="auto">
28
+ <panda.div px="4" pt="14" pb="8">
29
29
  <panda.h1 fontSize="3xl" fontWeight="semibold" mb="8" letterSpacing="tight">
30
30
  {title}
31
31
  </panda.h1>
@@ -0,0 +1,363 @@
1
+ @layer utilities {
2
+ .styles\:text_red\! {
3
+ color: red !important;
4
+ }
5
+
6
+ .styles\:fs_30px\! {
7
+ font-size: 30px !important;
8
+ }
9
+
10
+ .styles\:bg_red\.300 {
11
+ background: var(--colors-red-300);
12
+ }
13
+
14
+ .styles\:w_20px {
15
+ width: 20px;
16
+ }
17
+
18
+ .styles\:w_70px {
19
+ width: 70px;
20
+ }
21
+
22
+ .styles\:w_50px {
23
+ width: 50px;
24
+ }
25
+
26
+ .styles\:ltr\:sm\:ml_4 {
27
+ [dir='ltr'] & {
28
+ @media screen and (min-width: 640px) {
29
+ margin-left: var(--spacing-4);
30
+ }
31
+ }
32
+ }
33
+
34
+ .styles\:rtl\:ml_-4 {
35
+ [dir='rtl'] & {
36
+ margin-left: calc(var(--spacing-4) * -1);
37
+ }
38
+ }
39
+
40
+ .styles\:light\:text_red {
41
+ &.light,
42
+ .light & {
43
+ color: red;
44
+ }
45
+ }
46
+
47
+ .styles\:dark\:text_green {
48
+ &.dark,
49
+ .dark & {
50
+ color: green;
51
+ }
52
+ }
53
+
54
+ .styles\:dark\:opacity_slate400 {
55
+ &.dark,
56
+ .dark & {
57
+ opacity: slate400;
58
+ }
59
+ }
60
+
61
+ .styles\:sm\:rtl\:top_20px {
62
+ [dir='rtl'] & {
63
+ @media screen and (min-width: 640px) {
64
+ top: 20px;
65
+ }
66
+ }
67
+ }
68
+
69
+ .styles\:left_20px {
70
+ left: 20px;
71
+ }
72
+
73
+ .styles\:\[\&_\>_p\]\:left_20px {
74
+ & > p {
75
+ left: 20px;
76
+ }
77
+ }
78
+
79
+ .styles\:\[\&_\>_p\]\:md\:left_40px {
80
+ & > p {
81
+ @media screen and (min-width: 768px) {
82
+ left: 40px;
83
+ }
84
+ }
85
+ }
86
+
87
+ .styles\:\[\&_\>_p\]\:light\:bg_red400 {
88
+ & > p {
89
+ &.light,
90
+ .light & {
91
+ background: red400;
92
+ }
93
+ }
94
+ }
95
+
96
+ .styles\:\[\&_\>_p\]\:dark\:bg_green500 {
97
+ & > p {
98
+ &.dark,
99
+ .dark & {
100
+ background: green500;
101
+ }
102
+ }
103
+ }
104
+
105
+ .styles\:\[\&_\>_p\]\:rtl\:font_sans {
106
+ & > p {
107
+ [dir='rtl'] & {
108
+ font: sans;
109
+ }
110
+ }
111
+ }
112
+
113
+ .styles\:\[\&\:\:placeholder\]\:left_40px {
114
+ &::placeholder {
115
+ left: 40px;
116
+ }
117
+ }
118
+
119
+ .styles\:\[\&\:\:placeholder\]\:bg_red400 {
120
+ &::placeholder {
121
+ background: red400;
122
+ }
123
+ }
124
+
125
+ .styles\:\[\&\:\:placeholder\]\:sm\:text_left {
126
+ &::placeholder {
127
+ @media screen and (min-width: 640px) {
128
+ text-align: left;
129
+ }
130
+ }
131
+ }
132
+
133
+ .styles\:all_unset {
134
+ all: unset;
135
+ }
136
+
137
+ .styles\:bg_red {
138
+ background-color: red;
139
+ }
140
+
141
+ .styles\:border_none {
142
+ border: var(--borders-none);
143
+ }
144
+
145
+ .styles\:p_\$3_\$3 {
146
+ padding: $3 $3;
147
+ }
148
+
149
+ .styles\:rounded_\$button {
150
+ border-radius: $button;
151
+ }
152
+
153
+ .styles\:fs_\$xsmall {
154
+ font-size: $xsmall;
155
+ }
156
+
157
+ .styles\:cursor_pointer {
158
+ cursor: pointer;
159
+ }
160
+
161
+ .styles\:\[\&_\+_span\]\:ml_\$2 {
162
+ & + span {
163
+ margin-left: $2;
164
+ }
165
+ }
166
+
167
+ .styles\:\[\.test_\&\]\:bg_blue {
168
+ .test & {
169
+ background-color: blue;
170
+ }
171
+ }
172
+
173
+ .styles\:\[\&_\.my-class\]\:text_red {
174
+ & .my-class {
175
+ color: red;
176
+ }
177
+ }
178
+
179
+ .styles\:\[\&_span\]\:text_red {
180
+ & span {
181
+ color: red;
182
+ }
183
+ }
184
+
185
+ .styles\:\[\&_kbd\]\:text_red {
186
+ & kbd {
187
+ color: red;
188
+ }
189
+ }
190
+
191
+ .styles\:\[\&\:focus\,_\&\:hover\]\:shadow_none {
192
+ &:focus,
193
+ &:hover {
194
+ box-shadow: none;
195
+ }
196
+ }
197
+
198
+ .styles\:\[\:focus_\>_\&\]\:text_white {
199
+ :focus > & {
200
+ color: var(--colors-white);
201
+ }
202
+ }
203
+
204
+ .styles\:sm\:hover\:top_50px {
205
+ &:where(:hover, [data-hover]) {
206
+ @media screen and (min-width: 640px) {
207
+ top: 50px;
208
+ }
209
+ }
210
+ }
211
+
212
+ .styles\:\[\&_\>_p\]\:ltr\:dark\:sm\:hover\:font_serif {
213
+ & > p {
214
+ &:where(:hover, [data-hover]) {
215
+ [dir='ltr'] & {
216
+ &.dark,
217
+ .dark & {
218
+ @media screen and (min-width: 640px) {
219
+ font: serif;
220
+ }
221
+ }
222
+ }
223
+ }
224
+ }
225
+ }
226
+
227
+ .styles\:\[input\:hover_\&\]\:bg_red400 {
228
+ input:hover & {
229
+ background: red400;
230
+ }
231
+ }
232
+
233
+ .styles\:\[input\:hover_\&\]\:sm\:fs_14px {
234
+ input:hover & {
235
+ @media screen and (min-width: 640px) {
236
+ font-size: 14px;
237
+ }
238
+ }
239
+ }
240
+
241
+ .styles\:\[input\:hover_\&\]\:lg\:fs_18px {
242
+ input:hover & {
243
+ @media screen and (min-width: 1024px) {
244
+ font-size: 18px;
245
+ }
246
+ }
247
+ }
248
+
249
+ .styles\:hover\:bg_pink\.400 {
250
+ &:where(:hover, [data-hover]) {
251
+ background: var(--colors-pink-400);
252
+ }
253
+ }
254
+
255
+ .styles\:hover\:sm\:dark\:bg_red\.300 {
256
+ &:where(:hover, [data-hover]) {
257
+ &.dark,
258
+ .dark & {
259
+ @media screen and (min-width: 640px) {
260
+ background: var(--colors-red-300);
261
+ }
262
+ }
263
+ }
264
+ }
265
+
266
+ .styles\:hover\:text_pink\.400 {
267
+ &:where(:hover, [data-hover]) {
268
+ color: var(--colors-pink-400);
269
+ }
270
+ }
271
+
272
+ .styles\:hover\:disabled\:sm\:bg_red\.300 {
273
+ &:where(:hover, [data-hover]) {
274
+ &:where(:disabled, [disabled], [data-disabled]) {
275
+ @media screen and (min-width: 640px) {
276
+ background: var(--colors-red-300);
277
+ }
278
+ }
279
+ }
280
+ }
281
+
282
+ .styles\:\[\@media_base\]\:\[\&\:hover\]\:left_40px {
283
+ &:hover {
284
+ @media base {
285
+ left: 40px;
286
+ }
287
+ }
288
+ }
289
+
290
+ .styles\:\[\@media_base\]\:\[\&\:hover\]\:sm\:text_left {
291
+ &:hover {
292
+ @media base {
293
+ @media screen and (min-width: 640px) {
294
+ text-align: left;
295
+ }
296
+ }
297
+ }
298
+ }
299
+
300
+ .styles\:\[\@media_\(min-width\:_768px\)\]\:\[\&\:hover\]\:bg_yellow {
301
+ &:hover {
302
+ @media (min-width: 768px) {
303
+ background-color: yellow;
304
+ }
305
+ }
306
+ }
307
+
308
+ .styles\:sm\:w_60px {
309
+ @media screen and (min-width: 640px) {
310
+ width: 60px;
311
+ }
312
+ }
313
+
314
+ .styles\:sm\:w_60px {
315
+ @media screen and (min-width: 640px) {
316
+ width: 60px;
317
+ }
318
+ }
319
+
320
+ .styles\:lg\:top_120px {
321
+ @media screen and (min-width: 1024px) {
322
+ top: 120px;
323
+ }
324
+ }
325
+
326
+ .styles\:md\:left_40px {
327
+ @media screen and (min-width: 768px) {
328
+ left: 40px;
329
+ }
330
+ }
331
+
332
+ .styles\:\[\@media_base\]\:left_40px {
333
+ @media base {
334
+ left: 40px;
335
+ }
336
+ }
337
+
338
+ .styles\:\[\@media_base\]\:sm\:text_left {
339
+ @media base {
340
+ @media screen and (min-width: 640px) {
341
+ text-align: left;
342
+ }
343
+ }
344
+ }
345
+
346
+ .styles\:\[\@media_\(min-width\:_768px\)\]\:bg_green {
347
+ @media (min-width: 768px) {
348
+ background-color: green;
349
+ }
350
+ }
351
+
352
+ .styles\:\[\@media_\(min-width\:_768px\)\]\:bg_green {
353
+ @media (min-width: 768px) {
354
+ background-color: green;
355
+ }
356
+ }
357
+
358
+ .styles\:\[\@media_\(min-width\:_768px\)\]\:fs_\$small {
359
+ @media (min-width: 768px) {
360
+ font-size: $small;
361
+ }
362
+ }
363
+ }
@@ -3,21 +3,6 @@
3
3
  margin: var(--spacing-4);
4
4
  }
5
5
 
6
- .w_full {
7
- width: var(--sizes-full);
8
- }
9
-
10
- .bg_transparent {
11
- background: var(--colors-transparent);
12
- }
13
-
14
- .focus\:ring_none {
15
- &:where(:focus, [data-focus]) {
16
- outline: 2px solid transparent;
17
- outline-offset: 2px;
18
- }
19
- }
20
-
21
6
  .max-h_300px {
22
7
  max-height: 300px;
23
8
  }
@@ -64,27 +49,16 @@
64
49
  flex-direction: column;
65
50
  }
66
51
 
67
- .rounded_sm {
68
- border-radius: var(--radii-sm);
52
+ .gap_2 {
53
+ gap: var(--spacing-2);
69
54
  }
70
55
 
71
- .border_solid_1px {
72
- border: solid 1px;
56
+ .pos_relative {
57
+ position: relative;
73
58
  }
74
59
 
75
- .focusWithin\:border_yellow\.200 {
76
- &:focus-within {
77
- border-color: var(--colors-yellow-200);
78
- }
79
- }
80
-
81
- .focusWithin\:dark\:border_yellow\.300 {
82
- &:focus-within {
83
- &.dark,
84
- .dark & {
85
- border-color: var(--colors-yellow-300);
86
- }
87
- }
60
+ .isolation_isolate {
61
+ isolation: isolate;
88
62
  }
89
63
 
90
64
  .font_bold {
@@ -99,10 +73,6 @@
99
73
  user-select: none;
100
74
  }
101
75
 
102
- .items_center {
103
- align-items: center;
104
- }
105
-
106
76
  .ml_auto {
107
77
  margin-left: auto;
108
78
  }
@@ -111,10 +81,6 @@
111
81
  padding: var(--spacing-2);
112
82
  }
113
83
 
114
- .d_flex {
115
- display: flex;
116
- }
117
-
118
84
  .cursor_pointer {
119
85
  cursor: pointer;
120
86
  }
@@ -130,4 +96,46 @@
130
96
  .text_text {
131
97
  color: var(--colors-text);
132
98
  }
99
+
100
+ .expanded\:transform_rotate\(180deg\) {
101
+ &:where([aria-expanded='true'], [data-expanded]) {
102
+ transform: rotate(180deg);
103
+ }
104
+ }
105
+
106
+ .transition_all_\.2s_ease {
107
+ transition: all 0.2s ease;
108
+ }
109
+
110
+ .d_flex {
111
+ display: flex;
112
+ }
113
+
114
+ .items_center {
115
+ align-items: center;
116
+ }
117
+
118
+ .justify_center {
119
+ justify-content: center;
120
+ }
121
+
122
+ .top_0px {
123
+ top: 0px;
124
+ }
125
+
126
+ .right_0px {
127
+ right: 0px;
128
+ }
129
+
130
+ .pos_absolute {
131
+ position: absolute;
132
+ }
133
+
134
+ .z_2 {
135
+ z-index: 2;
136
+ }
137
+
138
+ .h_full {
139
+ height: var(--sizes-full);
140
+ }
133
141
  }