@react95/core 8.0.0-alpha.1 → 8.0.0-alpha.11

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 (379) hide show
  1. package/README.md +18 -42
  2. package/cjs/Alert/{Alert.js → Alert.cjs} +3 -3
  3. package/cjs/Alert/{Alert.css.js → Alert.css.cjs} +1 -1
  4. package/cjs/Avatar/Avatar.cjs +9 -0
  5. package/cjs/Avatar/{Avatar.css.js → Avatar.css.cjs} +1 -1
  6. package/cjs/Button/{Button.js → Button.cjs} +3 -3
  7. package/cjs/Button/{Button.css.js → Button.css.cjs} +1 -1
  8. package/cjs/Checkbox/{Checkbox.js → Checkbox.cjs} +1 -1
  9. package/cjs/Checkbox/{Checkbox.css.js → Checkbox.css.cjs} +1 -1
  10. package/cjs/Cursor/Cursor.css.cjs +5 -0
  11. package/cjs/Dropdown/{Dropdown.js → Dropdown.cjs} +4 -4
  12. package/cjs/Dropdown/{Dropdown.css.js → Dropdown.css.cjs} +1 -1
  13. package/cjs/Fieldset/{Fieldset.js → Fieldset.cjs} +3 -3
  14. package/cjs/Fieldset/{Fieldset.css.js → Fieldset.css.cjs} +1 -1
  15. package/cjs/Frame/{Frame.js → Frame.cjs} +3 -2
  16. package/cjs/Frame/Frame.css.cjs +48 -0
  17. package/cjs/Frame/Frame.css.ts.vanilla.css +399 -0
  18. package/cjs/GlobalStyle/{GlobalStyle.css.js → GlobalStyle.css.cjs} +1 -1
  19. package/cjs/{GlobalStyle.js → GlobalStyle.cjs} +1 -1
  20. package/cjs/Input/Input.cjs +7 -0
  21. package/cjs/Input/{Input.css.js → Input.css.cjs} +1 -1
  22. package/cjs/List/List.cjs +14 -0
  23. package/cjs/List/{List.css.js → List.css.cjs} +1 -1
  24. package/cjs/List/ListDivider.cjs +9 -0
  25. package/cjs/List/{ListItem.js → ListItem.cjs} +2 -2
  26. package/cjs/Modal/Modal.cjs +132 -0
  27. package/cjs/Modal/{Modal.css.js → Modal.css.cjs} +1 -1
  28. package/cjs/Modal/{ModalProvider.js → ModalProvider.cjs} +7 -22
  29. package/cjs/ProgressBar/{ProgressBar.js → ProgressBar.cjs} +2 -2
  30. package/cjs/ProgressBar/{ProgressBar.css.js → ProgressBar.css.cjs} +1 -1
  31. package/cjs/RadioButton/{RadioButton.js → RadioButton.cjs} +1 -1
  32. package/cjs/RadioButton/{RadioButton.css.js → RadioButton.css.cjs} +1 -1
  33. package/cjs/Range/Range.cjs +17 -0
  34. package/cjs/Range/{Range.css.js → Range.css.cjs} +1 -1
  35. package/cjs/Tabs/{Tab.js → Tab.cjs} +2 -2
  36. package/cjs/Tabs/{Tabs.js → Tabs.cjs} +19 -22
  37. package/cjs/Tabs/{Tabs.css.js → Tabs.css.cjs} +1 -1
  38. package/cjs/TaskBar/{Clock.js → Clock.cjs} +3 -3
  39. package/cjs/TaskBar/{TaskBar.js → TaskBar.cjs} +5 -5
  40. package/cjs/TaskBar/{TaskBar.css.js → TaskBar.css.cjs} +1 -1
  41. package/cjs/TaskBar/TaskBar.css.ts.vanilla.css +1 -0
  42. package/cjs/TaskBar/{WindowButton.js → WindowButton.cjs} +1 -1
  43. package/cjs/TextArea/TextArea.cjs +9 -0
  44. package/cjs/TitleBar/{TitleBar.js → TitleBar.cjs} +13 -11
  45. package/cjs/TitleBar/{TitleBar.css.js → TitleBar.css.cjs} +1 -1
  46. package/cjs/Tooltip/{Tooltip.js → Tooltip.cjs} +6 -23
  47. package/cjs/Tooltip/{Tooltip.css.js → Tooltip.css.cjs} +1 -1
  48. package/cjs/Tree/Node.cjs +122 -0
  49. package/cjs/Tree/{Tree.js → Tree.cjs} +3 -3
  50. package/cjs/Tree/{Tree.css.js → Tree.css.cjs} +1 -1
  51. package/cjs/Tree/Tree.css.ts.vanilla.css +1 -1
  52. package/cjs/Video/{Video.js → Video.cjs} +37 -53
  53. package/cjs/Video/{Video.css.js → Video.css.cjs} +1 -1
  54. package/cjs/Video/buttons/Fullscreen.cjs +22 -0
  55. package/cjs/Video/buttons/Pause.cjs +16 -0
  56. package/cjs/Video/buttons/Play.cjs +16 -0
  57. package/cjs/Video/buttons/Stop.cjs +15 -0
  58. package/cjs/index.cjs +50 -0
  59. package/cjs/themes/{azureOrange.css.js → azureOrange.css.cjs} +1 -1
  60. package/cjs/themes/{bee.css.js → bee.css.cjs} +1 -1
  61. package/cjs/themes/{blackAndWhite.css.js → blackAndWhite.css.cjs} +1 -1
  62. package/cjs/themes/{brick.css.js → brick.css.cjs} +1 -1
  63. package/cjs/themes/{candy.css.js → candy.css.cjs} +1 -1
  64. package/cjs/themes/{coldGray.css.js → coldGray.css.cjs} +1 -1
  65. package/cjs/themes/{counterStrike.css.js → counterStrike.css.cjs} +1 -1
  66. package/cjs/themes/{eggplant.css.js → eggplant.css.cjs} +1 -1
  67. package/cjs/themes/{highContrast.css.js → highContrast.css.cjs} +1 -1
  68. package/cjs/themes/{lilac.css.js → lilac.css.cjs} +1 -1
  69. package/cjs/themes/{lilacRoseDark.css.js → lilacRoseDark.css.cjs} +1 -1
  70. package/cjs/themes/{maple.css.js → maple.css.cjs} +1 -1
  71. package/cjs/themes/{marine.css.js → marine.css.cjs} +1 -1
  72. package/cjs/themes/{matrix.css.js → matrix.css.cjs} +1 -1
  73. package/cjs/themes/{millenium.css.js → millenium.css.cjs} +1 -1
  74. package/cjs/themes/{modernDark.css.js → modernDark.css.cjs} +1 -1
  75. package/cjs/themes/{molecule.css.js → molecule.css.cjs} +1 -1
  76. package/cjs/themes/{ninjaTurtles.css.js → ninjaTurtles.css.cjs} +1 -1
  77. package/cjs/themes/{olive.css.js → olive.css.cjs} +1 -1
  78. package/cjs/themes/{pamelaAnderson.css.js → pamelaAnderson.css.cjs} +1 -1
  79. package/cjs/themes/{plum.css.js → plum.css.cjs} +1 -1
  80. package/cjs/themes/{rainyDay.css.js → rainyDay.css.cjs} +1 -1
  81. package/cjs/themes/{rose.css.js → rose.css.cjs} +1 -1
  82. package/cjs/themes/{slate.css.js → slate.css.cjs} +1 -1
  83. package/cjs/themes/{spruce.css.js → spruce.css.cjs} +1 -1
  84. package/cjs/themes/{storm.css.js → storm.css.cjs} +1 -1
  85. package/cjs/themes/{theSixtiesUSA.css.js → theSixtiesUSA.css.cjs} +1 -1
  86. package/cjs/themes/{tokyoDark.css.js → tokyoDark.css.cjs} +1 -1
  87. package/cjs/themes/{tooSexy.css.js → tooSexy.css.cjs} +1 -1
  88. package/cjs/themes/{travel.css.js → travel.css.cjs} +1 -1
  89. package/cjs/themes/{vaporTeal.css.js → vaporTeal.css.cjs} +1 -1
  90. package/cjs/themes/{vermillion.css.js → vermillion.css.cjs} +1 -1
  91. package/cjs/themes/{violetDark.css.js → violetDark.css.cjs} +1 -1
  92. package/cjs/themes/{water.css.js → water.css.cjs} +1 -1
  93. package/cjs/themes/{win95.css.js → win95.css.cjs} +1 -1
  94. package/cjs/themes.cjs +72 -0
  95. package/esm/Alert/{Alert.css.js → Alert.css.mjs} +1 -1
  96. package/esm/Alert/Alert.mjs +43 -0
  97. package/esm/Avatar/{Avatar.css.js → Avatar.css.mjs} +1 -1
  98. package/esm/Avatar/{Avatar.js → Avatar.mjs} +4 -4
  99. package/esm/Button/Button.css.mjs +5 -0
  100. package/esm/Button/Button.mjs +20 -0
  101. package/esm/Checkbox/{Checkbox.css.js → Checkbox.css.mjs} +1 -1
  102. package/esm/Checkbox/Checkbox.mjs +17 -0
  103. package/esm/Cursor/Cursor.css.mjs +5 -0
  104. package/esm/Dropdown/{Dropdown.css.js → Dropdown.css.mjs} +1 -1
  105. package/esm/Dropdown/Dropdown.mjs +20 -0
  106. package/esm/Fieldset/{Fieldset.css.js → Fieldset.css.mjs} +1 -1
  107. package/esm/Fieldset/Fieldset.mjs +9 -0
  108. package/esm/Frame/Frame.css.mjs +48 -0
  109. package/esm/Frame/Frame.css.ts.vanilla.css +399 -0
  110. package/esm/Frame/{Frame.js → Frame.mjs} +5 -4
  111. package/esm/GlobalStyle/GlobalStyle.css.mjs +2 -0
  112. package/esm/{GlobalStyle.js → GlobalStyle.mjs} +1 -1
  113. package/esm/Input/Input.css.mjs +5 -0
  114. package/esm/Input/Input.mjs +7 -0
  115. package/esm/List/{List.css.js → List.css.mjs} +1 -1
  116. package/esm/List/List.mjs +14 -0
  117. package/esm/List/ListDivider.mjs +9 -0
  118. package/esm/List/ListItem.mjs +12 -0
  119. package/esm/Modal/{Modal.css.js → Modal.css.mjs} +1 -1
  120. package/esm/Modal/{Modal.js → Modal.mjs} +16 -18
  121. package/esm/Modal/{ModalProvider.js → ModalProvider.mjs} +7 -5
  122. package/esm/ProgressBar/{ProgressBar.css.js → ProgressBar.css.mjs} +1 -1
  123. package/esm/ProgressBar/ProgressBar.mjs +20 -0
  124. package/esm/RadioButton/{RadioButton.css.js → RadioButton.css.mjs} +1 -1
  125. package/esm/RadioButton/RadioButton.mjs +17 -0
  126. package/esm/Range/Range.css.mjs +5 -0
  127. package/esm/Range/Range.mjs +17 -0
  128. package/esm/Tabs/Tab.mjs +18 -0
  129. package/esm/Tabs/{Tabs.css.js → Tabs.css.mjs} +1 -1
  130. package/esm/Tabs/Tabs.mjs +47 -0
  131. package/esm/TaskBar/{Clock.js → Clock.mjs} +6 -6
  132. package/esm/TaskBar/{TaskBar.css.js → TaskBar.css.mjs} +1 -1
  133. package/esm/TaskBar/TaskBar.css.ts.vanilla.css +1 -0
  134. package/esm/TaskBar/{TaskBar.js → TaskBar.mjs} +14 -14
  135. package/esm/TaskBar/WindowButton.mjs +17 -0
  136. package/esm/TextArea/TextArea.mjs +9 -0
  137. package/esm/TitleBar/{TitleBar.css.js → TitleBar.css.mjs} +1 -1
  138. package/esm/TitleBar/TitleBar.mjs +47 -0
  139. package/esm/Tooltip/{Tooltip.css.js → Tooltip.css.mjs} +1 -1
  140. package/esm/Tooltip/{Tooltip.js → Tooltip.mjs} +5 -5
  141. package/esm/Tree/{Node.js → Node.mjs} +4 -4
  142. package/esm/Tree/{Tree.css.js → Tree.css.mjs} +1 -1
  143. package/esm/Tree/Tree.css.ts.vanilla.css +1 -1
  144. package/esm/Tree/Tree.mjs +16 -0
  145. package/esm/Video/{Video.css.js → Video.css.mjs} +1 -1
  146. package/esm/Video/{Video.js → Video.mjs} +23 -22
  147. package/esm/Video/buttons/{Fullscreen.js → Fullscreen.mjs} +1 -1
  148. package/esm/Video/buttons/{Pause.js → Pause.mjs} +1 -1
  149. package/esm/Video/buttons/{Play.js → Play.mjs} +1 -1
  150. package/esm/Video/buttons/{Stop.js → Stop.mjs} +1 -1
  151. package/esm/index.mjs +50 -0
  152. package/esm/themes/azureOrange.css.mjs +2 -0
  153. package/esm/themes/bee.css.mjs +2 -0
  154. package/esm/themes/blackAndWhite.css.mjs +2 -0
  155. package/esm/themes/brick.css.mjs +2 -0
  156. package/esm/themes/candy.css.mjs +2 -0
  157. package/esm/themes/coldGray.css.mjs +2 -0
  158. package/esm/themes/counterStrike.css.mjs +2 -0
  159. package/esm/themes/eggplant.css.mjs +2 -0
  160. package/esm/themes/highContrast.css.mjs +2 -0
  161. package/esm/themes/lilac.css.mjs +2 -0
  162. package/esm/themes/lilacRoseDark.css.mjs +2 -0
  163. package/esm/themes/maple.css.mjs +2 -0
  164. package/esm/themes/marine.css.mjs +2 -0
  165. package/esm/themes/matrix.css.mjs +2 -0
  166. package/esm/themes/millenium.css.mjs +2 -0
  167. package/esm/themes/modernDark.css.mjs +2 -0
  168. package/esm/themes/molecule.css.mjs +2 -0
  169. package/esm/themes/ninjaTurtles.css.mjs +2 -0
  170. package/esm/themes/olive.css.mjs +2 -0
  171. package/esm/themes/pamelaAnderson.css.mjs +2 -0
  172. package/esm/themes/plum.css.mjs +2 -0
  173. package/esm/themes/rainyDay.css.mjs +2 -0
  174. package/esm/themes/rose.css.mjs +2 -0
  175. package/esm/themes/slate.css.mjs +2 -0
  176. package/esm/themes/spruce.css.mjs +2 -0
  177. package/esm/themes/storm.css.mjs +2 -0
  178. package/esm/themes/theSixtiesUSA.css.mjs +2 -0
  179. package/esm/themes/tokyoDark.css.mjs +2 -0
  180. package/esm/themes/tooSexy.css.mjs +2 -0
  181. package/esm/themes/travel.css.mjs +2 -0
  182. package/esm/themes/vaporTeal.css.mjs +2 -0
  183. package/esm/themes/vermillion.css.mjs +2 -0
  184. package/esm/themes/violetDark.css.mjs +2 -0
  185. package/esm/themes/water.css.mjs +2 -0
  186. package/esm/themes/win95.css.mjs +2 -0
  187. package/esm/themes.mjs +72 -0
  188. package/package.json +20 -11
  189. package/types/Avatar/Avatar.d.ts +9 -0
  190. package/types/Button/Button.d.ts +7 -0
  191. package/{@types → types}/Checkbox/Checkbox.d.ts +3 -2
  192. package/{@types → types}/Dropdown/Dropdown.d.ts +2 -1
  193. package/{@types → types}/Fieldset/Fieldset.d.ts +2 -1
  194. package/{@types/Frame/sprinkles.css.d.ts → types/Frame/Frame.css.d.ts} +141 -116
  195. package/{@types → types}/Frame/Frame.d.ts +10 -7
  196. package/{@types → types}/Frame/props.d.ts +1 -1
  197. package/{@types → types}/Input/Input.d.ts +1 -1
  198. package/{@types → types}/List/ListItem.d.ts +3 -2
  199. package/{@types → types}/Modal/Modal.d.ts +8 -8
  200. package/{@types → types}/Modal/ModalContext.d.ts +2 -2
  201. package/types/Modal/ModalProvider.d.ts +3 -0
  202. package/types/ProgressBar/ProgressBar.d.ts +9 -0
  203. package/{@types → types}/RadioButton/RadioButton.d.ts +2 -1
  204. package/{@types → types}/Range/Range.d.ts +1 -1
  205. package/{@types → types}/Tabs/Tab.d.ts +3 -2
  206. package/{@types → types}/Tabs/Tabs.d.ts +3 -2
  207. package/{@types → types}/TaskBar/TaskBar.d.ts +2 -1
  208. package/{@types → types}/TaskBar/WindowButton.d.ts +2 -1
  209. package/{@types → types}/TextArea/TextArea.d.ts +1 -1
  210. package/{@types → types}/TitleBar/TitleBar.d.ts +5 -4
  211. package/{@types → types}/Tooltip/Tooltip.d.ts +3 -2
  212. package/{@types → types}/Tree/Node.d.ts +7 -6
  213. package/{@types → types}/Tree/Tree.d.ts +2 -2
  214. package/types/Video/Video.d.ts +17 -0
  215. package/types/Video/buttons/Fullscreen.d.ts +4 -0
  216. package/types/Video/buttons/Pause.d.ts +4 -0
  217. package/types/Video/buttons/Play.d.ts +4 -0
  218. package/types/Video/buttons/Stop.d.ts +4 -0
  219. package/{@types → types}/themes/all.d.ts +30 -30
  220. package/@types/Avatar/Avatar.d.ts +0 -6
  221. package/@types/Button/Button.d.ts +0 -4
  222. package/@types/Modal/ModalProvider.d.ts +0 -3
  223. package/@types/ProgressBar/ProgressBar.d.ts +0 -6
  224. package/@types/Video/Video.d.ts +0 -16
  225. package/@types/Video/buttons/Fullscreen.d.ts +0 -3
  226. package/@types/Video/buttons/Pause.d.ts +0 -3
  227. package/@types/Video/buttons/Play.d.ts +0 -3
  228. package/@types/Video/buttons/Stop.d.ts +0 -3
  229. package/cjs/Avatar/Avatar.js +0 -26
  230. package/cjs/Cursor/Cursor.css.js +0 -5
  231. package/cjs/Frame/sprinkles.css.js +0 -47
  232. package/cjs/Input/Input.js +0 -26
  233. package/cjs/List/List.js +0 -16
  234. package/cjs/List/ListDivider.js +0 -19
  235. package/cjs/Modal/Modal.js +0 -151
  236. package/cjs/Range/Range.js +0 -36
  237. package/cjs/TextArea/TextArea.js +0 -26
  238. package/cjs/Tree/Node.js +0 -139
  239. package/cjs/Video/buttons/Fullscreen.js +0 -39
  240. package/cjs/Video/buttons/Pause.js +0 -33
  241. package/cjs/Video/buttons/Play.js +0 -33
  242. package/cjs/Video/buttons/Stop.js +0 -32
  243. package/cjs/index.js +0 -50
  244. package/cjs/theme.js +0 -72
  245. package/cjs/themes/sprinkles.css.ts.vanilla.css +0 -399
  246. package/esm/Alert/Alert.js +0 -43
  247. package/esm/Button/Button.css.js +0 -5
  248. package/esm/Button/Button.js +0 -20
  249. package/esm/Checkbox/Checkbox.js +0 -17
  250. package/esm/Cursor/Cursor.css.js +0 -5
  251. package/esm/Dropdown/Dropdown.js +0 -20
  252. package/esm/Fieldset/Fieldset.js +0 -9
  253. package/esm/Frame/sprinkles.css.js +0 -47
  254. package/esm/GlobalStyle/GlobalStyle.css.js +0 -2
  255. package/esm/Input/Input.css.js +0 -5
  256. package/esm/Input/Input.js +0 -9
  257. package/esm/List/List.js +0 -16
  258. package/esm/List/ListDivider.js +0 -19
  259. package/esm/List/ListItem.js +0 -12
  260. package/esm/ProgressBar/ProgressBar.js +0 -20
  261. package/esm/RadioButton/RadioButton.js +0 -17
  262. package/esm/Range/Range.css.js +0 -5
  263. package/esm/Range/Range.js +0 -19
  264. package/esm/Tabs/Tab.js +0 -18
  265. package/esm/Tabs/Tabs.js +0 -50
  266. package/esm/TaskBar/WindowButton.js +0 -17
  267. package/esm/TextArea/TextArea.js +0 -9
  268. package/esm/TitleBar/TitleBar.js +0 -45
  269. package/esm/Tree/Tree.js +0 -16
  270. package/esm/index.js +0 -50
  271. package/esm/theme.js +0 -72
  272. package/esm/themes/azureOrange.css.js +0 -2
  273. package/esm/themes/bee.css.js +0 -2
  274. package/esm/themes/blackAndWhite.css.js +0 -2
  275. package/esm/themes/brick.css.js +0 -2
  276. package/esm/themes/candy.css.js +0 -2
  277. package/esm/themes/coldGray.css.js +0 -2
  278. package/esm/themes/counterStrike.css.js +0 -2
  279. package/esm/themes/eggplant.css.js +0 -2
  280. package/esm/themes/highContrast.css.js +0 -2
  281. package/esm/themes/lilac.css.js +0 -2
  282. package/esm/themes/lilacRoseDark.css.js +0 -2
  283. package/esm/themes/maple.css.js +0 -2
  284. package/esm/themes/marine.css.js +0 -2
  285. package/esm/themes/matrix.css.js +0 -2
  286. package/esm/themes/millenium.css.js +0 -2
  287. package/esm/themes/modernDark.css.js +0 -2
  288. package/esm/themes/molecule.css.js +0 -2
  289. package/esm/themes/ninjaTurtles.css.js +0 -2
  290. package/esm/themes/olive.css.js +0 -2
  291. package/esm/themes/pamelaAnderson.css.js +0 -2
  292. package/esm/themes/plum.css.js +0 -2
  293. package/esm/themes/rainyDay.css.js +0 -2
  294. package/esm/themes/rose.css.js +0 -2
  295. package/esm/themes/slate.css.js +0 -2
  296. package/esm/themes/sprinkles.css.ts.vanilla.css +0 -399
  297. package/esm/themes/spruce.css.js +0 -2
  298. package/esm/themes/storm.css.js +0 -2
  299. package/esm/themes/theSixtiesUSA.css.js +0 -2
  300. package/esm/themes/tokyoDark.css.js +0 -2
  301. package/esm/themes/tooSexy.css.js +0 -2
  302. package/esm/themes/travel.css.js +0 -2
  303. package/esm/themes/vaporTeal.css.js +0 -2
  304. package/esm/themes/vermillion.css.js +0 -2
  305. package/esm/themes/violetDark.css.js +0 -2
  306. package/esm/themes/water.css.js +0 -2
  307. package/esm/themes/win95.css.js +0 -2
  308. package/cjs/Alert/assets/{chord.mp3.js → chord.mp3.cjs} +0 -0
  309. package/cjs/Modal/{ModalContext.js → ModalContext.cjs} +0 -0
  310. package/cjs/Modal/{close.svg.js → close.svg.cjs} +0 -0
  311. package/cjs/Modal/{help.svg.js → help.svg.cjs} +0 -0
  312. package/esm/Alert/assets/{chord.mp3.js → chord.mp3.mjs} +0 -0
  313. package/esm/Modal/{ModalContext.js → ModalContext.mjs} +0 -0
  314. package/esm/Modal/{close.svg.js → close.svg.mjs} +0 -0
  315. package/esm/Modal/{help.svg.js → help.svg.mjs} +0 -0
  316. package/{@types → types}/Alert/Alert.css.d.ts +0 -0
  317. package/{@types → types}/Alert/Alert.d.ts +0 -0
  318. package/{@types → types}/Avatar/Avatar.css.d.ts +0 -0
  319. package/{@types → types}/Button/Button.css.d.ts +0 -0
  320. package/{@types → types}/Checkbox/Checkbox.css.d.ts +0 -0
  321. package/{@types → types}/Cursor/Cursor.css.d.ts +0 -0
  322. package/{@types → types}/Dropdown/Dropdown.css.d.ts +0 -0
  323. package/{@types → types}/Fieldset/Fieldset.css.d.ts +0 -0
  324. package/{@types → types}/Input/Input.css.d.ts +0 -0
  325. package/{@types → types}/List/List.css.d.ts +0 -0
  326. package/{@types → types}/List/List.d.ts +1 -1
  327. /package/{@types → types}/List/ListDivider.d.ts +0 -0
  328. /package/{@types → types}/Modal/Modal.css.d.ts +0 -0
  329. /package/{@types → types}/ProgressBar/ProgressBar.css.d.ts +0 -0
  330. /package/{@types → types}/RadioButton/RadioButton.css.d.ts +0 -0
  331. /package/{@types → types}/RadioButton/radioButtonStates.d.ts +0 -0
  332. /package/{@types → types}/Range/Range.css.d.ts +0 -0
  333. /package/{@types → types}/Tabs/Tabs.css.d.ts +0 -0
  334. /package/{@types → types}/TaskBar/Clock.d.ts +0 -0
  335. /package/{@types → types}/TaskBar/TaskBar.css.d.ts +0 -0
  336. /package/{@types → types}/TitleBar/TitleBar.css.d.ts +0 -0
  337. /package/{@types → types}/Tooltip/Tooltip.css.d.ts +0 -0
  338. /package/{@types → types}/Tree/Tree.css.d.ts +0 -0
  339. /package/{@types → types}/Video/Video.css.d.ts +0 -0
  340. /package/{@types → types}/Video/buttons/index.d.ts +0 -0
  341. /package/{@types → types}/index.d.ts +0 -0
  342. /package/{@types → types}/shared/font-names.d.ts +0 -0
  343. /package/{@types → types}/themes/azureOrange.css.d.ts +0 -0
  344. /package/{@types → types}/themes/baseTheme.d.ts +0 -0
  345. /package/{@types → types}/themes/bee.css.d.ts +0 -0
  346. /package/{@types → types}/themes/blackAndWhite.css.d.ts +0 -0
  347. /package/{@types → types}/themes/brick.css.d.ts +0 -0
  348. /package/{@types → types}/themes/candy.css.d.ts +0 -0
  349. /package/{@types → types}/themes/coldGray.css.d.ts +0 -0
  350. /package/{@types → types}/themes/contract.css.d.ts +0 -0
  351. /package/{@types → types}/themes/counterStrike.css.d.ts +0 -0
  352. /package/{@types → types}/themes/eggplant.css.d.ts +0 -0
  353. /package/{@types → types}/themes/highContrast.css.d.ts +0 -0
  354. /package/{@types → types}/themes/lilac.css.d.ts +0 -0
  355. /package/{@types → types}/themes/lilacRoseDark.css.d.ts +0 -0
  356. /package/{@types → types}/themes/maple.css.d.ts +0 -0
  357. /package/{@types → types}/themes/marine.css.d.ts +0 -0
  358. /package/{@types → types}/themes/matrix.css.d.ts +0 -0
  359. /package/{@types → types}/themes/millenium.css.d.ts +0 -0
  360. /package/{@types → types}/themes/modernDark.css.d.ts +0 -0
  361. /package/{@types → types}/themes/molecule.css.d.ts +0 -0
  362. /package/{@types → types}/themes/ninjaTurtles.css.d.ts +0 -0
  363. /package/{@types → types}/themes/olive.css.d.ts +0 -0
  364. /package/{@types → types}/themes/pamelaAnderson.css.d.ts +0 -0
  365. /package/{@types → types}/themes/plum.css.d.ts +0 -0
  366. /package/{@types → types}/themes/rainyDay.css.d.ts +0 -0
  367. /package/{@types → types}/themes/rose.css.d.ts +0 -0
  368. /package/{@types → types}/themes/slate.css.d.ts +0 -0
  369. /package/{@types → types}/themes/spruce.css.d.ts +0 -0
  370. /package/{@types → types}/themes/storm.css.d.ts +0 -0
  371. /package/{@types → types}/themes/theSixtiesUSA.css.d.ts +0 -0
  372. /package/{@types → types}/themes/tokyoDark.css.d.ts +0 -0
  373. /package/{@types → types}/themes/tooSexy.css.d.ts +0 -0
  374. /package/{@types → types}/themes/travel.css.d.ts +0 -0
  375. /package/{@types → types}/themes/vaporTeal.css.d.ts +0 -0
  376. /package/{@types → types}/themes/vermillion.css.d.ts +0 -0
  377. /package/{@types → types}/themes/violetDark.css.d.ts +0 -0
  378. /package/{@types → types}/themes/water.css.d.ts +0 -0
  379. /package/{@types → types}/themes/win95.css.d.ts +0 -0
@@ -0,0 +1,2 @@
1
+ import './bee.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './blackAndWhite.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './brick.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './candy.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './coldGray.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './counterStrike.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './eggplant.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './highContrast.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './lilac.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './lilacRoseDark.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './maple.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './marine.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './matrix.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './millenium.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './modernDark.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './molecule.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './ninjaTurtles.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './olive.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './pamelaAnderson.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './plum.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './rainyDay.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './rose.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './slate.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './spruce.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './storm.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './theSixtiesUSA.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './tokyoDark.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './tooSexy.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './travel.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './vaporTeal.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './vermillion.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './violetDark.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './water.css.ts.vanilla.css';
2
+ /* empty css */
@@ -0,0 +1,2 @@
1
+ import './win95.css.ts.vanilla.css';
2
+ /* empty css */
package/esm/themes.mjs ADDED
@@ -0,0 +1,72 @@
1
+ import * as azureOrange_css from "./themes/azureOrange.css.mjs";
2
+ import * as bee_css from "./themes/bee.css.mjs";
3
+ import * as blackAndWhite_css from "./themes/blackAndWhite.css.mjs";
4
+ import * as brick_css from "./themes/brick.css.mjs";
5
+ import * as candy_css from "./themes/candy.css.mjs";
6
+ import * as coldGray_css from "./themes/coldGray.css.mjs";
7
+ import * as counterStrike_css from "./themes/counterStrike.css.mjs";
8
+ import * as eggplant_css from "./themes/eggplant.css.mjs";
9
+ import * as highContrast_css from "./themes/highContrast.css.mjs";
10
+ import * as lilac_css from "./themes/lilac.css.mjs";
11
+ import * as lilacRoseDark_css from "./themes/lilacRoseDark.css.mjs";
12
+ import * as maple_css from "./themes/maple.css.mjs";
13
+ import * as marine_css from "./themes/marine.css.mjs";
14
+ import * as matrix_css from "./themes/matrix.css.mjs";
15
+ import * as millenium_css from "./themes/millenium.css.mjs";
16
+ import * as modernDark_css from "./themes/modernDark.css.mjs";
17
+ import * as molecule_css from "./themes/molecule.css.mjs";
18
+ import * as ninjaTurtles_css from "./themes/ninjaTurtles.css.mjs";
19
+ import * as olive_css from "./themes/olive.css.mjs";
20
+ import * as pamelaAnderson_css from "./themes/pamelaAnderson.css.mjs";
21
+ import * as plum_css from "./themes/plum.css.mjs";
22
+ import * as rainyDay_css from "./themes/rainyDay.css.mjs";
23
+ import * as rose_css from "./themes/rose.css.mjs";
24
+ import * as slate_css from "./themes/slate.css.mjs";
25
+ import * as spruce_css from "./themes/spruce.css.mjs";
26
+ import * as storm_css from "./themes/storm.css.mjs";
27
+ import * as theSixtiesUSA_css from "./themes/theSixtiesUSA.css.mjs";
28
+ import * as tokyoDark_css from "./themes/tokyoDark.css.mjs";
29
+ import * as tooSexy_css from "./themes/tooSexy.css.mjs";
30
+ import * as travel_css from "./themes/travel.css.mjs";
31
+ import * as vaporTeal_css from "./themes/vaporTeal.css.mjs";
32
+ import * as vermillion_css from "./themes/vermillion.css.mjs";
33
+ import * as violetDark_css from "./themes/violetDark.css.mjs";
34
+ import * as water_css from "./themes/water.css.mjs";
35
+ import * as win95_css from "./themes/win95.css.mjs";
36
+ export {
37
+ azureOrange_css as azureOrange,
38
+ bee_css as bee,
39
+ blackAndWhite_css as blackAndWhite,
40
+ brick_css as brick,
41
+ candy_css as candy,
42
+ coldGray_css as coldGray,
43
+ counterStrike_css as counterStrike,
44
+ eggplant_css as eggplant,
45
+ highContrast_css as highContrast,
46
+ lilac_css as lilac,
47
+ lilacRoseDark_css as lilacRoseDark,
48
+ maple_css as maple,
49
+ marine_css as marine,
50
+ matrix_css as matrix,
51
+ millenium_css as millenium,
52
+ modernDark_css as modernDark,
53
+ molecule_css as molecule,
54
+ ninjaTurtles_css as ninjaTurtles,
55
+ olive_css as olive,
56
+ pamelaAnderson_css as pamelaAnderson,
57
+ plum_css as plum,
58
+ rainyDay_css as rainyDay,
59
+ rose_css as rose,
60
+ slate_css as slate,
61
+ spruce_css as spruce,
62
+ storm_css as storm,
63
+ theSixtiesUSA_css as theSixtiesUSA,
64
+ tokyoDark_css as tokyoDark,
65
+ tooSexy_css as tooSexy,
66
+ travel_css as travel,
67
+ vaporTeal_css as vaporTeal,
68
+ vermillion_css as vermillion,
69
+ violetDark_css as violetDark,
70
+ water_css as water,
71
+ win95_css as win95
72
+ };
package/package.json CHANGED
@@ -1,21 +1,23 @@
1
1
  {
2
2
  "name": "@react95/core",
3
- "version": "8.0.0-alpha.1",
3
+ "version": "8.0.0-alpha.11",
4
4
  "description": "Windows 95 styleguide",
5
- "main": "./cjs",
5
+ "main": "cjs/index.cjs",
6
+ "type": "module",
6
7
  "exports": {
7
8
  ".": {
9
+ "types": "./types/index.d.ts",
8
10
  "import": "./esm",
9
- "require": "./cjs",
10
- "types": "./@types/index.d.ts"
11
+ "require": "./cjs"
11
12
  },
12
13
  "./themes/*.css": {
13
- "import": "./esm/themes/*.css.js",
14
- "require": "./cjs/themes/*.css.js"
14
+ "types": "./types/themes/all.d.ts",
15
+ "import": "./esm/themes/*.css.mjs",
16
+ "require": "./cjs/themes/*.css.cjs"
15
17
  },
16
18
  "./GlobalStyle": {
17
- "import": "./esm/GlobalStyle.js",
18
- "require": "./cjs/GlobalStyle.js"
19
+ "import": "./esm/GlobalStyle.mjs",
20
+ "require": "./cjs/GlobalStyle.cjs"
19
21
  }
20
22
  },
21
23
  "repository": {
@@ -46,8 +48,15 @@
46
48
  "sideEffects": [
47
49
  "**/*.{woff2,woff,ttf,eot}"
48
50
  ],
49
- "gitHead": "2f2d14dbd8ee63309cbe57fe1f6cdb715421898b",
50
- "module": "./esm",
51
+ "keywords": [
52
+ "React95",
53
+ "windows95",
54
+ "w95",
55
+ "nostalgic",
56
+ "design-system"
57
+ ],
58
+ "gitHead": "f6a0e8d85480ee86cab55bea9d73fbb448fa1517",
59
+ "module": "esm/index.mjs",
51
60
  "private": false,
52
- "types": "@types"
61
+ "types": "types/index.d.ts"
53
62
  }
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import type { ElementType, ReactElement, ElementRef, ForwardedRef, ImgHTMLAttributes } from 'react';
3
+ import { FrameProps } from '../Frame/Frame';
4
+ export type AvatarProps<TAs extends ElementType> = Omit<ImgHTMLAttributes<HTMLDivElement>, 'width' | 'color' | 'height'> & FrameProps<TAs> & {
5
+ circle?: boolean;
6
+ };
7
+ export declare const Avatar: <TAs extends React.ElementType = "div">(props: AvatarProps<TAs> & {
8
+ ref?: ForwardedRef<ElementRef<TAs>>;
9
+ }) => ReactElement;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { ElementType, ReactElement, ElementRef, ForwardedRef, ButtonHTMLAttributes } from 'react';
3
+ import { FrameProps } from '../Frame/Frame';
4
+ export type ButtonProps<TAs extends ElementType> = ButtonHTMLAttributes<HTMLButtonElement> & FrameProps<TAs>;
5
+ export declare const Button: <TAs extends React.ElementType = "button">(props: ButtonProps<TAs> & {
6
+ ref?: ForwardedRef<ElementRef<TAs>>;
7
+ }) => ReactElement;
@@ -1,10 +1,11 @@
1
1
  import React from 'react';
2
+ import type { CSSProperties, HTMLProps } from 'react';
2
3
  export type LabelProps = {
3
4
  disabled?: boolean;
4
5
  };
5
6
  export type CheckboxProps = {
6
7
  label?: string;
7
8
  children?: string;
8
- style?: React.CSSProperties;
9
- } & LabelProps & React.HTMLProps<HTMLInputElement>;
9
+ style?: CSSProperties;
10
+ } & LabelProps & HTMLProps<HTMLInputElement>;
10
11
  export declare const Checkbox: React.ForwardRefExoticComponent<Omit<CheckboxProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
+ import type { HTMLProps } from 'react';
2
3
  import { FrameProps } from '../Frame/Frame';
3
4
  export type DropdownProps = {
4
5
  options?: Array<string | number>;
5
- } & React.HTMLProps<HTMLSelectElement> & Omit<FrameProps<'select'>, 'as'>;
6
+ } & HTMLProps<HTMLSelectElement> & Omit<FrameProps<'select'>, 'as'>;
6
7
  export declare const Dropdown: React.ForwardRefExoticComponent<Omit<DropdownProps, "ref"> & React.RefAttributes<HTMLSelectElement>>;
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
+ import type { HTMLProps } from 'react';
2
3
  import { FrameProps } from '../Frame/Frame';
3
4
  export type FieldSetProps = {
4
5
  legend?: string;
5
- } & React.HTMLProps<HTMLFieldSetElement> & FrameProps;
6
+ } & HTMLProps<HTMLFieldSetElement> & Omit<FrameProps<'fieldset'>, 'as'>;
6
7
  export declare const Fieldset: React.ForwardRefExoticComponent<Omit<FieldSetProps, "ref"> & React.RefAttributes<HTMLFieldSetElement>>;
@@ -1,111 +1,5 @@
1
- export declare const sprinkles: import("rainbow-sprinkles/dist/declarations/src/createRuntimeFn").SprinklesFn<[{
2
- config: {
3
- readonly backgroundColor: {
4
- dynamic: {
5
- default: string;
6
- };
7
- dynamicScale: {
8
- anchor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
9
- anchorVisited: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
10
- borderDark: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
11
- borderDarkest: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
12
- borderLight: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
13
- borderLighter: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
14
- borderLightest: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
15
- canvas: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
16
- canvasText: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
17
- headerBackground: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
18
- headerNotActiveBackground: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
19
- headerNotActiveText: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
20
- headerText: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
21
- material: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
22
- materialText: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
23
- materialTextDisabled: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
24
- materialTextDisabledShadow: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
25
- materialTextInvert: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
26
- progress: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
27
- inputBackground: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
28
- inputBackgroundDisabled: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
29
- };
30
- name: "backgroundColor";
31
- vars: {
32
- default: string;
33
- };
34
- };
35
- readonly colors: {
36
- dynamic: {
37
- default: string;
38
- };
39
- dynamicScale: {
40
- anchor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
41
- anchorVisited: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
42
- borderDark: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
43
- borderDarkest: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
44
- borderLight: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
45
- borderLighter: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
46
- borderLightest: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
47
- canvas: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
48
- canvasText: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
49
- headerBackground: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
50
- headerNotActiveBackground: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
51
- headerNotActiveText: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
52
- headerText: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
53
- material: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
54
- materialText: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
55
- materialTextDisabled: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
56
- materialTextDisabledShadow: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
57
- materialTextInvert: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
58
- progress: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
59
- inputBackground: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
60
- inputBackgroundDisabled: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
61
- };
62
- name: "colors";
63
- vars: {
64
- default: string;
65
- };
66
- };
67
- };
68
- } & {
69
- config: {
70
- bgColor: {
71
- mappings: "backgroundColor"[];
72
- };
73
- };
74
- }, {
75
- config: {
76
- readonly boxShadow: {
77
- dynamic: {
78
- default: string;
79
- };
80
- dynamicScale: {
81
- out: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
82
- in: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
83
- input: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
84
- };
85
- name: "boxShadow";
86
- vars: {
87
- default: string;
88
- };
89
- };
90
- };
91
- }, {
92
- config: {
93
- readonly zIndex: {
94
- dynamic: {
95
- default: string;
96
- };
97
- dynamicScale: {
98
- modal: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
99
- tooltip: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
100
- taskbar: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
101
- };
102
- name: "zIndex";
103
- vars: {
104
- default: string;
105
- };
106
- };
107
- };
108
- }, {
1
+ import type { SprinklesFn } from 'rainbow-sprinkles/createRuntimeFn';
2
+ declare const displayAndBoxModelAtomicProps: {
109
3
  config: {
110
4
  readonly display: {
111
5
  dynamic: {
@@ -1418,7 +1312,8 @@ export declare const sprinkles: import("rainbow-sprinkles/dist/declarations/src/
1418
1312
  mappings: ("paddingBottom" | "paddingTop")[];
1419
1313
  };
1420
1314
  };
1421
- }, {
1315
+ };
1316
+ declare const positioningAtomicProps: {
1422
1317
  config: {
1423
1318
  readonly position: {
1424
1319
  dynamic: {
@@ -1481,7 +1376,82 @@ export declare const sprinkles: import("rainbow-sprinkles/dist/declarations/src/
1481
1376
  };
1482
1377
  };
1483
1378
  };
1484
- }, {
1379
+ };
1380
+ declare const colorsAtomicProps: {
1381
+ config: {
1382
+ readonly backgroundColor: {
1383
+ dynamic: {
1384
+ default: string;
1385
+ };
1386
+ dynamicScale: {
1387
+ anchor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1388
+ anchorVisited: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1389
+ borderDark: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1390
+ borderDarkest: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1391
+ borderLight: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1392
+ borderLighter: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1393
+ borderLightest: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1394
+ canvas: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1395
+ canvasText: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1396
+ headerBackground: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1397
+ headerNotActiveBackground: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1398
+ headerNotActiveText: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1399
+ headerText: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1400
+ material: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1401
+ materialText: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1402
+ materialTextDisabled: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1403
+ materialTextDisabledShadow: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1404
+ materialTextInvert: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1405
+ progress: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1406
+ inputBackground: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1407
+ inputBackgroundDisabled: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1408
+ };
1409
+ name: "backgroundColor";
1410
+ vars: {
1411
+ default: string;
1412
+ };
1413
+ };
1414
+ readonly color: {
1415
+ dynamic: {
1416
+ default: string;
1417
+ };
1418
+ dynamicScale: {
1419
+ anchor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1420
+ anchorVisited: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1421
+ borderDark: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1422
+ borderDarkest: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1423
+ borderLight: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1424
+ borderLighter: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1425
+ borderLightest: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1426
+ canvas: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1427
+ canvasText: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1428
+ headerBackground: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1429
+ headerNotActiveBackground: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1430
+ headerNotActiveText: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1431
+ headerText: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1432
+ material: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1433
+ materialText: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1434
+ materialTextDisabled: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1435
+ materialTextDisabledShadow: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1436
+ materialTextInvert: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1437
+ progress: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1438
+ inputBackground: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1439
+ inputBackgroundDisabled: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1440
+ };
1441
+ name: "color";
1442
+ vars: {
1443
+ default: string;
1444
+ };
1445
+ };
1446
+ };
1447
+ } & {
1448
+ config: {
1449
+ bgColor: {
1450
+ mappings: "backgroundColor"[];
1451
+ };
1452
+ };
1453
+ };
1454
+ declare const backgroundAtomicProps: {
1485
1455
  config: {
1486
1456
  readonly background: {
1487
1457
  dynamic: {
@@ -1570,7 +1540,8 @@ export declare const sprinkles: import("rainbow-sprinkles/dist/declarations/src/
1570
1540
  mappings: "background"[];
1571
1541
  };
1572
1542
  };
1573
- }, {
1543
+ };
1544
+ declare const bordersAtomicProps: {
1574
1545
  config: {
1575
1546
  readonly border: {
1576
1547
  dynamic: {
@@ -1883,7 +1854,8 @@ export declare const sprinkles: import("rainbow-sprinkles/dist/declarations/src/
1883
1854
  };
1884
1855
  };
1885
1856
  };
1886
- }, {
1857
+ };
1858
+ declare const borderRadiusAtomicProps: {
1887
1859
  config: {
1888
1860
  readonly borderBottomLeftRadius: {
1889
1861
  dynamic: {
@@ -1996,7 +1968,26 @@ export declare const sprinkles: import("rainbow-sprinkles/dist/declarations/src/
1996
1968
  };
1997
1969
  };
1998
1970
  };
1999
- }, {
1971
+ };
1972
+ declare const shadowsAtomicProps: {
1973
+ config: {
1974
+ readonly boxShadow: {
1975
+ dynamic: {
1976
+ default: string;
1977
+ };
1978
+ dynamicScale: {
1979
+ out: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1980
+ in: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1981
+ input: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1982
+ };
1983
+ name: "boxShadow";
1984
+ vars: {
1985
+ default: string;
1986
+ };
1987
+ };
1988
+ };
1989
+ };
1990
+ declare const outlineAtomicProps: {
2000
1991
  config: {
2001
1992
  readonly outline: {
2002
1993
  dynamic: {
@@ -2039,7 +2030,8 @@ export declare const sprinkles: import("rainbow-sprinkles/dist/declarations/src/
2039
2030
  };
2040
2031
  };
2041
2032
  };
2042
- }, {
2033
+ };
2034
+ declare const fontAtomicProps: {
2043
2035
  config: {
2044
2036
  readonly font: {
2045
2037
  dynamic: {
@@ -2112,7 +2104,8 @@ export declare const sprinkles: import("rainbow-sprinkles/dist/declarations/src/
2112
2104
  };
2113
2105
  };
2114
2106
  };
2115
- }, {
2107
+ };
2108
+ declare const textAtomicProps: {
2116
2109
  config: {
2117
2110
  readonly color: {
2118
2111
  dynamic: {
@@ -2267,5 +2260,37 @@ export declare const sprinkles: import("rainbow-sprinkles/dist/declarations/src/
2267
2260
  };
2268
2261
  };
2269
2262
  };
2270
- }]>;
2263
+ };
2264
+ declare const zIndicesAtomicProps: {
2265
+ config: {
2266
+ readonly zIndex: {
2267
+ dynamic: {
2268
+ default: string;
2269
+ };
2270
+ dynamicScale: {
2271
+ modal: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
2272
+ tooltip: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
2273
+ taskbar: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
2274
+ };
2275
+ name: "zIndex";
2276
+ vars: {
2277
+ default: string;
2278
+ };
2279
+ };
2280
+ };
2281
+ };
2282
+ export declare const sprinkles: SprinklesFn<[
2283
+ typeof colorsAtomicProps,
2284
+ typeof shadowsAtomicProps,
2285
+ typeof zIndicesAtomicProps,
2286
+ typeof displayAndBoxModelAtomicProps,
2287
+ typeof positioningAtomicProps,
2288
+ typeof backgroundAtomicProps,
2289
+ typeof bordersAtomicProps,
2290
+ typeof borderRadiusAtomicProps,
2291
+ typeof outlineAtomicProps,
2292
+ typeof fontAtomicProps,
2293
+ typeof textAtomicProps
2294
+ ]>;
2271
2295
  export type Sprinkles = Parameters<typeof sprinkles>[0];
2296
+ export {};