@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.
- package/LICENSE.md +21 -0
- package/astro.config.ts +14 -0
- package/dist/studio.d.ts +13 -0
- package/dist/studio.js +2089 -0
- package/dist/studio.mjs +2087 -0
- package/index.ts +1 -0
- package/package.json +59 -0
- package/panda.config.ts +110 -0
- package/public/favicon.svg +13 -0
- package/src/components/analyzer/category-utilities.tsx +146 -0
- package/src/components/analyzer/data-combobox.tsx +125 -0
- package/src/components/analyzer/data-table.tsx +43 -0
- package/src/components/analyzer/external-icon.tsx +8 -0
- package/src/components/analyzer/file-details.tsx +101 -0
- package/src/components/analyzer/get-report-infos-from.ts +80 -0
- package/src/components/analyzer/quick-tooltip.tsx +15 -0
- package/src/components/analyzer/report-item-columns.tsx +52 -0
- package/src/components/analyzer/report-item-link.tsx +98 -0
- package/src/components/analyzer/section.tsx +24 -0
- package/src/components/analyzer/sort-icon.tsx +7 -0
- package/src/components/analyzer/text-with-count.tsx +28 -0
- package/src/components/analyzer/token-search-combobox.tsx +39 -0
- package/src/components/analyzer/truncated-text.tsx +26 -0
- package/src/components/analyzer/utility-details.tsx +312 -0
- package/src/components/color-constrast.tsx +131 -0
- package/src/components/color-item.tsx +37 -0
- package/src/components/color-wrapper.tsx +25 -0
- package/src/components/colors.tsx +96 -0
- package/src/components/empty-state.tsx +19 -0
- package/src/components/font-family.tsx +55 -0
- package/src/components/font-tokens.tsx +69 -0
- package/src/components/head.astro +35 -0
- package/src/components/icons.tsx +207 -0
- package/src/components/input.tsx +27 -0
- package/src/components/layer-styles.tsx +38 -0
- package/src/components/logo.tsx +34 -0
- package/src/components/nav-item.tsx +39 -0
- package/src/components/overview.tsx +65 -0
- package/src/components/radii.tsx +34 -0
- package/src/components/semantic-color.tsx +27 -0
- package/src/components/side-nav-item.astro +25 -0
- package/src/components/side-nav.astro +30 -0
- package/src/components/sizes.tsx +53 -0
- package/src/components/text-styles.tsx +33 -0
- package/src/components/theme-toggle.astro +56 -0
- package/src/components/token-analyzer.tsx +390 -0
- package/src/components/token-content.tsx +5 -0
- package/src/components/token-group.tsx +6 -0
- package/src/components/typography-playground.tsx +83 -0
- package/src/env.d.ts +1 -0
- package/src/icons/moon.tsx +15 -0
- package/src/icons/sun.tsx +19 -0
- package/src/layouts/Layout.astro +19 -0
- package/src/layouts/Sidebar.astro +35 -0
- package/src/lib/analysis-data.ts +17 -0
- package/src/lib/color-contrast-checker.ts +218 -0
- package/src/lib/color.ts +40 -0
- package/src/lib/constants.ts +140 -0
- package/src/lib/create-context.ts +27 -0
- package/src/lib/get-report-item.tsx +41 -0
- package/src/lib/group-in.ts +35 -0
- package/src/lib/panda.context.ts +23 -0
- package/src/lib/pick.ts +24 -0
- package/src/lib/sizes-sort.ts +10 -0
- package/src/lib/truncate.tsx +7 -0
- package/src/lib/use-color-docs.ts +101 -0
- package/src/pages/colors.astro +11 -0
- package/src/pages/font-sizes.astro +15 -0
- package/src/pages/font-weights.astro +15 -0
- package/src/pages/fonts.astro +11 -0
- package/src/pages/index.astro +8 -0
- package/src/pages/layer-styles.astro +11 -0
- package/src/pages/letter-spacings.astro +20 -0
- package/src/pages/line-heights.astro +21 -0
- package/src/pages/playground/contrast-checker.astro +11 -0
- package/src/pages/playground/typography.astro +11 -0
- package/src/pages/radii.astro +11 -0
- package/src/pages/sizes.astro +14 -0
- package/src/pages/spacing.astro +14 -0
- package/src/pages/text-styles.astro +11 -0
- package/src/pages/token-analyzer/file.astro +11 -0
- package/src/pages/token-analyzer/index.astro +11 -0
- package/src/pages/token-analyzer/utility.astro +11 -0
- package/styled-system/chunks/..__core____tests____composition.test.css +2 -0
- package/styled-system/chunks/src__components__analyzer__category-utilities.css +97 -0
- package/styled-system/chunks/src__components__analyzer__data-combobox.css +77 -0
- package/styled-system/chunks/src__components__analyzer__data-table.css +37 -0
- package/styled-system/chunks/src__components__analyzer__file-details.css +103 -0
- package/styled-system/chunks/src__components__analyzer__quick-tooltip.css +2 -0
- package/styled-system/chunks/src__components__analyzer__report-item-columns.css +29 -0
- package/styled-system/chunks/src__components__analyzer__report-item-link.css +109 -0
- package/styled-system/chunks/src__components__analyzer__section.css +29 -0
- package/styled-system/chunks/src__components__analyzer__text-with-count.css +33 -0
- package/styled-system/chunks/src__components__analyzer__truncated-text.css +13 -0
- package/styled-system/chunks/src__components__analyzer__utility-details.css +125 -0
- package/styled-system/chunks/src__components__color-constrast.css +114 -0
- package/styled-system/chunks/src__components__color-item.css +21 -0
- package/styled-system/chunks/src__components__color-wrapper.css +73 -0
- package/styled-system/chunks/src__components__colors.css +97 -0
- package/styled-system/chunks/src__components__empty-state.css +45 -0
- package/styled-system/chunks/src__components__font-family.css +85 -0
- package/styled-system/chunks/src__components__font-tokens.css +61 -0
- package/styled-system/chunks/src__components__input.css +68 -0
- package/styled-system/chunks/src__components__layer-styles.css +66 -0
- package/styled-system/chunks/src__components__nav-item.css +73 -0
- package/styled-system/chunks/src__components__overview.css +125 -0
- package/styled-system/chunks/src__components__radii.css +49 -0
- package/styled-system/chunks/src__components__semantic-color.css +45 -0
- package/styled-system/chunks/src__components__side-nav-item.css +33 -0
- package/styled-system/chunks/src__components__side-nav.css +49 -0
- package/styled-system/chunks/src__components__sizes.css +41 -0
- package/styled-system/chunks/src__components__text-styles.css +31 -0
- package/styled-system/chunks/src__components__theme-toggle.css +63 -0
- package/styled-system/chunks/src__components__token-analyzer.css +227 -0
- package/styled-system/chunks/src__components__token-content.css +13 -0
- package/styled-system/chunks/src__components__token-group.css +21 -0
- package/styled-system/chunks/src__components__token-search-combobox.css +2 -0
- package/styled-system/chunks/src__components__typography-playground.css +61 -0
- package/styled-system/chunks/src__layouts__Layout.css +2 -0
- package/styled-system/chunks/src__layouts__Sidebar.css +113 -0
- package/styled-system/chunks/src__pages__colors.css +2 -0
- package/styled-system/chunks/src__pages__font-sizes.css +2 -0
- package/styled-system/chunks/src__pages__font-weights.css +2 -0
- package/styled-system/chunks/src__pages__fonts.css +2 -0
- package/styled-system/chunks/src__pages__index.css +2 -0
- package/styled-system/chunks/src__pages__layer-styles.css +2 -0
- package/styled-system/chunks/src__pages__letter-spacings.css +2 -0
- package/styled-system/chunks/src__pages__line-heights.css +2 -0
- package/styled-system/chunks/src__pages__playground__contrast-checker.css +2 -0
- package/styled-system/chunks/src__pages__playground__typography.css +2 -0
- package/styled-system/chunks/src__pages__radii.css +2 -0
- package/styled-system/chunks/src__pages__sizes.css +2 -0
- package/styled-system/chunks/src__pages__spacing.css +2 -0
- package/styled-system/chunks/src__pages__text-styles.css +2 -0
- package/styled-system/chunks/src__pages__token-analyzer__file.css +2 -0
- package/styled-system/chunks/src__pages__token-analyzer__index.css +2 -0
- package/styled-system/chunks/src__pages__token-analyzer__utility.css +2 -0
- package/styled-system/css/conditions.mjs +147 -0
- package/styled-system/css/css.d.ts +2 -0
- package/styled-system/css/css.mjs +391 -0
- package/styled-system/css/cva.d.ts +5 -0
- package/styled-system/css/cva.mjs +63 -0
- package/styled-system/css/cx.d.ts +4 -0
- package/styled-system/css/cx.mjs +15 -0
- package/styled-system/css/index.d.ts +3 -0
- package/styled-system/css/index.mjs +3 -0
- package/styled-system/global.css +61 -0
- package/styled-system/helpers.mjs +251 -0
- package/styled-system/jsx/absolute-center.d.ts +8 -0
- package/styled-system/jsx/absolute-center.mjs +9 -0
- package/styled-system/jsx/aspect-ratio.d.ts +8 -0
- package/styled-system/jsx/aspect-ratio.mjs +9 -0
- package/styled-system/jsx/box.d.ts +8 -0
- package/styled-system/jsx/box.mjs +8 -0
- package/styled-system/jsx/center.d.ts +8 -0
- package/styled-system/jsx/center.mjs +9 -0
- package/styled-system/jsx/circle.d.ts +8 -0
- package/styled-system/jsx/circle.mjs +9 -0
- package/styled-system/jsx/container.d.ts +8 -0
- package/styled-system/jsx/container.mjs +8 -0
- package/styled-system/jsx/divider.d.ts +8 -0
- package/styled-system/jsx/divider.mjs +9 -0
- package/styled-system/jsx/factory.d.ts +2 -0
- package/styled-system/jsx/factory.mjs +59 -0
- package/styled-system/jsx/flex.d.ts +8 -0
- package/styled-system/jsx/flex.mjs +9 -0
- package/styled-system/jsx/float.d.ts +8 -0
- package/styled-system/jsx/float.mjs +9 -0
- package/styled-system/jsx/grid-item.d.ts +8 -0
- package/styled-system/jsx/grid-item.mjs +9 -0
- package/styled-system/jsx/grid.d.ts +8 -0
- package/styled-system/jsx/grid.mjs +9 -0
- package/styled-system/jsx/hstack.d.ts +8 -0
- package/styled-system/jsx/hstack.mjs +9 -0
- package/styled-system/jsx/index.d.ts +20 -0
- package/styled-system/jsx/index.mjs +19 -0
- package/styled-system/jsx/is-valid-prop.mjs +1010 -0
- package/styled-system/jsx/spacer.d.ts +8 -0
- package/styled-system/jsx/spacer.mjs +9 -0
- package/styled-system/jsx/square.d.ts +8 -0
- package/styled-system/jsx/square.mjs +9 -0
- package/styled-system/jsx/stack.d.ts +8 -0
- package/styled-system/jsx/stack.mjs +9 -0
- package/styled-system/jsx/styled-link.d.ts +8 -0
- package/styled-system/jsx/styled-link.mjs +8 -0
- package/styled-system/jsx/vstack.d.ts +8 -0
- package/styled-system/jsx/vstack.mjs +9 -0
- package/styled-system/jsx/wrap.d.ts +8 -0
- package/styled-system/jsx/wrap.mjs +9 -0
- package/styled-system/patterns/absolute-center.d.ts +14 -0
- package/styled-system/patterns/absolute-center.mjs +23 -0
- package/styled-system/patterns/aspect-ratio.d.ts +14 -0
- package/styled-system/patterns/aspect-ratio.mjs +25 -0
- package/styled-system/patterns/box.d.ts +14 -0
- package/styled-system/patterns/box.mjs +12 -0
- package/styled-system/patterns/center.d.ts +14 -0
- package/styled-system/patterns/center.mjs +18 -0
- package/styled-system/patterns/circle.d.ts +14 -0
- package/styled-system/patterns/circle.mjs +22 -0
- package/styled-system/patterns/container.d.ts +14 -0
- package/styled-system/patterns/container.mjs +18 -0
- package/styled-system/patterns/divider.d.ts +16 -0
- package/styled-system/patterns/divider.mjs +21 -0
- package/styled-system/patterns/flex.d.ts +20 -0
- package/styled-system/patterns/flex.mjs +23 -0
- package/styled-system/patterns/float.d.ts +17 -0
- package/styled-system/patterns/float.mjs +45 -0
- package/styled-system/patterns/grid-item.d.ts +19 -0
- package/styled-system/patterns/grid-item.mjs +20 -0
- package/styled-system/patterns/grid.d.ts +18 -0
- package/styled-system/patterns/grid.mjs +25 -0
- package/styled-system/patterns/hstack.d.ts +15 -0
- package/styled-system/patterns/hstack.mjs +20 -0
- package/styled-system/patterns/index.d.ts +18 -0
- package/styled-system/patterns/index.mjs +18 -0
- package/styled-system/patterns/spacer.d.ts +14 -0
- package/styled-system/patterns/spacer.mjs +18 -0
- package/styled-system/patterns/square.d.ts +14 -0
- package/styled-system/patterns/square.mjs +21 -0
- package/styled-system/patterns/stack.d.ts +17 -0
- package/styled-system/patterns/stack.mjs +20 -0
- package/styled-system/patterns/styled-link.d.ts +14 -0
- package/styled-system/patterns/styled-link.mjs +18 -0
- package/styled-system/patterns/vstack.d.ts +15 -0
- package/styled-system/patterns/vstack.mjs +20 -0
- package/styled-system/patterns/wrap.d.ts +18 -0
- package/styled-system/patterns/wrap.mjs +22 -0
- package/styled-system/reset.css +190 -0
- package/styled-system/static.css +5 -0
- package/styled-system/styles.css +938 -0
- package/styled-system/tokens/index.css +374 -0
- package/styled-system/tokens/index.d.ts +8 -0
- package/styled-system/tokens/index.mjs +1590 -0
- package/styled-system/tokens/keyframes.css +30 -0
- package/styled-system/tokens/tokens.d.ts +56 -0
- package/styled-system/types/composition.d.ts +110 -0
- package/styled-system/types/conditions.d.ts +135 -0
- package/styled-system/types/csstype.d.ts +20748 -0
- package/styled-system/types/global.d.ts +15 -0
- package/styled-system/types/helpers.d.ts +1 -0
- package/styled-system/types/index.d.ts +3 -0
- package/styled-system/types/jsx.d.ts +27 -0
- package/styled-system/types/parts.d.ts +5 -0
- package/styled-system/types/pattern.d.ts +52 -0
- package/styled-system/types/prop-type.d.ts +300 -0
- package/styled-system/types/recipe.d.ts +79 -0
- package/styled-system/types/selectors.d.ts +56 -0
- package/styled-system/types/style-props.d.ts +688 -0
- package/styled-system/types/system-types.d.ts +76 -0
- 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 { 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,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,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,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
|
+
}
|