@horang-corp/react-system 0.1.1

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/css/conditions.mjs +36 -0
  2. package/css/css.d.ts +22 -0
  3. package/css/css.mjs +45 -0
  4. package/css/cva.d.ts +6 -0
  5. package/css/cva.mjs +87 -0
  6. package/css/cx.d.ts +5 -0
  7. package/css/cx.mjs +15 -0
  8. package/css/index.d.ts +5 -0
  9. package/css/index.mjs +4 -0
  10. package/css/sva.d.ts +4 -0
  11. package/css/sva.mjs +46 -0
  12. package/helpers.mjs +328 -0
  13. package/jsx/aspect-ratio.d.ts +10 -0
  14. package/jsx/aspect-ratio.mjs +14 -0
  15. package/jsx/bleed.d.ts +10 -0
  16. package/jsx/bleed.mjs +14 -0
  17. package/jsx/box.d.ts +10 -0
  18. package/jsx/box.mjs +14 -0
  19. package/jsx/center.d.ts +10 -0
  20. package/jsx/center.mjs +14 -0
  21. package/jsx/circle.d.ts +10 -0
  22. package/jsx/circle.mjs +14 -0
  23. package/jsx/container.d.ts +10 -0
  24. package/jsx/container.mjs +14 -0
  25. package/jsx/cq.d.ts +10 -0
  26. package/jsx/cq.mjs +14 -0
  27. package/jsx/create-style-context.d.ts +54 -0
  28. package/jsx/create-style-context.mjs +118 -0
  29. package/jsx/divider.d.ts +10 -0
  30. package/jsx/divider.mjs +14 -0
  31. package/jsx/factory-helper.mjs +22 -0
  32. package/jsx/factory.d.ts +3 -0
  33. package/jsx/factory.mjs +89 -0
  34. package/jsx/flex.d.ts +10 -0
  35. package/jsx/flex.mjs +14 -0
  36. package/jsx/float.d.ts +10 -0
  37. package/jsx/float.mjs +14 -0
  38. package/jsx/grid-item.d.ts +10 -0
  39. package/jsx/grid-item.mjs +14 -0
  40. package/jsx/grid.d.ts +10 -0
  41. package/jsx/grid.mjs +14 -0
  42. package/jsx/hstack.d.ts +10 -0
  43. package/jsx/hstack.mjs +14 -0
  44. package/jsx/index.d.ts +25 -0
  45. package/jsx/index.mjs +23 -0
  46. package/jsx/is-valid-prop.d.ts +11 -0
  47. package/jsx/is-valid-prop.mjs +17 -0
  48. package/jsx/link-overlay.d.ts +10 -0
  49. package/jsx/link-overlay.mjs +14 -0
  50. package/jsx/spacer.d.ts +10 -0
  51. package/jsx/spacer.mjs +14 -0
  52. package/jsx/square.d.ts +10 -0
  53. package/jsx/square.mjs +14 -0
  54. package/jsx/stack.d.ts +10 -0
  55. package/jsx/stack.mjs +14 -0
  56. package/jsx/visually-hidden.d.ts +10 -0
  57. package/jsx/visually-hidden.mjs +14 -0
  58. package/jsx/vstack.d.ts +10 -0
  59. package/jsx/vstack.mjs +14 -0
  60. package/jsx/wrap.d.ts +10 -0
  61. package/jsx/wrap.mjs +14 -0
  62. package/package.json +45 -0
  63. package/patterns/aspect-ratio.d.ts +20 -0
  64. package/patterns/aspect-ratio.mjs +38 -0
  65. package/patterns/bleed.d.ts +21 -0
  66. package/patterns/bleed.mjs +24 -0
  67. package/patterns/box.d.ts +20 -0
  68. package/patterns/box.mjs +15 -0
  69. package/patterns/center.d.ts +20 -0
  70. package/patterns/center.mjs +21 -0
  71. package/patterns/circle.d.ts +20 -0
  72. package/patterns/circle.mjs +25 -0
  73. package/patterns/container.d.ts +20 -0
  74. package/patterns/container.mjs +21 -0
  75. package/patterns/cq.d.ts +21 -0
  76. package/patterns/cq.mjs +21 -0
  77. package/patterns/divider.d.ts +22 -0
  78. package/patterns/divider.mjs +25 -0
  79. package/patterns/flex.d.ts +26 -0
  80. package/patterns/flex.mjs +26 -0
  81. package/patterns/float.d.ts +23 -0
  82. package/patterns/float.mjs +52 -0
  83. package/patterns/grid-item.d.ts +25 -0
  84. package/patterns/grid-item.mjs +25 -0
  85. package/patterns/grid.d.ts +24 -0
  86. package/patterns/grid.mjs +27 -0
  87. package/patterns/hstack.d.ts +21 -0
  88. package/patterns/hstack.mjs +24 -0
  89. package/patterns/index.d.ts +21 -0
  90. package/patterns/index.mjs +20 -0
  91. package/patterns/link-overlay.d.ts +20 -0
  92. package/patterns/link-overlay.mjs +24 -0
  93. package/patterns/spacer.d.ts +20 -0
  94. package/patterns/spacer.mjs +25 -0
  95. package/patterns/square.d.ts +20 -0
  96. package/patterns/square.mjs +24 -0
  97. package/patterns/stack.d.ts +23 -0
  98. package/patterns/stack.mjs +24 -0
  99. package/patterns/visually-hidden.d.ts +20 -0
  100. package/patterns/visually-hidden.mjs +18 -0
  101. package/patterns/vstack.d.ts +21 -0
  102. package/patterns/vstack.mjs +24 -0
  103. package/patterns/wrap.d.ts +24 -0
  104. package/patterns/wrap.mjs +25 -0
  105. package/runtime.d.ts +8 -0
  106. package/runtime.mjs +87 -0
  107. package/styles.css +18334 -0
  108. package/tokens/index.d.ts +9 -0
  109. package/tokens/index.mjs +2656 -0
  110. package/tokens/tokens.d.ts +60 -0
  111. package/types/composition.d.ts +227 -0
  112. package/types/conditions.d.ts +312 -0
  113. package/types/csstype.d.ts +22570 -0
  114. package/types/global.d.ts +20 -0
  115. package/types/index.d.ts +8 -0
  116. package/types/jsx.d.ts +69 -0
  117. package/types/parts.d.ts +8 -0
  118. package/types/pattern.d.ts +78 -0
  119. package/types/prop-type.d.ts +256 -0
  120. package/types/recipe.d.ts +181 -0
  121. package/types/selectors.d.ts +59 -0
  122. package/types/static-css.d.ts +56 -0
  123. package/types/style-props.d.ts +8094 -0
  124. package/types/system-types.d.ts +151 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.