@koine/react 2.0.0-alpha.4 → 2.0.0-beta.10

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 (512) hide show
  1. package/Alert/Alert.js +31 -12
  2. package/Alert/Alert.mjs +19 -7
  3. package/Alert/Alert.stories.js +39 -0
  4. package/Alert/Alert.stories.mjs +18 -0
  5. package/Alert/index.js +5 -3
  6. package/Animations/Reveal.js +50 -18
  7. package/Animations/Reveal.mjs +39 -13
  8. package/Animations/Underline.d.ts +1 -1
  9. package/Animations/Underline.js +25 -7
  10. package/Animations/Underline.mjs +14 -4
  11. package/Animations/index.js +7 -5
  12. package/Animations/useReveal.js +51 -43
  13. package/Animations/useReveal.mjs +42 -40
  14. package/Autocomplete/AutocompleteDownshift.js +166 -160
  15. package/Autocomplete/AutocompleteDownshift.mjs +156 -157
  16. package/Autocomplete/AutocompleteDownshiftMultiselect.js +361 -355
  17. package/Autocomplete/AutocompleteDownshiftMultiselect.mjs +351 -352
  18. package/Autocomplete/AutocompleteMui.d.ts +1 -1
  19. package/Autocomplete/AutocompleteMui.js +140 -137
  20. package/Autocomplete/AutocompleteMui.mjs +126 -89
  21. package/Autocomplete/AutocompleteReach.js +120 -114
  22. package/Autocomplete/AutocompleteReach.mjs +110 -111
  23. package/Autocomplete/components.d.ts +12 -16
  24. package/Autocomplete/components.js +129 -34
  25. package/Autocomplete/components.mjs +76 -23
  26. package/Autocomplete/helpers.js +25 -25
  27. package/Autocomplete/helpers.mjs +11 -5
  28. package/Autocomplete/index.js +14 -6
  29. package/Autocomplete/index.mjs +4 -3
  30. package/Bg/BgColor.d.ts +2 -7
  31. package/Bg/BgColor.js +60 -21
  32. package/Bg/BgColor.mjs +36 -15
  33. package/Bg/BgPhoto.js +80 -18
  34. package/Bg/BgPhoto.mjs +66 -11
  35. package/Bg/BgSvg.js +29 -14
  36. package/Bg/BgSvg.mjs +17 -7
  37. package/Bg/index.js +7 -5
  38. package/Breadcrumbs/Breadcrumbs.d.ts +1 -1
  39. package/Breadcrumbs/Breadcrumbs.js +98 -26
  40. package/Breadcrumbs/Breadcrumbs.mjs +82 -18
  41. package/Breadcrumbs/index.js +5 -3
  42. package/Buttons/Button.d.ts +1 -1
  43. package/Buttons/Button.js +105 -16
  44. package/Buttons/Button.mjs +73 -9
  45. package/Buttons/ButtonComposite.d.ts +1 -1
  46. package/Buttons/ButtonComposite.js +109 -25
  47. package/Buttons/ButtonComposite.mjs +99 -22
  48. package/Buttons/ButtonFab.d.ts +1 -3
  49. package/Buttons/ButtonFab.js +26 -8
  50. package/Buttons/ButtonFab.mjs +6 -4
  51. package/Buttons/ButtonLink.d.ts +1 -1
  52. package/Buttons/ButtonLink.js +27 -13
  53. package/Buttons/ButtonLink.mjs +14 -7
  54. package/Buttons/IconButton.d.ts +1 -3
  55. package/Buttons/IconButton.js +40 -9
  56. package/Buttons/IconButton.mjs +18 -6
  57. package/Buttons/index.js +9 -7
  58. package/Calendar/CalendarDaygridCell.d.ts +2 -2
  59. package/Calendar/CalendarDaygridCell.js +77 -33
  60. package/Calendar/CalendarDaygridCell.mjs +64 -26
  61. package/Calendar/CalendarDaygridNav.d.ts +1 -1
  62. package/Calendar/CalendarDaygridNav.js +55 -20
  63. package/Calendar/CalendarDaygridNav.mjs +41 -12
  64. package/Calendar/CalendarDaygridTable.d.ts +3 -3
  65. package/Calendar/CalendarDaygridTable.js +113 -39
  66. package/Calendar/CalendarDaygridTable.mjs +97 -30
  67. package/Calendar/CalendarLegend.d.ts +1 -1
  68. package/Calendar/CalendarLegend.js +30 -10
  69. package/Calendar/CalendarLegend.mjs +20 -6
  70. package/Calendar/calendar-api-google.d.ts +1 -1
  71. package/Calendar/calendar-api-google.js +90 -113
  72. package/Calendar/calendar-api-google.mjs +75 -105
  73. package/Calendar/index.js +10 -8
  74. package/Calendar/types.js +3 -1
  75. package/Calendar/types.mjs +1 -1
  76. package/Calendar/useCalendar.d.ts +2 -2
  77. package/Calendar/useCalendar.js +196 -148
  78. package/Calendar/useCalendar.mjs +184 -142
  79. package/Calendar/utils.js +152 -115
  80. package/Calendar/utils.mjs +101 -94
  81. package/Carousel/Carousel.js +386 -380
  82. package/Carousel/Carousel.mjs +377 -378
  83. package/Carousel/CarouselCss.d.ts +3 -20
  84. package/Carousel/CarouselCss.js +61 -23
  85. package/Carousel/CarouselCss.mjs +38 -16
  86. package/Carousel/index.js +5 -3
  87. package/Collapsable/Collapsable.js +10 -3
  88. package/Collapsable/Collapsable.mjs +1 -1
  89. package/Collapsable/CollapsableReach.js +2 -3
  90. package/Collapsable/CollapsableReach.mjs +1 -3
  91. package/Collapsable/index.js +6 -4
  92. package/Collapsable/index.mjs +1 -2
  93. package/Debug/Debug.js +32 -11
  94. package/Debug/Debug.mjs +20 -6
  95. package/Debug/index.js +5 -3
  96. package/Details/Details.d.ts +5 -5
  97. package/Details/Details.js +92 -41
  98. package/Details/Details.mjs +64 -37
  99. package/Details/Details.stories.js +39 -0
  100. package/Details/Details.stories.mjs +21 -0
  101. package/Details/index.js +5 -3
  102. package/Dialog/DialogMui.d.ts +10 -327
  103. package/Dialog/DialogMui.js +91 -31
  104. package/Dialog/DialogMui.mjs +50 -25
  105. package/Dialog/DialogMui.stories.js +38 -0
  106. package/Dialog/DialogMui.stories.mjs +20 -0
  107. package/Dialog/css/bare.d.ts +9 -327
  108. package/Dialog/css/bare.js +53 -22
  109. package/Dialog/css/bare.mjs +15 -17
  110. package/Dialog/css/index.stories.js +93 -0
  111. package/Dialog/css/index.stories.mjs +75 -0
  112. package/Dialog/index.js +10 -4
  113. package/Dialog/m/bare.d.ts +2 -398
  114. package/Dialog/m/bare.js +122 -52
  115. package/Dialog/m/bare.mjs +114 -51
  116. package/Dialog/m/basic.js +29 -14
  117. package/Dialog/m/basic.mjs +10 -10
  118. package/Dialog/m/index.js +13 -7
  119. package/Dialog/m/index.mjs +4 -4
  120. package/Dialog/sc/bare.d.ts +27 -405
  121. package/Dialog/sc/bare.js +79 -42
  122. package/Dialog/sc/bare.mjs +40 -29
  123. package/Dialog/sc/framer.d.ts +15 -422
  124. package/Dialog/sc/framer.js +24 -17
  125. package/Dialog/sc/framer.mjs +9 -9
  126. package/Dialog/sc/framerMaterial.d.ts +15 -422
  127. package/Dialog/sc/framerMaterial.js +24 -17
  128. package/Dialog/sc/framerMaterial.mjs +9 -9
  129. package/Dialog/sc/index.stories.js +75 -0
  130. package/Dialog/sc/index.stories.mjs +48 -0
  131. package/Dialog/sc/material.d.ts +27 -405
  132. package/Dialog/sc/material.js +76 -22
  133. package/Dialog/sc/material.mjs +37 -17
  134. package/Dialog/tw/bare.d.ts +9 -327
  135. package/Dialog/tw/bare.js +51 -41
  136. package/Dialog/tw/bare.mjs +15 -28
  137. package/Dialog/tw/elegant.d.ts +9 -327
  138. package/Dialog/tw/elegant.js +52 -21
  139. package/Dialog/tw/elegant.mjs +15 -17
  140. package/Dialog/tw/framer.d.ts +3 -354
  141. package/Dialog/tw/framer.js +24 -17
  142. package/Dialog/tw/framer.mjs +9 -9
  143. package/Dialog/tw/framerMaterial.d.ts +3 -354
  144. package/Dialog/tw/framerMaterial.js +24 -17
  145. package/Dialog/tw/framerMaterial.mjs +9 -9
  146. package/Dialog/tw/index.stories.js +113 -0
  147. package/Dialog/tw/index.stories.mjs +83 -0
  148. package/Dialog/tw/material.d.ts +9 -327
  149. package/Dialog/tw/material.js +52 -21
  150. package/Dialog/tw/material.mjs +15 -17
  151. package/Editor/Editor--tiptap.d.ts +1 -1
  152. package/Editor/Editor--tiptap.js +65 -24
  153. package/Editor/Editor--tiptap.mjs +45 -18
  154. package/Editor/components.d.ts +3 -5
  155. package/Editor/components.js +58 -14
  156. package/Editor/components.mjs +26 -8
  157. package/Editor/index.js +5 -3
  158. package/FaviconTags.js +73 -0
  159. package/FaviconTags.mjs +64 -0
  160. package/Form/Form.js +117 -52
  161. package/Form/Form.mjs +81 -47
  162. package/Form/index.js +5 -3
  163. package/Form/sc/bare.d.ts +11 -11
  164. package/Form/sc/bare.js +53 -21
  165. package/Form/sc/bare.mjs +21 -12
  166. package/Forms/Checkbox/Checkbox.d.ts +4 -4
  167. package/Forms/Checkbox/Checkbox.js +60 -19
  168. package/Forms/Checkbox/Checkbox.mjs +29 -11
  169. package/Forms/Checkbox/index.js +5 -3
  170. package/Forms/Feedback/Feedback.js +23 -11
  171. package/Forms/Feedback/Feedback.mjs +11 -6
  172. package/Forms/Feedback/index.js +5 -3
  173. package/Forms/Field/Field.d.ts +2 -4
  174. package/Forms/Field/Field.js +61 -21
  175. package/Forms/Field/Field.mjs +35 -16
  176. package/Forms/Field/FieldControl.js +55 -37
  177. package/Forms/Field/FieldControl.mjs +39 -19
  178. package/Forms/Field/FieldHint.d.ts +1 -1
  179. package/Forms/Field/FieldHint.js +16 -6
  180. package/Forms/Field/FieldHint.mjs +5 -3
  181. package/Forms/Field/index.js +6 -4
  182. package/Forms/Input/Input.d.ts +5 -5
  183. package/Forms/Input/Input.js +64 -17
  184. package/Forms/Input/Input.mjs +30 -11
  185. package/Forms/Input/index.js +5 -3
  186. package/Forms/InputGroup/InputGroup.d.ts +4 -4
  187. package/Forms/InputGroup/InputGroup.js +83 -17
  188. package/Forms/InputGroup/InputGroup.mjs +52 -10
  189. package/Forms/InputGroup/index.js +5 -3
  190. package/Forms/Label/Label.d.ts +1 -1
  191. package/Forms/Label/Label.js +45 -8
  192. package/Forms/Label/Label.mjs +23 -5
  193. package/Forms/Label/index.js +5 -3
  194. package/Forms/Password/Password.d.ts +1 -1
  195. package/Forms/Password/Password.js +70 -18
  196. package/Forms/Password/Password.mjs +48 -12
  197. package/Forms/Password/index.js +5 -3
  198. package/Forms/Radio/Radio.js +65 -25
  199. package/Forms/Radio/Radio.mjs +50 -18
  200. package/Forms/Radio/index.js +5 -3
  201. package/Forms/Switch/Switch.d.ts +2 -2
  202. package/Forms/Switch/Switch.js +78 -21
  203. package/Forms/Switch/Switch.mjs +52 -12
  204. package/Forms/Switch/index.js +5 -3
  205. package/Forms/Textarea/Textarea.d.ts +1 -1
  206. package/Forms/Textarea/Textarea.js +43 -13
  207. package/Forms/Textarea/Textarea.mjs +21 -7
  208. package/Forms/Textarea/TextareaRich.js +54 -27
  209. package/Forms/Textarea/TextareaRich.mjs +39 -19
  210. package/Forms/Textarea/index.js +6 -4
  211. package/Forms/Toggle/Toggle-tailwind.js +1 -1
  212. package/Forms/Toggle/Toggle-tailwind.mjs +0 -1
  213. package/Forms/Toggle/Toggle.d.ts +7 -7
  214. package/Forms/Toggle/Toggle.js +168 -29
  215. package/Forms/Toggle/Toggle.mjs +113 -21
  216. package/Forms/Toggle/index.js +5 -3
  217. package/Forms/Toggle/useToggle-tailwind.js +1 -1
  218. package/Forms/Toggle/useToggle-tailwind.mjs +0 -1
  219. package/Forms/Toggle/useToggle.js +97 -101
  220. package/Forms/Toggle/useToggle.mjs +86 -68
  221. package/Forms/antispam.js +38 -45
  222. package/Forms/antispam.mjs +19 -21
  223. package/Forms/helpers.js +49 -31
  224. package/Forms/helpers.mjs +25 -19
  225. package/Forms/index.js +18 -18
  226. package/Forms/styles.d.ts +3 -7
  227. package/Forms/styles.js +91 -29
  228. package/Forms/styles.mjs +50 -18
  229. package/Gauge/Gauge.js +109 -104
  230. package/Gauge/Gauge.mjs +99 -100
  231. package/Grid/Grid.d.ts +7 -30
  232. package/Grid/Grid.js +84 -34
  233. package/Grid/Grid.mjs +54 -32
  234. package/Grid/index.js +5 -3
  235. package/Hamburger/Hamburger.js +75 -41
  236. package/Hamburger/Hamburger.mjs +64 -37
  237. package/Hamburger/index.js +5 -3
  238. package/Header/index.js +5 -3
  239. package/Header/useHeader.js +44 -25
  240. package/Header/useHeader.mjs +23 -18
  241. package/Hidden/Hidden.d.ts +1 -1
  242. package/Hidden/Hidden.js +19 -11
  243. package/Hidden/Hidden.mjs +9 -9
  244. package/Hidden/index.js +5 -3
  245. package/Img/index.js +5 -3
  246. package/Img/sc/bare.d.ts +1 -1
  247. package/Img/sc/bare.js +42 -41
  248. package/Img/sc/bare.mjs +31 -34
  249. package/Img/types.js +5 -1
  250. package/Img/types.mjs +1 -1
  251. package/Link/Link.d.ts +1 -3
  252. package/Link/Link.js +12 -6
  253. package/Link/Link.mjs +1 -3
  254. package/Link/LinkBlank.d.ts +2 -5
  255. package/Link/LinkBlank.js +49 -18
  256. package/Link/LinkBlank.mjs +25 -10
  257. package/Link/index.js +6 -4
  258. package/Menu/Menu.d.ts +1 -1
  259. package/Menu/Menu.js +21 -6
  260. package/Menu/Menu.mjs +10 -3
  261. package/Menu/MenuMui.js +2 -2
  262. package/Menu/MenuMui.mjs +1 -2
  263. package/Menu/index.js +5 -3
  264. package/MenuItem/MenuItem.d.ts +1 -4
  265. package/MenuItem/MenuItem.js +30 -6
  266. package/MenuItem/MenuItem.mjs +19 -3
  267. package/MenuItem/MenuItemMui.js +1 -1
  268. package/MenuItem/MenuItemMui.mjs +0 -1
  269. package/MenuItem/index.js +5 -3
  270. package/MenuItem/useMenuItem.js +65 -33
  271. package/MenuItem/useMenuItem.mjs +45 -27
  272. package/Meta/Meta.js +24 -8
  273. package/Meta/Meta.mjs +5 -3
  274. package/Meta/index.js +11 -6
  275. package/NoJs/NoJs.js +26 -9
  276. package/NoJs/NoJs.mjs +7 -4
  277. package/NoJs/index.js +11 -6
  278. package/Pagination/PaginationNav.d.ts +1 -1
  279. package/Pagination/PaginationNav.js +105 -44
  280. package/Pagination/PaginationNav.mjs +90 -29
  281. package/Pagination/PaginationResults.js +43 -13
  282. package/Pagination/PaginationResults.mjs +31 -8
  283. package/Pagination/index.js +6 -4
  284. package/Pill/Pill.d.ts +4 -4
  285. package/Pill/Pill.js +61 -9
  286. package/Pill/Pill.mjs +36 -6
  287. package/Pill/index.js +5 -3
  288. package/Progress/ProgressCircular.js +60 -17
  289. package/Progress/ProgressCircular.mjs +48 -10
  290. package/Progress/ProgressLinear.js +51 -26
  291. package/Progress/ProgressLinear.mjs +39 -19
  292. package/Progress/ProgressOverlay.js +71 -24
  293. package/Progress/ProgressOverlay.mjs +56 -16
  294. package/Progress/index.js +7 -5
  295. package/Rating/Rating.d.ts +5 -5
  296. package/Rating/Rating.js +154 -41
  297. package/Rating/Rating.mjs +118 -34
  298. package/Rating/index.js +61 -33
  299. package/Rating/index.mjs +37 -24
  300. package/Select/SelectDownshift.js +46 -40
  301. package/Select/SelectDownshift.mjs +37 -38
  302. package/Select/components.d.ts +1 -1
  303. package/Select/components.js +42 -13
  304. package/Select/components.mjs +21 -8
  305. package/Select/index.js +12 -6
  306. package/Select/index.mjs +2 -3
  307. package/Sidebar/Sidebar.js +70 -23
  308. package/Sidebar/Sidebar.mjs +57 -17
  309. package/Sidebar/index.js +5 -3
  310. package/Spacing/Spacing.d.ts +1 -1
  311. package/Spacing/Spacing.js +39 -33
  312. package/Spacing/Spacing.mjs +27 -17
  313. package/Spacing/index.js +5 -3
  314. package/Sticky/Sticky.js +227 -221
  315. package/Sticky/Sticky.mjs +218 -219
  316. package/Sticky/StickyCss.js +18 -8
  317. package/Sticky/StickyCss.mjs +8 -4
  318. package/Sticky/index.js +18 -4
  319. package/Sticky/index.mjs +1 -1
  320. package/Tabs/TabsMui.d.ts +9 -298
  321. package/Tabs/TabsMui.js +73 -34
  322. package/Tabs/TabsMui.mjs +39 -27
  323. package/Tabs/TabsMui.stories.js +38 -0
  324. package/Tabs/TabsMui.stories.mjs +20 -0
  325. package/Tabs/index.js +5 -3
  326. package/Tabs/sc/bare.js +2 -3
  327. package/Tabs/sc/bare.mjs +1 -3
  328. package/Tabs/sc/index.stories.js +1 -0
  329. package/Tabs/sc/index.stories.mjs +0 -0
  330. package/Tabs/tw/bare.d.ts +7 -296
  331. package/Tabs/tw/bare.js +43 -18
  332. package/Tabs/tw/bare.mjs +11 -13
  333. package/Tabs/tw/index.stories.js +46 -0
  334. package/Tabs/tw/index.stories.mjs +25 -0
  335. package/Tabs/tw/material.d.ts +7 -332
  336. package/Tabs/tw/material.js +41 -18
  337. package/Tabs/tw/material.mjs +11 -15
  338. package/Tabs/useTabs.js +44 -25
  339. package/Tabs/useTabs.mjs +24 -21
  340. package/Typography/CopyPasteVisible.d.ts +1 -1
  341. package/Typography/CopyPasteVisible.js +16 -6
  342. package/Typography/CopyPasteVisible.mjs +5 -3
  343. package/Typography/Native.d.ts +5 -5
  344. package/Typography/Native.js +89 -16
  345. package/Typography/Native.mjs +45 -12
  346. package/Typography/ReadMore.js +114 -36
  347. package/Typography/ReadMore.mjs +100 -29
  348. package/Typography/TextLoop.js +94 -37
  349. package/Typography/TextLoop.mjs +75 -31
  350. package/Typography/TypeStairs.js +47 -28
  351. package/Typography/TypeStairs.mjs +36 -24
  352. package/Typography/index.js +9 -7
  353. package/css/index.js +32 -35
  354. package/css/index.mjs +20 -21
  355. package/helpers/classed.js +39 -51
  356. package/helpers/classed.mjs +21 -30
  357. package/helpers/classed.stories.js +140 -0
  358. package/helpers/classed.stories.mjs +121 -0
  359. package/helpers/createUseMediaQueryWidth.js +163 -153
  360. package/helpers/createUseMediaQueryWidth.mjs +140 -140
  361. package/helpers/extend-component.js +26 -11
  362. package/helpers/extend-component.mjs +7 -7
  363. package/helpers/index.js +8 -6
  364. package/helpers/mergeRefs.js +21 -8
  365. package/helpers/mergeRefs.mjs +3 -4
  366. package/hooks/index.js +91 -43
  367. package/hooks/index.mjs +3 -3
  368. package/hooks/types.js +6 -2
  369. package/hooks/types.mjs +3 -1
  370. package/hooks/useAsyncFn.js +48 -33
  371. package/hooks/useAsyncFn.mjs +28 -26
  372. package/hooks/useDateLocale.js +42 -32
  373. package/hooks/useDateLocale.mjs +22 -22
  374. package/hooks/useFirstMountState.js +20 -9
  375. package/hooks/useFirstMountState.mjs +2 -3
  376. package/hooks/useFixedOffset.js +45 -40
  377. package/hooks/useFixedOffset.mjs +23 -24
  378. package/hooks/useFocus.js +26 -12
  379. package/hooks/useFocus.mjs +7 -5
  380. package/hooks/useInterval.js +37 -25
  381. package/hooks/useInterval.mjs +15 -14
  382. package/hooks/useIsomorphicLayoutEffect.js +22 -12
  383. package/hooks/useIsomorphicLayoutEffect.mjs +1 -4
  384. package/hooks/useKeyUp.js +30 -17
  385. package/hooks/useKeyUp.mjs +9 -11
  386. package/hooks/useMeasure.js +98 -80
  387. package/hooks/useMeasure.mjs +74 -67
  388. package/hooks/useMountedState.js +23 -12
  389. package/hooks/useMountedState.mjs +5 -6
  390. package/hooks/useNavigateAway.js +47 -51
  391. package/hooks/useNavigateAway.mjs +26 -25
  392. package/hooks/usePrevious.js +27 -10
  393. package/hooks/usePrevious.mjs +9 -4
  394. package/hooks/usePreviousRef.js +21 -7
  395. package/hooks/usePreviousRef.mjs +2 -2
  396. package/hooks/useScrollPosition.js +53 -43
  397. package/hooks/useScrollPosition.mjs +28 -26
  398. package/hooks/useScrollThreshold.js +41 -22
  399. package/hooks/useScrollThreshold.mjs +18 -13
  400. package/hooks/useScrollTo.js +28 -16
  401. package/hooks/useScrollTo.mjs +6 -8
  402. package/hooks/useSmoothScroll.js +39 -34
  403. package/hooks/useSmoothScroll.mjs +12 -16
  404. package/hooks/useSpinDelay.js +42 -37
  405. package/hooks/useSpinDelay.mjs +24 -22
  406. package/hooks/useTraceUpdate.js +26 -13
  407. package/hooks/useTraceUpdate.mjs +8 -7
  408. package/hooks/useUpdateEffect.js +24 -13
  409. package/hooks/useUpdateEffect.mjs +4 -5
  410. package/hooks/useWindowSize.js +34 -25
  411. package/hooks/useWindowSize.mjs +13 -10
  412. package/index.js +9 -7
  413. package/index.mjs +4 -5
  414. package/m/MotionProvider.js +25 -41
  415. package/m/MotionProvider.mjs +5 -4
  416. package/m/index.js +6 -5
  417. package/m/index.mjs +1 -2
  418. package/m/lite.js +11 -3
  419. package/m/max.js +11 -3
  420. package/package.json +13 -14
  421. package/sc/index.js +48 -36
  422. package/scm/index.js +39 -35
  423. package/shared/index.js +12 -10
  424. package/shared/index.mjs +35 -0
  425. package/styles/Body.d.ts +2 -2
  426. package/styles/Body.js +27 -15
  427. package/styles/Body.mjs +8 -5
  428. package/styles/Global.js +54 -20
  429. package/styles/Global.mjs +36 -5
  430. package/styles/index.js +141 -40
  431. package/styles/index.mjs +5 -5
  432. package/styles/media.js +98 -120
  433. package/styles/media.mjs +63 -68
  434. package/styles/spacing.js +49 -31
  435. package/styles/spacing.mjs +26 -25
  436. package/styles/styled.js +56 -15
  437. package/styles/styled.mjs +23 -10
  438. package/styles/theme--vanilla.js +60 -42
  439. package/styles/theme--vanilla.mjs +26 -19
  440. package/styles/theme.js +38 -34
  441. package/styles/theme.mjs +16 -19
  442. package/tw/index.js +32 -35
  443. package/tw/index.mjs +20 -21
  444. package/twm/index.js +32 -35
  445. package/twm/index.mjs +20 -21
  446. package/types.js +3 -1
  447. package/types.mjs +1 -1
  448. package/typings.d.ts +1 -0
  449. package/Alert/package.json +0 -6
  450. package/Animations/package.json +0 -6
  451. package/Autocomplete/package.json +0 -6
  452. package/Bg/package.json +0 -6
  453. package/Breadcrumbs/package.json +0 -6
  454. package/Buttons/package.json +0 -6
  455. package/Calendar/package.json +0 -6
  456. package/Carousel/package.json +0 -6
  457. package/Collapsable/package.json +0 -6
  458. package/Debug/package.json +0 -6
  459. package/Details/package.json +0 -6
  460. package/Dialog/m/package.json +0 -6
  461. package/Dialog/package.json +0 -6
  462. package/Editor/package.json +0 -6
  463. package/FaviconTags/FaviconTags.js +0 -20
  464. package/FaviconTags/FaviconTags.mjs +0 -16
  465. package/FaviconTags/index.d.ts +0 -2
  466. package/FaviconTags/index.js +0 -7
  467. package/FaviconTags/index.mjs +0 -2
  468. package/FaviconTags/package.json +0 -6
  469. package/Form/package.json +0 -6
  470. package/Forms/Checkbox/package.json +0 -6
  471. package/Forms/Feedback/package.json +0 -6
  472. package/Forms/Field/package.json +0 -6
  473. package/Forms/Input/package.json +0 -6
  474. package/Forms/InputGroup/package.json +0 -6
  475. package/Forms/Label/package.json +0 -6
  476. package/Forms/Password/package.json +0 -6
  477. package/Forms/Radio/package.json +0 -6
  478. package/Forms/Switch/package.json +0 -6
  479. package/Forms/Textarea/package.json +0 -6
  480. package/Forms/Toggle/package.json +0 -6
  481. package/Forms/package.json +0 -6
  482. package/Grid/package.json +0 -6
  483. package/Hamburger/package.json +0 -6
  484. package/Header/package.json +0 -6
  485. package/Hidden/package.json +0 -6
  486. package/Img/package.json +0 -6
  487. package/Link/package.json +0 -6
  488. package/Menu/package.json +0 -6
  489. package/MenuItem/package.json +0 -6
  490. package/Meta/package.json +0 -6
  491. package/NoJs/package.json +0 -6
  492. package/Pagination/package.json +0 -6
  493. package/Pill/package.json +0 -6
  494. package/Progress/package.json +0 -6
  495. package/Rating/package.json +0 -6
  496. package/Select/package.json +0 -6
  497. package/Sidebar/package.json +0 -6
  498. package/Spacing/package.json +0 -6
  499. package/Sticky/package.json +0 -6
  500. package/Tabs/package.json +0 -6
  501. package/Typography/package.json +0 -6
  502. package/css/package.json +0 -6
  503. package/helpers/package.json +0 -6
  504. package/hooks/package.json +0 -6
  505. package/m/package.json +0 -6
  506. package/sc/package.json +0 -6
  507. package/scm/package.json +0 -6
  508. package/shared/package.json +0 -6
  509. package/styles/package.json +0 -6
  510. package/tw/package.json +0 -6
  511. package/twm/package.json +0 -6
  512. /package/{FaviconTags/FaviconTags.d.ts → FaviconTags.d.ts} +0 -0
@@ -1,32 +1,57 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.KoinePaginationNav = void 0;
4
- var tslib_1 = require("tslib");
5
- var jsx_runtime_1 = require("react/jsx-runtime");
6
- var styled_components_1 = tslib_1.__importDefault(require("styled-components"));
7
- var cg_1 = require("react-icons/cg");
8
- var ensureInt_1 = tslib_1.__importDefault(require("@koine/utils/ensureInt"));
9
- var Root = styled_components_1.default.nav(templateObject_1 || (templateObject_1 = tslib_1.__makeTemplateObject(["\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 20px 0 40px;\n font-weight: 600;\n\n & a {\n text-decoration: none;\n }\n"], ["\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 20px 0 40px;\n font-weight: 600;\n\n & a {\n text-decoration: none;\n }\n"])));
10
- var item = "\n display: block;\n padding: 5px 10px;\n";
11
- var ItemCurrent = styled_components_1.default.span(templateObject_2 || (templateObject_2 = tslib_1.__makeTemplateObject(["\n ", "\n background: var(--accent400);\n border-radius: 2px;\n"], ["\n ", "\n background: var(--accent400);\n border-radius: 2px;\n"])), item);
12
- var ItemLink = styled_components_1.default.a(templateObject_3 || (templateObject_3 = tslib_1.__makeTemplateObject(["\n ", "\n\n ", "\n"], ["\n ", "\n\n ", "\n"])), item, function (props) { return (props.prev ? "color: var(--grey100);" : ""); });
13
- var DotsSeparator = styled_components_1.default.span(templateObject_4 || (templateObject_4 = tslib_1.__makeTemplateObject(["\n color: var(--grey100);\n"], ["\n color: var(--grey100);\n"])));
14
- var arrow = "display: flex; font-size: 20px;";
15
- var ItemPrev = styled_components_1.default.a(templateObject_5 || (templateObject_5 = tslib_1.__makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), arrow);
16
- var ItemNext = styled_components_1.default.a(templateObject_6 || (templateObject_6 = tslib_1.__makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), arrow);
17
- /*
18
- * Possible outcomes:
19
- * [1] 2 3 ... 78 >
20
- * < 1 2 [3] 4 5 ... 78 >
21
- * < 1 ... 6 7 [8] 9 10 ... 78 >
22
- * < 1 ... 75 76 [77] 78 >
23
- * < 1 ... 76 77 [78]
24
- */
25
- var KoinePaginationNav = function (_a) {
26
- var total = _a.total, perPage = _a.perPage, _currentPage = _a.currentPage, baseUrl = _a.baseUrl, _b = _a.showOffset, showOffset = _b === void 0 ? 2 : _b, _c = _a.currentUrl, currentUrl = _c === void 0 ? "/" : _c, _d = _a.Link, Link = _d === void 0 ? "a" : _d;
27
- var currentPage = (0, ensureInt_1.default)(_currentPage);
28
- total = (0, ensureInt_1.default)(total);
29
- perPage = (0, ensureInt_1.default)(perPage);
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "KoinePaginationNav", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return KoinePaginationNav;
9
+ }
10
+ });
11
+ const _interop_require_default = require("@swc/helpers/_/_interop_require_default");
12
+ const _jsxruntime = require("react/jsx-runtime");
13
+ const _cg = require("react-icons/cg");
14
+ const _styledcomponents = /*#__PURE__*/ _interop_require_default._(require("styled-components"));
15
+ const _ensureInt = /*#__PURE__*/ _interop_require_default._(require("@koine/utils/ensureInt"));
16
+ const Root = _styledcomponents.default.nav`
17
+ display: flex;
18
+ align-items: center;
19
+ justify-content: center;
20
+ padding: 20px 0 40px;
21
+ font-weight: 600;
22
+
23
+ & a {
24
+ text-decoration: none;
25
+ }
26
+ `;
27
+ const item = `
28
+ display: block;
29
+ padding: 5px 10px;
30
+ `;
31
+ const ItemCurrent = _styledcomponents.default.span`
32
+ ${item}
33
+ background: var(--accent400);
34
+ border-radius: 2px;
35
+ `;
36
+ const ItemLink = _styledcomponents.default.a`
37
+ ${item}
38
+
39
+ ${(props)=>props.prev ? "color: var(--grey100);" : ""}
40
+ `;
41
+ const DotsSeparator = _styledcomponents.default.span`
42
+ color: var(--grey100);
43
+ `;
44
+ const arrow = `display: flex; font-size: 20px;`;
45
+ const ItemPrev = _styledcomponents.default.a`
46
+ ${arrow}
47
+ `;
48
+ const ItemNext = _styledcomponents.default.a`
49
+ ${arrow}
50
+ `;
51
+ const KoinePaginationNav = ({ total, perPage, currentPage: _currentPage, baseUrl, showOffset = 2, currentUrl = "/", Link = "a" })=>{
52
+ let currentPage = (0, _ensureInt.default)(_currentPage);
53
+ total = (0, _ensureInt.default)(total);
54
+ perPage = (0, _ensureInt.default)(perPage);
30
55
  // page 0 means 1
31
56
  currentPage = currentPage || 1;
32
57
  baseUrl = baseUrl || currentUrl;
@@ -34,15 +59,15 @@ var KoinePaginationNav = function (_a) {
34
59
  if (total < perPage) {
35
60
  return null;
36
61
  }
37
- var firstPage = 1;
38
- var lastPage = Math.ceil(total / perPage);
39
- var prevPage = currentPage - 1 > firstPage ? currentPage - 1 : "";
40
- var nextPage = currentPage + 1 < lastPage ? currentPage + 1 : lastPage;
41
- var prevArrow = currentPage > firstPage;
42
- var nextArrow = currentPage < lastPage;
43
- var pages = [];
62
+ const firstPage = 1;
63
+ const lastPage = Math.ceil(total / perPage);
64
+ const prevPage = currentPage - 1 > firstPage ? currentPage - 1 : "";
65
+ const nextPage = currentPage + 1 < lastPage ? currentPage + 1 : lastPage;
66
+ const prevArrow = currentPage > firstPage;
67
+ const nextArrow = currentPage < lastPage;
68
+ const pages = [];
44
69
  // fill the pages before the current
45
- for (var i = currentPage - showOffset; i < currentPage; i++) {
70
+ for(let i = currentPage - showOffset; i < currentPage; i++){
46
71
  if (i > 1) {
47
72
  pages.push(i);
48
73
  }
@@ -50,16 +75,52 @@ var KoinePaginationNav = function (_a) {
50
75
  // add the current
51
76
  pages.push(currentPage);
52
77
  // fill the pages after the current
53
- for (var i = currentPage + 1; i < currentPage + 1 + showOffset; i++) {
78
+ for(let i = currentPage + 1; i < currentPage + 1 + showOffset; i++){
54
79
  if (i < lastPage) {
55
80
  pages.push(i);
56
81
  }
57
82
  }
58
- var prevDots = pages[0] > firstPage + 1;
59
- var nextDots = pages[pages.length - 1] < lastPage - 1;
60
- return ((0, jsx_runtime_1.jsxs)(Root, { children: [prevArrow && ((0, jsx_runtime_1.jsx)(ItemPrev, { as: Link, href: "".concat(baseUrl, "/").concat(prevPage), children: (0, jsx_runtime_1.jsx)(cg_1.CgArrowLeftR, {}) })), firstPage !== currentPage && ((0, jsx_runtime_1.jsx)(ItemLink, { as: Link, href: "".concat(baseUrl), prev: true, children: firstPage })), prevDots && (0, jsx_runtime_1.jsx)(DotsSeparator, { children: "..." }), pages.map(function (page) {
61
- return page === currentPage ? ((0, jsx_runtime_1.jsx)(ItemCurrent, { children: page }, page)) : ((0, jsx_runtime_1.jsx)(ItemLink, { as: Link, href: "".concat(baseUrl, "/").concat(page), prev: page < currentPage, next: page > currentPage, children: page }, "pagination-".concat(page)));
62
- }), nextDots && (0, jsx_runtime_1.jsx)(DotsSeparator, { children: "..." }), lastPage !== currentPage && ((0, jsx_runtime_1.jsx)(ItemLink, { as: Link, href: "".concat(baseUrl, "/").concat(lastPage), next: true, children: lastPage })), nextArrow && ((0, jsx_runtime_1.jsx)(ItemNext, { as: Link, href: "".concat(baseUrl, "/").concat(nextPage), children: (0, jsx_runtime_1.jsx)(cg_1.CgArrowRightR, {}) }))] }));
83
+ const prevDots = pages[0] > firstPage + 1;
84
+ const nextDots = pages[pages.length - 1] < lastPage - 1;
85
+ return /*#__PURE__*/ (0, _jsxruntime.jsxs)(Root, {
86
+ children: [
87
+ prevArrow && /*#__PURE__*/ (0, _jsxruntime.jsx)(ItemPrev, {
88
+ as: Link,
89
+ href: `${baseUrl}/${prevPage}`,
90
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_cg.CgArrowLeftR, {})
91
+ }),
92
+ firstPage !== currentPage && /*#__PURE__*/ (0, _jsxruntime.jsx)(ItemLink, {
93
+ as: Link,
94
+ href: `${baseUrl}`,
95
+ prev: true,
96
+ children: firstPage
97
+ }),
98
+ prevDots && /*#__PURE__*/ (0, _jsxruntime.jsx)(DotsSeparator, {
99
+ children: "..."
100
+ }),
101
+ pages.map((page)=>page === currentPage ? /*#__PURE__*/ (0, _jsxruntime.jsx)(ItemCurrent, {
102
+ children: page
103
+ }, page) : /*#__PURE__*/ (0, _jsxruntime.jsx)(ItemLink, {
104
+ as: Link,
105
+ href: `${baseUrl}/${page}`,
106
+ prev: page < currentPage,
107
+ next: page > currentPage,
108
+ children: page
109
+ }, `pagination-${page}`)),
110
+ nextDots && /*#__PURE__*/ (0, _jsxruntime.jsx)(DotsSeparator, {
111
+ children: "..."
112
+ }),
113
+ lastPage !== currentPage && /*#__PURE__*/ (0, _jsxruntime.jsx)(ItemLink, {
114
+ as: Link,
115
+ href: `${baseUrl}/${lastPage}`,
116
+ next: true,
117
+ children: lastPage
118
+ }),
119
+ nextArrow && /*#__PURE__*/ (0, _jsxruntime.jsx)(ItemNext, {
120
+ as: Link,
121
+ href: `${baseUrl}/${nextPage}`,
122
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_cg.CgArrowRightR, {})
123
+ })
124
+ ]
125
+ });
63
126
  };
64
- exports.KoinePaginationNav = KoinePaginationNav;
65
- var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6;
@@ -1,16 +1,42 @@
1
- import { __makeTemplateObject } from "tslib";
2
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { CgArrowLeftR as IconArrowLeft, CgArrowRightR as IconArrowRight } from "react-icons/cg";
3
3
  import styled from "styled-components";
4
- import { CgArrowRightR as IconArrowRight, CgArrowLeftR as IconArrowLeft, } from "react-icons/cg";
5
4
  import ensureInt from "@koine/utils/ensureInt";
6
- var Root = styled.nav(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 20px 0 40px;\n font-weight: 600;\n\n & a {\n text-decoration: none;\n }\n"], ["\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 20px 0 40px;\n font-weight: 600;\n\n & a {\n text-decoration: none;\n }\n"])));
7
- var item = "\n display: block;\n padding: 5px 10px;\n";
8
- var ItemCurrent = styled.span(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n ", "\n background: var(--accent400);\n border-radius: 2px;\n"], ["\n ", "\n background: var(--accent400);\n border-radius: 2px;\n"])), item);
9
- var ItemLink = styled.a(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n ", "\n\n ", "\n"], ["\n ", "\n\n ", "\n"])), item, function (props) { return (props.prev ? "color: var(--grey100);" : ""); });
10
- var DotsSeparator = styled.span(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n color: var(--grey100);\n"], ["\n color: var(--grey100);\n"])));
11
- var arrow = "display: flex; font-size: 20px;";
12
- var ItemPrev = styled.a(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), arrow);
13
- var ItemNext = styled.a(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), arrow);
5
+ const Root = styled.nav`
6
+ display: flex;
7
+ align-items: center;
8
+ justify-content: center;
9
+ padding: 20px 0 40px;
10
+ font-weight: 600;
11
+
12
+ & a {
13
+ text-decoration: none;
14
+ }
15
+ `;
16
+ const item = `
17
+ display: block;
18
+ padding: 5px 10px;
19
+ `;
20
+ const ItemCurrent = styled.span`
21
+ ${item}
22
+ background: var(--accent400);
23
+ border-radius: 2px;
24
+ `;
25
+ const ItemLink = styled.a`
26
+ ${item}
27
+
28
+ ${(props)=>props.prev ? "color: var(--grey100);" : ""}
29
+ `;
30
+ const DotsSeparator = styled.span`
31
+ color: var(--grey100);
32
+ `;
33
+ const arrow = `display: flex; font-size: 20px;`;
34
+ const ItemPrev = styled.a`
35
+ ${arrow}
36
+ `;
37
+ const ItemNext = styled.a`
38
+ ${arrow}
39
+ `;
14
40
  /*
15
41
  * Possible outcomes:
16
42
  * [1] 2 3 ... 78 >
@@ -18,10 +44,8 @@ var ItemNext = styled.a(templateObject_6 || (templateObject_6 = __makeTemplateOb
18
44
  * < 1 ... 6 7 [8] 9 10 ... 78 >
19
45
  * < 1 ... 75 76 [77] 78 >
20
46
  * < 1 ... 76 77 [78]
21
- */
22
- export var KoinePaginationNav = function (_a) {
23
- var total = _a.total, perPage = _a.perPage, _currentPage = _a.currentPage, baseUrl = _a.baseUrl, _b = _a.showOffset, showOffset = _b === void 0 ? 2 : _b, _c = _a.currentUrl, currentUrl = _c === void 0 ? "/" : _c, _d = _a.Link, Link = _d === void 0 ? "a" : _d;
24
- var currentPage = ensureInt(_currentPage);
47
+ */ export const KoinePaginationNav = ({ total, perPage, currentPage: _currentPage, baseUrl, showOffset = 2, currentUrl = "/", Link = "a" })=>{
48
+ let currentPage = ensureInt(_currentPage);
25
49
  total = ensureInt(total);
26
50
  perPage = ensureInt(perPage);
27
51
  // page 0 means 1
@@ -31,15 +55,15 @@ export var KoinePaginationNav = function (_a) {
31
55
  if (total < perPage) {
32
56
  return null;
33
57
  }
34
- var firstPage = 1;
35
- var lastPage = Math.ceil(total / perPage);
36
- var prevPage = currentPage - 1 > firstPage ? currentPage - 1 : "";
37
- var nextPage = currentPage + 1 < lastPage ? currentPage + 1 : lastPage;
38
- var prevArrow = currentPage > firstPage;
39
- var nextArrow = currentPage < lastPage;
40
- var pages = [];
58
+ const firstPage = 1;
59
+ const lastPage = Math.ceil(total / perPage);
60
+ const prevPage = currentPage - 1 > firstPage ? currentPage - 1 : "";
61
+ const nextPage = currentPage + 1 < lastPage ? currentPage + 1 : lastPage;
62
+ const prevArrow = currentPage > firstPage;
63
+ const nextArrow = currentPage < lastPage;
64
+ const pages = [];
41
65
  // fill the pages before the current
42
- for (var i = currentPage - showOffset; i < currentPage; i++) {
66
+ for(let i = currentPage - showOffset; i < currentPage; i++){
43
67
  if (i > 1) {
44
68
  pages.push(i);
45
69
  }
@@ -47,15 +71,52 @@ export var KoinePaginationNav = function (_a) {
47
71
  // add the current
48
72
  pages.push(currentPage);
49
73
  // fill the pages after the current
50
- for (var i = currentPage + 1; i < currentPage + 1 + showOffset; i++) {
74
+ for(let i = currentPage + 1; i < currentPage + 1 + showOffset; i++){
51
75
  if (i < lastPage) {
52
76
  pages.push(i);
53
77
  }
54
78
  }
55
- var prevDots = pages[0] > firstPage + 1;
56
- var nextDots = pages[pages.length - 1] < lastPage - 1;
57
- return (_jsxs(Root, { children: [prevArrow && (_jsx(ItemPrev, { as: Link, href: "".concat(baseUrl, "/").concat(prevPage), children: _jsx(IconArrowLeft, {}) })), firstPage !== currentPage && (_jsx(ItemLink, { as: Link, href: "".concat(baseUrl), prev: true, children: firstPage })), prevDots && _jsx(DotsSeparator, { children: "..." }), pages.map(function (page) {
58
- return page === currentPage ? (_jsx(ItemCurrent, { children: page }, page)) : (_jsx(ItemLink, { as: Link, href: "".concat(baseUrl, "/").concat(page), prev: page < currentPage, next: page > currentPage, children: page }, "pagination-".concat(page)));
59
- }), nextDots && _jsx(DotsSeparator, { children: "..." }), lastPage !== currentPage && (_jsx(ItemLink, { as: Link, href: "".concat(baseUrl, "/").concat(lastPage), next: true, children: lastPage })), nextArrow && (_jsx(ItemNext, { as: Link, href: "".concat(baseUrl, "/").concat(nextPage), children: _jsx(IconArrowRight, {}) }))] }));
79
+ const prevDots = pages[0] > firstPage + 1;
80
+ const nextDots = pages[pages.length - 1] < lastPage - 1;
81
+ return /*#__PURE__*/ _jsxs(Root, {
82
+ children: [
83
+ prevArrow && /*#__PURE__*/ _jsx(ItemPrev, {
84
+ as: Link,
85
+ href: `${baseUrl}/${prevPage}`,
86
+ children: /*#__PURE__*/ _jsx(IconArrowLeft, {})
87
+ }),
88
+ firstPage !== currentPage && /*#__PURE__*/ _jsx(ItemLink, {
89
+ as: Link,
90
+ href: `${baseUrl}`,
91
+ prev: true,
92
+ children: firstPage
93
+ }),
94
+ prevDots && /*#__PURE__*/ _jsx(DotsSeparator, {
95
+ children: "..."
96
+ }),
97
+ pages.map((page)=>page === currentPage ? /*#__PURE__*/ _jsx(ItemCurrent, {
98
+ children: page
99
+ }, page) : /*#__PURE__*/ _jsx(ItemLink, {
100
+ as: Link,
101
+ href: `${baseUrl}/${page}`,
102
+ prev: page < currentPage,
103
+ next: page > currentPage,
104
+ children: page
105
+ }, `pagination-${page}`)),
106
+ nextDots && /*#__PURE__*/ _jsx(DotsSeparator, {
107
+ children: "..."
108
+ }),
109
+ lastPage !== currentPage && /*#__PURE__*/ _jsx(ItemLink, {
110
+ as: Link,
111
+ href: `${baseUrl}/${lastPage}`,
112
+ next: true,
113
+ children: lastPage
114
+ }),
115
+ nextArrow && /*#__PURE__*/ _jsx(ItemNext, {
116
+ as: Link,
117
+ href: `${baseUrl}/${nextPage}`,
118
+ children: /*#__PURE__*/ _jsx(IconArrowRight, {})
119
+ })
120
+ ]
121
+ });
60
122
  };
61
- var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6;
@@ -1,15 +1,45 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PaginationResults = void 0;
4
- var tslib_1 = require("tslib");
5
- var jsx_runtime_1 = require("react/jsx-runtime");
6
- var styled_components_1 = tslib_1.__importDefault(require("styled-components"));
7
- var framer_motion_1 = require("framer-motion");
8
- var Root = styled_components_1.default.div(templateObject_1 || (templateObject_1 = tslib_1.__makeTemplateObject(["\n // overflow: hidden;\n"], ["\n // overflow: hidden;\n"])));
9
- var Inner = (0, styled_components_1.default)(framer_motion_1.m.div)(templateObject_2 || (templateObject_2 = tslib_1.__makeTemplateObject([""], [""])));
10
- var PaginationResults = function (_a) {
11
- var children = _a.children;
12
- return ((0, jsx_runtime_1.jsx)(framer_motion_1.AnimatePresence, { exitBeforeEnter: true, initial: true, children: (0, jsx_runtime_1.jsx)(Root, { children: (0, jsx_runtime_1.jsx)(Inner, { initial: { opacity: 0, x: -100 }, animate: { opacity: 1, x: 0 }, exit: { opacity: 0, x: 100 }, transition: { type: "linear", staggerChildren: 0.3 }, children: children }) }) }));
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "PaginationResults", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return PaginationResults;
9
+ }
10
+ });
11
+ const _interop_require_default = require("@swc/helpers/_/_interop_require_default");
12
+ const _jsxruntime = require("react/jsx-runtime");
13
+ const _framermotion = require("framer-motion");
14
+ const _styledcomponents = /*#__PURE__*/ _interop_require_default._(require("styled-components"));
15
+ const Root = _styledcomponents.default.div`
16
+ // overflow: hidden;
17
+ `;
18
+ const Inner = (0, _styledcomponents.default)(_framermotion.m.div)``;
19
+ const PaginationResults = ({ children })=>{
20
+ return /*#__PURE__*/ (0, _jsxruntime.jsx)(_framermotion.AnimatePresence, {
21
+ exitBeforeEnter: true,
22
+ initial: true,
23
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(Root, {
24
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(Inner, {
25
+ initial: {
26
+ opacity: 0,
27
+ x: -100
28
+ },
29
+ animate: {
30
+ opacity: 1,
31
+ x: 0
32
+ },
33
+ exit: {
34
+ opacity: 0,
35
+ x: 100
36
+ },
37
+ transition: {
38
+ type: "linear",
39
+ staggerChildren: 0.3
40
+ },
41
+ children: children
42
+ })
43
+ })
44
+ });
13
45
  };
14
- exports.PaginationResults = PaginationResults;
15
- var templateObject_1, templateObject_2;
@@ -1,11 +1,34 @@
1
- import { __makeTemplateObject } from "tslib";
2
1
  import { jsx as _jsx } from "react/jsx-runtime";
3
- import styled from "styled-components";
4
2
  import { AnimatePresence, m } from "framer-motion";
5
- var Root = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n // overflow: hidden;\n"], ["\n // overflow: hidden;\n"])));
6
- var Inner = styled(m.div)(templateObject_2 || (templateObject_2 = __makeTemplateObject([""], [""])));
7
- export var PaginationResults = function (_a) {
8
- var children = _a.children;
9
- return (_jsx(AnimatePresence, { exitBeforeEnter: true, initial: true, children: _jsx(Root, { children: _jsx(Inner, { initial: { opacity: 0, x: -100 }, animate: { opacity: 1, x: 0 }, exit: { opacity: 0, x: 100 }, transition: { type: "linear", staggerChildren: 0.3 }, children: children }) }) }));
3
+ import styled from "styled-components";
4
+ const Root = styled.div`
5
+ // overflow: hidden;
6
+ `;
7
+ const Inner = styled(m.div)``;
8
+ export const PaginationResults = ({ children })=>{
9
+ return /*#__PURE__*/ _jsx(AnimatePresence, {
10
+ exitBeforeEnter: true,
11
+ initial: true,
12
+ children: /*#__PURE__*/ _jsx(Root, {
13
+ children: /*#__PURE__*/ _jsx(Inner, {
14
+ initial: {
15
+ opacity: 0,
16
+ x: -100
17
+ },
18
+ animate: {
19
+ opacity: 1,
20
+ x: 0
21
+ },
22
+ exit: {
23
+ opacity: 0,
24
+ x: 100
25
+ },
26
+ transition: {
27
+ type: "linear",
28
+ staggerChildren: 0.3
29
+ },
30
+ children: children
31
+ })
32
+ })
33
+ });
10
34
  };
11
- var templateObject_1, templateObject_2;
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- var tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./PaginationNav"), exports);
5
- tslib_1.__exportStar(require("./PaginationResults"), exports);
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ const _export_star = require("@swc/helpers/_/_export_star");
6
+ _export_star._(require("./PaginationNav"), exports);
7
+ _export_star._(require("./PaginationResults"), exports);
package/Pill/Pill.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export type PillProps = object;
2
- export declare const Pill: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, object, never>;
3
- export declare const PillGreyLight: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, object, never>;
4
- export declare const PillAccentLight: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, object, never>;
5
- export declare const PillAccentLightOutlined: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, object, never>;
2
+ export declare const Pill: any;
3
+ export declare const PillGreyLight: any;
4
+ export declare const PillAccentLight: any;
5
+ export declare const PillAccentLightOutlined: any;
package/Pill/Pill.js CHANGED
@@ -1,10 +1,62 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PillAccentLightOutlined = exports.PillAccentLight = exports.PillGreyLight = exports.Pill = void 0;
4
- var tslib_1 = require("tslib");
5
- var styled_components_1 = tslib_1.__importDefault(require("styled-components"));
6
- exports.Pill = styled_components_1.default.div(templateObject_1 || (templateObject_1 = tslib_1.__makeTemplateObject(["\n display: inline-block;\n padding: 5px 10px;\n margin: 0 0.5em 0.5em 0;\n border-radius: 2px;\n text-decoration: none;\n font-size: 13px;\n font-weight: 600;\n"], ["\n display: inline-block;\n padding: 5px 10px;\n margin: 0 0.5em 0.5em 0;\n border-radius: 2px;\n text-decoration: none;\n font-size: 13px;\n font-weight: 600;\n"])));
7
- exports.PillGreyLight = (0, styled_components_1.default)(exports.Pill)(templateObject_2 || (templateObject_2 = tslib_1.__makeTemplateObject(["\n background: var(--grey800);\n color: var(--grey100);\n\n &:hover {\n color: white;\n background: var(--grey300);\n }\n"], ["\n background: var(--grey800);\n color: var(--grey100);\n\n &:hover {\n color: white;\n background: var(--grey300);\n }\n"])));
8
- exports.PillAccentLight = (0, styled_components_1.default)(exports.Pill)(templateObject_3 || (templateObject_3 = tslib_1.__makeTemplateObject(["\n background: var(--accent400);\n color: var(--grey100);\n\n &:hover {\n color: #fff;\n background: var(--accent300);\n }\n"], ["\n background: var(--accent400);\n color: var(--grey100);\n\n &:hover {\n color: #fff;\n background: var(--accent300);\n }\n"])));
9
- exports.PillAccentLightOutlined = (0, styled_components_1.default)(exports.Pill)(templateObject_4 || (templateObject_4 = tslib_1.__makeTemplateObject(["\n border: 1px solid var(--accent300);\n color: var(--accent200);\n\n &:hover {\n color: #fff;\n background: var(--accent300);\n }\n"], ["\n border: 1px solid var(--accent300);\n color: var(--accent200);\n\n &:hover {\n color: #fff;\n background: var(--accent300);\n }\n"])));
10
- var templateObject_1, templateObject_2, templateObject_3, templateObject_4;
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ function _export(target, all) {
6
+ for(var name in all)Object.defineProperty(target, name, {
7
+ enumerable: true,
8
+ get: all[name]
9
+ });
10
+ }
11
+ _export(exports, {
12
+ Pill: function() {
13
+ return Pill;
14
+ },
15
+ PillGreyLight: function() {
16
+ return PillGreyLight;
17
+ },
18
+ PillAccentLight: function() {
19
+ return PillAccentLight;
20
+ },
21
+ PillAccentLightOutlined: function() {
22
+ return PillAccentLightOutlined;
23
+ }
24
+ });
25
+ const _interop_require_default = require("@swc/helpers/_/_interop_require_default");
26
+ const _styledcomponents = /*#__PURE__*/ _interop_require_default._(require("styled-components"));
27
+ const Pill = _styledcomponents.default.div`
28
+ display: inline-block;
29
+ padding: 5px 10px;
30
+ margin: 0 0.5em 0.5em 0;
31
+ border-radius: 2px;
32
+ text-decoration: none;
33
+ font-size: 13px;
34
+ font-weight: 600;
35
+ `;
36
+ const PillGreyLight = (0, _styledcomponents.default)(Pill)`
37
+ background: var(--grey800);
38
+ color: var(--grey100);
39
+
40
+ &:hover {
41
+ color: white;
42
+ background: var(--grey300);
43
+ }
44
+ `;
45
+ const PillAccentLight = (0, _styledcomponents.default)(Pill)`
46
+ background: var(--accent400);
47
+ color: var(--grey100);
48
+
49
+ &:hover {
50
+ color: #fff;
51
+ background: var(--accent300);
52
+ }
53
+ `;
54
+ const PillAccentLightOutlined = (0, _styledcomponents.default)(Pill)`
55
+ border: 1px solid var(--accent300);
56
+ color: var(--accent200);
57
+
58
+ &:hover {
59
+ color: #fff;
60
+ background: var(--accent300);
61
+ }
62
+ `;
package/Pill/Pill.mjs CHANGED
@@ -1,7 +1,37 @@
1
- import { __makeTemplateObject } from "tslib";
2
1
  import styled from "styled-components";
3
- export var Pill = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: inline-block;\n padding: 5px 10px;\n margin: 0 0.5em 0.5em 0;\n border-radius: 2px;\n text-decoration: none;\n font-size: 13px;\n font-weight: 600;\n"], ["\n display: inline-block;\n padding: 5px 10px;\n margin: 0 0.5em 0.5em 0;\n border-radius: 2px;\n text-decoration: none;\n font-size: 13px;\n font-weight: 600;\n"])));
4
- export var PillGreyLight = styled(Pill)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background: var(--grey800);\n color: var(--grey100);\n\n &:hover {\n color: white;\n background: var(--grey300);\n }\n"], ["\n background: var(--grey800);\n color: var(--grey100);\n\n &:hover {\n color: white;\n background: var(--grey300);\n }\n"])));
5
- export var PillAccentLight = styled(Pill)(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n background: var(--accent400);\n color: var(--grey100);\n\n &:hover {\n color: #fff;\n background: var(--accent300);\n }\n"], ["\n background: var(--accent400);\n color: var(--grey100);\n\n &:hover {\n color: #fff;\n background: var(--accent300);\n }\n"])));
6
- export var PillAccentLightOutlined = styled(Pill)(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n border: 1px solid var(--accent300);\n color: var(--accent200);\n\n &:hover {\n color: #fff;\n background: var(--accent300);\n }\n"], ["\n border: 1px solid var(--accent300);\n color: var(--accent200);\n\n &:hover {\n color: #fff;\n background: var(--accent300);\n }\n"])));
7
- var templateObject_1, templateObject_2, templateObject_3, templateObject_4;
2
+ export const Pill = styled.div`
3
+ display: inline-block;
4
+ padding: 5px 10px;
5
+ margin: 0 0.5em 0.5em 0;
6
+ border-radius: 2px;
7
+ text-decoration: none;
8
+ font-size: 13px;
9
+ font-weight: 600;
10
+ `;
11
+ export const PillGreyLight = styled(Pill)`
12
+ background: var(--grey800);
13
+ color: var(--grey100);
14
+
15
+ &:hover {
16
+ color: white;
17
+ background: var(--grey300);
18
+ }
19
+ `;
20
+ export const PillAccentLight = styled(Pill)`
21
+ background: var(--accent400);
22
+ color: var(--grey100);
23
+
24
+ &:hover {
25
+ color: #fff;
26
+ background: var(--accent300);
27
+ }
28
+ `;
29
+ export const PillAccentLightOutlined = styled(Pill)`
30
+ border: 1px solid var(--accent300);
31
+ color: var(--accent200);
32
+
33
+ &:hover {
34
+ color: #fff;
35
+ background: var(--accent300);
36
+ }
37
+ `;
package/Pill/index.js CHANGED
@@ -1,4 +1,6 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- var tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./Pill"), exports);
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ const _export_star = require("@swc/helpers/_/_export_star");
6
+ _export_star._(require("./Pill"), exports);