@pandacss/studio 0.0.0-dev-20230613163214

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 (250) hide show
  1. package/LICENSE.md +21 -0
  2. package/astro.config.ts +14 -0
  3. package/dist/studio.d.ts +13 -0
  4. package/dist/studio.js +2089 -0
  5. package/dist/studio.mjs +2087 -0
  6. package/index.ts +1 -0
  7. package/package.json +59 -0
  8. package/panda.config.ts +110 -0
  9. package/public/favicon.svg +13 -0
  10. package/src/components/analyzer/category-utilities.tsx +146 -0
  11. package/src/components/analyzer/data-combobox.tsx +125 -0
  12. package/src/components/analyzer/data-table.tsx +43 -0
  13. package/src/components/analyzer/external-icon.tsx +8 -0
  14. package/src/components/analyzer/file-details.tsx +101 -0
  15. package/src/components/analyzer/get-report-infos-from.ts +80 -0
  16. package/src/components/analyzer/quick-tooltip.tsx +15 -0
  17. package/src/components/analyzer/report-item-columns.tsx +52 -0
  18. package/src/components/analyzer/report-item-link.tsx +98 -0
  19. package/src/components/analyzer/section.tsx +24 -0
  20. package/src/components/analyzer/sort-icon.tsx +7 -0
  21. package/src/components/analyzer/text-with-count.tsx +28 -0
  22. package/src/components/analyzer/token-search-combobox.tsx +39 -0
  23. package/src/components/analyzer/truncated-text.tsx +26 -0
  24. package/src/components/analyzer/utility-details.tsx +312 -0
  25. package/src/components/color-constrast.tsx +131 -0
  26. package/src/components/color-item.tsx +37 -0
  27. package/src/components/color-wrapper.tsx +25 -0
  28. package/src/components/colors.tsx +96 -0
  29. package/src/components/empty-state.tsx +19 -0
  30. package/src/components/font-family.tsx +55 -0
  31. package/src/components/font-tokens.tsx +69 -0
  32. package/src/components/head.astro +35 -0
  33. package/src/components/icons.tsx +207 -0
  34. package/src/components/input.tsx +27 -0
  35. package/src/components/layer-styles.tsx +38 -0
  36. package/src/components/logo.tsx +34 -0
  37. package/src/components/nav-item.tsx +39 -0
  38. package/src/components/overview.tsx +65 -0
  39. package/src/components/radii.tsx +34 -0
  40. package/src/components/semantic-color.tsx +27 -0
  41. package/src/components/side-nav-item.astro +25 -0
  42. package/src/components/side-nav.astro +30 -0
  43. package/src/components/sizes.tsx +53 -0
  44. package/src/components/text-styles.tsx +33 -0
  45. package/src/components/theme-toggle.astro +56 -0
  46. package/src/components/token-analyzer.tsx +390 -0
  47. package/src/components/token-content.tsx +5 -0
  48. package/src/components/token-group.tsx +6 -0
  49. package/src/components/typography-playground.tsx +83 -0
  50. package/src/env.d.ts +1 -0
  51. package/src/icons/moon.tsx +15 -0
  52. package/src/icons/sun.tsx +19 -0
  53. package/src/layouts/Layout.astro +19 -0
  54. package/src/layouts/Sidebar.astro +35 -0
  55. package/src/lib/analysis-data.ts +17 -0
  56. package/src/lib/color-contrast-checker.ts +218 -0
  57. package/src/lib/color.ts +40 -0
  58. package/src/lib/constants.ts +140 -0
  59. package/src/lib/create-context.ts +27 -0
  60. package/src/lib/get-report-item.tsx +41 -0
  61. package/src/lib/group-in.ts +35 -0
  62. package/src/lib/panda.context.ts +23 -0
  63. package/src/lib/pick.ts +24 -0
  64. package/src/lib/sizes-sort.ts +10 -0
  65. package/src/lib/truncate.tsx +7 -0
  66. package/src/lib/use-color-docs.ts +101 -0
  67. package/src/pages/colors.astro +11 -0
  68. package/src/pages/font-sizes.astro +15 -0
  69. package/src/pages/font-weights.astro +15 -0
  70. package/src/pages/fonts.astro +11 -0
  71. package/src/pages/index.astro +8 -0
  72. package/src/pages/layer-styles.astro +11 -0
  73. package/src/pages/letter-spacings.astro +20 -0
  74. package/src/pages/line-heights.astro +21 -0
  75. package/src/pages/playground/contrast-checker.astro +11 -0
  76. package/src/pages/playground/typography.astro +11 -0
  77. package/src/pages/radii.astro +11 -0
  78. package/src/pages/sizes.astro +14 -0
  79. package/src/pages/spacing.astro +14 -0
  80. package/src/pages/text-styles.astro +11 -0
  81. package/src/pages/token-analyzer/file.astro +11 -0
  82. package/src/pages/token-analyzer/index.astro +11 -0
  83. package/src/pages/token-analyzer/utility.astro +11 -0
  84. package/styled-system/chunks/..__core____tests____composition.test.css +2 -0
  85. package/styled-system/chunks/src__components__analyzer__category-utilities.css +97 -0
  86. package/styled-system/chunks/src__components__analyzer__data-combobox.css +77 -0
  87. package/styled-system/chunks/src__components__analyzer__data-table.css +37 -0
  88. package/styled-system/chunks/src__components__analyzer__file-details.css +103 -0
  89. package/styled-system/chunks/src__components__analyzer__quick-tooltip.css +2 -0
  90. package/styled-system/chunks/src__components__analyzer__report-item-columns.css +29 -0
  91. package/styled-system/chunks/src__components__analyzer__report-item-link.css +109 -0
  92. package/styled-system/chunks/src__components__analyzer__section.css +29 -0
  93. package/styled-system/chunks/src__components__analyzer__text-with-count.css +33 -0
  94. package/styled-system/chunks/src__components__analyzer__truncated-text.css +13 -0
  95. package/styled-system/chunks/src__components__analyzer__utility-details.css +125 -0
  96. package/styled-system/chunks/src__components__color-constrast.css +114 -0
  97. package/styled-system/chunks/src__components__color-item.css +21 -0
  98. package/styled-system/chunks/src__components__color-wrapper.css +73 -0
  99. package/styled-system/chunks/src__components__colors.css +97 -0
  100. package/styled-system/chunks/src__components__empty-state.css +45 -0
  101. package/styled-system/chunks/src__components__font-family.css +85 -0
  102. package/styled-system/chunks/src__components__font-tokens.css +61 -0
  103. package/styled-system/chunks/src__components__input.css +68 -0
  104. package/styled-system/chunks/src__components__layer-styles.css +66 -0
  105. package/styled-system/chunks/src__components__nav-item.css +73 -0
  106. package/styled-system/chunks/src__components__overview.css +125 -0
  107. package/styled-system/chunks/src__components__radii.css +49 -0
  108. package/styled-system/chunks/src__components__semantic-color.css +45 -0
  109. package/styled-system/chunks/src__components__side-nav-item.css +33 -0
  110. package/styled-system/chunks/src__components__side-nav.css +49 -0
  111. package/styled-system/chunks/src__components__sizes.css +41 -0
  112. package/styled-system/chunks/src__components__text-styles.css +31 -0
  113. package/styled-system/chunks/src__components__theme-toggle.css +63 -0
  114. package/styled-system/chunks/src__components__token-analyzer.css +227 -0
  115. package/styled-system/chunks/src__components__token-content.css +13 -0
  116. package/styled-system/chunks/src__components__token-group.css +21 -0
  117. package/styled-system/chunks/src__components__token-search-combobox.css +2 -0
  118. package/styled-system/chunks/src__components__typography-playground.css +61 -0
  119. package/styled-system/chunks/src__layouts__Layout.css +2 -0
  120. package/styled-system/chunks/src__layouts__Sidebar.css +113 -0
  121. package/styled-system/chunks/src__pages__colors.css +2 -0
  122. package/styled-system/chunks/src__pages__font-sizes.css +2 -0
  123. package/styled-system/chunks/src__pages__font-weights.css +2 -0
  124. package/styled-system/chunks/src__pages__fonts.css +2 -0
  125. package/styled-system/chunks/src__pages__index.css +2 -0
  126. package/styled-system/chunks/src__pages__layer-styles.css +2 -0
  127. package/styled-system/chunks/src__pages__letter-spacings.css +2 -0
  128. package/styled-system/chunks/src__pages__line-heights.css +2 -0
  129. package/styled-system/chunks/src__pages__playground__contrast-checker.css +2 -0
  130. package/styled-system/chunks/src__pages__playground__typography.css +2 -0
  131. package/styled-system/chunks/src__pages__radii.css +2 -0
  132. package/styled-system/chunks/src__pages__sizes.css +2 -0
  133. package/styled-system/chunks/src__pages__spacing.css +2 -0
  134. package/styled-system/chunks/src__pages__text-styles.css +2 -0
  135. package/styled-system/chunks/src__pages__token-analyzer__file.css +2 -0
  136. package/styled-system/chunks/src__pages__token-analyzer__index.css +2 -0
  137. package/styled-system/chunks/src__pages__token-analyzer__utility.css +2 -0
  138. package/styled-system/css/conditions.mjs +147 -0
  139. package/styled-system/css/css.d.ts +2 -0
  140. package/styled-system/css/css.mjs +391 -0
  141. package/styled-system/css/cva.d.ts +5 -0
  142. package/styled-system/css/cva.mjs +63 -0
  143. package/styled-system/css/cx.d.ts +4 -0
  144. package/styled-system/css/cx.mjs +15 -0
  145. package/styled-system/css/index.d.ts +3 -0
  146. package/styled-system/css/index.mjs +3 -0
  147. package/styled-system/global.css +61 -0
  148. package/styled-system/helpers.mjs +251 -0
  149. package/styled-system/jsx/absolute-center.d.ts +8 -0
  150. package/styled-system/jsx/absolute-center.mjs +9 -0
  151. package/styled-system/jsx/aspect-ratio.d.ts +8 -0
  152. package/styled-system/jsx/aspect-ratio.mjs +9 -0
  153. package/styled-system/jsx/box.d.ts +8 -0
  154. package/styled-system/jsx/box.mjs +8 -0
  155. package/styled-system/jsx/center.d.ts +8 -0
  156. package/styled-system/jsx/center.mjs +9 -0
  157. package/styled-system/jsx/circle.d.ts +8 -0
  158. package/styled-system/jsx/circle.mjs +9 -0
  159. package/styled-system/jsx/container.d.ts +8 -0
  160. package/styled-system/jsx/container.mjs +8 -0
  161. package/styled-system/jsx/divider.d.ts +8 -0
  162. package/styled-system/jsx/divider.mjs +9 -0
  163. package/styled-system/jsx/factory.d.ts +2 -0
  164. package/styled-system/jsx/factory.mjs +59 -0
  165. package/styled-system/jsx/flex.d.ts +8 -0
  166. package/styled-system/jsx/flex.mjs +9 -0
  167. package/styled-system/jsx/float.d.ts +8 -0
  168. package/styled-system/jsx/float.mjs +9 -0
  169. package/styled-system/jsx/grid-item.d.ts +8 -0
  170. package/styled-system/jsx/grid-item.mjs +9 -0
  171. package/styled-system/jsx/grid.d.ts +8 -0
  172. package/styled-system/jsx/grid.mjs +9 -0
  173. package/styled-system/jsx/hstack.d.ts +8 -0
  174. package/styled-system/jsx/hstack.mjs +9 -0
  175. package/styled-system/jsx/index.d.ts +20 -0
  176. package/styled-system/jsx/index.mjs +19 -0
  177. package/styled-system/jsx/is-valid-prop.mjs +1010 -0
  178. package/styled-system/jsx/spacer.d.ts +8 -0
  179. package/styled-system/jsx/spacer.mjs +9 -0
  180. package/styled-system/jsx/square.d.ts +8 -0
  181. package/styled-system/jsx/square.mjs +9 -0
  182. package/styled-system/jsx/stack.d.ts +8 -0
  183. package/styled-system/jsx/stack.mjs +9 -0
  184. package/styled-system/jsx/styled-link.d.ts +8 -0
  185. package/styled-system/jsx/styled-link.mjs +8 -0
  186. package/styled-system/jsx/vstack.d.ts +8 -0
  187. package/styled-system/jsx/vstack.mjs +9 -0
  188. package/styled-system/jsx/wrap.d.ts +8 -0
  189. package/styled-system/jsx/wrap.mjs +9 -0
  190. package/styled-system/patterns/absolute-center.d.ts +14 -0
  191. package/styled-system/patterns/absolute-center.mjs +23 -0
  192. package/styled-system/patterns/aspect-ratio.d.ts +14 -0
  193. package/styled-system/patterns/aspect-ratio.mjs +25 -0
  194. package/styled-system/patterns/box.d.ts +14 -0
  195. package/styled-system/patterns/box.mjs +12 -0
  196. package/styled-system/patterns/center.d.ts +14 -0
  197. package/styled-system/patterns/center.mjs +18 -0
  198. package/styled-system/patterns/circle.d.ts +14 -0
  199. package/styled-system/patterns/circle.mjs +22 -0
  200. package/styled-system/patterns/container.d.ts +14 -0
  201. package/styled-system/patterns/container.mjs +18 -0
  202. package/styled-system/patterns/divider.d.ts +16 -0
  203. package/styled-system/patterns/divider.mjs +21 -0
  204. package/styled-system/patterns/flex.d.ts +20 -0
  205. package/styled-system/patterns/flex.mjs +23 -0
  206. package/styled-system/patterns/float.d.ts +17 -0
  207. package/styled-system/patterns/float.mjs +45 -0
  208. package/styled-system/patterns/grid-item.d.ts +19 -0
  209. package/styled-system/patterns/grid-item.mjs +20 -0
  210. package/styled-system/patterns/grid.d.ts +18 -0
  211. package/styled-system/patterns/grid.mjs +25 -0
  212. package/styled-system/patterns/hstack.d.ts +15 -0
  213. package/styled-system/patterns/hstack.mjs +20 -0
  214. package/styled-system/patterns/index.d.ts +18 -0
  215. package/styled-system/patterns/index.mjs +18 -0
  216. package/styled-system/patterns/spacer.d.ts +14 -0
  217. package/styled-system/patterns/spacer.mjs +18 -0
  218. package/styled-system/patterns/square.d.ts +14 -0
  219. package/styled-system/patterns/square.mjs +21 -0
  220. package/styled-system/patterns/stack.d.ts +17 -0
  221. package/styled-system/patterns/stack.mjs +20 -0
  222. package/styled-system/patterns/styled-link.d.ts +14 -0
  223. package/styled-system/patterns/styled-link.mjs +18 -0
  224. package/styled-system/patterns/vstack.d.ts +15 -0
  225. package/styled-system/patterns/vstack.mjs +20 -0
  226. package/styled-system/patterns/wrap.d.ts +18 -0
  227. package/styled-system/patterns/wrap.mjs +22 -0
  228. package/styled-system/reset.css +190 -0
  229. package/styled-system/static.css +5 -0
  230. package/styled-system/styles.css +938 -0
  231. package/styled-system/tokens/index.css +374 -0
  232. package/styled-system/tokens/index.d.ts +8 -0
  233. package/styled-system/tokens/index.mjs +1590 -0
  234. package/styled-system/tokens/keyframes.css +30 -0
  235. package/styled-system/tokens/tokens.d.ts +56 -0
  236. package/styled-system/types/composition.d.ts +110 -0
  237. package/styled-system/types/conditions.d.ts +135 -0
  238. package/styled-system/types/csstype.d.ts +20748 -0
  239. package/styled-system/types/global.d.ts +15 -0
  240. package/styled-system/types/helpers.d.ts +1 -0
  241. package/styled-system/types/index.d.ts +3 -0
  242. package/styled-system/types/jsx.d.ts +27 -0
  243. package/styled-system/types/parts.d.ts +5 -0
  244. package/styled-system/types/pattern.d.ts +52 -0
  245. package/styled-system/types/prop-type.d.ts +300 -0
  246. package/styled-system/types/recipe.d.ts +79 -0
  247. package/styled-system/types/selectors.d.ts +56 -0
  248. package/styled-system/types/style-props.d.ts +688 -0
  249. package/styled-system/types/system-types.d.ts +76 -0
  250. package/virtual-panda.ts +72 -0
@@ -0,0 +1,15 @@
1
+ ---
2
+ import { FontTokens } from '../components/font-tokens'
3
+ import Layout from '../layouts/Layout.astro'
4
+ import Sidebar from '../layouts/Sidebar.astro'
5
+
6
+ import context from '../lib/panda.context'
7
+
8
+ const fontSizes = context.getCategory('fontSizes')
9
+ ---
10
+
11
+ <Layout>
12
+ <Sidebar title="Font Sizes">
13
+ <FontTokens client:load fontTokens={fontSizes} token="fontSize" />
14
+ </Sidebar>
15
+ </Layout>
@@ -0,0 +1,15 @@
1
+ ---
2
+ import { FontTokens } from '../components/font-tokens'
3
+ import Layout from '../layouts/Layout.astro'
4
+ import Sidebar from '../layouts/Sidebar.astro'
5
+
6
+ import context from '../lib/panda.context'
7
+
8
+ const fontWeights = context.getCategory('fontWeights')
9
+ ---
10
+
11
+ <Layout>
12
+ <Sidebar title="Font Weights">
13
+ <FontTokens client:load fontTokens={fontWeights} token="fontWeight" />
14
+ </Sidebar>
15
+ </Layout>
@@ -0,0 +1,11 @@
1
+ ---
2
+ import Layout from '../layouts/Layout.astro'
3
+ import Sidebar from '../layouts/Sidebar.astro'
4
+ import { FontFamily } from '../components/font-family'
5
+ ---
6
+
7
+ <Layout>
8
+ <Sidebar title="Fonts">
9
+ <FontFamily />
10
+ </Sidebar>
11
+ </Layout>
@@ -0,0 +1,8 @@
1
+ ---
2
+ import { Overview } from '../components/overview'
3
+ import Layout from '../layouts/Layout.astro'
4
+ ---
5
+
6
+ <Layout>
7
+ <Overview client:load />
8
+ </Layout>
@@ -0,0 +1,11 @@
1
+ ---
2
+ import { LayerStyles } from '../components/layer-styles'
3
+ import Layout from '../layouts/Layout.astro'
4
+ import Sidebar from '../layouts/Sidebar.astro'
5
+ ---
6
+
7
+ <Layout>
8
+ <Sidebar title="Layer Styles">
9
+ <LayerStyles client:load />
10
+ </Sidebar>
11
+ </Layout>
@@ -0,0 +1,20 @@
1
+ ---
2
+ import { FontTokens } from '../components/font-tokens'
3
+ import Layout from '../layouts/Layout.astro'
4
+ import Sidebar from '../layouts/Sidebar.astro'
5
+
6
+ import context from '../lib/panda.context'
7
+
8
+ const tokens = context.getCategory('letterSpacings')
9
+ ---
10
+
11
+ <Layout>
12
+ <Sidebar title="Letter Spacings">
13
+ <FontTokens
14
+ client:load
15
+ fontTokens={tokens}
16
+ token="letterSpacing"
17
+ text="The quick brown fox jumps over the lazy dog."
18
+ />
19
+ </Sidebar>
20
+ </Layout>
@@ -0,0 +1,21 @@
1
+ ---
2
+ import { FontTokens } from '../components/font-tokens'
3
+ import Layout from '../layouts/Layout.astro'
4
+ import Sidebar from '../layouts/Sidebar.astro'
5
+
6
+ import context from '../lib/panda.context'
7
+
8
+ const tokens = context.getCategory('lineHeights')
9
+ ---
10
+
11
+ <Layout>
12
+ <Sidebar title="Line Heights">
13
+ <FontTokens
14
+ client:load
15
+ fontTokens={tokens}
16
+ token="lineHeight"
17
+ largeText
18
+ text={`Panda design system lineHeight specifies the vertical distance between two lines of text. You can peveiew this visually here.`}
19
+ />
20
+ </Sidebar>
21
+ </Layout>
@@ -0,0 +1,11 @@
1
+ ---
2
+ import { ColorContrastChecker } from '../../components/color-constrast'
3
+ import Layout from '../../layouts/Layout.astro'
4
+ import Sidebar from '../../layouts/Sidebar.astro'
5
+ ---
6
+
7
+ <Layout>
8
+ <Sidebar>
9
+ <ColorContrastChecker client:load />
10
+ </Sidebar>
11
+ </Layout>
@@ -0,0 +1,11 @@
1
+ ---
2
+ import { TypographyPlayground } from '../../components/typography-playground'
3
+ import Layout from '../../layouts/Layout.astro'
4
+ import Sidebar from '../../layouts/Sidebar.astro'
5
+ ---
6
+
7
+ <Layout>
8
+ <Sidebar>
9
+ <TypographyPlayground client:load />
10
+ </Sidebar>
11
+ </Layout>
@@ -0,0 +1,11 @@
1
+ ---
2
+ import { Radii } from '../components/radii'
3
+ import Layout from '../layouts/Layout.astro'
4
+ import Sidebar from '../layouts/Sidebar.astro'
5
+ ---
6
+
7
+ <Layout>
8
+ <Sidebar title="Border Radius">
9
+ <Radii client:load />
10
+ </Sidebar>
11
+ </Layout>
@@ -0,0 +1,14 @@
1
+ ---
2
+ import { Sizes } from '../components/sizes'
3
+ import Layout from '../layouts/Layout.astro'
4
+ import Sidebar from '../layouts/Sidebar.astro'
5
+ import context from '../lib/panda.context'
6
+
7
+ const tokens = context.getCategory('sizes')
8
+ ---
9
+
10
+ <Layout>
11
+ <Sidebar title="Sizes">
12
+ <Sizes sizes={tokens} client:load />
13
+ </Sidebar>
14
+ </Layout>
@@ -0,0 +1,14 @@
1
+ ---
2
+ import { Sizes } from '../components/sizes'
3
+ import Layout from '../layouts/Layout.astro'
4
+ import Sidebar from '../layouts/Sidebar.astro'
5
+ import context from '../lib/panda.context'
6
+
7
+ const tokens = context.getCategory('spacing')
8
+ ---
9
+
10
+ <Layout>
11
+ <Sidebar title="Spacing">
12
+ <Sizes sizes={tokens} client:load />
13
+ </Sidebar>
14
+ </Layout>
@@ -0,0 +1,11 @@
1
+ ---
2
+ import { TextStyles } from '../components/text-styles'
3
+ import Layout from '../layouts/Layout.astro'
4
+ import Sidebar from '../layouts/Sidebar.astro'
5
+ ---
6
+
7
+ <Layout>
8
+ <Sidebar title="Text Styles">
9
+ <TextStyles client:load />
10
+ </Sidebar>
11
+ </Layout>
@@ -0,0 +1,11 @@
1
+ ---
2
+ import { FileDetails } from '../../components/analyzer/file-details'
3
+ import Layout from '../../layouts/Layout.astro'
4
+ import Sidebar from '../../layouts/Sidebar.astro'
5
+ ---
6
+
7
+ <Layout>
8
+ <Sidebar title="Token Analyzer - Files">
9
+ <FileDetails client:only />
10
+ </Sidebar>
11
+ </Layout>
@@ -0,0 +1,11 @@
1
+ ---
2
+ import { TokenAnalyzer } from '../../components/token-analyzer'
3
+ import Layout from '../../layouts/Layout.astro'
4
+ import Sidebar from '../../layouts/Sidebar.astro'
5
+ ---
6
+
7
+ <Layout>
8
+ <Sidebar title="Token Analyzer">
9
+ <TokenAnalyzer client:load />
10
+ </Sidebar>
11
+ </Layout>
@@ -0,0 +1,11 @@
1
+ ---
2
+ import { UtilityDetails } from '../../components/analyzer/utility-details'
3
+ import Layout from '../../layouts/Layout.astro'
4
+ import Sidebar from '../../layouts/Sidebar.astro'
5
+ ---
6
+
7
+ <Layout>
8
+ <Sidebar title="Token Analyzer - Utilities">
9
+ <UtilityDetails client:only />
10
+ </Sidebar>
11
+ </Layout>
@@ -0,0 +1,2 @@
1
+ @layer utilities {
2
+ }
@@ -0,0 +1,97 @@
1
+ @layer utilities {
2
+ .p_4px_8px {
3
+ padding: 4px 8px;
4
+ }
5
+
6
+ .bg_white {
7
+ background: var(--colors-white);
8
+ }
9
+
10
+ .list-style_none {
11
+ list-style: none;
12
+ }
13
+
14
+ .p_0 {
15
+ padding: 0;
16
+ }
17
+
18
+ .ml_auto {
19
+ margin-left: auto;
20
+ }
21
+
22
+ .w_26px {
23
+ width: 26px;
24
+ }
25
+
26
+ .ml_2 {
27
+ margin-left: var(--spacing-2);
28
+ }
29
+
30
+ .p_4 {
31
+ padding: var(--spacing-4);
32
+ }
33
+
34
+ .bg_gray\.50 {
35
+ background: var(--colors-gray-50);
36
+ }
37
+
38
+ .d_grid {
39
+ display: grid;
40
+ }
41
+
42
+ .grid-cols_repeat\(2\,_minmax\(0\,_1fr\)\) {
43
+ grid-template-columns: repeat(2, minmax(0, 1fr));
44
+ }
45
+
46
+ .gap_4 {
47
+ gap: var(--spacing-4);
48
+ }
49
+
50
+ .col-span_span_2 {
51
+ grid-column: span 2;
52
+ }
53
+
54
+ .d_inline-flex {
55
+ display: inline-flex;
56
+ }
57
+
58
+ .items_center {
59
+ align-items: center;
60
+ }
61
+
62
+ .opacity_0\.5 {
63
+ opacity: 0.5;
64
+ }
65
+
66
+ .border-b_1px_solid_transparent {
67
+ border-bottom: 1px solid transparent;
68
+ }
69
+
70
+ .cursor_pointer {
71
+ cursor: pointer;
72
+ }
73
+
74
+ .hover\:opacity_1 {
75
+ &:where(:hover, [data-hover]) {
76
+ opacity: 1;
77
+ }
78
+ }
79
+
80
+ .hover\:border-b_black {
81
+ &:where(:hover, [data-hover]) {
82
+ border-bottom-color: var(--colors-black);
83
+ }
84
+ }
85
+
86
+ .d_flex {
87
+ display: flex;
88
+ }
89
+
90
+ .flex-wrap_wrap {
91
+ flex-wrap: wrap;
92
+ }
93
+
94
+ .gap_2 {
95
+ gap: var(--spacing-2);
96
+ }
97
+ }
@@ -0,0 +1,77 @@
1
+ @layer utilities {
2
+ .w_full {
3
+ width: var(--sizes-full);
4
+ }
5
+
6
+ .highlighted\:ring_1px_solid_token\(colors\.blue\.400\,_blue\) {
7
+ &[data-highlighted] {
8
+ outline: 1px solid var(--colors-blue-400, blue);
9
+ }
10
+ }
11
+
12
+ .max-h_300px {
13
+ max-height: 300px;
14
+ }
15
+
16
+ .overflow_auto {
17
+ overflow: auto;
18
+ }
19
+
20
+ .bg_white {
21
+ background: var(--colors-white);
22
+ }
23
+
24
+ .list-style_none {
25
+ list-style: none;
26
+ }
27
+
28
+ .p_4px_8px {
29
+ padding: 4px 8px;
30
+ }
31
+
32
+ .highlighted\:ring_1px_solid_token\(colors\.blue\.400\,_blue\) {
33
+ &[data-highlighted] {
34
+ outline: 1px solid var(--colors-blue-400, blue);
35
+ }
36
+ }
37
+
38
+ .flex_column {
39
+ flex-direction: column;
40
+ }
41
+
42
+ .d_flex {
43
+ display: flex;
44
+ }
45
+
46
+ .border_1px_solid_token\(colors\.blue\.400\,_blue\) {
47
+ border: 1px solid var(--colors-blue-400, blue);
48
+ }
49
+
50
+ .mr_-2 {
51
+ margin-right: calc(var(--spacing-2) * -1);
52
+ }
53
+
54
+ .select_none {
55
+ user-select: none;
56
+ }
57
+
58
+ .fs_lg {
59
+ font-size: var(--font-sizes-lg);
60
+ }
61
+
62
+ .font_bold {
63
+ font-weight: var(--font-weights-bold);
64
+ }
65
+
66
+ .ml_auto {
67
+ margin-left: auto;
68
+ }
69
+
70
+ .px_2 {
71
+ padding-inline: var(--spacing-2);
72
+ }
73
+
74
+ .cursor_pointer {
75
+ cursor: pointer;
76
+ }
77
+ }
@@ -0,0 +1,37 @@
1
+ @layer utilities {
2
+ .font_bold {
3
+ font-weight: var(--font-weights-bold);
4
+ }
5
+
6
+ .fs_lg {
7
+ font-size: var(--font-sizes-lg);
8
+ }
9
+
10
+ .mb_2 {
11
+ margin-bottom: var(--spacing-2);
12
+ }
13
+
14
+ .d_grid {
15
+ display: grid;
16
+ }
17
+
18
+ .gap_10px {
19
+ gap: 10px;
20
+ }
21
+
22
+ .w_full {
23
+ width: var(--sizes-full);
24
+ }
25
+
26
+ .d_flex {
27
+ display: flex;
28
+ }
29
+
30
+ .flex_column {
31
+ flex-direction: column;
32
+ }
33
+
34
+ .gap_2 {
35
+ gap: var(--spacing-2);
36
+ }
37
+ }
@@ -0,0 +1,103 @@
1
+ @layer utilities {
2
+ .ml_auto {
3
+ margin-left: auto;
4
+ }
5
+
6
+ .p_4 {
7
+ padding: var(--spacing-4);
8
+ }
9
+
10
+ .justify_center {
11
+ justify-content: center;
12
+ }
13
+
14
+ .fs_xl {
15
+ font-size: var(--font-sizes-xl);
16
+ }
17
+
18
+ .p_16 {
19
+ padding: var(--spacing-16);
20
+ }
21
+
22
+ .mt_8 {
23
+ margin-top: var(--spacing-8);
24
+ }
25
+
26
+ .mt_1 {
27
+ margin-top: var(--spacing-1);
28
+ }
29
+
30
+ .font_bold {
31
+ font-weight: var(--font-weights-bold);
32
+ }
33
+
34
+ .mb_4 {
35
+ margin-bottom: var(--spacing-4);
36
+ }
37
+
38
+ .py_2 {
39
+ padding-block: var(--spacing-2);
40
+ }
41
+
42
+ .px_4 {
43
+ padding-inline: var(--spacing-4);
44
+ }
45
+
46
+ .transition_all_0\.2s_ease {
47
+ transition: all 0.2s ease;
48
+ }
49
+
50
+ .hover\:bg_gray\.100 {
51
+ &:where(:hover, [data-hover]) {
52
+ background-color: var(--colors-gray-100);
53
+ }
54
+ }
55
+
56
+ .d_inline-flex {
57
+ display: inline-flex;
58
+ }
59
+
60
+ .items_center {
61
+ align-items: center;
62
+ }
63
+
64
+ .opacity_0\.5 {
65
+ opacity: 0.5;
66
+ }
67
+
68
+ .border-b_1px_solid_transparent {
69
+ border-bottom: 1px solid transparent;
70
+ }
71
+
72
+ .cursor_pointer {
73
+ cursor: pointer;
74
+ }
75
+
76
+ .hover\:opacity_1 {
77
+ &:where(:hover, [data-hover]) {
78
+ opacity: 1;
79
+ }
80
+ }
81
+
82
+ .hover\:border-b_black {
83
+ &:where(:hover, [data-hover]) {
84
+ border-bottom-color: var(--colors-black);
85
+ }
86
+ }
87
+
88
+ .d_flex {
89
+ display: flex;
90
+ }
91
+
92
+ .flex-wrap_wrap {
93
+ flex-wrap: wrap;
94
+ }
95
+
96
+ .gap_2 {
97
+ gap: var(--spacing-2);
98
+ }
99
+
100
+ .mt_4 {
101
+ margin-top: var(--spacing-4);
102
+ }
103
+ }
@@ -0,0 +1,2 @@
1
+ @layer utilities {
2
+ }
@@ -0,0 +1,29 @@
1
+ @layer utilities {
2
+ .p_2 {
3
+ padding: var(--spacing-2);
4
+ }
5
+
6
+ .bg_white {
7
+ background-color: var(--colors-white);
8
+ }
9
+
10
+ .border_1px_solid_rgba\(0\,_0\,_0\,_0\.1\) {
11
+ border: 1px solid rgba(0, 0, 0, 0.1);
12
+ }
13
+
14
+ .mr_2 {
15
+ margin-right: var(--spacing-2);
16
+ }
17
+
18
+ .select_none {
19
+ user-select: none;
20
+ }
21
+
22
+ .d_flex {
23
+ display: flex;
24
+ }
25
+
26
+ .items_center {
27
+ align-items: center;
28
+ }
29
+ }
@@ -0,0 +1,109 @@
1
+ @layer utilities {
2
+ .d_flex {
3
+ display: flex;
4
+ }
5
+
6
+ .pos_relative {
7
+ position: relative;
8
+ }
9
+
10
+ .max-w_14px {
11
+ max-width: 14px;
12
+ }
13
+
14
+ .shrink_0 {
15
+ flex-shrink: 0;
16
+ }
17
+
18
+ .p_2 {
19
+ padding: var(--spacing-2);
20
+ }
21
+
22
+ .bg_white {
23
+ background-color: var(--colors-white);
24
+ }
25
+
26
+ .border_1px_solid_rgba\(0\,_0\,_0\,_0\.1\) {
27
+ border: 1px solid rgba(0, 0, 0, 0.1);
28
+ }
29
+
30
+ .hover\:opacity_1 {
31
+ &:where(:hover, [data-hover]) {
32
+ opacity: 1;
33
+ }
34
+ }
35
+
36
+ .hover\:border-b_black {
37
+ &:where(:hover, [data-hover]) {
38
+ border-bottom-color: var(--colors-black);
39
+ }
40
+ }
41
+
42
+ .hover\:opacity_1 {
43
+ &:where(:hover, [data-hover]) {
44
+ opacity: 1;
45
+ }
46
+ }
47
+
48
+ .hover\:border-b_black {
49
+ &:where(:hover, [data-hover]) {
50
+ border-bottom-color: var(--colors-black);
51
+ }
52
+ }
53
+
54
+ .text_red\.400 {
55
+ color: var(--colors-red-400);
56
+ }
57
+
58
+ .hover\:opacity_1 {
59
+ &:where(:hover, [data-hover]) {
60
+ opacity: 1;
61
+ }
62
+ }
63
+
64
+ .hover\:border-b_black {
65
+ &:where(:hover, [data-hover]) {
66
+ border-bottom-color: var(--colors-black);
67
+ }
68
+ }
69
+
70
+ .d_inline-flex {
71
+ display: inline-flex;
72
+ }
73
+
74
+ .items_center {
75
+ align-items: center;
76
+ }
77
+
78
+ .opacity_0\.5 {
79
+ opacity: 0.5;
80
+ }
81
+
82
+ .border-b_1px_solid_transparent {
83
+ border-bottom: 1px solid transparent;
84
+ }
85
+
86
+ .cursor_pointer {
87
+ cursor: pointer;
88
+ }
89
+
90
+ .hover\:opacity_1 {
91
+ &:where(:hover, [data-hover]) {
92
+ opacity: 1;
93
+ }
94
+ }
95
+
96
+ .hover\:border-b_black {
97
+ &:where(:hover, [data-hover]) {
98
+ border-bottom-color: var(--colors-black);
99
+ }
100
+ }
101
+
102
+ .self_flex-start {
103
+ align-self: flex-start;
104
+ }
105
+
106
+ .mr_2 {
107
+ margin-right: var(--spacing-2);
108
+ }
109
+ }