@pandacss/studio 0.3.0 → 0.3.2

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 (96) hide show
  1. package/LICENSE.md +1 -1
  2. package/package.json +8 -8
  3. package/src/components/analyzer/category-utilities.tsx +12 -4
  4. package/src/components/analyzer/data-combobox.tsx +50 -27
  5. package/src/components/analyzer/data-table.tsx +5 -9
  6. package/src/components/analyzer/external-icon.tsx +1 -1
  7. package/src/components/analyzer/report-item-columns.tsx +1 -1
  8. package/src/components/analyzer/report-item-link.tsx +1 -1
  9. package/src/components/analyzer/truncated-text.tsx +3 -1
  10. package/src/components/analyzer/utility-details.tsx +31 -25
  11. package/src/components/color-item.tsx +1 -1
  12. package/src/components/colors.tsx +12 -3
  13. package/src/components/icons.tsx +49 -0
  14. package/src/components/input.tsx +3 -3
  15. package/src/components/semantic-color.tsx +25 -19
  16. package/src/components/token-analyzer.tsx +7 -5
  17. package/src/layouts/Layout.astro +1 -1
  18. package/src/layouts/Sidebar.astro +2 -2
  19. package/styled-system/chunks/src__components__analyzer__category-utilities.css +21 -173
  20. package/styled-system/chunks/src__components__analyzer__data-combobox.css +63 -205
  21. package/styled-system/chunks/src__components__analyzer__data-table.css +8 -0
  22. package/styled-system/chunks/src__components__analyzer__report-item-columns.css +12 -4
  23. package/styled-system/chunks/src__components__analyzer__report-item-link.css +10 -106
  24. package/styled-system/chunks/src__components__analyzer__truncated-text.css +4 -16
  25. package/styled-system/chunks/src__components__analyzer__utility-details.css +32 -120
  26. package/styled-system/chunks/src__components__color-item.css +2 -2
  27. package/styled-system/chunks/src__components__colors.css +10 -2
  28. package/styled-system/chunks/src__components__semantic-color.css +28 -8
  29. package/styled-system/chunks/src__components__token-analyzer.css +18 -1361
  30. package/styled-system/chunks/src__layouts__Sidebar.css +4 -4
  31. package/styled-system/css/css.d.ts +1 -0
  32. package/styled-system/css/cva.d.ts +1 -0
  33. package/styled-system/css/cx.d.ts +1 -0
  34. package/styled-system/css/index.d.ts +1 -0
  35. package/styled-system/jsx/aspect-ratio.d.ts +1 -0
  36. package/styled-system/jsx/box.d.ts +1 -0
  37. package/styled-system/jsx/center.d.ts +1 -0
  38. package/styled-system/jsx/circle.d.ts +1 -0
  39. package/styled-system/jsx/container.d.ts +1 -0
  40. package/styled-system/jsx/divider.d.ts +1 -0
  41. package/styled-system/jsx/factory.d.ts +1 -0
  42. package/styled-system/jsx/flex.d.ts +1 -0
  43. package/styled-system/jsx/float.d.ts +1 -0
  44. package/styled-system/jsx/grid-item.d.ts +1 -0
  45. package/styled-system/jsx/grid.d.ts +1 -0
  46. package/styled-system/jsx/hstack.d.ts +1 -0
  47. package/styled-system/jsx/index.d.ts +1 -0
  48. package/styled-system/jsx/link-box.d.ts +1 -0
  49. package/styled-system/jsx/link-overlay.d.ts +1 -0
  50. package/styled-system/jsx/spacer.d.ts +1 -0
  51. package/styled-system/jsx/square.d.ts +1 -0
  52. package/styled-system/jsx/stack.d.ts +1 -0
  53. package/styled-system/jsx/styled-link.d.ts +1 -0
  54. package/styled-system/jsx/vstack.d.ts +1 -0
  55. package/styled-system/jsx/wrap.d.ts +1 -0
  56. package/styled-system/patterns/aspect-ratio.d.ts +1 -0
  57. package/styled-system/patterns/box.d.ts +1 -0
  58. package/styled-system/patterns/center.d.ts +1 -0
  59. package/styled-system/patterns/circle.d.ts +1 -0
  60. package/styled-system/patterns/container.d.ts +1 -0
  61. package/styled-system/patterns/divider.d.ts +1 -0
  62. package/styled-system/patterns/flex.d.ts +1 -0
  63. package/styled-system/patterns/float.d.ts +1 -0
  64. package/styled-system/patterns/grid-item.d.ts +1 -0
  65. package/styled-system/patterns/grid.d.ts +1 -0
  66. package/styled-system/patterns/hstack.d.ts +1 -0
  67. package/styled-system/patterns/index.d.ts +1 -0
  68. package/styled-system/patterns/link-box.d.ts +1 -0
  69. package/styled-system/patterns/link-overlay.d.ts +1 -0
  70. package/styled-system/patterns/spacer.d.ts +1 -0
  71. package/styled-system/patterns/square.d.ts +1 -0
  72. package/styled-system/patterns/stack.d.ts +1 -0
  73. package/styled-system/patterns/styled-link.d.ts +1 -0
  74. package/styled-system/patterns/vstack.d.ts +1 -0
  75. package/styled-system/patterns/wrap.d.ts +1 -0
  76. package/styled-system/styles.css +80 -92
  77. package/styled-system/tokens/index.d.ts +1 -0
  78. package/styled-system/tokens/tokens.d.ts +1 -0
  79. package/styled-system/types/composition.d.ts +1 -0
  80. package/styled-system/types/conditions.d.ts +1 -0
  81. package/styled-system/types/csstype.d.ts +1 -0
  82. package/styled-system/types/global.d.ts +6 -5
  83. package/styled-system/types/helpers.d.ts +1 -0
  84. package/styled-system/types/index.d.ts +3 -2
  85. package/styled-system/types/jsx.d.ts +1 -0
  86. package/styled-system/types/parts.d.ts +1 -0
  87. package/styled-system/types/pattern.d.ts +8 -6
  88. package/styled-system/types/prop-type.d.ts +1 -0
  89. package/styled-system/types/recipe.d.ts +1 -0
  90. package/styled-system/types/selectors.d.ts +1 -0
  91. package/styled-system/types/style-props.d.ts +4 -3
  92. package/styled-system/types/system-types.d.ts +1 -0
  93. package/styled-system/jsx/absolute-center.d.ts +0 -8
  94. package/styled-system/jsx/absolute-center.mjs +0 -9
  95. package/styled-system/patterns/absolute-center.d.ts +0 -14
  96. package/styled-system/patterns/absolute-center.mjs +0 -23
@@ -67,10 +67,6 @@
67
67
  min-width: var(--sizes-60);
68
68
  }
69
69
 
70
- .overflow_auto {
71
- overflow: auto;
72
- }
73
-
74
70
  .px_12 {
75
71
  padding-inline: var(--spacing-12);
76
72
  }
@@ -99,6 +95,10 @@
99
95
  width: var(--sizes-full);
100
96
  }
101
97
 
98
+ .overflow_auto {
99
+ overflow: auto;
100
+ }
101
+
102
102
  .md\:px_6 {
103
103
  @media screen and (min-width: 768px) {
104
104
  padding-inline: var(--spacing-6);
@@ -1,2 +1,3 @@
1
+ /* eslint-disable */
1
2
  import type { SystemStyleObject } from '../types'
2
3
  export declare function css(styles: SystemStyleObject): string
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { RecipeCreatorFn } from '../types/recipe'
2
3
 
3
4
  export declare const cva: RecipeCreatorFn
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  type Argument = string | boolean | null | undefined
2
3
 
3
4
  /** Conditionally join classNames into a single string */
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  export * from './css'
2
3
  export * from './cx'
3
4
  export * from './cva'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { FunctionComponent } from 'react'
2
3
  import type { AspectRatioProperties } from '../patterns/aspect-ratio'
3
4
  import type { HTMLPandaProps } from '../types/jsx'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { FunctionComponent } from 'react'
2
3
  import type { BoxProperties } from '../patterns/box'
3
4
  import type { HTMLPandaProps } from '../types/jsx'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { FunctionComponent } from 'react'
2
3
  import type { CenterProperties } from '../patterns/center'
3
4
  import type { HTMLPandaProps } from '../types/jsx'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { FunctionComponent } from 'react'
2
3
  import type { CircleProperties } from '../patterns/circle'
3
4
  import type { HTMLPandaProps } from '../types/jsx'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { FunctionComponent } from 'react'
2
3
  import type { ContainerProperties } from '../patterns/container'
3
4
  import type { HTMLPandaProps } from '../types/jsx'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { FunctionComponent } from 'react'
2
3
  import type { DividerProperties } from '../patterns/divider'
3
4
  import type { HTMLPandaProps } from '../types/jsx'
@@ -1,2 +1,3 @@
1
+ /* eslint-disable */
1
2
  import { Panda } from '../types/jsx'
2
3
  export declare const panda: Panda
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { FunctionComponent } from 'react'
2
3
  import type { FlexProperties } from '../patterns/flex'
3
4
  import type { HTMLPandaProps } from '../types/jsx'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { FunctionComponent } from 'react'
2
3
  import type { FloatProperties } from '../patterns/float'
3
4
  import type { HTMLPandaProps } from '../types/jsx'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { FunctionComponent } from 'react'
2
3
  import type { GridItemProperties } from '../patterns/grid-item'
3
4
  import type { HTMLPandaProps } from '../types/jsx'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { FunctionComponent } from 'react'
2
3
  import type { GridProperties } from '../patterns/grid'
3
4
  import type { HTMLPandaProps } from '../types/jsx'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { FunctionComponent } from 'react'
2
3
  import type { HstackProperties } from '../patterns/hstack'
3
4
  import type { HTMLPandaProps } from '../types/jsx'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  export * from './factory'
2
3
  export * from './box'
3
4
  export * from './flex'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { FunctionComponent } from 'react'
2
3
  import type { LinkBoxProperties } from '../patterns/link-box'
3
4
  import type { HTMLPandaProps } from '../types/jsx'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { FunctionComponent } from 'react'
2
3
  import type { LinkOverlayProperties } from '../patterns/link-overlay'
3
4
  import type { HTMLPandaProps } from '../types/jsx'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { FunctionComponent } from 'react'
2
3
  import type { SpacerProperties } from '../patterns/spacer'
3
4
  import type { HTMLPandaProps } from '../types/jsx'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { FunctionComponent } from 'react'
2
3
  import type { SquareProperties } from '../patterns/square'
3
4
  import type { HTMLPandaProps } from '../types/jsx'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { FunctionComponent } from 'react'
2
3
  import type { StackProperties } from '../patterns/stack'
3
4
  import type { HTMLPandaProps } from '../types/jsx'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { FunctionComponent } from 'react'
2
3
  import type { StyledLinkProperties } from '../patterns/styled-link'
3
4
  import type { HTMLPandaProps } from '../types/jsx'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { FunctionComponent } from 'react'
2
3
  import type { VstackProperties } from '../patterns/vstack'
3
4
  import type { HTMLPandaProps } from '../types/jsx'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { FunctionComponent } from 'react'
2
3
  import type { WrapProperties } from '../patterns/wrap'
3
4
  import type { HTMLPandaProps } from '../types/jsx'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { SystemStyleObject, ConditionalValue } from '../types'
2
3
  import type { PropertyValue } from '../types/prop-type'
3
4
  import type { Properties } from '../types/csstype'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { SystemStyleObject, ConditionalValue } from '../types'
2
3
  import type { PropertyValue } from '../types/prop-type'
3
4
  import type { Properties } from '../types/csstype'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { SystemStyleObject, ConditionalValue } from '../types'
2
3
  import type { PropertyValue } from '../types/prop-type'
3
4
  import type { Properties } from '../types/csstype'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { SystemStyleObject, ConditionalValue } from '../types'
2
3
  import type { PropertyValue } from '../types/prop-type'
3
4
  import type { Properties } from '../types/csstype'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { SystemStyleObject, ConditionalValue } from '../types'
2
3
  import type { PropertyValue } from '../types/prop-type'
3
4
  import type { Properties } from '../types/csstype'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { SystemStyleObject, ConditionalValue } from '../types'
2
3
  import type { PropertyValue } from '../types/prop-type'
3
4
  import type { Properties } from '../types/csstype'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { SystemStyleObject, ConditionalValue } from '../types'
2
3
  import type { PropertyValue } from '../types/prop-type'
3
4
  import type { Properties } from '../types/csstype'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { SystemStyleObject, ConditionalValue } from '../types'
2
3
  import type { PropertyValue } from '../types/prop-type'
3
4
  import type { Properties } from '../types/csstype'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { SystemStyleObject, ConditionalValue } from '../types'
2
3
  import type { PropertyValue } from '../types/prop-type'
3
4
  import type { Properties } from '../types/csstype'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { SystemStyleObject, ConditionalValue } from '../types'
2
3
  import type { PropertyValue } from '../types/prop-type'
3
4
  import type { Properties } from '../types/csstype'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { SystemStyleObject, ConditionalValue } from '../types'
2
3
  import type { PropertyValue } from '../types/prop-type'
3
4
  import type { Properties } from '../types/csstype'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  export * from './box'
2
3
  export * from './flex'
3
4
  export * from './stack'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { SystemStyleObject, ConditionalValue } from '../types'
2
3
  import type { PropertyValue } from '../types/prop-type'
3
4
  import type { Properties } from '../types/csstype'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { SystemStyleObject, ConditionalValue } from '../types'
2
3
  import type { PropertyValue } from '../types/prop-type'
3
4
  import type { Properties } from '../types/csstype'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { SystemStyleObject, ConditionalValue } from '../types'
2
3
  import type { PropertyValue } from '../types/prop-type'
3
4
  import type { Properties } from '../types/csstype'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { SystemStyleObject, ConditionalValue } from '../types'
2
3
  import type { PropertyValue } from '../types/prop-type'
3
4
  import type { Properties } from '../types/csstype'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { SystemStyleObject, ConditionalValue } from '../types'
2
3
  import type { PropertyValue } from '../types/prop-type'
3
4
  import type { Properties } from '../types/csstype'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { SystemStyleObject, ConditionalValue } from '../types'
2
3
  import type { PropertyValue } from '../types/prop-type'
3
4
  import type { Properties } from '../types/csstype'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { SystemStyleObject, ConditionalValue } from '../types'
2
3
  import type { PropertyValue } from '../types/prop-type'
3
4
  import type { Properties } from '../types/csstype'
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { SystemStyleObject, ConditionalValue } from '../types'
2
3
  import type { PropertyValue } from '../types/prop-type'
3
4
  import type { Properties } from '../types/csstype'
@@ -11,6 +11,10 @@
11
11
  @import './tokens/keyframes.css';
12
12
 
13
13
  @layer utilities {
14
+ .w_26px {
15
+ width: 26px;
16
+ }
17
+
14
18
  .grid-cols_repeat\(2\,_minmax\(0\,_1fr\)\) {
15
19
  grid-template-columns: repeat(2, minmax(0, 1fr));
16
20
  }
@@ -23,44 +27,56 @@
23
27
  margin: var(--spacing-4);
24
28
  }
25
29
 
26
- .border_1px_solid_token\(colors\.blue\.400\,_blue\) {
27
- border: 1px solid var(--colors-blue-400, blue);
30
+ .max-h_300px {
31
+ max-height: 300px;
28
32
  }
29
33
 
30
- .border_1px_solid_token\(colors\.border\,_blue\) {
31
- border: 1px solid var(--colors-border, blue);
34
+ .word-wrap_break-word {
35
+ word-wrap: break-word;
32
36
  }
33
37
 
34
- .transition_all_\.2s_ease {
35
- transition: all 0.2s ease;
38
+ .highlighted\:bg_border[data-highlighted] {
39
+ background: var(--colors-border);
36
40
  }
37
41
 
38
- .transition_outline_\.2s_ease {
39
- transition: outline 0.2s ease;
42
+ .isolation_isolate {
43
+ isolation: isolate;
40
44
  }
41
45
 
42
- .highlighted\:opacity_0\.8[data-highlighted] {
43
- opacity: 0.8;
46
+ .border-l_solid_1px {
47
+ border-left: solid 1px;
44
48
  }
45
49
 
46
- .highlighted\:ring_1px_solid_token\(colors\.blue\.400\,_blue\)[data-highlighted] {
47
- outline: 1px solid var(--colors-blue-400, blue);
50
+ .expanded\:transform_rotate\(180deg\):where([aria-expanded='true'], [data-expanded]) {
51
+ transform: rotate(180deg);
48
52
  }
49
53
 
50
- .max-h_300px {
51
- max-height: 300px;
54
+ .transition_all_\.2s_ease {
55
+ transition: all 0.2s ease;
52
56
  }
53
57
 
54
- .border_1px_solid_token\(colors\.border\) {
55
- border: 1px solid var(--colors-border);
58
+ .top_0px {
59
+ top: 0px;
56
60
  }
57
61
 
58
- .highlighted\:bg_border[data-highlighted] {
59
- background: var(--colors-border);
62
+ .right_0px {
63
+ right: 0px;
64
+ }
65
+
66
+ .pos_absolute {
67
+ position: absolute;
68
+ }
69
+
70
+ .z_2 {
71
+ z-index: 2;
60
72
  }
61
73
 
62
- .mr_-2 {
63
- margin-right: calc(var(--spacing-2) * -1);
74
+ .break_break-word {
75
+ word-break: break-word;
76
+ }
77
+
78
+ .grid-cols_80px_repeat\(auto-fit\,_minmax\(30px\,_1fr\)\) {
79
+ grid-template-columns: 80px repeat(auto-fit, minmax(30px, 1fr));
64
80
  }
65
81
 
66
82
  .max-w_14px {
@@ -71,8 +87,8 @@
71
87
  flex-shrink: 0;
72
88
  }
73
89
 
74
- .border_border {
75
- border: border;
90
+ .border_1px_solid_token\(colors\.border\) {
91
+ border: 1px solid var(--colors-border);
76
92
  }
77
93
 
78
94
  .text_red\.400 {
@@ -95,18 +111,10 @@
95
111
  margin-left: var(--spacing-1);
96
112
  }
97
113
 
98
- .bg_white {
99
- background-color: var(--colors-white);
100
- }
101
-
102
114
  .bg_card {
103
115
  background-color: var(--colors-card);
104
116
  }
105
117
 
106
- .bg_gray\.50 {
107
- background: var(--colors-gray-50);
108
- }
109
-
110
118
  .p_16 {
111
119
  padding: var(--spacing-16);
112
120
  }
@@ -115,14 +123,18 @@
115
123
  margin-top: var(--spacing-1);
116
124
  }
117
125
 
118
- .self_flex-end {
119
- align-self: flex-end;
120
- }
121
-
122
126
  .select_none {
123
127
  user-select: none;
124
128
  }
125
129
 
130
+ .px_3 {
131
+ padding-inline: var(--spacing-3);
132
+ }
133
+
134
+ .h_16 {
135
+ height: var(--sizes-16);
136
+ }
137
+
126
138
  .pt_16 {
127
139
  padding-top: var(--spacing-16);
128
140
  }
@@ -176,10 +188,6 @@
176
188
  margin-bottom: var(--spacing-2);
177
189
  }
178
190
 
179
- .opacity_0\.1 {
180
- opacity: 0.1;
181
- }
182
-
183
191
  .h_10 {
184
192
  height: var(--sizes-10);
185
193
  }
@@ -236,6 +244,10 @@
236
244
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
237
245
  }
238
246
 
247
+ .grid-cols_repeat\(auto-fit\,_minmax\(30rem\,_1fr\)\) {
248
+ grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
249
+ }
250
+
239
251
  .my_5 {
240
252
  margin-block: var(--spacing-5);
241
253
  }
@@ -272,10 +284,6 @@
272
284
  font-size: 24px;
273
285
  }
274
286
 
275
- .text_uppercase {
276
- text-transform: uppercase;
277
- }
278
-
279
287
  .justify_center {
280
288
  justify-content: center;
281
289
  }
@@ -374,6 +382,10 @@
374
382
  width: var(--sizes-60);
375
383
  }
376
384
 
385
+ .p_4 {
386
+ padding: var(--spacing-4);
387
+ }
388
+
377
389
  .\[\&_svg\]\:font_normal svg {
378
390
  font-weight: var(--font-weights-normal);
379
391
  }
@@ -486,6 +498,10 @@
486
498
  border-color: var(--colors-neutral-700);
487
499
  }
488
500
 
501
+ .text_uppercase {
502
+ text-transform: uppercase;
503
+ }
504
+
489
505
  .d_block {
490
506
  display: block;
491
507
  }
@@ -624,22 +640,6 @@
624
640
  padding-block: 20px;
625
641
  }
626
642
 
627
- .p_4 {
628
- padding: var(--spacing-4);
629
- }
630
-
631
- .debug_true {
632
- outline: 1px solid blue !important;
633
- }
634
-
635
- .debug_true > * {
636
- outline: 1px solid red !important;
637
- }
638
-
639
- .bg_white {
640
- background: var(--colors-white);
641
- }
642
-
643
643
  .p_4px_8px {
644
644
  padding: 4px 8px;
645
645
  }
@@ -668,12 +668,8 @@
668
668
  width: 100%;
669
669
  }
670
670
 
671
- .w_26px {
672
- width: 26px;
673
- }
674
-
675
- .text_text {
676
- color: var(--colors-text);
671
+ .w_5 {
672
+ width: var(--sizes-5);
677
673
  }
678
674
 
679
675
  .ml_auto {
@@ -716,10 +712,6 @@
716
712
  padding: 0;
717
713
  }
718
714
 
719
- .rounded_md {
720
- border-radius: var(--radii-md);
721
- }
722
-
723
715
  .py_2 {
724
716
  padding-block: var(--spacing-2);
725
717
  }
@@ -728,6 +720,10 @@
728
720
  transition: all 0.2s ease;
729
721
  }
730
722
 
723
+ .rounded_md {
724
+ border-radius: var(--radii-md);
725
+ }
726
+
731
727
  .bg_none {
732
728
  background: none;
733
729
  }
@@ -744,6 +740,10 @@
744
740
  padding-right: var(--spacing-4);
745
741
  }
746
742
 
743
+ .text_text {
744
+ color: var(--colors-text);
745
+ }
746
+
747
747
  .mb_4 {
748
748
  margin-bottom: var(--spacing-4);
749
749
  }
@@ -912,10 +912,6 @@
912
912
  min-width: var(--sizes-60);
913
913
  }
914
914
 
915
- .overflow_auto {
916
- overflow: auto;
917
- }
918
-
919
915
  .px_12 {
920
916
  padding-inline: var(--spacing-12);
921
917
  }
@@ -944,6 +940,10 @@
944
940
  width: var(--sizes-full);
945
941
  }
946
942
 
943
+ .overflow_auto {
944
+ overflow: auto;
945
+ }
946
+
947
947
  .focusWithin\:outline-style_solid:focus-within {
948
948
  outline-style: solid;
949
949
  }
@@ -960,12 +960,8 @@
960
960
  outline-color: var(--colors-neutral-400);
961
961
  }
962
962
 
963
- .focus\:border_1px_solid_token\(colors\.blue\.400\,_blue\):where(:focus, [data-focus]) {
964
- border: 1px solid var(--colors-blue-400, blue);
965
- }
966
-
967
- .hover\:border_1px_solid_token\(colors\.blue\.400\,_blue\):where(:hover, [data-hover]) {
968
- border: 1px solid var(--colors-blue-400, blue);
963
+ .hover\:bg_gray\.100:where(:hover, [data-hover]) {
964
+ background-color: var(--colors-gray-100);
969
965
  }
970
966
 
971
967
  .hover\:shadow_lg:where(:hover, [data-hover]) {
@@ -976,18 +972,6 @@
976
972
  color: var(--colors-yellow-300);
977
973
  }
978
974
 
979
- .hover\:bg_bg:where(:hover, [data-hover]) {
980
- background: var(--colors-bg);
981
- }
982
-
983
- .hover\:bg_gray\.50:where(:hover, [data-hover]) {
984
- background-color: var(--colors-gray-50);
985
- }
986
-
987
- .hover\:bg_gray\.100:where(:hover, [data-hover]) {
988
- background-color: var(--colors-gray-100);
989
- }
990
-
991
975
  .hover\:opacity_0\.8:where(:hover, [data-hover]) {
992
976
  opacity: 0.8;
993
977
  }
@@ -996,8 +980,12 @@
996
980
  background-color: var(--colors-border);
997
981
  }
998
982
 
999
- .hover\:bg_gray\.100:where(:hover, [data-hover]) {
1000
- background: var(--colors-gray-100);
983
+ .hover\:bg_border:where(:hover, [data-hover]) {
984
+ background: var(--colors-border);
985
+ }
986
+
987
+ .hover\:opacity_0\.6:where(:hover, [data-hover]) {
988
+ opacity: 0.6;
1001
989
  }
1002
990
 
1003
991
  .hover\:opacity_1:where(:hover, [data-hover]) {
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  import type { Token } from './tokens'
2
3
 
3
4
  export declare const token: {