qstd 0.2.17 → 0.2.18

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 (124) hide show
  1. package/dist/block/test-types.d.ts.map +1 -1
  2. package/dist/react/index.css +12 -0
  3. package/package.json +22 -20
  4. package/styled-system/css/conditions.mjs +36 -0
  5. package/styled-system/css/css.d.ts +22 -0
  6. package/styled-system/css/css.mjs +45 -0
  7. package/styled-system/css/cva.d.ts +6 -0
  8. package/styled-system/css/cva.mjs +87 -0
  9. package/styled-system/css/cx.d.ts +5 -0
  10. package/styled-system/css/cx.mjs +15 -0
  11. package/styled-system/css/index.d.ts +5 -0
  12. package/styled-system/css/index.mjs +4 -0
  13. package/styled-system/css/sva.d.ts +4 -0
  14. package/styled-system/css/sva.mjs +46 -0
  15. package/styled-system/helpers.mjs +328 -0
  16. package/styled-system/jsx/aspect-ratio.d.ts +10 -0
  17. package/styled-system/jsx/aspect-ratio.mjs +14 -0
  18. package/styled-system/jsx/bleed.d.ts +10 -0
  19. package/styled-system/jsx/bleed.mjs +14 -0
  20. package/styled-system/jsx/box.d.ts +10 -0
  21. package/styled-system/jsx/box.mjs +14 -0
  22. package/styled-system/jsx/center.d.ts +10 -0
  23. package/styled-system/jsx/center.mjs +14 -0
  24. package/styled-system/jsx/circle.d.ts +10 -0
  25. package/styled-system/jsx/circle.mjs +14 -0
  26. package/styled-system/jsx/container.d.ts +10 -0
  27. package/styled-system/jsx/container.mjs +14 -0
  28. package/styled-system/jsx/cq.d.ts +10 -0
  29. package/styled-system/jsx/cq.mjs +14 -0
  30. package/styled-system/jsx/create-style-context.d.ts +54 -0
  31. package/styled-system/jsx/create-style-context.mjs +98 -0
  32. package/styled-system/jsx/divider.d.ts +10 -0
  33. package/styled-system/jsx/divider.mjs +14 -0
  34. package/styled-system/jsx/factory-helper.mjs +22 -0
  35. package/styled-system/jsx/factory.d.ts +3 -0
  36. package/styled-system/jsx/factory.mjs +89 -0
  37. package/styled-system/jsx/flex.d.ts +10 -0
  38. package/styled-system/jsx/flex.mjs +14 -0
  39. package/styled-system/jsx/float.d.ts +10 -0
  40. package/styled-system/jsx/float.mjs +14 -0
  41. package/styled-system/jsx/grid-item.d.ts +10 -0
  42. package/styled-system/jsx/grid-item.mjs +14 -0
  43. package/styled-system/jsx/grid.d.ts +10 -0
  44. package/styled-system/jsx/grid.mjs +14 -0
  45. package/styled-system/jsx/hstack.d.ts +10 -0
  46. package/styled-system/jsx/hstack.mjs +14 -0
  47. package/styled-system/jsx/index.d.ts +25 -0
  48. package/styled-system/jsx/index.mjs +23 -0
  49. package/styled-system/jsx/is-valid-prop.d.ts +11 -0
  50. package/styled-system/jsx/is-valid-prop.mjs +17 -0
  51. package/styled-system/jsx/link-overlay.d.ts +10 -0
  52. package/styled-system/jsx/link-overlay.mjs +14 -0
  53. package/styled-system/jsx/spacer.d.ts +10 -0
  54. package/styled-system/jsx/spacer.mjs +14 -0
  55. package/styled-system/jsx/square.d.ts +10 -0
  56. package/styled-system/jsx/square.mjs +14 -0
  57. package/styled-system/jsx/stack.d.ts +10 -0
  58. package/styled-system/jsx/stack.mjs +14 -0
  59. package/styled-system/jsx/visually-hidden.d.ts +10 -0
  60. package/styled-system/jsx/visually-hidden.mjs +14 -0
  61. package/styled-system/jsx/vstack.d.ts +10 -0
  62. package/styled-system/jsx/vstack.mjs +14 -0
  63. package/styled-system/jsx/wrap.d.ts +10 -0
  64. package/styled-system/jsx/wrap.mjs +14 -0
  65. package/styled-system/patterns/aspect-ratio.d.ts +20 -0
  66. package/styled-system/patterns/aspect-ratio.mjs +38 -0
  67. package/styled-system/patterns/bleed.d.ts +21 -0
  68. package/styled-system/patterns/bleed.mjs +24 -0
  69. package/styled-system/patterns/box.d.ts +20 -0
  70. package/styled-system/patterns/box.mjs +15 -0
  71. package/styled-system/patterns/center.d.ts +20 -0
  72. package/styled-system/patterns/center.mjs +21 -0
  73. package/styled-system/patterns/circle.d.ts +20 -0
  74. package/styled-system/patterns/circle.mjs +25 -0
  75. package/styled-system/patterns/container.d.ts +20 -0
  76. package/styled-system/patterns/container.mjs +21 -0
  77. package/styled-system/patterns/cq.d.ts +21 -0
  78. package/styled-system/patterns/cq.mjs +21 -0
  79. package/styled-system/patterns/divider.d.ts +22 -0
  80. package/styled-system/patterns/divider.mjs +25 -0
  81. package/styled-system/patterns/flex.d.ts +26 -0
  82. package/styled-system/patterns/flex.mjs +26 -0
  83. package/styled-system/patterns/float.d.ts +23 -0
  84. package/styled-system/patterns/float.mjs +52 -0
  85. package/styled-system/patterns/grid-item.d.ts +25 -0
  86. package/styled-system/patterns/grid-item.mjs +25 -0
  87. package/styled-system/patterns/grid.d.ts +24 -0
  88. package/styled-system/patterns/grid.mjs +27 -0
  89. package/styled-system/patterns/hstack.d.ts +21 -0
  90. package/styled-system/patterns/hstack.mjs +24 -0
  91. package/styled-system/patterns/index.d.ts +21 -0
  92. package/styled-system/patterns/index.mjs +20 -0
  93. package/styled-system/patterns/link-overlay.d.ts +20 -0
  94. package/styled-system/patterns/link-overlay.mjs +24 -0
  95. package/styled-system/patterns/spacer.d.ts +20 -0
  96. package/styled-system/patterns/spacer.mjs +21 -0
  97. package/styled-system/patterns/square.d.ts +20 -0
  98. package/styled-system/patterns/square.mjs +24 -0
  99. package/styled-system/patterns/stack.d.ts +23 -0
  100. package/styled-system/patterns/stack.mjs +24 -0
  101. package/styled-system/patterns/visually-hidden.d.ts +20 -0
  102. package/styled-system/patterns/visually-hidden.mjs +18 -0
  103. package/styled-system/patterns/vstack.d.ts +21 -0
  104. package/styled-system/patterns/vstack.mjs +24 -0
  105. package/styled-system/patterns/wrap.d.ts +24 -0
  106. package/styled-system/patterns/wrap.mjs +25 -0
  107. package/styled-system/styles.css +1749 -0
  108. package/styled-system/tokens/index.d.ts +9 -0
  109. package/styled-system/tokens/index.mjs +1976 -0
  110. package/styled-system/tokens/tokens.d.ts +60 -0
  111. package/styled-system/types/composition.d.ts +224 -0
  112. package/styled-system/types/conditions.d.ts +348 -0
  113. package/styled-system/types/csstype.d.ts +21298 -0
  114. package/styled-system/types/global.d.ts +20 -0
  115. package/styled-system/types/index.d.ts +8 -0
  116. package/styled-system/types/jsx.d.ts +67 -0
  117. package/styled-system/types/parts.d.ts +8 -0
  118. package/styled-system/types/pattern.d.ts +78 -0
  119. package/styled-system/types/prop-type.d.ts +277 -0
  120. package/styled-system/types/recipe.d.ts +181 -0
  121. package/styled-system/types/selectors.d.ts +59 -0
  122. package/styled-system/types/static-css.d.ts +56 -0
  123. package/styled-system/types/style-props.d.ts +7639 -0
  124. package/styled-system/types/system-types.d.ts +269 -0
@@ -0,0 +1,21 @@
1
+ /* eslint-disable */
2
+ import type { SystemStyleObject, ConditionalValue } from '../types/index';
3
+ import type { Properties } from '../types/csstype';
4
+ import type { SystemProperties } from '../types/style-props';
5
+ import type { DistributiveOmit } from '../types/system-types';
6
+ import type { Tokens } from '../tokens/index';
7
+
8
+ export interface BleedProperties {
9
+ inline?: SystemProperties["marginInline"]
10
+ block?: SystemProperties["marginBlock"]
11
+ }
12
+
13
+ interface BleedStyles extends BleedProperties, DistributiveOmit<SystemStyleObject, keyof BleedProperties > {}
14
+
15
+ interface BleedPatternFn {
16
+ (styles?: BleedStyles): string
17
+ raw: (styles?: BleedStyles) => SystemStyleObject
18
+ }
19
+
20
+
21
+ export declare const bleed: BleedPatternFn;
@@ -0,0 +1,24 @@
1
+ import { getPatternStyles, patternFns } from '../helpers.mjs';
2
+ import { css } from '../css/index.mjs';
3
+
4
+ const bleedConfig = {
5
+ transform(props, { map, isCssUnit, isCssVar }) {
6
+ const { inline, block, ...rest } = props;
7
+ const valueFn = (v) => isCssUnit(v) || isCssVar(v) ? v : `token(spacing.${v}, ${v})`;
8
+ return {
9
+ "--bleed-x": map(inline, valueFn),
10
+ "--bleed-y": map(block, valueFn),
11
+ marginInline: "calc(var(--bleed-x, 0) * -1)",
12
+ marginBlock: "calc(var(--bleed-y, 0) * -1)",
13
+ ...rest
14
+ };
15
+ },
16
+ defaultValues:{inline:'0',block:'0'}}
17
+
18
+ export const getBleedStyle = (styles = {}) => {
19
+ const _styles = getPatternStyles(bleedConfig, styles)
20
+ return bleedConfig.transform(_styles, patternFns)
21
+ }
22
+
23
+ export const bleed = (styles) => css(getBleedStyle(styles))
24
+ bleed.raw = getBleedStyle
@@ -0,0 +1,20 @@
1
+ /* eslint-disable */
2
+ import type { SystemStyleObject, ConditionalValue } from '../types/index';
3
+ import type { Properties } from '../types/csstype';
4
+ import type { SystemProperties } from '../types/style-props';
5
+ import type { DistributiveOmit } from '../types/system-types';
6
+ import type { Tokens } from '../tokens/index';
7
+
8
+ export interface BoxProperties {
9
+
10
+ }
11
+
12
+ interface BoxStyles extends BoxProperties, DistributiveOmit<SystemStyleObject, keyof BoxProperties > {}
13
+
14
+ interface BoxPatternFn {
15
+ (styles?: BoxStyles): string
16
+ raw: (styles?: BoxStyles) => SystemStyleObject
17
+ }
18
+
19
+
20
+ export declare const box: BoxPatternFn;
@@ -0,0 +1,15 @@
1
+ import { getPatternStyles, patternFns } from '../helpers.mjs';
2
+ import { css } from '../css/index.mjs';
3
+
4
+ const boxConfig = {
5
+ transform(props) {
6
+ return props;
7
+ }}
8
+
9
+ export const getBoxStyle = (styles = {}) => {
10
+ const _styles = getPatternStyles(boxConfig, styles)
11
+ return boxConfig.transform(_styles, patternFns)
12
+ }
13
+
14
+ export const box = (styles) => css(getBoxStyle(styles))
15
+ box.raw = getBoxStyle
@@ -0,0 +1,20 @@
1
+ /* eslint-disable */
2
+ import type { SystemStyleObject, ConditionalValue } from '../types/index';
3
+ import type { Properties } from '../types/csstype';
4
+ import type { SystemProperties } from '../types/style-props';
5
+ import type { DistributiveOmit } from '../types/system-types';
6
+ import type { Tokens } from '../tokens/index';
7
+
8
+ export interface CenterProperties {
9
+ inline?: ConditionalValue<boolean>
10
+ }
11
+
12
+ interface CenterStyles extends CenterProperties, DistributiveOmit<SystemStyleObject, keyof CenterProperties > {}
13
+
14
+ interface CenterPatternFn {
15
+ (styles?: CenterStyles): string
16
+ raw: (styles?: CenterStyles) => SystemStyleObject
17
+ }
18
+
19
+
20
+ export declare const center: CenterPatternFn;
@@ -0,0 +1,21 @@
1
+ import { getPatternStyles, patternFns } from '../helpers.mjs';
2
+ import { css } from '../css/index.mjs';
3
+
4
+ const centerConfig = {
5
+ transform(props) {
6
+ const { inline, ...rest } = props;
7
+ return {
8
+ display: inline ? "inline-flex" : "flex",
9
+ alignItems: "center",
10
+ justifyContent: "center",
11
+ ...rest
12
+ };
13
+ }}
14
+
15
+ export const getCenterStyle = (styles = {}) => {
16
+ const _styles = getPatternStyles(centerConfig, styles)
17
+ return centerConfig.transform(_styles, patternFns)
18
+ }
19
+
20
+ export const center = (styles) => css(getCenterStyle(styles))
21
+ center.raw = getCenterStyle
@@ -0,0 +1,20 @@
1
+ /* eslint-disable */
2
+ import type { SystemStyleObject, ConditionalValue } from '../types/index';
3
+ import type { Properties } from '../types/csstype';
4
+ import type { SystemProperties } from '../types/style-props';
5
+ import type { DistributiveOmit } from '../types/system-types';
6
+ import type { Tokens } from '../tokens/index';
7
+
8
+ export interface CircleProperties {
9
+ size?: SystemProperties["width"]
10
+ }
11
+
12
+ interface CircleStyles extends CircleProperties, DistributiveOmit<SystemStyleObject, keyof CircleProperties > {}
13
+
14
+ interface CirclePatternFn {
15
+ (styles?: CircleStyles): string
16
+ raw: (styles?: CircleStyles) => SystemStyleObject
17
+ }
18
+
19
+
20
+ export declare const circle: CirclePatternFn;
@@ -0,0 +1,25 @@
1
+ import { getPatternStyles, patternFns } from '../helpers.mjs';
2
+ import { css } from '../css/index.mjs';
3
+
4
+ const circleConfig = {
5
+ transform(props) {
6
+ const { size, ...rest } = props;
7
+ return {
8
+ display: "flex",
9
+ alignItems: "center",
10
+ justifyContent: "center",
11
+ flex: "0 0 auto",
12
+ width: size,
13
+ height: size,
14
+ borderRadius: "9999px",
15
+ ...rest
16
+ };
17
+ }}
18
+
19
+ export const getCircleStyle = (styles = {}) => {
20
+ const _styles = getPatternStyles(circleConfig, styles)
21
+ return circleConfig.transform(_styles, patternFns)
22
+ }
23
+
24
+ export const circle = (styles) => css(getCircleStyle(styles))
25
+ circle.raw = getCircleStyle
@@ -0,0 +1,20 @@
1
+ /* eslint-disable */
2
+ import type { SystemStyleObject, ConditionalValue } from '../types/index';
3
+ import type { Properties } from '../types/csstype';
4
+ import type { SystemProperties } from '../types/style-props';
5
+ import type { DistributiveOmit } from '../types/system-types';
6
+ import type { Tokens } from '../tokens/index';
7
+
8
+ export interface ContainerProperties {
9
+
10
+ }
11
+
12
+ interface ContainerStyles extends ContainerProperties, DistributiveOmit<SystemStyleObject, keyof ContainerProperties > {}
13
+
14
+ interface ContainerPatternFn {
15
+ (styles?: ContainerStyles): string
16
+ raw: (styles?: ContainerStyles) => SystemStyleObject
17
+ }
18
+
19
+
20
+ export declare const container: ContainerPatternFn;
@@ -0,0 +1,21 @@
1
+ import { getPatternStyles, patternFns } from '../helpers.mjs';
2
+ import { css } from '../css/index.mjs';
3
+
4
+ const containerConfig = {
5
+ transform(props) {
6
+ return {
7
+ position: "relative",
8
+ maxWidth: "8xl",
9
+ mx: "auto",
10
+ px: { base: "4", md: "6", lg: "8" },
11
+ ...props
12
+ };
13
+ }}
14
+
15
+ export const getContainerStyle = (styles = {}) => {
16
+ const _styles = getPatternStyles(containerConfig, styles)
17
+ return containerConfig.transform(_styles, patternFns)
18
+ }
19
+
20
+ export const container = (styles) => css(getContainerStyle(styles))
21
+ container.raw = getContainerStyle
@@ -0,0 +1,21 @@
1
+ /* eslint-disable */
2
+ import type { SystemStyleObject, ConditionalValue } from '../types/index';
3
+ import type { Properties } from '../types/csstype';
4
+ import type { SystemProperties } from '../types/style-props';
5
+ import type { DistributiveOmit } from '../types/system-types';
6
+ import type { Tokens } from '../tokens/index';
7
+
8
+ export interface CqProperties {
9
+ name?: ConditionalValue<Tokens["containerNames"] | Properties["containerName"]>
10
+ type?: SystemProperties["containerType"]
11
+ }
12
+
13
+ interface CqStyles extends CqProperties, DistributiveOmit<SystemStyleObject, keyof CqProperties > {}
14
+
15
+ interface CqPatternFn {
16
+ (styles?: CqStyles): string
17
+ raw: (styles?: CqStyles) => SystemStyleObject
18
+ }
19
+
20
+
21
+ export declare const cq: CqPatternFn;
@@ -0,0 +1,21 @@
1
+ import { getPatternStyles, patternFns } from '../helpers.mjs';
2
+ import { css } from '../css/index.mjs';
3
+
4
+ const cqConfig = {
5
+ transform(props) {
6
+ const { name, type, ...rest } = props;
7
+ return {
8
+ containerType: type,
9
+ containerName: name,
10
+ ...rest
11
+ };
12
+ },
13
+ defaultValues:{type:'inline-size'}}
14
+
15
+ export const getCqStyle = (styles = {}) => {
16
+ const _styles = getPatternStyles(cqConfig, styles)
17
+ return cqConfig.transform(_styles, patternFns)
18
+ }
19
+
20
+ export const cq = (styles) => css(getCqStyle(styles))
21
+ cq.raw = getCqStyle
@@ -0,0 +1,22 @@
1
+ /* eslint-disable */
2
+ import type { SystemStyleObject, ConditionalValue } from '../types/index';
3
+ import type { Properties } from '../types/csstype';
4
+ import type { SystemProperties } from '../types/style-props';
5
+ import type { DistributiveOmit } from '../types/system-types';
6
+ import type { Tokens } from '../tokens/index';
7
+
8
+ export interface DividerProperties {
9
+ orientation?: ConditionalValue<"horizontal" | "vertical">
10
+ thickness?: ConditionalValue<Tokens["sizes"] | Properties["borderWidth"]>
11
+ color?: ConditionalValue<Tokens["colors"] | Properties["borderColor"]>
12
+ }
13
+
14
+ interface DividerStyles extends DividerProperties, DistributiveOmit<SystemStyleObject, keyof DividerProperties > {}
15
+
16
+ interface DividerPatternFn {
17
+ (styles?: DividerStyles): string
18
+ raw: (styles?: DividerStyles) => SystemStyleObject
19
+ }
20
+
21
+
22
+ export declare const divider: DividerPatternFn;
@@ -0,0 +1,25 @@
1
+ import { getPatternStyles, patternFns } from '../helpers.mjs';
2
+ import { css } from '../css/index.mjs';
3
+
4
+ const dividerConfig = {
5
+ transform(props, { map }) {
6
+ const { orientation, thickness, color, ...rest } = props;
7
+ return {
8
+ "--thickness": thickness,
9
+ width: map(orientation, (v) => v === "vertical" ? void 0 : "100%"),
10
+ height: map(orientation, (v) => v === "horizontal" ? void 0 : "100%"),
11
+ borderBlockEndWidth: map(orientation, (v) => v === "horizontal" ? "var(--thickness)" : void 0),
12
+ borderInlineEndWidth: map(orientation, (v) => v === "vertical" ? "var(--thickness)" : void 0),
13
+ borderColor: color,
14
+ ...rest
15
+ };
16
+ },
17
+ defaultValues:{orientation:'horizontal',thickness:'1px'}}
18
+
19
+ export const getDividerStyle = (styles = {}) => {
20
+ const _styles = getPatternStyles(dividerConfig, styles)
21
+ return dividerConfig.transform(_styles, patternFns)
22
+ }
23
+
24
+ export const divider = (styles) => css(getDividerStyle(styles))
25
+ divider.raw = getDividerStyle
@@ -0,0 +1,26 @@
1
+ /* eslint-disable */
2
+ import type { SystemStyleObject, ConditionalValue } from '../types/index';
3
+ import type { Properties } from '../types/csstype';
4
+ import type { SystemProperties } from '../types/style-props';
5
+ import type { DistributiveOmit } from '../types/system-types';
6
+ import type { Tokens } from '../tokens/index';
7
+
8
+ export interface FlexProperties {
9
+ align?: SystemProperties["alignItems"]
10
+ justify?: SystemProperties["justifyContent"]
11
+ direction?: SystemProperties["flexDirection"]
12
+ wrap?: SystemProperties["flexWrap"]
13
+ basis?: SystemProperties["flexBasis"]
14
+ grow?: SystemProperties["flexGrow"]
15
+ shrink?: SystemProperties["flexShrink"]
16
+ }
17
+
18
+ interface FlexStyles extends FlexProperties, DistributiveOmit<SystemStyleObject, keyof FlexProperties > {}
19
+
20
+ interface FlexPatternFn {
21
+ (styles?: FlexStyles): string
22
+ raw: (styles?: FlexStyles) => SystemStyleObject
23
+ }
24
+
25
+
26
+ export declare const flex: FlexPatternFn;
@@ -0,0 +1,26 @@
1
+ import { getPatternStyles, patternFns } from '../helpers.mjs';
2
+ import { css } from '../css/index.mjs';
3
+
4
+ const flexConfig = {
5
+ transform(props) {
6
+ const { direction, align, justify, wrap: wrap2, basis, grow, shrink, ...rest } = props;
7
+ return {
8
+ display: "flex",
9
+ flexDirection: direction,
10
+ alignItems: align,
11
+ justifyContent: justify,
12
+ flexWrap: wrap2,
13
+ flexBasis: basis,
14
+ flexGrow: grow,
15
+ flexShrink: shrink,
16
+ ...rest
17
+ };
18
+ }}
19
+
20
+ export const getFlexStyle = (styles = {}) => {
21
+ const _styles = getPatternStyles(flexConfig, styles)
22
+ return flexConfig.transform(_styles, patternFns)
23
+ }
24
+
25
+ export const flex = (styles) => css(getFlexStyle(styles))
26
+ flex.raw = getFlexStyle
@@ -0,0 +1,23 @@
1
+ /* eslint-disable */
2
+ import type { SystemStyleObject, ConditionalValue } from '../types/index';
3
+ import type { Properties } from '../types/csstype';
4
+ import type { SystemProperties } from '../types/style-props';
5
+ import type { DistributiveOmit } from '../types/system-types';
6
+ import type { Tokens } from '../tokens/index';
7
+
8
+ export interface FloatProperties {
9
+ offsetX?: ConditionalValue<Tokens["spacing"] | Properties["left"]>
10
+ offsetY?: ConditionalValue<Tokens["spacing"] | Properties["top"]>
11
+ offset?: ConditionalValue<Tokens["spacing"] | Properties["top"]>
12
+ placement?: ConditionalValue<"bottom-end" | "bottom-start" | "top-end" | "top-start" | "bottom-center" | "top-center" | "middle-center" | "middle-end" | "middle-start">
13
+ }
14
+
15
+ interface FloatStyles extends FloatProperties, DistributiveOmit<SystemStyleObject, keyof FloatProperties > {}
16
+
17
+ interface FloatPatternFn {
18
+ (styles?: FloatStyles): string
19
+ raw: (styles?: FloatStyles) => SystemStyleObject
20
+ }
21
+
22
+
23
+ export declare const float: FloatPatternFn;
@@ -0,0 +1,52 @@
1
+ import { getPatternStyles, patternFns } from '../helpers.mjs';
2
+ import { css } from '../css/index.mjs';
3
+
4
+ const floatConfig = {
5
+ transform(props, { map }) {
6
+ const { offset, offsetX, offsetY, placement, ...rest } = props;
7
+ return {
8
+ display: "inline-flex",
9
+ justifyContent: "center",
10
+ alignItems: "center",
11
+ position: "absolute",
12
+ insetBlockStart: map(placement, (v) => {
13
+ const [side] = v.split("-");
14
+ const map2 = { top: offsetY, middle: "50%", bottom: "auto" };
15
+ return map2[side];
16
+ }),
17
+ insetBlockEnd: map(placement, (v) => {
18
+ const [side] = v.split("-");
19
+ const map2 = { top: "auto", middle: "50%", bottom: offsetY };
20
+ return map2[side];
21
+ }),
22
+ insetInlineStart: map(placement, (v) => {
23
+ const [, align] = v.split("-");
24
+ const map2 = { start: offsetX, center: "50%", end: "auto" };
25
+ return map2[align];
26
+ }),
27
+ insetInlineEnd: map(placement, (v) => {
28
+ const [, align] = v.split("-");
29
+ const map2 = { start: "auto", center: "50%", end: offsetX };
30
+ return map2[align];
31
+ }),
32
+ translate: map(placement, (v) => {
33
+ const [side, align] = v.split("-");
34
+ const mapX = { start: "-50%", center: "-50%", end: "50%" };
35
+ const mapY = { top: "-50%", middle: "-50%", bottom: "50%" };
36
+ return `${mapX[align]} ${mapY[side]}`;
37
+ }),
38
+ ...rest
39
+ };
40
+ },
41
+ defaultValues(props) {
42
+ const offset = props.offset || "0";
43
+ return { offset, offsetX: offset, offsetY: offset, placement: "top-end" };
44
+ }}
45
+
46
+ export const getFloatStyle = (styles = {}) => {
47
+ const _styles = getPatternStyles(floatConfig, styles)
48
+ return floatConfig.transform(_styles, patternFns)
49
+ }
50
+
51
+ export const float = (styles) => css(getFloatStyle(styles))
52
+ float.raw = getFloatStyle
@@ -0,0 +1,25 @@
1
+ /* eslint-disable */
2
+ import type { SystemStyleObject, ConditionalValue } from '../types/index';
3
+ import type { Properties } from '../types/csstype';
4
+ import type { SystemProperties } from '../types/style-props';
5
+ import type { DistributiveOmit } from '../types/system-types';
6
+ import type { Tokens } from '../tokens/index';
7
+
8
+ export interface GridItemProperties {
9
+ colSpan?: ConditionalValue<number>
10
+ rowSpan?: ConditionalValue<number>
11
+ colStart?: ConditionalValue<number>
12
+ rowStart?: ConditionalValue<number>
13
+ colEnd?: ConditionalValue<number>
14
+ rowEnd?: ConditionalValue<number>
15
+ }
16
+
17
+ interface GridItemStyles extends GridItemProperties, DistributiveOmit<SystemStyleObject, keyof GridItemProperties > {}
18
+
19
+ interface GridItemPatternFn {
20
+ (styles?: GridItemStyles): string
21
+ raw: (styles?: GridItemStyles) => SystemStyleObject
22
+ }
23
+
24
+
25
+ export declare const gridItem: GridItemPatternFn;
@@ -0,0 +1,25 @@
1
+ import { getPatternStyles, patternFns } from '../helpers.mjs';
2
+ import { css } from '../css/index.mjs';
3
+
4
+ const gridItemConfig = {
5
+ transform(props, { map }) {
6
+ const { colSpan, rowSpan, colStart, rowStart, colEnd, rowEnd, ...rest } = props;
7
+ const spanFn = (v) => v === "auto" ? v : `span ${v}`;
8
+ return {
9
+ gridColumn: colSpan != null ? map(colSpan, spanFn) : void 0,
10
+ gridRow: rowSpan != null ? map(rowSpan, spanFn) : void 0,
11
+ gridColumnStart: colStart,
12
+ gridColumnEnd: colEnd,
13
+ gridRowStart: rowStart,
14
+ gridRowEnd: rowEnd,
15
+ ...rest
16
+ };
17
+ }}
18
+
19
+ export const getGridItemStyle = (styles = {}) => {
20
+ const _styles = getPatternStyles(gridItemConfig, styles)
21
+ return gridItemConfig.transform(_styles, patternFns)
22
+ }
23
+
24
+ export const gridItem = (styles) => css(getGridItemStyle(styles))
25
+ gridItem.raw = getGridItemStyle
@@ -0,0 +1,24 @@
1
+ /* eslint-disable */
2
+ import type { SystemStyleObject, ConditionalValue } from '../types/index';
3
+ import type { Properties } from '../types/csstype';
4
+ import type { SystemProperties } from '../types/style-props';
5
+ import type { DistributiveOmit } from '../types/system-types';
6
+ import type { Tokens } from '../tokens/index';
7
+
8
+ export interface GridProperties {
9
+ gap?: SystemProperties["gap"]
10
+ columnGap?: SystemProperties["gap"]
11
+ rowGap?: SystemProperties["gap"]
12
+ columns?: ConditionalValue<number>
13
+ minChildWidth?: ConditionalValue<Tokens["sizes"] | Properties["width"]>
14
+ }
15
+
16
+ interface GridStyles extends GridProperties, DistributiveOmit<SystemStyleObject, keyof GridProperties > {}
17
+
18
+ interface GridPatternFn {
19
+ (styles?: GridStyles): string
20
+ raw: (styles?: GridStyles) => SystemStyleObject
21
+ }
22
+
23
+
24
+ export declare const grid: GridPatternFn;
@@ -0,0 +1,27 @@
1
+ import { getPatternStyles, patternFns } from '../helpers.mjs';
2
+ import { css } from '../css/index.mjs';
3
+
4
+ const gridConfig = {
5
+ transform(props, { map, isCssUnit }) {
6
+ const { columnGap, rowGap, gap, columns, minChildWidth, ...rest } = props;
7
+ const getValue = (v) => isCssUnit(v) ? v : `token(sizes.${v}, ${v})`;
8
+ return {
9
+ display: "grid",
10
+ gridTemplateColumns: columns != null ? map(columns, (v) => `repeat(${v}, minmax(0, 1fr))`) : minChildWidth != null ? map(minChildWidth, (v) => `repeat(auto-fit, minmax(${getValue(v)}, 1fr))`) : void 0,
11
+ gap,
12
+ columnGap,
13
+ rowGap,
14
+ ...rest
15
+ };
16
+ },
17
+ defaultValues(props) {
18
+ return { gap: props.columnGap || props.rowGap ? void 0 : "8px" };
19
+ }}
20
+
21
+ export const getGridStyle = (styles = {}) => {
22
+ const _styles = getPatternStyles(gridConfig, styles)
23
+ return gridConfig.transform(_styles, patternFns)
24
+ }
25
+
26
+ export const grid = (styles) => css(getGridStyle(styles))
27
+ grid.raw = getGridStyle
@@ -0,0 +1,21 @@
1
+ /* eslint-disable */
2
+ import type { SystemStyleObject, ConditionalValue } from '../types/index';
3
+ import type { Properties } from '../types/csstype';
4
+ import type { SystemProperties } from '../types/style-props';
5
+ import type { DistributiveOmit } from '../types/system-types';
6
+ import type { Tokens } from '../tokens/index';
7
+
8
+ export interface HstackProperties {
9
+ justify?: SystemProperties["justifyContent"]
10
+ gap?: SystemProperties["gap"]
11
+ }
12
+
13
+ interface HstackStyles extends HstackProperties, DistributiveOmit<SystemStyleObject, keyof HstackProperties > {}
14
+
15
+ interface HstackPatternFn {
16
+ (styles?: HstackStyles): string
17
+ raw: (styles?: HstackStyles) => SystemStyleObject
18
+ }
19
+
20
+
21
+ export declare const hstack: HstackPatternFn;
@@ -0,0 +1,24 @@
1
+ import { getPatternStyles, patternFns } from '../helpers.mjs';
2
+ import { css } from '../css/index.mjs';
3
+
4
+ const hstackConfig = {
5
+ transform(props) {
6
+ const { justify, gap, ...rest } = props;
7
+ return {
8
+ display: "flex",
9
+ alignItems: "center",
10
+ justifyContent: justify,
11
+ gap,
12
+ flexDirection: "row",
13
+ ...rest
14
+ };
15
+ },
16
+ defaultValues:{gap:'8px'}}
17
+
18
+ export const getHstackStyle = (styles = {}) => {
19
+ const _styles = getPatternStyles(hstackConfig, styles)
20
+ return hstackConfig.transform(_styles, patternFns)
21
+ }
22
+
23
+ export const hstack = (styles) => css(getHstackStyle(styles))
24
+ hstack.raw = getHstackStyle
@@ -0,0 +1,21 @@
1
+ /* eslint-disable */
2
+ export * from './box';
3
+ export * from './flex';
4
+ export * from './stack';
5
+ export * from './vstack';
6
+ export * from './hstack';
7
+ export * from './spacer';
8
+ export * from './square';
9
+ export * from './circle';
10
+ export * from './center';
11
+ export * from './link-overlay';
12
+ export * from './aspect-ratio';
13
+ export * from './grid';
14
+ export * from './grid-item';
15
+ export * from './wrap';
16
+ export * from './container';
17
+ export * from './divider';
18
+ export * from './float';
19
+ export * from './bleed';
20
+ export * from './visually-hidden';
21
+ export * from './cq';
@@ -0,0 +1,20 @@
1
+ export * from './box.mjs';
2
+ export * from './flex.mjs';
3
+ export * from './stack.mjs';
4
+ export * from './vstack.mjs';
5
+ export * from './hstack.mjs';
6
+ export * from './spacer.mjs';
7
+ export * from './square.mjs';
8
+ export * from './circle.mjs';
9
+ export * from './center.mjs';
10
+ export * from './link-overlay.mjs';
11
+ export * from './aspect-ratio.mjs';
12
+ export * from './grid.mjs';
13
+ export * from './grid-item.mjs';
14
+ export * from './wrap.mjs';
15
+ export * from './container.mjs';
16
+ export * from './divider.mjs';
17
+ export * from './float.mjs';
18
+ export * from './bleed.mjs';
19
+ export * from './visually-hidden.mjs';
20
+ export * from './cq.mjs';
@@ -0,0 +1,20 @@
1
+ /* eslint-disable */
2
+ import type { SystemStyleObject, ConditionalValue } from '../types/index';
3
+ import type { Properties } from '../types/csstype';
4
+ import type { SystemProperties } from '../types/style-props';
5
+ import type { DistributiveOmit } from '../types/system-types';
6
+ import type { Tokens } from '../tokens/index';
7
+
8
+ export interface LinkOverlayProperties {
9
+
10
+ }
11
+
12
+ interface LinkOverlayStyles extends LinkOverlayProperties, DistributiveOmit<SystemStyleObject, keyof LinkOverlayProperties > {}
13
+
14
+ interface LinkOverlayPatternFn {
15
+ (styles?: LinkOverlayStyles): string
16
+ raw: (styles?: LinkOverlayStyles) => SystemStyleObject
17
+ }
18
+
19
+
20
+ export declare const linkOverlay: LinkOverlayPatternFn;