@pyck/styled-system 0.0.17 → 0.1.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.
- package/dist/patterns/divider.d.ts +1 -1
- package/dist/patterns/float.d.ts +1 -1
- package/dist/recipes/data-list.d.ts +1 -1
- package/dist/recipes/data-list.mjs +4 -0
- package/dist/recipes/file-upload.d.ts +31 -0
- package/dist/recipes/file-upload.mjs +77 -0
- package/dist/recipes/index.d.ts +2 -0
- package/dist/recipes/index.mjs +2 -0
- package/dist/recipes/prose.d.ts +36 -0
- package/dist/recipes/prose.mjs +34 -0
- package/dist/recipes/tabs.d.ts +1 -1
- package/dist/recipes/tabs.mjs +4 -0
- package/dist/tokens/index.mjs +48 -0
- package/dist/tokens/tokens.d.ts +2 -2
- package/dist/types/prop-type.d.ts +1 -1
- package/package.json +6 -6
|
@@ -6,7 +6,7 @@ import type { DistributiveOmit } from '../types/system-types';
|
|
|
6
6
|
import type { Tokens } from '../tokens/index';
|
|
7
7
|
|
|
8
8
|
export interface DividerProperties {
|
|
9
|
-
orientation?: "horizontal" | "vertical"
|
|
9
|
+
orientation?: ConditionalValue<"horizontal" | "vertical">
|
|
10
10
|
thickness?: ConditionalValue<Tokens["sizes"] | Properties["borderWidth"]>
|
|
11
11
|
color?: ConditionalValue<Tokens["colors"] | Properties["borderColor"]>
|
|
12
12
|
}
|
package/dist/patterns/float.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export interface FloatProperties {
|
|
|
9
9
|
offsetX?: ConditionalValue<Tokens["spacing"] | Properties["left"]>
|
|
10
10
|
offsetY?: ConditionalValue<Tokens["spacing"] | Properties["top"]>
|
|
11
11
|
offset?: ConditionalValue<Tokens["spacing"] | Properties["top"]>
|
|
12
|
-
placement?: "bottom-end" | "bottom-start" | "top-end" | "top-start" | "bottom-center" | "top-center" | "middle-center" | "middle-end" | "middle-start"
|
|
12
|
+
placement?: ConditionalValue<"bottom-end" | "bottom-start" | "top-end" | "top-start" | "bottom-center" | "top-center" | "middle-center" | "middle-end" | "middle-start">
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
interface FloatStyles extends FloatProperties, DistributiveOmit<SystemStyleObject, keyof FloatProperties > {}
|
|
@@ -10,7 +10,7 @@ type DataListVariantMap = {
|
|
|
10
10
|
[key in keyof DataListVariant]: Array<DataListVariant[key]>
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
type DataListSlot = "root" | "label" | "list" | "item" | "term" | "value"
|
|
13
|
+
type DataListSlot = "root" | "label" | "list" | "item" | "term" | "value" | "empty"
|
|
14
14
|
|
|
15
15
|
export type DataListVariantProps = {
|
|
16
16
|
[key in keyof DataListVariant]?: ConditionalValue<DataListVariant[key]> | undefined
|
|
@@ -28,6 +28,10 @@ const dataListSlotNames = [
|
|
|
28
28
|
[
|
|
29
29
|
"value",
|
|
30
30
|
"data-list__value"
|
|
31
|
+
],
|
|
32
|
+
[
|
|
33
|
+
"empty",
|
|
34
|
+
"data-list__empty"
|
|
31
35
|
]
|
|
32
36
|
]
|
|
33
37
|
const dataListSlotFns = /* @__PURE__ */ dataListSlotNames.map(([slotName, slotKey]) => [slotName, createRecipe(slotKey, dataListDefaultVariants, getSlotCompoundVariant(dataListCompoundVariants, slotName))])
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
import type { ConditionalValue } from '../types/index';
|
|
3
|
+
import type { DistributiveOmit, Pretty } from '../types/system-types';
|
|
4
|
+
|
|
5
|
+
interface FileUploadVariant {
|
|
6
|
+
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
type FileUploadVariantMap = {
|
|
10
|
+
[key in keyof FileUploadVariant]: Array<FileUploadVariant[key]>
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
type FileUploadSlot = "root" | "dropzone" | "item" | "itemDeleteTrigger" | "itemGroup" | "itemName" | "itemPreview" | "itemPreviewImage" | "itemSizeText" | "label" | "trigger" | "clearTrigger"
|
|
14
|
+
|
|
15
|
+
export type FileUploadVariantProps = {
|
|
16
|
+
[key in keyof FileUploadVariant]?: ConditionalValue<FileUploadVariant[key]> | undefined
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export interface FileUploadRecipe {
|
|
20
|
+
__slot: FileUploadSlot
|
|
21
|
+
__type: FileUploadVariantProps
|
|
22
|
+
(props?: FileUploadVariantProps): Pretty<Record<FileUploadSlot, string>>
|
|
23
|
+
raw: (props?: FileUploadVariantProps) => FileUploadVariantProps
|
|
24
|
+
variantMap: FileUploadVariantMap
|
|
25
|
+
variantKeys: Array<keyof FileUploadVariant>
|
|
26
|
+
splitVariantProps<Props extends FileUploadVariantProps>(props: Props): [FileUploadVariantProps, Pretty<DistributiveOmit<Props, keyof FileUploadVariantProps>>]
|
|
27
|
+
getVariantProps: (props?: FileUploadVariantProps) => FileUploadVariantProps
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
export declare const fileUpload: FileUploadRecipe
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { compact, getSlotCompoundVariant, memo, splitProps } from '../helpers.mjs';
|
|
2
|
+
import { createRecipe } from './create-recipe.mjs';
|
|
3
|
+
|
|
4
|
+
const fileUploadDefaultVariants = {}
|
|
5
|
+
const fileUploadCompoundVariants = []
|
|
6
|
+
|
|
7
|
+
const fileUploadSlotNames = [
|
|
8
|
+
[
|
|
9
|
+
"root",
|
|
10
|
+
"fileUpload__root"
|
|
11
|
+
],
|
|
12
|
+
[
|
|
13
|
+
"dropzone",
|
|
14
|
+
"fileUpload__dropzone"
|
|
15
|
+
],
|
|
16
|
+
[
|
|
17
|
+
"item",
|
|
18
|
+
"fileUpload__item"
|
|
19
|
+
],
|
|
20
|
+
[
|
|
21
|
+
"itemDeleteTrigger",
|
|
22
|
+
"fileUpload__itemDeleteTrigger"
|
|
23
|
+
],
|
|
24
|
+
[
|
|
25
|
+
"itemGroup",
|
|
26
|
+
"fileUpload__itemGroup"
|
|
27
|
+
],
|
|
28
|
+
[
|
|
29
|
+
"itemName",
|
|
30
|
+
"fileUpload__itemName"
|
|
31
|
+
],
|
|
32
|
+
[
|
|
33
|
+
"itemPreview",
|
|
34
|
+
"fileUpload__itemPreview"
|
|
35
|
+
],
|
|
36
|
+
[
|
|
37
|
+
"itemPreviewImage",
|
|
38
|
+
"fileUpload__itemPreviewImage"
|
|
39
|
+
],
|
|
40
|
+
[
|
|
41
|
+
"itemSizeText",
|
|
42
|
+
"fileUpload__itemSizeText"
|
|
43
|
+
],
|
|
44
|
+
[
|
|
45
|
+
"label",
|
|
46
|
+
"fileUpload__label"
|
|
47
|
+
],
|
|
48
|
+
[
|
|
49
|
+
"trigger",
|
|
50
|
+
"fileUpload__trigger"
|
|
51
|
+
],
|
|
52
|
+
[
|
|
53
|
+
"clearTrigger",
|
|
54
|
+
"fileUpload__clearTrigger"
|
|
55
|
+
]
|
|
56
|
+
]
|
|
57
|
+
const fileUploadSlotFns = /* @__PURE__ */ fileUploadSlotNames.map(([slotName, slotKey]) => [slotName, createRecipe(slotKey, fileUploadDefaultVariants, getSlotCompoundVariant(fileUploadCompoundVariants, slotName))])
|
|
58
|
+
|
|
59
|
+
const fileUploadFn = memo((props = {}) => {
|
|
60
|
+
return Object.fromEntries(fileUploadSlotFns.map(([slotName, slotFn]) => [slotName, slotFn.recipeFn(props)]))
|
|
61
|
+
})
|
|
62
|
+
|
|
63
|
+
const fileUploadVariantKeys = []
|
|
64
|
+
const getVariantProps = (variants) => ({ ...fileUploadDefaultVariants, ...compact(variants) })
|
|
65
|
+
|
|
66
|
+
export const fileUpload = /* @__PURE__ */ Object.assign(fileUploadFn, {
|
|
67
|
+
__recipe__: false,
|
|
68
|
+
__name__: 'fileUpload',
|
|
69
|
+
raw: (props) => props,
|
|
70
|
+
classNameMap: {},
|
|
71
|
+
variantKeys: fileUploadVariantKeys,
|
|
72
|
+
variantMap: {},
|
|
73
|
+
splitVariantProps(props) {
|
|
74
|
+
return splitProps(props, fileUploadVariantKeys)
|
|
75
|
+
},
|
|
76
|
+
getVariantProps
|
|
77
|
+
})
|
package/dist/recipes/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
|
+
export * from './prose';
|
|
2
3
|
export * from './absolute-center';
|
|
3
4
|
export * from './badge';
|
|
4
5
|
export * from './button';
|
|
@@ -34,6 +35,7 @@ export * from './drawer';
|
|
|
34
35
|
export * from './drilldown-menu';
|
|
35
36
|
export * from './field';
|
|
36
37
|
export * from './fieldset';
|
|
38
|
+
export * from './file-upload';
|
|
37
39
|
export * from './floating-panel';
|
|
38
40
|
export * from './input-group';
|
|
39
41
|
export * from './menu';
|
package/dist/recipes/index.mjs
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from './prose.mjs';
|
|
1
2
|
export * from './absolute-center.mjs';
|
|
2
3
|
export * from './badge.mjs';
|
|
3
4
|
export * from './button.mjs';
|
|
@@ -33,6 +34,7 @@ export * from './drawer.mjs';
|
|
|
33
34
|
export * from './drilldown-menu.mjs';
|
|
34
35
|
export * from './field.mjs';
|
|
35
36
|
export * from './fieldset.mjs';
|
|
37
|
+
export * from './file-upload.mjs';
|
|
36
38
|
export * from './floating-panel.mjs';
|
|
37
39
|
export * from './input-group.mjs';
|
|
38
40
|
export * from './menu.mjs';
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
import type { ConditionalValue } from '../types/index';
|
|
3
|
+
import type { DistributiveOmit, Pretty } from '../types/system-types';
|
|
4
|
+
|
|
5
|
+
interface ProseVariant {
|
|
6
|
+
/**
|
|
7
|
+
* @default "base"
|
|
8
|
+
*/
|
|
9
|
+
size: "sm" | "base" | "lg" | "xl" | "2xl"
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
type ProseVariantMap = {
|
|
13
|
+
[key in keyof ProseVariant]: Array<ProseVariant[key]>
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
export type ProseVariantProps = {
|
|
19
|
+
[key in keyof ProseVariant]?: ConditionalValue<ProseVariant[key]> | undefined
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export interface ProseRecipe {
|
|
23
|
+
|
|
24
|
+
__type: ProseVariantProps
|
|
25
|
+
(props?: ProseVariantProps): string
|
|
26
|
+
raw: (props?: ProseVariantProps) => ProseVariantProps
|
|
27
|
+
variantMap: ProseVariantMap
|
|
28
|
+
variantKeys: Array<keyof ProseVariant>
|
|
29
|
+
splitVariantProps<Props extends ProseVariantProps>(props: Props): [ProseVariantProps, Pretty<DistributiveOmit<Props, keyof ProseVariantProps>>]
|
|
30
|
+
getVariantProps: (props?: ProseVariantProps) => ProseVariantProps
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Generated using 🐼 pandacss-preset-typography
|
|
35
|
+
*/
|
|
36
|
+
export declare const prose: ProseRecipe
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { memo, splitProps } from '../helpers.mjs';
|
|
2
|
+
import { createRecipe, mergeRecipes } from './create-recipe.mjs';
|
|
3
|
+
|
|
4
|
+
const proseFn = /* @__PURE__ */ createRecipe('prose', {
|
|
5
|
+
"size": "base"
|
|
6
|
+
}, [])
|
|
7
|
+
|
|
8
|
+
const proseVariantMap = {
|
|
9
|
+
"size": [
|
|
10
|
+
"sm",
|
|
11
|
+
"base",
|
|
12
|
+
"lg",
|
|
13
|
+
"xl",
|
|
14
|
+
"2xl"
|
|
15
|
+
]
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
const proseVariantKeys = Object.keys(proseVariantMap)
|
|
19
|
+
|
|
20
|
+
export const prose = /* @__PURE__ */ Object.assign(memo(proseFn.recipeFn), {
|
|
21
|
+
__recipe__: true,
|
|
22
|
+
__name__: 'prose',
|
|
23
|
+
__getCompoundVariantCss__: proseFn.__getCompoundVariantCss__,
|
|
24
|
+
raw: (props) => props,
|
|
25
|
+
variantKeys: proseVariantKeys,
|
|
26
|
+
variantMap: proseVariantMap,
|
|
27
|
+
merge(recipe) {
|
|
28
|
+
return mergeRecipes(this, recipe)
|
|
29
|
+
},
|
|
30
|
+
splitVariantProps(props) {
|
|
31
|
+
return splitProps(props, proseVariantKeys)
|
|
32
|
+
},
|
|
33
|
+
getVariantProps: proseFn.getVariantProps,
|
|
34
|
+
})
|
package/dist/recipes/tabs.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ type TabsVariantMap = {
|
|
|
18
18
|
[key in keyof TabsVariant]: Array<TabsVariant[key]>
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
type TabsSlot = "root" | "list" | "trigger" | "content" | "indicator"
|
|
21
|
+
type TabsSlot = "root" | "list" | "trigger" | "content" | "indicator" | "label"
|
|
22
22
|
|
|
23
23
|
export type TabsVariantProps = {
|
|
24
24
|
[key in keyof TabsVariant]?: ConditionalValue<TabsVariant[key]> | undefined
|
package/dist/recipes/tabs.mjs
CHANGED
|
@@ -27,6 +27,10 @@ const tabsSlotNames = [
|
|
|
27
27
|
[
|
|
28
28
|
"indicator",
|
|
29
29
|
"tabs__indicator"
|
|
30
|
+
],
|
|
31
|
+
[
|
|
32
|
+
"label",
|
|
33
|
+
"tabs__label"
|
|
30
34
|
]
|
|
31
35
|
]
|
|
32
36
|
const tabsSlotFns = /* @__PURE__ */ tabsSlotNames.map(([slotName, slotKey]) => [slotName, createRecipe(slotKey, tabsDefaultVariants, getSlotCompoundVariant(tabsCompoundVariants, slotName))])
|
package/dist/tokens/index.mjs
CHANGED
|
@@ -1895,6 +1895,30 @@ const tokens = {
|
|
|
1895
1895
|
"value": "1536px",
|
|
1896
1896
|
"variable": "var(--breakpoints-2xl)"
|
|
1897
1897
|
},
|
|
1898
|
+
"colors.prose.heading": {
|
|
1899
|
+
"value": "var(--colors-fg-default)",
|
|
1900
|
+
"variable": "var(--colors-prose-heading)"
|
|
1901
|
+
},
|
|
1902
|
+
"colors.prose.body": {
|
|
1903
|
+
"value": "var(--colors-fg-muted)",
|
|
1904
|
+
"variable": "var(--colors-prose-body)"
|
|
1905
|
+
},
|
|
1906
|
+
"colors.prose.link": {
|
|
1907
|
+
"value": "var(--colors-fg-default)",
|
|
1908
|
+
"variable": "var(--colors-prose-link)"
|
|
1909
|
+
},
|
|
1910
|
+
"colors.prose.bold": {
|
|
1911
|
+
"value": "var(--colors-fg-default)",
|
|
1912
|
+
"variable": "var(--colors-prose-bold)"
|
|
1913
|
+
},
|
|
1914
|
+
"colors.prose.td-border": {
|
|
1915
|
+
"value": "var(--colors-border)",
|
|
1916
|
+
"variable": "var(--colors-prose-td-border)"
|
|
1917
|
+
},
|
|
1918
|
+
"colors.prose.th-border": {
|
|
1919
|
+
"value": "var(--colors-border)",
|
|
1920
|
+
"variable": "var(--colors-prose-th-border)"
|
|
1921
|
+
},
|
|
1898
1922
|
"radii.l1": {
|
|
1899
1923
|
"value": "var(--radii-sm)",
|
|
1900
1924
|
"variable": "var(--radii-l1)"
|
|
@@ -3046,6 +3070,30 @@ const tokens = {
|
|
|
3046
3070
|
"colors.colorPalette.subtle": {
|
|
3047
3071
|
"value": "var(--colors-color-palette-subtle)",
|
|
3048
3072
|
"variable": "var(--colors-color-palette-subtle)"
|
|
3073
|
+
},
|
|
3074
|
+
"colors.colorPalette.heading": {
|
|
3075
|
+
"value": "var(--colors-color-palette-heading)",
|
|
3076
|
+
"variable": "var(--colors-color-palette-heading)"
|
|
3077
|
+
},
|
|
3078
|
+
"colors.colorPalette.body": {
|
|
3079
|
+
"value": "var(--colors-color-palette-body)",
|
|
3080
|
+
"variable": "var(--colors-color-palette-body)"
|
|
3081
|
+
},
|
|
3082
|
+
"colors.colorPalette.link": {
|
|
3083
|
+
"value": "var(--colors-color-palette-link)",
|
|
3084
|
+
"variable": "var(--colors-color-palette-link)"
|
|
3085
|
+
},
|
|
3086
|
+
"colors.colorPalette.bold": {
|
|
3087
|
+
"value": "var(--colors-color-palette-bold)",
|
|
3088
|
+
"variable": "var(--colors-color-palette-bold)"
|
|
3089
|
+
},
|
|
3090
|
+
"colors.colorPalette.td-border": {
|
|
3091
|
+
"value": "var(--colors-color-palette-td-border)",
|
|
3092
|
+
"variable": "var(--colors-color-palette-td-border)"
|
|
3093
|
+
},
|
|
3094
|
+
"colors.colorPalette.th-border": {
|
|
3095
|
+
"value": "var(--colors-color-palette-th-border)",
|
|
3096
|
+
"variable": "var(--colors-color-palette-th-border)"
|
|
3049
3097
|
}
|
|
3050
3098
|
}
|
|
3051
3099
|
|
package/dist/tokens/tokens.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
export type Token = `aspectRatios.${AspectRatioToken}` | `borders.${BorderToken}` | `radii.${RadiusToken}` | `fontWeights.${FontWeightToken}` | `lineHeights.${LineHeightToken}` | `letterSpacings.${LetterSpacingToken}` | `fontSizes.${FontSizeToken}` | `shadows.${ShadowToken}` | `blurs.${BlurToken}` | `spacing.${SpacingToken}` | `animations.${AnimationToken}` | `colors.${ColorToken}` | `durations.${DurationToken}` | `easings.${EasingToken}` | `zIndex.${ZIndexToken}` | `sizes.${SizeToken}` | `fonts.${FontToken}` | `breakpoints.${BreakpointToken}`
|
|
3
3
|
|
|
4
|
-
export type ColorPalette = "current" | "transparent" | "rose" | "pink" | "fuchsia" | "purple" | "violet" | "indigo" | "blue" | "sky" | "cyan" | "teal" | "emerald" | "green" | "lime" | "yellow" | "amber" | "orange" | "red" | "neutral" | "stone" | "zinc" | "gray" | "slate" | "black" | "white" | "teal.solid.bg" | "teal.solid" | "teal.solid.fg" | "teal.subtle.bg" | "teal.subtle" | "teal.subtle.fg" | "teal.surface.bg" | "teal.surface" | "teal.surface.border" | "teal.surface.fg" | "teal.outline" | "teal.outline.bg" | "teal.outline.border" | "teal.outline.fg" | "teal.plain" | "teal.plain.bg" | "teal.plain.fg" | "gray.solid.bg" | "gray.solid" | "gray.solid.fg" | "gray.subtle.bg" | "gray.subtle" | "gray.subtle.fg" | "gray.surface.bg" | "gray.surface" | "gray.surface.border" | "gray.surface.fg" | "gray.outline" | "gray.outline.bg" | "gray.outline.border" | "gray.outline.fg" | "gray.plain" | "gray.plain.bg" | "gray.plain.fg" | "orange.solid.bg" | "orange.solid" | "orange.solid.fg" | "orange.subtle.bg" | "orange.subtle" | "orange.subtle.fg" | "orange.surface.bg" | "orange.surface" | "orange.surface.border" | "orange.surface.fg" | "orange.outline" | "orange.outline.bg" | "orange.outline.border" | "orange.outline.fg" | "orange.plain" | "orange.plain.bg" | "orange.plain.fg" | "red.solid.bg" | "red.solid" | "red.solid.fg" | "red.subtle.bg" | "red.subtle" | "red.subtle.fg" | "red.surface.bg" | "red.surface" | "red.surface.border" | "red.surface.fg" | "red.outline" | "red.outline.bg" | "red.outline.border" | "red.outline.fg" | "red.plain" | "red.plain.bg" | "red.plain.fg" | "fg" | "canvas" | "border" | "error"
|
|
4
|
+
export type ColorPalette = "current" | "transparent" | "rose" | "pink" | "fuchsia" | "purple" | "violet" | "indigo" | "blue" | "sky" | "cyan" | "teal" | "emerald" | "green" | "lime" | "yellow" | "amber" | "orange" | "red" | "neutral" | "stone" | "zinc" | "gray" | "slate" | "black" | "white" | "prose" | "teal.solid.bg" | "teal.solid" | "teal.solid.fg" | "teal.subtle.bg" | "teal.subtle" | "teal.subtle.fg" | "teal.surface.bg" | "teal.surface" | "teal.surface.border" | "teal.surface.fg" | "teal.outline" | "teal.outline.bg" | "teal.outline.border" | "teal.outline.fg" | "teal.plain" | "teal.plain.bg" | "teal.plain.fg" | "gray.solid.bg" | "gray.solid" | "gray.solid.fg" | "gray.subtle.bg" | "gray.subtle" | "gray.subtle.fg" | "gray.surface.bg" | "gray.surface" | "gray.surface.border" | "gray.surface.fg" | "gray.outline" | "gray.outline.bg" | "gray.outline.border" | "gray.outline.fg" | "gray.plain" | "gray.plain.bg" | "gray.plain.fg" | "orange.solid.bg" | "orange.solid" | "orange.solid.fg" | "orange.subtle.bg" | "orange.subtle" | "orange.subtle.fg" | "orange.surface.bg" | "orange.surface" | "orange.surface.border" | "orange.surface.fg" | "orange.outline" | "orange.outline.bg" | "orange.outline.border" | "orange.outline.fg" | "orange.plain" | "orange.plain.bg" | "orange.plain.fg" | "red.solid.bg" | "red.solid" | "red.solid.fg" | "red.subtle.bg" | "red.subtle" | "red.subtle.fg" | "red.surface.bg" | "red.surface" | "red.surface.border" | "red.surface.fg" | "red.outline" | "red.outline.bg" | "red.outline.border" | "red.outline.fg" | "red.plain" | "red.plain.bg" | "red.plain.fg" | "fg" | "canvas" | "border" | "error"
|
|
5
5
|
|
|
6
6
|
export type AspectRatioToken = "square" | "landscape" | "portrait" | "wide" | "ultrawide" | "golden"
|
|
7
7
|
|
|
@@ -25,7 +25,7 @@ export type SpacingToken = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" |
|
|
|
25
25
|
|
|
26
26
|
export type AnimationToken = "spin" | "ping" | "pulse" | "bounce"
|
|
27
27
|
|
|
28
|
-
export type ColorToken = "current" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "black" | "black.a1" | "black.a2" | "black.a3" | "black.a4" | "black.a5" | "black.a6" | "black.a7" | "black.a8" | "black.a9" | "black.a10" | "black.a11" | "black.a12" | "white" | "white.a1" | "white.a2" | "white.a3" | "white.a4" | "white.a5" | "white.a6" | "white.a7" | "white.a8" | "white.a9" | "white.a10" | "white.a11" | "white.a12" | "teal.1" | "teal.2" | "teal.3" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "teal.11" | "teal.12" | "teal.a1" | "teal.a2" | "teal.a3" | "teal.a4" | "teal.a5" | "teal.a6" | "teal.a7" | "teal.a8" | "teal.a9" | "teal.a10" | "teal.a11" | "teal.a12" | "teal.solid.bg" | "teal.solid.bg.hover" | "teal.solid.fg" | "teal.subtle.bg" | "teal.subtle.bg.hover" | "teal.subtle.bg.active" | "teal.subtle.fg" | "teal.surface.bg" | "teal.surface.bg.active" | "teal.surface.border" | "teal.surface.border.hover" | "teal.surface.fg" | "teal.outline.bg.hover" | "teal.outline.bg.active" | "teal.outline.border" | "teal.outline.fg" | "teal.plain.bg.hover" | "teal.plain.bg.active" | "teal.plain.fg" | "teal.plain.fg.hover" | "gray.1" | "gray.2" | "gray.3" | "gray.4" | "gray.5" | "gray.6" | "gray.7" | "gray.8" | "gray.9" | "gray.10" | "gray.11" | "gray.12" | "gray.a1" | "gray.a2" | "gray.a3" | "gray.a4" | "gray.a5" | "gray.a6" | "gray.a7" | "gray.a8" | "gray.a9" | "gray.a10" | "gray.a11" | "gray.a12" | "gray.solid.bg" | "gray.solid.bg.hover" | "gray.solid.fg" | "gray.subtle.bg" | "gray.subtle.bg.hover" | "gray.subtle.bg.active" | "gray.subtle.fg" | "gray.surface.bg" | "gray.surface.bg.hover" | "gray.surface.bg.active" | "gray.surface.border" | "gray.surface.border.hover" | "gray.surface.fg" | "gray.outline.bg.hover" | "gray.outline.bg.active" | "gray.outline.border" | "gray.outline.fg" | "gray.plain.bg.hover" | "gray.plain.bg.active" | "gray.plain.fg" | "orange.1" | "orange.2" | "orange.3" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "orange.11" | "orange.12" | "orange.a1" | "orange.a2" | "orange.a3" | "orange.a4" | "orange.a5" | "orange.a6" | "orange.a7" | "orange.a8" | "orange.a9" | "orange.a10" | "orange.a11" | "orange.a12" | "orange.solid.bg" | "orange.solid.bg.hover" | "orange.solid.fg" | "orange.subtle.bg" | "orange.subtle.bg.hover" | "orange.subtle.bg.active" | "orange.subtle.fg" | "orange.surface.bg" | "orange.surface.bg.active" | "orange.surface.border" | "orange.surface.border.hover" | "orange.surface.fg" | "orange.outline.bg.hover" | "orange.outline.bg.active" | "orange.outline.border" | "orange.outline.fg" | "orange.plain.bg.hover" | "orange.plain.bg.active" | "orange.plain.fg" | "red.1" | "red.2" | "red.3" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "red.11" | "red.12" | "red.a1" | "red.a2" | "red.a3" | "red.a4" | "red.a5" | "red.a6" | "red.a7" | "red.a8" | "red.a9" | "red.a10" | "red.a11" | "red.a12" | "red.solid.bg" | "red.solid.bg.hover" | "red.solid.fg" | "red.subtle.bg" | "red.subtle.bg.hover" | "red.subtle.bg.active" | "red.subtle.fg" | "red.surface.bg" | "red.surface.bg.active" | "red.surface.border" | "red.surface.border.hover" | "red.surface.fg" | "red.outline.bg.hover" | "red.outline.bg.active" | "red.outline.border" | "red.outline.fg" | "red.plain.bg.hover" | "red.plain.bg.active" | "red.plain.fg" | "fg.default" | "fg.muted" | "fg.subtle" | "canvas" | "border" | "error" | "colorPalette" | "colorPalette.50" | "colorPalette.100" | "colorPalette.200" | "colorPalette.300" | "colorPalette.400" | "colorPalette.500" | "colorPalette.600" | "colorPalette.700" | "colorPalette.800" | "colorPalette.900" | "colorPalette.950" | "colorPalette.a1" | "colorPalette.a2" | "colorPalette.a3" | "colorPalette.a4" | "colorPalette.a5" | "colorPalette.a6" | "colorPalette.a7" | "colorPalette.a8" | "colorPalette.a9" | "colorPalette.a10" | "colorPalette.a11" | "colorPalette.a12" | "colorPalette.1" | "colorPalette.2" | "colorPalette.3" | "colorPalette.4" | "colorPalette.5" | "colorPalette.6" | "colorPalette.7" | "colorPalette.8" | "colorPalette.9" | "colorPalette.10" | "colorPalette.11" | "colorPalette.12" | "colorPalette.solid.bg" | "colorPalette.bg" | "colorPalette.solid.bg.hover" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.solid.fg" | "colorPalette.fg" | "colorPalette.subtle.bg" | "colorPalette.subtle.bg.hover" | "colorPalette.subtle.bg.active" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.subtle.fg" | "colorPalette.surface.bg" | "colorPalette.surface.bg.active" | "colorPalette.surface.border" | "colorPalette.border" | "colorPalette.surface.border.hover" | "colorPalette.border.hover" | "colorPalette.surface.fg" | "colorPalette.outline.bg.hover" | "colorPalette.outline.bg.active" | "colorPalette.outline.border" | "colorPalette.outline.fg" | "colorPalette.plain.bg.hover" | "colorPalette.plain.bg.active" | "colorPalette.plain.fg" | "colorPalette.plain.fg.hover" | "colorPalette.fg.hover" | "colorPalette.surface.bg.hover" | "colorPalette.default" | "colorPalette.muted" | "colorPalette.subtle"
|
|
28
|
+
export type ColorToken = "current" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "black" | "black.a1" | "black.a2" | "black.a3" | "black.a4" | "black.a5" | "black.a6" | "black.a7" | "black.a8" | "black.a9" | "black.a10" | "black.a11" | "black.a12" | "white" | "white.a1" | "white.a2" | "white.a3" | "white.a4" | "white.a5" | "white.a6" | "white.a7" | "white.a8" | "white.a9" | "white.a10" | "white.a11" | "white.a12" | "prose.heading" | "prose.body" | "prose.link" | "prose.bold" | "prose.td-border" | "prose.th-border" | "teal.1" | "teal.2" | "teal.3" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "teal.11" | "teal.12" | "teal.a1" | "teal.a2" | "teal.a3" | "teal.a4" | "teal.a5" | "teal.a6" | "teal.a7" | "teal.a8" | "teal.a9" | "teal.a10" | "teal.a11" | "teal.a12" | "teal.solid.bg" | "teal.solid.bg.hover" | "teal.solid.fg" | "teal.subtle.bg" | "teal.subtle.bg.hover" | "teal.subtle.bg.active" | "teal.subtle.fg" | "teal.surface.bg" | "teal.surface.bg.active" | "teal.surface.border" | "teal.surface.border.hover" | "teal.surface.fg" | "teal.outline.bg.hover" | "teal.outline.bg.active" | "teal.outline.border" | "teal.outline.fg" | "teal.plain.bg.hover" | "teal.plain.bg.active" | "teal.plain.fg" | "teal.plain.fg.hover" | "gray.1" | "gray.2" | "gray.3" | "gray.4" | "gray.5" | "gray.6" | "gray.7" | "gray.8" | "gray.9" | "gray.10" | "gray.11" | "gray.12" | "gray.a1" | "gray.a2" | "gray.a3" | "gray.a4" | "gray.a5" | "gray.a6" | "gray.a7" | "gray.a8" | "gray.a9" | "gray.a10" | "gray.a11" | "gray.a12" | "gray.solid.bg" | "gray.solid.bg.hover" | "gray.solid.fg" | "gray.subtle.bg" | "gray.subtle.bg.hover" | "gray.subtle.bg.active" | "gray.subtle.fg" | "gray.surface.bg" | "gray.surface.bg.hover" | "gray.surface.bg.active" | "gray.surface.border" | "gray.surface.border.hover" | "gray.surface.fg" | "gray.outline.bg.hover" | "gray.outline.bg.active" | "gray.outline.border" | "gray.outline.fg" | "gray.plain.bg.hover" | "gray.plain.bg.active" | "gray.plain.fg" | "orange.1" | "orange.2" | "orange.3" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "orange.11" | "orange.12" | "orange.a1" | "orange.a2" | "orange.a3" | "orange.a4" | "orange.a5" | "orange.a6" | "orange.a7" | "orange.a8" | "orange.a9" | "orange.a10" | "orange.a11" | "orange.a12" | "orange.solid.bg" | "orange.solid.bg.hover" | "orange.solid.fg" | "orange.subtle.bg" | "orange.subtle.bg.hover" | "orange.subtle.bg.active" | "orange.subtle.fg" | "orange.surface.bg" | "orange.surface.bg.active" | "orange.surface.border" | "orange.surface.border.hover" | "orange.surface.fg" | "orange.outline.bg.hover" | "orange.outline.bg.active" | "orange.outline.border" | "orange.outline.fg" | "orange.plain.bg.hover" | "orange.plain.bg.active" | "orange.plain.fg" | "red.1" | "red.2" | "red.3" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "red.11" | "red.12" | "red.a1" | "red.a2" | "red.a3" | "red.a4" | "red.a5" | "red.a6" | "red.a7" | "red.a8" | "red.a9" | "red.a10" | "red.a11" | "red.a12" | "red.solid.bg" | "red.solid.bg.hover" | "red.solid.fg" | "red.subtle.bg" | "red.subtle.bg.hover" | "red.subtle.bg.active" | "red.subtle.fg" | "red.surface.bg" | "red.surface.bg.active" | "red.surface.border" | "red.surface.border.hover" | "red.surface.fg" | "red.outline.bg.hover" | "red.outline.bg.active" | "red.outline.border" | "red.outline.fg" | "red.plain.bg.hover" | "red.plain.bg.active" | "red.plain.fg" | "fg.default" | "fg.muted" | "fg.subtle" | "canvas" | "border" | "error" | "colorPalette" | "colorPalette.50" | "colorPalette.100" | "colorPalette.200" | "colorPalette.300" | "colorPalette.400" | "colorPalette.500" | "colorPalette.600" | "colorPalette.700" | "colorPalette.800" | "colorPalette.900" | "colorPalette.950" | "colorPalette.a1" | "colorPalette.a2" | "colorPalette.a3" | "colorPalette.a4" | "colorPalette.a5" | "colorPalette.a6" | "colorPalette.a7" | "colorPalette.a8" | "colorPalette.a9" | "colorPalette.a10" | "colorPalette.a11" | "colorPalette.a12" | "colorPalette.1" | "colorPalette.2" | "colorPalette.3" | "colorPalette.4" | "colorPalette.5" | "colorPalette.6" | "colorPalette.7" | "colorPalette.8" | "colorPalette.9" | "colorPalette.10" | "colorPalette.11" | "colorPalette.12" | "colorPalette.solid.bg" | "colorPalette.bg" | "colorPalette.solid.bg.hover" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.solid.fg" | "colorPalette.fg" | "colorPalette.subtle.bg" | "colorPalette.subtle.bg.hover" | "colorPalette.subtle.bg.active" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.subtle.fg" | "colorPalette.surface.bg" | "colorPalette.surface.bg.active" | "colorPalette.surface.border" | "colorPalette.border" | "colorPalette.surface.border.hover" | "colorPalette.border.hover" | "colorPalette.surface.fg" | "colorPalette.outline.bg.hover" | "colorPalette.outline.bg.active" | "colorPalette.outline.border" | "colorPalette.outline.fg" | "colorPalette.plain.bg.hover" | "colorPalette.plain.bg.active" | "colorPalette.plain.fg" | "colorPalette.plain.fg.hover" | "colorPalette.fg.hover" | "colorPalette.surface.bg.hover" | "colorPalette.default" | "colorPalette.muted" | "colorPalette.subtle" | "colorPalette.heading" | "colorPalette.body" | "colorPalette.link" | "colorPalette.bold" | "colorPalette.td-border" | "colorPalette.th-border"
|
|
29
29
|
|
|
30
30
|
export type DurationToken = "fastest" | "faster" | "fast" | "normal" | "slow" | "slower" | "slowest"
|
|
31
31
|
|
|
@@ -205,7 +205,7 @@ export interface UtilityValues {
|
|
|
205
205
|
srOnly: boolean;
|
|
206
206
|
debug: boolean;
|
|
207
207
|
containerName: CssProperties["containerName"];
|
|
208
|
-
colorPalette: "current" | "transparent" | "rose" | "pink" | "fuchsia" | "purple" | "violet" | "indigo" | "blue" | "sky" | "cyan" | "teal" | "emerald" | "green" | "lime" | "yellow" | "amber" | "orange" | "red" | "neutral" | "stone" | "zinc" | "gray" | "slate" | "black" | "white" | "teal.solid.bg" | "teal.solid" | "teal.solid.fg" | "teal.subtle.bg" | "teal.subtle" | "teal.subtle.fg" | "teal.surface.bg" | "teal.surface" | "teal.surface.border" | "teal.surface.fg" | "teal.outline" | "teal.outline.bg" | "teal.outline.border" | "teal.outline.fg" | "teal.plain" | "teal.plain.bg" | "teal.plain.fg" | "gray.solid.bg" | "gray.solid" | "gray.solid.fg" | "gray.subtle.bg" | "gray.subtle" | "gray.subtle.fg" | "gray.surface.bg" | "gray.surface" | "gray.surface.border" | "gray.surface.fg" | "gray.outline" | "gray.outline.bg" | "gray.outline.border" | "gray.outline.fg" | "gray.plain" | "gray.plain.bg" | "gray.plain.fg" | "orange.solid.bg" | "orange.solid" | "orange.solid.fg" | "orange.subtle.bg" | "orange.subtle" | "orange.subtle.fg" | "orange.surface.bg" | "orange.surface" | "orange.surface.border" | "orange.surface.fg" | "orange.outline" | "orange.outline.bg" | "orange.outline.border" | "orange.outline.fg" | "orange.plain" | "orange.plain.bg" | "orange.plain.fg" | "red.solid.bg" | "red.solid" | "red.solid.fg" | "red.subtle.bg" | "red.subtle" | "red.subtle.fg" | "red.surface.bg" | "red.surface" | "red.surface.border" | "red.surface.fg" | "red.outline" | "red.outline.bg" | "red.outline.border" | "red.outline.fg" | "red.plain" | "red.plain.bg" | "red.plain.fg" | "fg" | "canvas" | "border" | "error";
|
|
208
|
+
colorPalette: "current" | "transparent" | "rose" | "pink" | "fuchsia" | "purple" | "violet" | "indigo" | "blue" | "sky" | "cyan" | "teal" | "emerald" | "green" | "lime" | "yellow" | "amber" | "orange" | "red" | "neutral" | "stone" | "zinc" | "gray" | "slate" | "black" | "white" | "prose" | "teal.solid.bg" | "teal.solid" | "teal.solid.fg" | "teal.subtle.bg" | "teal.subtle" | "teal.subtle.fg" | "teal.surface.bg" | "teal.surface" | "teal.surface.border" | "teal.surface.fg" | "teal.outline" | "teal.outline.bg" | "teal.outline.border" | "teal.outline.fg" | "teal.plain" | "teal.plain.bg" | "teal.plain.fg" | "gray.solid.bg" | "gray.solid" | "gray.solid.fg" | "gray.subtle.bg" | "gray.subtle" | "gray.subtle.fg" | "gray.surface.bg" | "gray.surface" | "gray.surface.border" | "gray.surface.fg" | "gray.outline" | "gray.outline.bg" | "gray.outline.border" | "gray.outline.fg" | "gray.plain" | "gray.plain.bg" | "gray.plain.fg" | "orange.solid.bg" | "orange.solid" | "orange.solid.fg" | "orange.subtle.bg" | "orange.subtle" | "orange.subtle.fg" | "orange.surface.bg" | "orange.surface" | "orange.surface.border" | "orange.surface.fg" | "orange.outline" | "orange.outline.bg" | "orange.outline.border" | "orange.outline.fg" | "orange.plain" | "orange.plain.bg" | "orange.plain.fg" | "red.solid.bg" | "red.solid" | "red.solid.fg" | "red.subtle.bg" | "red.subtle" | "red.subtle.fg" | "red.surface.bg" | "red.surface" | "red.surface.border" | "red.surface.fg" | "red.outline" | "red.outline.bg" | "red.outline.border" | "red.outline.fg" | "red.plain" | "red.plain.bg" | "red.plain.fg" | "fg" | "canvas" | "border" | "error";
|
|
209
209
|
textStyle: "8xl" | "9xl" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "label" | "header";
|
|
210
210
|
layerStyle: "disabled" | "card";
|
|
211
211
|
animationStyle: "slide-fade-in" | "slide-fade-out" | "scale-fade-in" | "scale-fade-out";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pyck/styled-system",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0
|
|
4
|
+
"version": "0.1.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://pyck.ai",
|
|
7
7
|
"repository": {
|
|
@@ -52,10 +52,10 @@
|
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@pyck/panda-preset": "0.0
|
|
56
|
-
"@pandacss/dev": "1.
|
|
57
|
-
"@pandacss/preset-base": "1.
|
|
58
|
-
"@pandacss/preset-panda": "1.
|
|
55
|
+
"@pyck/panda-preset": "1.0.0",
|
|
56
|
+
"@pandacss/dev": "1.9.0",
|
|
57
|
+
"@pandacss/preset-base": "1.9.0",
|
|
58
|
+
"@pandacss/preset-panda": "1.9.0",
|
|
59
59
|
"@types/react": "19.2.10",
|
|
60
60
|
"react": "19.2.4",
|
|
61
61
|
"react-dom": "19.2.4"
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
},
|
|
66
66
|
"peerDependencies": {
|
|
67
67
|
"@pandacss/dev": ">=0.45.0",
|
|
68
|
-
"@pyck/panda-preset": ">=0.0
|
|
68
|
+
"@pyck/panda-preset": ">=1.0.0",
|
|
69
69
|
"react": ">=18.0.0",
|
|
70
70
|
"react-dom": ">=18.0.0"
|
|
71
71
|
},
|