@orfium/ictinus 5.41.3 → 5.42.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.
Files changed (41) hide show
  1. package/.turbo/turbo-build.log +904 -898
  2. package/CHANGELOG.md +17 -0
  3. package/dist/components/Link/Link.js +18 -18
  4. package/dist/components/Link/Link.style.js +6 -6
  5. package/dist/index.js +248 -242
  6. package/dist/layers/layers.css.js +9 -0
  7. package/dist/layers/layers.css.ts.vanilla.css +1 -0
  8. package/dist/sprinkles/properties.css.js +9 -0
  9. package/dist/sprinkles/properties.css.ts.vanilla.css +1 -0
  10. package/dist/sprinkles/sprinkles.js +8 -0
  11. package/dist/src/index.d.ts +2 -0
  12. package/dist/src/sprinkles/properties.css.d.ts +648 -542
  13. package/dist/src/sprinkles/sprinkles.d.ts +1394 -999
  14. package/dist/src/vanilla/Box/Box.d.ts +101 -56
  15. package/dist/src/vanilla/Box/extractBoxProps.d.ts +2 -2
  16. package/dist/src/vanilla/Table/Table.d.ts +101 -56
  17. package/dist/src/vanilla/Table/TableBody.d.ts +101 -56
  18. package/dist/src/vanilla/Table/TableCell.d.ts +101 -56
  19. package/dist/src/vanilla/Table/TableFooter.d.ts +101 -56
  20. package/dist/src/vanilla/Table/TableHeader.d.ts +101 -56
  21. package/dist/src/vanilla/Table/TableHeaderCell.d.ts +101 -56
  22. package/dist/src/vanilla/Table/TableRow.d.ts +101 -56
  23. package/dist/src/vanilla/Text/Text.d.ts +101 -56
  24. package/dist/src/vanilla/Tooltip/Tooltip.d.ts +11 -3
  25. package/dist/vanilla/Table/Table-css.js +3 -3
  26. package/dist/vanilla/Table/TableCell-css.js +3 -3
  27. package/dist/vanilla/Table/TableHeaderCell-css.js +3 -3
  28. package/dist/vanilla/Table/TableRow-css.js +1 -1
  29. package/dist/vanilla/Tooltip/Tooltip-css.js +2 -2
  30. package/dist/vanilla/Tooltip/Tooltip.js +20 -25
  31. package/dist/vanilla/assets/src/sprinkles/{properties.css.ts.vanilla-Ckyezauv.css → properties.css.ts.vanilla-X1_krF6y.css} +1478 -1319
  32. package/dist/vanilla/index.d.ts +2342 -1886
  33. package/dist/vanilla/package.json.js +1 -1
  34. package/dist/vanilla/src/sprinkles/properties-css.js +4 -4
  35. package/dist/vanilla-extract/global.css.ts.vanilla.css +1 -0
  36. package/package.json +2 -2
  37. package/src/components/Link/Link.style.ts +2 -3
  38. package/src/components/Link/Link.tsx +3 -3
  39. package/src/index.ts +3 -0
  40. package/src/sprinkles/properties.css.ts +13 -19
  41. package/src/vanilla/Tooltip/Tooltip.tsx +36 -33
@@ -1,4 +1,4 @@
1
1
  export declare function extractBoxProps<S extends Record<string, unknown>>(props: S): {
2
- boxProps: Pick<S, ("minHeight" | "maxHeight" | "minWidth" | "maxWidth" | "height" | "width" | "color" | "p" | "className" | "backgroundColor" | "borderColor" | "size" | "px" | "borderRadius" | "alignItems" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomWidth" | "borderLeftWidth" | "borderRightWidth" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopWidth" | "boxShadow" | "cursor" | "display" | "flexDirection" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "isolation" | "justifyContent" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "objectFit" | "outlineColor" | "overflowX" | "overflowY" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "pointerEvents" | "position" | "textAlign" | "textTransform" | "touchAction" | "transitionDuration" | "transitionProperty" | "transitionTimingFunction" | "userSelect" | "visibility" | "whiteSpace" | "wordBreak" | "wordWrap" | "zIndex" | "border" | "borderStyle" | "flex" | "gap" | "margin" | "overflow" | "padding" | "textDecoration" | "gridGap" | "typography" | "z" | "pt" | "pr" | "pb" | "pl" | "py" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "my" | "styles" | "h" | "w" | "maxH" | "maxW" | "shadow" | "borderB" | "borderL" | "borderR" | "borderT" | "rounded" | "roundedT" | "roundedB" | "roundedL" | "roundedR" | "bg") & keyof S>;
3
- restProps: Omit<S, "minHeight" | "maxHeight" | "minWidth" | "maxWidth" | "height" | "width" | "color" | "p" | "className" | "backgroundColor" | "borderColor" | "size" | "px" | "borderRadius" | "alignItems" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomWidth" | "borderLeftWidth" | "borderRightWidth" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopWidth" | "boxShadow" | "cursor" | "display" | "flexDirection" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "isolation" | "justifyContent" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "objectFit" | "outlineColor" | "overflowX" | "overflowY" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "pointerEvents" | "position" | "textAlign" | "textTransform" | "touchAction" | "transitionDuration" | "transitionProperty" | "transitionTimingFunction" | "userSelect" | "visibility" | "whiteSpace" | "wordBreak" | "wordWrap" | "zIndex" | "border" | "borderStyle" | "flex" | "gap" | "margin" | "overflow" | "padding" | "textDecoration" | "gridGap" | "typography" | "z" | "pt" | "pr" | "pb" | "pl" | "py" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "my" | "styles" | "h" | "w" | "maxH" | "maxW" | "shadow" | "borderB" | "borderL" | "borderR" | "borderT" | "rounded" | "roundedT" | "roundedB" | "roundedL" | "roundedR" | "bg">;
2
+ boxProps: Pick<S, ("minHeight" | "maxHeight" | "minWidth" | "maxWidth" | "height" | "width" | "color" | "p" | "className" | "backgroundColor" | "borderColor" | "size" | "px" | "borderRadius" | "alignItems" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomWidth" | "borderLeftWidth" | "borderRightWidth" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopWidth" | "boxShadow" | "cursor" | "display" | "flexDirection" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "isolation" | "justifyContent" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "objectFit" | "outlineColor" | "overflowX" | "overflowY" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "pointerEvents" | "position" | "textAlign" | "textTransform" | "touchAction" | "transitionDuration" | "transitionProperty" | "transitionTimingFunction" | "userSelect" | "visibility" | "whiteSpace" | "wordBreak" | "wordWrap" | "zIndex" | "border" | "borderStyle" | "flex" | "gap" | "margin" | "overflow" | "padding" | "textDecoration" | "gridGap" | "typography" | "z" | "pt" | "pr" | "pb" | "pl" | "py" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "my" | "styles" | "h" | "w" | "maxH" | "maxW" | "borderB" | "borderL" | "borderR" | "borderT" | "shadow" | "rounded" | "roundedT" | "roundedB" | "roundedL" | "roundedR" | "bg") & keyof S>;
3
+ restProps: Omit<S, "minHeight" | "maxHeight" | "minWidth" | "maxWidth" | "height" | "width" | "color" | "p" | "className" | "backgroundColor" | "borderColor" | "size" | "px" | "borderRadius" | "alignItems" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomWidth" | "borderLeftWidth" | "borderRightWidth" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopWidth" | "boxShadow" | "cursor" | "display" | "flexDirection" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "isolation" | "justifyContent" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "objectFit" | "outlineColor" | "overflowX" | "overflowY" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "pointerEvents" | "position" | "textAlign" | "textTransform" | "touchAction" | "transitionDuration" | "transitionProperty" | "transitionTimingFunction" | "userSelect" | "visibility" | "whiteSpace" | "wordBreak" | "wordWrap" | "zIndex" | "border" | "borderStyle" | "flex" | "gap" | "margin" | "overflow" | "padding" | "textDecoration" | "gridGap" | "typography" | "z" | "pt" | "pr" | "pb" | "pl" | "py" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "my" | "styles" | "h" | "w" | "maxH" | "maxW" | "borderB" | "borderL" | "borderR" | "borderT" | "shadow" | "rounded" | "roundedT" | "roundedB" | "roundedL" | "roundedR" | "bg">;
4
4
  };