@pandacss/studio 0.53.7 → 1.0.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/studio.mjs +3 -3
- package/package.json +11 -11
- package/panda.config.ts +4 -4
- package/src/components/layer-styles.tsx +10 -9
- package/src/components/text-styles.tsx +10 -18
- package/src/lib/virtual-panda.d.ts +2 -0
- package/styled-system/css/conditions.mjs +1 -1
- package/styled-system/css/css.mjs +1 -1
- package/styled-system/css/sva.mjs +9 -4
- package/styled-system/helpers.mjs +11 -22
- package/styled-system/jsx/create-style-context.d.ts +47 -0
- package/styled-system/jsx/create-style-context.mjs +92 -0
- package/styled-system/jsx/factory.mjs +5 -2
- package/styled-system/jsx/index.d.ts +1 -0
- package/styled-system/jsx/index.mjs +1 -0
- package/styled-system/jsx/is-valid-prop.mjs +1 -1
- package/styled-system/patterns/aspect-ratio.d.ts +0 -1
- package/styled-system/patterns/bleed.d.ts +0 -1
- package/styled-system/patterns/box.d.ts +0 -1
- package/styled-system/patterns/center.d.ts +0 -1
- package/styled-system/patterns/circle.d.ts +0 -1
- package/styled-system/patterns/container.d.ts +0 -1
- package/styled-system/patterns/cq.d.ts +0 -1
- package/styled-system/patterns/divider.d.ts +0 -1
- package/styled-system/patterns/flex.d.ts +0 -1
- package/styled-system/patterns/float.d.ts +0 -1
- package/styled-system/patterns/grid-item.d.ts +0 -1
- package/styled-system/patterns/grid.d.ts +0 -1
- package/styled-system/patterns/hstack.d.ts +0 -1
- package/styled-system/patterns/link-overlay.d.ts +0 -1
- package/styled-system/patterns/spacer.d.ts +0 -1
- package/styled-system/patterns/square.d.ts +0 -1
- package/styled-system/patterns/stack.d.ts +0 -1
- package/styled-system/patterns/visually-hidden.d.ts +0 -1
- package/styled-system/patterns/vstack.d.ts +0 -1
- package/styled-system/patterns/wrap.d.ts +0 -1
- package/styled-system/styles.css +325 -327
- package/styled-system/tokens/index.mjs +19 -7
- package/styled-system/tokens/tokens.d.ts +3 -3
- package/styled-system/types/conditions.d.ts +14 -10
- package/styled-system/types/jsx.d.ts +2 -1
- package/styled-system/types/prop-type.d.ts +4 -2
- package/styled-system/types/style-props.d.ts +7 -0
- package/styled-system/jsx/link-box.d.ts +0 -10
- package/styled-system/jsx/link-box.mjs +0 -14
- package/styled-system/patterns/link-box.d.ts +0 -21
- package/styled-system/patterns/link-box.mjs +0 -22
|
@@ -11,7 +11,6 @@ export interface DividerProperties {
|
|
|
11
11
|
color?: ConditionalValue<Tokens["colors"] | Properties["borderColor"]>
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
|
|
15
14
|
interface DividerStyles extends DividerProperties, DistributiveOmit<SystemStyleObject, keyof DividerProperties > {}
|
|
16
15
|
|
|
17
16
|
interface DividerPatternFn {
|
|
@@ -12,7 +12,6 @@ export interface FloatProperties {
|
|
|
12
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
|
-
|
|
16
15
|
interface FloatStyles extends FloatProperties, DistributiveOmit<SystemStyleObject, keyof FloatProperties > {}
|
|
17
16
|
|
|
18
17
|
interface FloatPatternFn {
|