@koine/react 1.0.5 → 1.0.8

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 (159) hide show
  1. package/Alert/Alert.js +18 -0
  2. package/Alert/index.js +1 -0
  3. package/Animations/Reveal.js +17 -0
  4. package/Animations/Underline.js +15 -0
  5. package/Animations/index.js +3 -0
  6. package/Animations/useReveal.js +70 -0
  7. package/Autocomplete/AutocompleteDownshift.js +158 -0
  8. package/Autocomplete/AutocompleteDownshiftMultiselect.js +353 -0
  9. package/Autocomplete/AutocompleteMui.js +172 -0
  10. package/Autocomplete/AutocompleteReach.js +112 -0
  11. package/Autocomplete/components.js +89 -0
  12. package/Autocomplete/helpers.js +28 -0
  13. package/Autocomplete/index.js +3 -0
  14. package/Bg/BgColor.js +33 -0
  15. package/Bg/BgPhoto.js +59 -0
  16. package/Bg/BgSvg.js +15 -0
  17. package/Bg/index.js +3 -0
  18. package/Breadcrumbs/Breadcrumbs.js +70 -0
  19. package/Breadcrumbs/index.js +1 -0
  20. package/Buttons/Button.js +79 -0
  21. package/Buttons/ButtonComposite.d.ts +1 -1
  22. package/Buttons/ButtonComposite.js +53 -0
  23. package/Buttons/ButtonFab.js +8 -0
  24. package/Buttons/ButtonLink.js +16 -0
  25. package/Buttons/IconButton.js +19 -0
  26. package/Buttons/index.js +5 -0
  27. package/Calendar/CalendarDaygridCell.js +52 -0
  28. package/Calendar/CalendarDaygridNav.js +23 -0
  29. package/Calendar/CalendarDaygridTable.js +49 -0
  30. package/Calendar/CalendarLegend.js +12 -0
  31. package/Calendar/calendar-api-google.js +97 -0
  32. package/Calendar/index.js +6 -0
  33. package/Calendar/types.js +1 -0
  34. package/Calendar/useCalendar.js +166 -0
  35. package/Calendar/utils.js +197 -0
  36. package/Carousel/Carousel.js +378 -0
  37. package/Carousel/CarouselCss.js +39 -0
  38. package/Carousel/index.js +1 -0
  39. package/Collapsable/Collapsable.js +132 -0
  40. package/Collapsable/index.js +1 -0
  41. package/Debug/Debug.js +21 -0
  42. package/Debug/index.js +1 -0
  43. package/Dialog/Dialog.js +93 -0
  44. package/Dialog/index.js +1 -0
  45. package/Editor/Editor--tiptap.js +21 -0
  46. package/Editor/components.d.ts +1 -2
  47. package/Editor/components.js +28 -0
  48. package/Editor/index.js +1 -0
  49. package/Favicon/FaviconTags.js +14 -0
  50. package/Favicon/index.js +1 -0
  51. package/Forms/Checkbox/Checkbox.js +24 -0
  52. package/Forms/Checkbox/index.js +1 -0
  53. package/Forms/Feedback/Feedback.js +10 -0
  54. package/Forms/Feedback/index.js +1 -0
  55. package/Forms/Field/Field.js +61 -0
  56. package/Forms/Field/FieldControl.js +45 -0
  57. package/Forms/Field/FieldHint.js +6 -0
  58. package/Forms/Field/index.js +2 -0
  59. package/Forms/Form/Form.js +64 -0
  60. package/Forms/Form/index.js +1 -0
  61. package/Forms/Input/Input.js +25 -0
  62. package/Forms/Input/index.js +1 -0
  63. package/Forms/InputGroup/InputGroup.js +42 -0
  64. package/Forms/InputGroup/index.js +1 -0
  65. package/Forms/Label/Label.js +24 -0
  66. package/Forms/Label/index.js +1 -0
  67. package/Forms/Password/Password.js +32 -0
  68. package/Forms/Password/index.js +1 -0
  69. package/Forms/Radio/Radio.js +31 -0
  70. package/Forms/Radio/index.js +1 -0
  71. package/Forms/Switch/Switch.js +50 -0
  72. package/Forms/Switch/index.js +1 -0
  73. package/Forms/Textarea/Textarea.js +15 -0
  74. package/Forms/Textarea/TextareaRich.js +44 -0
  75. package/Forms/Textarea/index.js +2 -0
  76. package/Forms/Toggle/Toggle.js +79 -0
  77. package/Forms/Toggle/index.js +1 -0
  78. package/Forms/Toggle/useToggle.js +143 -0
  79. package/Forms/antispam.js +56 -0
  80. package/Forms/helpers.js +44 -0
  81. package/Forms/index.js +17 -0
  82. package/Forms/styles.js +60 -0
  83. package/Gauge/Gauge.js +102 -0
  84. package/Grid/Grid.js +79 -0
  85. package/Grid/index.js +1 -0
  86. package/Hamburger/Hamburger.js +55 -0
  87. package/Hamburger/index.js +1 -0
  88. package/Header/index.js +1 -0
  89. package/Header/useHeader.js +30 -0
  90. package/Hidden/Hidden.js +14 -0
  91. package/Hidden/index.js +1 -0
  92. package/Img/Img.js +34 -0
  93. package/Img/index.js +1 -0
  94. package/Link/Link.js +2 -0
  95. package/Link/LinkBlank.d.ts +1 -1
  96. package/Link/LinkBlank.js +28 -0
  97. package/Link/index.js +2 -0
  98. package/Menu/Menu.js +11 -0
  99. package/Menu/index.js +1 -0
  100. package/MenuItem/MenuItem.js +20 -0
  101. package/MenuItem/index.js +1 -0
  102. package/Meta/Meta.js +4 -0
  103. package/Meta/index.js +1 -0
  104. package/NoJs/NoJs.js +6 -0
  105. package/NoJs/index.js +1 -0
  106. package/Pagination/PaginationNav.js +87 -0
  107. package/Pagination/PaginationResults.js +10 -0
  108. package/Pagination/index.js +2 -0
  109. package/Pill/Pill.js +37 -0
  110. package/Pill/index.js +1 -0
  111. package/Progress/ProgressCircular.js +38 -0
  112. package/Progress/ProgressLinear.js +34 -0
  113. package/Progress/ProgressOverlay.js +40 -0
  114. package/Progress/index.js +3 -0
  115. package/Rating/Rating.js +93 -0
  116. package/Rating/index.js +45 -0
  117. package/Select/SelectDownshift.js +38 -0
  118. package/Select/components.js +20 -0
  119. package/Select/index.js +3 -0
  120. package/Sidebar/Sidebar.js +48 -0
  121. package/Sidebar/index.js +1 -0
  122. package/Spacing/Spacing.js +47 -0
  123. package/Spacing/index.js +1 -0
  124. package/Sticky/Sticky.js +220 -0
  125. package/Sticky/StickyCss.js +6 -0
  126. package/Sticky/index.js +1 -0
  127. package/Tabs/Tabs.js +67 -0
  128. package/Tabs/index.js +1 -0
  129. package/Typography/CopyPasteVisible.js +6 -0
  130. package/Typography/Native.js +47 -0
  131. package/Typography/ReadMore.js +71 -0
  132. package/Typography/TextLoop.js +45 -0
  133. package/Typography/TypeStairs.js +46 -0
  134. package/Typography/index.js +5 -0
  135. package/helpers/index.js +19 -0
  136. package/hooks/index.js +5 -0
  137. package/hooks/useDateLocale.js +30 -0
  138. package/hooks/useFocus.js +11 -0
  139. package/hooks/usePrevious.js +8 -0
  140. package/hooks/useTraceUpdate.js +20 -0
  141. package/hooks/useWindowSize.js +13 -0
  142. package/index.js +36 -0
  143. package/index.umd.js +232 -239
  144. package/package.json +15 -9
  145. package/styles/Body.js +17 -0
  146. package/styles/Global.js +50 -0
  147. package/styles/classed.js +11 -0
  148. package/styles/index.js +7 -0
  149. package/styles/media.js +150 -0
  150. package/styles/spacing.d.ts +6 -6
  151. package/styles/spacing.js +46 -0
  152. package/styles/styled.d.ts +2 -2
  153. package/styles/styled.js +27 -0
  154. package/styles/theme--vanilla.js +53 -0
  155. package/styles/theme.d.ts +0 -7
  156. package/styles/theme.js +38 -0
  157. package/types.js +1 -0
  158. package/typings.d.ts +21 -0
  159. package/index.esm.js +0 -9456
package/index.umd.js CHANGED
@@ -1,8 +1,8 @@
1
1
  (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('react/jsx-runtime'), require('styled-components'), require('framer-motion'), require('react'), require('@mui/base/AutocompleteUnstyled'), require('@koine/utils'), require('@react-icons/all-files/bs/BsBoxArrowInDown'), require('react-use'), require('@react-icons/all-files/md/MdKeyboardArrowRight'), require('@react-icons/all-files/md/MdAdd'), require('date-fns/isWithinInterval'), require('date-fns/endOfMonth'), require('date-fns/startOfWeek'), require('date-fns/endOfWeek'), require('date-fns/subMonths'), require('date-fns/addMonths'), require('date-fns/subWeeks'), require('date-fns/addWeeks'), require('date-fns/addDays'), require('date-fns/format'), require('date-fns/eachWeekOfInterval'), require('react-swipeable'), require('date-fns/differenceInDays'), require('date-fns/subDays'), require('@reach/disclosure'), require('@react-icons/all-files/md/MdClear'), require('@reach/dialog'), require('yup'), require('react-hook-form'), require('@n8tb1t/use-scroll-position'), require('@react-icons/all-files/im/ImEye'), require('@react-icons/all-files/im/ImEyeBlocked'), require('@tiptap/react'), require('@tiptap/starter-kit'), require('@react-icons/all-files/md/MdFormatBold'), require('@react-icons/all-files/md/MdFormatItalic'), require('@react-icons/all-files/md/MdLaunch'), require('@react-icons/all-files/cg/CgArrowRightR'), require('@react-icons/all-files/cg/CgArrowLeftR'), require('@react-icons/all-files/gr/GrFolderOpen'), require('@react-icons/all-files/cg/CgCloseR'), require('@reach/tabs')) :
3
- typeof define === 'function' && define.amd ? define(['exports', 'react/jsx-runtime', 'styled-components', 'framer-motion', 'react', '@mui/base/AutocompleteUnstyled', '@koine/utils', '@react-icons/all-files/bs/BsBoxArrowInDown', 'react-use', '@react-icons/all-files/md/MdKeyboardArrowRight', '@react-icons/all-files/md/MdAdd', 'date-fns/isWithinInterval', 'date-fns/endOfMonth', 'date-fns/startOfWeek', 'date-fns/endOfWeek', 'date-fns/subMonths', 'date-fns/addMonths', 'date-fns/subWeeks', 'date-fns/addWeeks', 'date-fns/addDays', 'date-fns/format', 'date-fns/eachWeekOfInterval', 'react-swipeable', 'date-fns/differenceInDays', 'date-fns/subDays', '@reach/disclosure', '@react-icons/all-files/md/MdClear', '@reach/dialog', 'yup', 'react-hook-form', '@n8tb1t/use-scroll-position', '@react-icons/all-files/im/ImEye', '@react-icons/all-files/im/ImEyeBlocked', '@tiptap/react', '@tiptap/starter-kit', '@react-icons/all-files/md/MdFormatBold', '@react-icons/all-files/md/MdFormatItalic', '@react-icons/all-files/md/MdLaunch', '@react-icons/all-files/cg/CgArrowRightR', '@react-icons/all-files/cg/CgArrowLeftR', '@react-icons/all-files/gr/GrFolderOpen', '@react-icons/all-files/cg/CgCloseR', '@reach/tabs'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.React = {}, global.jsxRuntime, global.styled, global.framerMotion, global.React, global.AutocompleteUnstyled, global.utils, global.BsBoxArrowInDown, global.reactUse, global.MdKeyboardArrowRight, global.MdAdd, global.isWithinInterval, global.endOfMonth, global.startOfWeek, global.endOfWeek, global.subMonths, global.addMonths, global.subWeeks, global.addWeeks, global.addDays, global.format, global.eachWeekOfInterval, global.reactSwipeable, global.differenceInDays, global.subDays, global.disclosure, global.MdClear, global.dialog, global.yup, global.reactHookForm, global.useScrollPosition, global.ImEye, global.ImEyeBlocked, global.react$1, global.StarterKit, global.MdFormatBold, global.MdFormatItalic, global.MdLaunch, global.CgArrowRightR, global.CgArrowLeftR, global.GrFolderOpen, global.CgCloseR, global.tabs));
5
- })(this, (function (exports, jsxRuntime, styled, framerMotion, react, AutocompleteUnstyled, utils, BsBoxArrowInDown, reactUse, MdKeyboardArrowRight, MdAdd, isWithinInterval, endOfMonth, startOfWeek, endOfWeek, subMonths, addMonths, subWeeks, addWeeks, addDays, format, eachWeekOfInterval, reactSwipeable, differenceInDays, subDays, disclosure, MdClear, dialog, yup, reactHookForm, useScrollPosition, ImEye, ImEyeBlocked, react$1, StarterKit, MdFormatBold, MdFormatItalic, MdLaunch, CgArrowRightR, CgArrowLeftR, GrFolderOpen, CgCloseR, tabs) { 'use strict';
2
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('react/jsx-runtime'), require('styled-components'), require('framer-motion'), require('react'), require('@mui/base/AutocompleteUnstyled'), require('@koine/utils'), require('react-icons/bs'), require('react-use'), require('react-icons/md'), require('date-fns/isWithinInterval'), require('date-fns/endOfMonth'), require('date-fns/startOfWeek'), require('date-fns/endOfWeek'), require('date-fns/subMonths'), require('date-fns/addMonths'), require('date-fns/subWeeks'), require('date-fns/addWeeks'), require('date-fns/addDays'), require('date-fns/format'), require('date-fns/eachWeekOfInterval'), require('react-swipeable'), require('date-fns/differenceInDays'), require('date-fns/subDays'), require('@reach/disclosure'), require('@reach/dialog'), require('yup'), require('react-hook-form'), require('@n8tb1t/use-scroll-position'), require('react-icons/im'), require('@tiptap/react'), require('@tiptap/starter-kit'), require('react-icons/cg'), require('react-icons/gr'), require('@reach/tabs')) :
3
+ typeof define === 'function' && define.amd ? define(['exports', 'react/jsx-runtime', 'styled-components', 'framer-motion', 'react', '@mui/base/AutocompleteUnstyled', '@koine/utils', 'react-icons/bs', 'react-use', 'react-icons/md', 'date-fns/isWithinInterval', 'date-fns/endOfMonth', 'date-fns/startOfWeek', 'date-fns/endOfWeek', 'date-fns/subMonths', 'date-fns/addMonths', 'date-fns/subWeeks', 'date-fns/addWeeks', 'date-fns/addDays', 'date-fns/format', 'date-fns/eachWeekOfInterval', 'react-swipeable', 'date-fns/differenceInDays', 'date-fns/subDays', '@reach/disclosure', '@reach/dialog', 'yup', 'react-hook-form', '@n8tb1t/use-scroll-position', 'react-icons/im', '@tiptap/react', '@tiptap/starter-kit', 'react-icons/cg', 'react-icons/gr', '@reach/tabs'], factory) :
4
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.React = {}, global.jsxRuntime, global.styled, global.framerMotion, global.React, global.AutocompleteUnstyled, global.utils, global.bs, global.reactUse, global.md, global.isWithinInterval, global.endOfMonth, global.startOfWeek, global.endOfWeek, global.subMonths, global.addMonths, global.subWeeks, global.addWeeks, global.addDays, global.format, global.eachWeekOfInterval, global.reactSwipeable, global.differenceInDays, global.subDays, global.disclosure, global.dialog, global.yup, global.reactHookForm, global.useScrollPosition, global.im, global.react$1, global.StarterKit, global.cg, global.gr, global.tabs));
5
+ })(this, (function (exports, jsxRuntime, styled, framerMotion, react, AutocompleteUnstyled, utils, bs, reactUse, md, isWithinInterval, endOfMonth, startOfWeek, endOfWeek, subMonths, addMonths, subWeeks, addWeeks, addDays, format, eachWeekOfInterval, reactSwipeable, differenceInDays, subDays, disclosure, dialog, yup, reactHookForm, useScrollPosition, im, react$1, StarterKit, cg, gr, tabs) { 'use strict';
6
6
 
7
7
  function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
8
8
 
@@ -1089,11 +1089,11 @@
1089
1089
 
1090
1090
  const AlertRoot = /*#__PURE__*/styled__default["default"].div.withConfig({
1091
1091
  displayName: "Alert__AlertRoot",
1092
- componentId: "sc-lcej9m-0"
1092
+ componentId: "sc-1pmh9cg-0"
1093
1093
  })(["font-size:12px;", ""], p => p.$danger ? `color: var(--danger)` : "");
1094
1094
  const AlertInner = /*#__PURE__*/styled__default["default"].div.withConfig({
1095
1095
  displayName: "Alert__AlertInner",
1096
- componentId: "sc-lcej9m-1"
1096
+ componentId: "sc-1pmh9cg-1"
1097
1097
  })(["padding:1em;background-color:rgba(0,0,0,0.05);"]);
1098
1098
  const Alert = _a => {
1099
1099
  var {
@@ -1749,7 +1749,7 @@
1749
1749
 
1750
1750
  const UnderlineSkewed = /*#__PURE__*/styled__default["default"](framerMotion.m.i).withConfig({
1751
1751
  displayName: "Underline__UnderlineSkewed",
1752
- componentId: "sc-1qc0dqa-0"
1752
+ componentId: "sc-3x4kwb-0"
1753
1753
  })(["display:block;position:absolute;top:50%;left:15%;right:15%;height:20px;margin-top:-10px;z-index:0;pointer-events:none;background:var(--accent400);transform:skewY(-5deg);"]);
1754
1754
 
1755
1755
  const normaliseOptions = (options = []) => {
@@ -1860,12 +1860,10 @@
1860
1860
  `;
1861
1861
  const Label = /*#__PURE__*/styled__default["default"].label.withConfig({
1862
1862
  displayName: "Label",
1863
- componentId: "sc-1ho7rk3-0"
1863
+ componentId: "sc-35culb-0"
1864
1864
  })(["", ""], labelMaterial);
1865
1865
 
1866
- function colStretch(direction, color) {
1867
- // @ts-expect-error nevermind
1868
- const bg = (this === null || this === void 0 ? void 0 : this[color]) ? this[color] : color;
1866
+ function colStretch(direction, bg) {
1869
1867
  return `
1870
1868
  background: ${bg};
1871
1869
  position: relative;
@@ -1897,11 +1895,11 @@
1897
1895
 
1898
1896
  const ProgressLinearBg = /*#__PURE__*/styled__default["default"].span.withConfig({
1899
1897
  displayName: "ProgressLinear__ProgressLinearBg",
1900
- componentId: "sc-1761h3k-0"
1898
+ componentId: "sc-iyv4k0-0"
1901
1899
  })(["position:relative;overflow:hidden;display:block;height:4px;"]);
1902
1900
  const ProgressLinearFg = /*#__PURE__*/styled__default["default"](framerMotion.m.span).withConfig({
1903
1901
  displayName: "ProgressLinear__ProgressLinearFg",
1904
- componentId: "sc-1761h3k-1"
1902
+ componentId: "sc-iyv4k0-1"
1905
1903
  })(["position:absolute;top:0;bottom:0;left:0;width:100%;"]);
1906
1904
  /**
1907
1905
  * @see https://mui.com/components/progress/#linear
@@ -1944,7 +1942,7 @@
1944
1942
 
1945
1943
  const InputInvisible = /*#__PURE__*/styled__default["default"].input.withConfig({
1946
1944
  displayName: "styles__InputInvisible",
1947
- componentId: "sc-a7tlb4-0"
1945
+ componentId: "sc-1fa7hx3-0"
1948
1946
  })(["", ""], invisible);
1949
1947
  const InputHoneypot = /*#__PURE__*/styled__default["default"](InputInvisible).attrs({
1950
1948
  type: "text",
@@ -1952,14 +1950,14 @@
1952
1950
  tabIndex: -1
1953
1951
  }).withConfig({
1954
1952
  displayName: "styles__InputHoneypot",
1955
- componentId: "sc-a7tlb4-1"
1953
+ componentId: "sc-1fa7hx3-1"
1956
1954
  })([""]);
1957
1955
  const InputProgress = /*#__PURE__*/styled__default["default"](p => jsxRuntime.jsx(ProgressLinear, Object.assign({
1958
1956
  fg: "var(--accent300)",
1959
1957
  bg: "var(--accent400)"
1960
1958
  }, p))).withConfig({
1961
1959
  displayName: "styles__InputProgress",
1962
- componentId: "sc-a7tlb4-2"
1960
+ componentId: "sc-1fa7hx3-2"
1963
1961
  })(["position:absolute;bottom:0;left:0;width:100%;"]);
1964
1962
  /**
1965
1963
  * Remove the default light blue background on autofilled inputs. To be used as
@@ -2007,23 +2005,23 @@
2007
2005
 
2008
2006
  const InputWrap = /*#__PURE__*/styled__default["default"].div.withConfig({
2009
2007
  displayName: "Input__InputWrap",
2010
- componentId: "sc-1y6tzhg-0"
2008
+ componentId: "sc-1lb5lyl-0"
2011
2009
  })(["display:flex;align-items:center;justify-content:space-between;"]);
2012
2010
  const InputMain = /*#__PURE__*/styled__default["default"].div.withConfig({
2013
2011
  displayName: "Input__InputMain",
2014
- componentId: "sc-1y6tzhg-1"
2012
+ componentId: "sc-1lb5lyl-1"
2015
2013
  })(["flex:1;"]);
2016
2014
  const InputPre = /*#__PURE__*/styled__default["default"].div.withConfig({
2017
2015
  displayName: "Input__InputPre",
2018
- componentId: "sc-1y6tzhg-2"
2016
+ componentId: "sc-1lb5lyl-2"
2019
2017
  })([""]);
2020
2018
  const InputPost = /*#__PURE__*/styled__default["default"].div.withConfig({
2021
2019
  displayName: "Input__InputPost",
2022
- componentId: "sc-1y6tzhg-3"
2020
+ componentId: "sc-1lb5lyl-3"
2023
2021
  })([""]);
2024
2022
  const InputNative = /*#__PURE__*/styled__default["default"].input.withConfig({
2025
2023
  displayName: "Input__InputNative",
2026
- componentId: "sc-1y6tzhg-4"
2024
+ componentId: "sc-1lb5lyl-4"
2027
2025
  })(["", " ", ""], inputBase, inputFocus);
2028
2026
  const Input = /*#__PURE__*/react.forwardRef(function Input(_a, ref) {
2029
2027
  var {
@@ -2046,7 +2044,7 @@
2046
2044
 
2047
2045
  const SelectArrowStyled = /*#__PURE__*/styled__default["default"](framerMotion.m.span).withConfig({
2048
2046
  displayName: "components__SelectArrowStyled",
2049
- componentId: "sc-13e99zv-0"
2047
+ componentId: "sc-vc7xks-0"
2050
2048
  })(["display:inline-flex;align-items:center;justify-content:center;width:2em;&:not([disabled]){cursor:pointer;}"]);
2051
2049
  const SelectArrow = /*#__PURE__*/react.forwardRef(function SelectArrow(_a, ref) {
2052
2050
  var {
@@ -2060,18 +2058,18 @@
2060
2058
  },
2061
2059
  ref: ref
2062
2060
  }, props, {
2063
- children: jsxRuntime.jsx(BsBoxArrowInDown.BsBoxArrowInDown, {})
2061
+ children: jsxRuntime.jsx(bs.BsBoxArrowInDown, {})
2064
2062
  }));
2065
2063
  });
2066
2064
 
2067
2065
  const Menu = /*#__PURE__*/styled__default["default"].ul.withConfig({
2068
2066
  displayName: "Menu",
2069
- componentId: "sc-v1thyt-0"
2067
+ componentId: "sc-1mto20q-0"
2070
2068
  })(["z-index:3;position:absolute;list-style-type:none;margin:0;padding:0;background:#fff;width:100%;box-shadow:var(--shadow);"]);
2071
2069
 
2072
2070
  const MenuItem = /*#__PURE__*/styled__default["default"].li.withConfig({
2073
2071
  displayName: "MenuItem",
2074
- componentId: "sc-11z29ly-0"
2072
+ componentId: "sc-1fnd9p6-0"
2075
2073
  })(["padding:8px 16px;&[aria-selected=\"true\"]{background:var(--accent400);}&.Mui-focused,&[data-focus=\"true\"]{background:var(--accent300);color:white;}&:not([disabled]):hover{cursor:pointer;background:var(--accent300);}"]);
2076
2074
 
2077
2075
  /**
@@ -2086,32 +2084,32 @@
2086
2084
  const btnStyleOutlined = /*#__PURE__*/styled.css(["color:var(--accent200);border-color:var(--accent200);&:hover:not([disabled]){background:var(--accent300);border-color:var(--accent300);color:white;}"]);
2087
2085
  const KoineButton = /*#__PURE__*/styled__default["default"].button.withConfig({
2088
2086
  displayName: "Button__KoineButton",
2089
- componentId: "sc-1hkjy46-0"
2087
+ componentId: "sc-rk2lui-0"
2090
2088
  })(["", " ", " ", ""], btnStyleBase, p => p.$variant === "outlined" && btnStyleOutlined, p => p.$variant === "contained" && btnStyleContained);
2091
2089
 
2092
2090
  const Root$a = /*#__PURE__*/styled__default["default"].span.withConfig({
2093
2091
  displayName: "ButtonComposite__Root",
2094
- componentId: "sc-mrn633-0"
2092
+ componentId: "sc-76f2w8-0"
2095
2093
  })(["", " padding:0;min-width:0;& svg{font-size:2em !important;margin:0 0.33em 0 0 !important;}"], p => p.$icon ? `display: flex;` : `display: inline-block; text-align: left;`);
2096
2094
  const ButtonCompositeIcon = /*#__PURE__*/styled__default["default"].svg.withConfig({
2097
2095
  displayName: "ButtonComposite__ButtonCompositeIcon",
2098
- componentId: "sc-mrn633-1"
2096
+ componentId: "sc-76f2w8-1"
2099
2097
  })(["float:left;"]);
2100
2098
  const BesidesIcon = /*#__PURE__*/styled__default["default"].span.withConfig({
2101
2099
  displayName: "ButtonComposite__BesidesIcon",
2102
- componentId: "sc-mrn633-2"
2100
+ componentId: "sc-76f2w8-2"
2103
2101
  })(["text-align:left;line-height:1.2;"]);
2104
2102
  const Main = /*#__PURE__*/styled__default["default"].span.withConfig({
2105
2103
  displayName: "ButtonComposite__Main",
2106
- componentId: "sc-mrn633-3"
2104
+ componentId: "sc-76f2w8-3"
2107
2105
  })(["display:block;font-size:0.9em;&:last-child{margin-top:", ";}"], p => p.$reverse && !p.$icon ? "0.5em" : "0");
2108
2106
  const Sub = /*#__PURE__*/styled__default["default"].span.withConfig({
2109
2107
  displayName: "ButtonComposite__Sub",
2110
- componentId: "sc-mrn633-4"
2108
+ componentId: "sc-76f2w8-4"
2111
2109
  })(["display:block;text-transform:none;font-size:0.7em;font-weight:500;", " + &{margin-top:", ";}"], Main, p => p.$reverse && !p.$icon ? "0.5em" : "0");
2112
2110
  const Text = /*#__PURE__*/styled__default["default"].span.withConfig({
2113
2111
  displayName: "ButtonComposite__Text",
2114
- componentId: "sc-mrn633-5"
2112
+ componentId: "sc-76f2w8-5"
2115
2113
  })([""]);
2116
2114
  const Inner$2 = /*#__PURE__*/react.memo(({
2117
2115
  textMain,
@@ -2193,13 +2191,13 @@
2193
2191
  const iconBtnStyleBase = /*#__PURE__*/styled.css(["", ""], iconBtnStyleReset);
2194
2192
  const IconButton = /*#__PURE__*/styled__default["default"].button.withConfig({
2195
2193
  displayName: "IconButton",
2196
- componentId: "sc-1n0qrhr-0"
2194
+ componentId: "sc-1a99sq0-0"
2197
2195
  })(["", " ", " ", ""], iconBtnStyleBase, p => p.$variant === "outlined" && btnStyleOutlined, p => p.$variant === "contained" && btnStyleContained);
2198
2196
 
2199
2197
  const buttonFab = /*#__PURE__*/styled.css(["box-shadow:3px 3px 6px -4px rgb(0,0,0,0.5);"]);
2200
2198
  const IconButtonFab = /*#__PURE__*/styled__default["default"](IconButton).withConfig({
2201
2199
  displayName: "ButtonFab__IconButtonFab",
2202
- componentId: "sc-1lpxpwz-0"
2200
+ componentId: "sc-9hoaw7-0"
2203
2201
  })(["", ""], buttonFab);
2204
2202
 
2205
2203
  var wellKnownSymbol$d = wellKnownSymbol$k;
@@ -2329,7 +2327,7 @@
2329
2327
 
2330
2328
  const Root$9 = /*#__PURE__*/styled__default["default"](KoineButton).withConfig({
2331
2329
  displayName: "ButtonLink__Root",
2332
- componentId: "sc-lp3x1u-0"
2330
+ componentId: "sc-mqyfxp-0"
2333
2331
  })(["text-decoration:none;"]); // export const KoineButtonLink: FC<ButtonLinkProps> = ({ Koine, ...props }) => {
2334
2332
  // return <Root {...props} as={Koine.Link} />;
2335
2333
  // }
@@ -2367,35 +2365,35 @@
2367
2365
  const AUTOCOMPLETE_ITEM_REMOVE_WIDTH = 20;
2368
2366
  const AutocompleteRoot = /*#__PURE__*/styled__default["default"].div.withConfig({
2369
2367
  displayName: "components__AutocompleteRoot",
2370
- componentId: "sc-1wqgqxl-0"
2368
+ componentId: "sc-i8zffk-0"
2371
2369
  })(["position:relative;"]);
2372
2370
  const AutocompleteLabel = /*#__PURE__*/styled__default["default"](Label).withConfig({
2373
2371
  displayName: "components__AutocompleteLabel",
2374
- componentId: "sc-1wqgqxl-1"
2372
+ componentId: "sc-i8zffk-1"
2375
2373
  })([""]);
2376
2374
  const AutocompleteWrap = /*#__PURE__*/styled__default["default"](InputWrap).withConfig({
2377
2375
  displayName: "components__AutocompleteWrap",
2378
- componentId: "sc-1wqgqxl-2"
2376
+ componentId: "sc-i8zffk-2"
2379
2377
  })(["", ""], inputReset);
2380
2378
  const AutocompleteInner = /*#__PURE__*/styled__default["default"](InputMain).withConfig({
2381
2379
  displayName: "components__AutocompleteInner",
2382
- componentId: "sc-1wqgqxl-3"
2380
+ componentId: "sc-i8zffk-3"
2383
2381
  })(["display:inline-flex;flex-wrap:wrap;margin:-", "px;margin-right:0;"], AUTOCOMPLETE_ITEM_SPACER);
2384
2382
  const AutocompleteItem = /*#__PURE__*/styled__default["default"].span.withConfig({
2385
2383
  displayName: "components__AutocompleteItem",
2386
- componentId: "sc-1wqgqxl-4"
2384
+ componentId: "sc-i8zffk-4"
2387
2385
  })(["position:relative;display:inline-flex;margin:", "px;max-width:calc(100% - 6px);user-select:none;align-items:center;padding:0 ", "px 0 ", "px;font-size:80%;background:var(--accent400);&:hover{background:var(--accent300);color:white;}&:focus{outline:0px;background:var(--grey700);}"], AUTOCOMPLETE_ITEM_GUTTER, AUTOCOMPLETE_ITEM_REMOVE_WIDTH, AUTOCOMPLETE_ITEM_GUTTER);
2388
2386
  const AutocompleteItemLabel = /*#__PURE__*/styled__default["default"].span.withConfig({
2389
2387
  displayName: "components__AutocompleteItemLabel",
2390
- componentId: "sc-1wqgqxl-5"
2388
+ componentId: "sc-i8zffk-5"
2391
2389
  })(["padding:0 ", "px;", ""], AUTOCOMPLETE_ITEM_GUTTER, ellipsis);
2392
2390
  const AutocompleteItemRemove = /*#__PURE__*/styled__default["default"].span.withConfig({
2393
2391
  displayName: "components__AutocompleteItemRemove",
2394
- componentId: "sc-1wqgqxl-6"
2392
+ componentId: "sc-i8zffk-6"
2395
2393
  })(["", " position:absolute;top:0;right:0;width:", "px;border:0;height:100%;color:inherit;line-height:1;"], btnStyleReset, AUTOCOMPLETE_ITEM_REMOVE_WIDTH);
2396
2394
  const AutocompleteInput = /*#__PURE__*/styled__default["default"].input.withConfig({
2397
2395
  displayName: "components__AutocompleteInput",
2398
- componentId: "sc-1wqgqxl-8"
2396
+ componentId: "sc-i8zffk-8"
2399
2397
  })(["flex-grow:1;width:0;min-width:30px;border:0;padding:0 ", "px;text-overflow:ellipsis;background:transparent;&:focus{outline:none;}"], AUTOCOMPLETE_ITEM_SPACER);
2400
2398
  /**
2401
2399
  * This cannot be a button otherwise on `Enter` the form would submit instead
@@ -2405,15 +2403,15 @@
2405
2403
 
2406
2404
  const AutocompleteInputArrow = /*#__PURE__*/styled__default["default"](SelectArrow).withConfig({
2407
2405
  displayName: "components__AutocompleteInputArrow",
2408
- componentId: "sc-1wqgqxl-9"
2406
+ componentId: "sc-i8zffk-9"
2409
2407
  })([""]);
2410
2408
  const AutocompleteMenu = /*#__PURE__*/styled__default["default"](Menu).withConfig({
2411
2409
  displayName: "components__AutocompleteMenu",
2412
- componentId: "sc-1wqgqxl-10"
2410
+ componentId: "sc-i8zffk-10"
2413
2411
  })([""]);
2414
2412
  const AutocompleteMenuItem = /*#__PURE__*/styled__default["default"](MenuItem).withConfig({
2415
2413
  displayName: "components__AutocompleteMenuItem",
2416
- componentId: "sc-1wqgqxl-11"
2414
+ componentId: "sc-i8zffk-11"
2417
2415
  })([""]);
2418
2416
 
2419
2417
  /**
@@ -2640,7 +2638,7 @@
2640
2638
 
2641
2639
  const BodyRoot = /*#__PURE__*/styled__default["default"].div.withConfig({
2642
2640
  displayName: "Body__BodyRoot",
2643
- componentId: "sc-1308qu1-0"
2641
+ componentId: "sc-1fva3zb-0"
2644
2642
  })(["display:flex;flex-direction:column;min-height:100vh;"]);
2645
2643
  /**
2646
2644
  * If you have background graphics to overlap you might need to add:
@@ -2653,7 +2651,7 @@
2653
2651
 
2654
2652
  const BodyMain = /*#__PURE__*/styled__default["default"].main.withConfig({
2655
2653
  displayName: "Body__BodyMain",
2656
- componentId: "sc-1308qu1-1"
2654
+ componentId: "sc-1fva3zb-1"
2657
2655
  })(["flex:1;"]);
2658
2656
 
2659
2657
  /**
@@ -3631,57 +3629,6 @@
3631
3629
  parseFloat: $parseFloat
3632
3630
  });
3633
3631
 
3634
- function _spacing(theme, size = "md", factor = 1, property = "padding", direction = "top", devices = ["mobile", "tablet", "desktop"]) {
3635
- const {
3636
- breakpoints,
3637
- devices: DEVICES,
3638
- spaces: SPACES
3639
- } = theme;
3640
- let css = "";
3641
- const prop = `${property}-${direction}`;
3642
-
3643
- if (devices === ["mobile"]) {
3644
- css += `@media(max-width: ${breakpoints[DEVICES.mobile]}px){
3645
- ${prop}: ${SPACES["mobile"][size] * factor}px;
3646
- }`;
3647
- } else {
3648
- for (let index = 0; index < devices.length; index++) {
3649
- const device = devices[index];
3650
-
3651
- if (device === "mobile") {
3652
- css += `${prop}: ${SPACES[device][size] * factor}px;`;
3653
- } else if (device === "tablet") {
3654
- css += `@media(min-width: ${breakpoints[DEVICES.tablet]}px){
3655
- ${prop}: ${SPACES["tablet"][size] * factor}px;
3656
- }`;
3657
- } else if (device === "desktop") {
3658
- css += `@media(min-width: ${breakpoints[DEVICES.desktop]}px){
3659
- ${prop}: ${SPACES["desktop"][size] * factor}px;
3660
- }`;
3661
- }
3662
- }
3663
- }
3664
-
3665
- return css;
3666
- }
3667
-
3668
- function spacing(size, factor, property, direction, devices) {
3669
- if (direction === "vertical") {
3670
- return _spacing(this, size, factor, property, "top", devices) + _spacing(this, size, factor, property, "bottom", devices);
3671
- }
3672
-
3673
- return _spacing(this, size, factor, property, direction, devices);
3674
- }
3675
- function spacingTop(size, factor, property, devices) {
3676
- return _spacing(this, size, factor, property, "top", devices);
3677
- }
3678
- function spacingBottom(size, factor, property, devices) {
3679
- return _spacing(this, size, factor, property, "bottom", devices);
3680
- }
3681
- function spacingVertical(size, factor, property, devices) {
3682
- return _spacing(this, size, factor, property, "top", devices) + _spacing(this, size, factor, property, "bottom", devices);
3683
- }
3684
-
3685
3632
  const DEFAULT_BREAKPOINTS = {
3686
3633
  xs: 0,
3687
3634
  sm: 440,
@@ -3714,12 +3661,7 @@
3714
3661
  mobile: "sm",
3715
3662
  tablet: "md",
3716
3663
  desktop: "lg"
3717
- },
3718
- spacing,
3719
- spacingTop,
3720
- spacingBottom,
3721
- spacingVertical,
3722
- colStretch
3664
+ }
3723
3665
  };
3724
3666
  const createTheme = options => Object.assign(Object.assign({}, themeDefault), options);
3725
3667
  const useTheme = styled.useTheme;
@@ -3904,6 +3846,57 @@
3904
3846
  };
3905
3847
  }
3906
3848
 
3849
+ function _spacing(theme, size = "md", factor = 1, property = "padding", direction = "top", devices = ["mobile", "tablet", "desktop"]) {
3850
+ const {
3851
+ breakpoints,
3852
+ devices: DEVICES,
3853
+ spaces: SPACES
3854
+ } = theme;
3855
+ let css = "";
3856
+ const prop = `${property}-${direction}`;
3857
+
3858
+ if (devices === ["mobile"]) {
3859
+ css += `@media(max-width: ${breakpoints[DEVICES.mobile]}px){
3860
+ ${prop}: ${SPACES["mobile"][size] * factor}px;
3861
+ }`;
3862
+ } else {
3863
+ for (let index = 0; index < devices.length; index++) {
3864
+ const device = devices[index];
3865
+
3866
+ if (device === "mobile") {
3867
+ css += `${prop}: ${SPACES[device][size] * factor}px;`;
3868
+ } else if (device === "tablet") {
3869
+ css += `@media(min-width: ${breakpoints[DEVICES.tablet]}px){
3870
+ ${prop}: ${SPACES["tablet"][size] * factor}px;
3871
+ }`;
3872
+ } else if (device === "desktop") {
3873
+ css += `@media(min-width: ${breakpoints[DEVICES.desktop]}px){
3874
+ ${prop}: ${SPACES["desktop"][size] * factor}px;
3875
+ }`;
3876
+ }
3877
+ }
3878
+ }
3879
+
3880
+ return css;
3881
+ }
3882
+
3883
+ function spacing(size, factor, property, direction, devices) {
3884
+ if (direction === "vertical") {
3885
+ return _spacing(this, size, factor, property, "top", devices) + _spacing(this, size, factor, property, "bottom", devices);
3886
+ }
3887
+
3888
+ return _spacing(this, size, factor, property, direction, devices);
3889
+ }
3890
+ function spacingTop(size, factor, property, devices) {
3891
+ return _spacing(this, size, factor, property, "top", devices);
3892
+ }
3893
+ function spacingBottom(size, factor, property, devices) {
3894
+ return _spacing(this, size, factor, property, "bottom", devices);
3895
+ }
3896
+ function spacingVertical(size, factor, property, devices) {
3897
+ return _spacing(this, size, factor, property, "top", devices) + _spacing(this, size, factor, property, "bottom", devices);
3898
+ }
3899
+
3907
3900
  const THEME_KEY = "theme";
3908
3901
  const THEME_DEFAULT = "light";
3909
3902
  const getInitialThemeFromRequest = cookie => {
@@ -3976,21 +3969,21 @@
3976
3969
  const GRID_GUTTER_DEFAULT = "half";
3977
3970
  const Container = /*#__PURE__*/styled__default["default"].div.withConfig({
3978
3971
  displayName: "Grid__Container",
3979
- componentId: "sc-16qh9g2-0"
3972
+ componentId: "sc-ppsqbu-0"
3980
3973
  })(["max-width:", "px;margin:0 auto;padding:0 ", "px;", ""], p => p.theme.breakpoints[p.size], p => p.theme.gutter[p.$gutter || GRID_GUTTER_DEFAULT], p => p.clamp ? "overflow: hidden;" : "");
3981
3974
  const ContainerFluid = /*#__PURE__*/styled__default["default"].div.withConfig({
3982
3975
  displayName: "Grid__ContainerFluid",
3983
- componentId: "sc-16qh9g2-1"
3976
+ componentId: "sc-ppsqbu-1"
3984
3977
  })(["padding:0 ", "px;"], p => p.theme.gutter[p.$gutter || GRID_GUTTER_DEFAULT]);
3985
3978
  const Row = /*#__PURE__*/styled__default["default"].div.withConfig({
3986
3979
  displayName: "Grid__Row",
3987
- componentId: "sc-16qh9g2-2"
3980
+ componentId: "sc-ppsqbu-2"
3988
3981
  })(["margin:0 -", "px;display:flex;", " ", ";", ""], p => p.theme.gutter[p.$gutter || GRID_GUTTER_DEFAULT], p => p.$noWrap ? "overflow: auto;" : "flex-wrap: wrap;", p => p.$valign ? `align-items: ${p.$valign}` : "", p => p.$reverse && `@media (${p.$reverse.split(":")[0]}-width: ${p.$reverse.split(":")[1]}px) {
3989
3982
  flex-direction: row-reverse;
3990
3983
  }`);
3991
3984
  const Col = /*#__PURE__*/styled__default["default"].div.withConfig({
3992
3985
  displayName: "Grid__Col",
3993
- componentId: "sc-16qh9g2-3"
3986
+ componentId: "sc-ppsqbu-3"
3994
3987
  })(["padding:0 ", "px;display:", ";", ";", ";"], p => p.theme.gutter[p.$gutter || GRID_GUTTER_DEFAULT], p => p.$flex ? "flex" : "block", p => p.$valign ? "align-items: " + p.$valign : "", p => getColCss(p));
3995
3988
 
3996
3989
  function getColWidth(breakpoints, breakpoint, value) {
@@ -4056,11 +4049,11 @@
4056
4049
 
4057
4050
  const BgColor = /*#__PURE__*/styled__default["default"].div.withConfig({
4058
4051
  displayName: "BgColor",
4059
- componentId: "sc-1x55f2d-0"
4052
+ componentId: "sc-1ky8mxk-0"
4060
4053
  })(["background:", ";"], p => p.$bg);
4061
4054
  const BgColorSkewed = /*#__PURE__*/styled__default["default"].div.withConfig({
4062
4055
  displayName: "BgColor__BgColorSkewed",
4063
- componentId: "sc-1x55f2d-1"
4056
+ componentId: "sc-1ky8mxk-1"
4064
4057
  })(["position:relative;&:before{z-index:-1;content:\"\";", "}"], p => `
4065
4058
  ${overlay}
4066
4059
  transform: ${p.$transform};
@@ -4104,7 +4097,7 @@
4104
4097
 
4105
4098
  const Hidden = /*#__PURE__*/styled__default["default"].div.withConfig({
4106
4099
  displayName: "Hidden",
4107
- componentId: "sc-1664qq8-0"
4100
+ componentId: "sc-q5gqyj-0"
4108
4101
  })(["", ""], p => `${p.$min ? `
4109
4102
  @media (min-width: ${p.theme.breakpoints[p.$min]}px) {
4110
4103
  display: none;
@@ -4115,11 +4108,11 @@
4115
4108
 
4116
4109
  const BgPhotoWrap = /*#__PURE__*/styled__default["default"](Hidden).withConfig({
4117
4110
  displayName: "BgPhoto__BgPhotoWrap",
4118
- componentId: "sc-rpv8r9-0"
4111
+ componentId: "sc-buye6b-0"
4119
4112
  })(["z-index:-10;position:fixed;top:0;right:0;bottom:0;left:0;overflow:hidden;pointer-events:none;background-repeat:no-repeat;background-position:top left;background-size:contain;filter:hue-rotate(-36deg);opacity:0.8;"]);
4120
4113
  const BgPhotoMask = /*#__PURE__*/styled__default["default"](Container).withConfig({
4121
4114
  displayName: "BgPhoto__BgPhotoMask",
4122
- componentId: "sc-rpv8r9-1"
4115
+ componentId: "sc-buye6b-1"
4123
4116
  })(["position:relative;min-height:100%;&:before{content:\"\";position:absolute;top:0;height:100%;right:calc(100% - ", "px);width:", ";background:linear-gradient( 90deg,rgba(var(--bodyBg-rgb,0)) 0%,rgba(var(--bodyBg-rgb,1)) 100% ),linear-gradient( 60deg,rgba(var(--bodyBg-rgb,0)) 0%,rgba(var(--bodyBg-rgb,1)) 70% );}&:after{content:\"\";position:absolute;top:0;height:100%;left:", "px;width:100vw;background:var(--bodyBg);}"], p => p.$overlap + 2, p => {
4124
4117
  const containerSizePx = p.theme.breakpoints[p.containerSize];
4125
4118
  return `calc(((100vw - ${containerSizePx}px) / 2) + ${p.$overlap + 2}px)`;
@@ -4147,7 +4140,7 @@
4147
4140
 
4148
4141
  const Root$8 = /*#__PURE__*/styled__default["default"].svg.withConfig({
4149
4142
  displayName: "BgSvg__Root",
4150
- componentId: "sc-qvklmn-0"
4143
+ componentId: "sc-uhj1yp-0"
4151
4144
  })(["position:fixed;z-index:-2;bottom:0;transform:rotate(180deg);opacity:0.9;"]);
4152
4145
  /**
4153
4146
  * Centered triangle shape
@@ -4171,28 +4164,28 @@
4171
4164
  const LINK_GUTTER_X = 10;
4172
4165
  const Root$7 = /*#__PURE__*/styled__default["default"].nav.withConfig({
4173
4166
  displayName: "Breadcrumbs__Root",
4174
- componentId: "sc-1uxyqsf-0"
4167
+ componentId: "sc-110rq3t-0"
4175
4168
  })(["display:flex;position:relative;"]);
4176
4169
  const Inner$1 = /*#__PURE__*/styled__default["default"].div.withConfig({
4177
4170
  displayName: "Breadcrumbs__Inner",
4178
- componentId: "sc-1uxyqsf-1"
4171
+ componentId: "sc-110rq3t-1"
4179
4172
  })(["display:flex;font-size:11px;color:var(--grey100);", "{font-size:12px;}", "{max-width:100%;overflow:hidden;white-space:nowrap;}"], min$1.sm, max$1.lg);
4180
4173
  const Item = /*#__PURE__*/styled__default["default"](framerMotion.m.div).withConfig({
4181
4174
  displayName: "Breadcrumbs__Item",
4182
- componentId: "sc-1uxyqsf-2"
4175
+ componentId: "sc-110rq3t-2"
4183
4176
  })(["display:flex;align-items:center;&:first-child{margin-left:-", "px;}", "{&:first-child{margin-left:-", "px;}}"], LINK_GUTTER_X / 2, min$1.sm, LINK_GUTTER_X);
4184
4177
  const itemChild = /*#__PURE__*/styled.css(["display:block;padding:10px ", "px;", "{padding:10px ", "px;}"], LINK_GUTTER_X / 2, min$1.sm, LINK_GUTTER_X);
4185
4178
  const ItemLink$1 = /*#__PURE__*/styled__default["default"].a.withConfig({
4186
4179
  displayName: "Breadcrumbs__ItemLink",
4187
- componentId: "sc-1uxyqsf-3"
4180
+ componentId: "sc-110rq3t-3"
4188
4181
  })(["", " text-decoration:none;&:hover{text-decoration:underline;}"], itemChild);
4189
4182
  const ItemCurrent$1 = /*#__PURE__*/styled__default["default"].span.withConfig({
4190
4183
  displayName: "Breadcrumbs__ItemCurrent",
4191
- componentId: "sc-1uxyqsf-4"
4184
+ componentId: "sc-110rq3t-4"
4192
4185
  })(["", ""], itemChild);
4193
- const ItemSeparator = /*#__PURE__*/styled__default["default"](MdKeyboardArrowRight.MdKeyboardArrowRight).withConfig({
4186
+ const ItemSeparator = /*#__PURE__*/styled__default["default"](md.MdKeyboardArrowRight).withConfig({
4194
4187
  displayName: "Breadcrumbs__ItemSeparator",
4195
- componentId: "sc-1uxyqsf-5"
4188
+ componentId: "sc-110rq3t-5"
4196
4189
  })([""]);
4197
4190
  const KoineBreadcrumbs = _a => {
4198
4191
  var {
@@ -5166,7 +5159,7 @@
5166
5159
 
5167
5160
  const CarouselCssRow = /*#__PURE__*/styled__default["default"](Row).withConfig({
5168
5161
  displayName: "CarouselCss__CarouselCssRow",
5169
- componentId: "sc-1i4c0ab-0"
5162
+ componentId: "sc-17zho30-0"
5170
5163
  })(["", " scroll-behavior:smooth;scroll-snap-type:x;-ms-overflow-style:none;scrollbar-width:none;&::-webkit-scrollbar{display:none;}"], ({
5171
5164
  $gutter: cs,
5172
5165
  theme: {
@@ -5180,7 +5173,7 @@
5180
5173
  `);
5181
5174
  const CarouselCssCol = /*#__PURE__*/styled__default["default"](Col).withConfig({
5182
5175
  displayName: "CarouselCss__CarouselCssCol",
5183
- componentId: "sc-1i4c0ab-1"
5176
+ componentId: "sc-17zho30-1"
5184
5177
  })(["", " position:relative;scroll-snap-align:", ";"], p => p.$width && `flex-basis: ${p.$width}px; min-width: ${p.$width}px;`, p => p.$snap);
5185
5178
  /**
5186
5179
  * For programmatic usage an example here @see https://stackoverflow.com/a/65902068/9122820
@@ -5507,7 +5500,7 @@
5507
5500
  return jsxRuntime.jsxs(CellOverflow, Object.assign({
5508
5501
  onClick: () => expand(true)
5509
5502
  }, {
5510
- children: [jsxRuntime.jsx(MdAdd.MdAdd, {}), eventsWithoutPlaceholders.length - maxEvents]
5503
+ children: [jsxRuntime.jsx(md.MdAdd, {}), eventsWithoutPlaceholders.length - maxEvents]
5511
5504
  }), "overflowMessage" + i);
5512
5505
  }
5513
5506
 
@@ -6880,19 +6873,19 @@
6880
6873
  htmlFor: `${props.id}-input`
6881
6874
  })).withConfig({
6882
6875
  displayName: "Collapsable__CollapsableHeadRoot",
6883
- componentId: "sc-e584ub-0"
6876
+ componentId: "sc-avx7zd-0"
6884
6877
  })(["", " width:100%;padding:0;text-align:left;display:flex;justify-content:space-between;align-items:center;cursor:pointer;"], btnStyleReset);
6885
6878
  const CollapsableHeadSpace = /*#__PURE__*/styled__default["default"].div.withConfig({
6886
6879
  displayName: "Collapsable__CollapsableHeadSpace",
6887
- componentId: "sc-e584ub-1"
6880
+ componentId: "sc-avx7zd-1"
6888
6881
  })(["flex:1;padding-left:20px;"]);
6889
6882
  const CollapsableHeadAction = /*#__PURE__*/styled__default["default"].div.withConfig({
6890
6883
  displayName: "Collapsable__CollapsableHeadAction",
6891
- componentId: "sc-e584ub-2"
6884
+ componentId: "sc-avx7zd-2"
6892
6885
  })(["padding-left:20px;"]);
6893
6886
  const CollaspableHeadLine = /*#__PURE__*/styled__default["default"](framerMotion.m.div).withConfig({
6894
6887
  displayName: "Collapsable__CollaspableHeadLine",
6895
- componentId: "sc-e584ub-3"
6888
+ componentId: "sc-avx7zd-3"
6896
6889
  })(["width:0%;height:1px;background:#bbb;"]);
6897
6890
  const collapsableHeadLineMotion = {
6898
6891
  hover: {
@@ -6904,11 +6897,11 @@
6904
6897
  };
6905
6898
  const CollapsableHeadText = /*#__PURE__*/styled__default["default"].div.withConfig({
6906
6899
  displayName: "Collapsable__CollapsableHeadText",
6907
- componentId: "sc-e584ub-4"
6900
+ componentId: "sc-avx7zd-4"
6908
6901
  })([""]);
6909
6902
  const CollapsableHeadIcon = /*#__PURE__*/styled__default["default"](framerMotion.m.div).withConfig({
6910
6903
  displayName: "Collapsable__CollapsableHeadIcon",
6911
- componentId: "sc-e584ub-5"
6904
+ componentId: "sc-avx7zd-5"
6912
6905
  })([""]);
6913
6906
  const CollapsableHead = ({
6914
6907
  $expanded,
@@ -6942,7 +6935,7 @@
6942
6935
  rotate: $expanded ? 180 : 0
6943
6936
  }
6944
6937
  }, {
6945
- children: jsxRuntime.jsx(BsBoxArrowInDown.BsBoxArrowInDown, {})
6938
+ children: jsxRuntime.jsx(bs.BsBoxArrowInDown, {})
6946
6939
  }))
6947
6940
  })]
6948
6941
  }));
@@ -6951,15 +6944,15 @@
6951
6944
  type: "checkbox"
6952
6945
  }).withConfig({
6953
6946
  displayName: "Collapsable__CollapsableInput",
6954
- componentId: "sc-e584ub-6"
6947
+ componentId: "sc-avx7zd-6"
6955
6948
  })([""]);
6956
6949
  const CollasableBodyWrap = /*#__PURE__*/styled__default["default"](disclosure.DisclosurePanel).withConfig({
6957
6950
  displayName: "Collapsable__CollasableBodyWrap",
6958
- componentId: "sc-e584ub-7"
6951
+ componentId: "sc-avx7zd-7"
6959
6952
  })(["&[hidden]{display:block;}"]);
6960
6953
  const CollapsableBodyRoot = /*#__PURE__*/styled__default["default"](framerMotion.m.div).withConfig({
6961
6954
  displayName: "Collapsable__CollapsableBodyRoot",
6962
- componentId: "sc-e584ub-8"
6955
+ componentId: "sc-avx7zd-8"
6963
6956
  })([".no-js &{transition:margin-top 0.2s ease;}.no-js ", ":checked + ", " &{margin-top:0 !important;opacity:1 !important;}"], CollapsableInput, CollasableBodyWrap);
6964
6957
  const CollapsableBody = /*#__PURE__*/react.forwardRef(function CollapsableBody(props, ref) {
6965
6958
  return jsxRuntime.jsx(CollapsableBodyRoot, Object.assign({
@@ -7063,7 +7056,7 @@
7063
7056
 
7064
7057
  const Root$6 = /*#__PURE__*/styled__default["default"].div.withConfig({
7065
7058
  displayName: "Debug__Root",
7066
- componentId: "sc-a3cz4-0"
7059
+ componentId: "sc-1dz7kfz-0"
7067
7060
  })(["background:#f4f4f4;border:1px solid #ddd;border-left:3px solid #f36d33;color:#666;page-break-inside:avoid;font-family:monospace;font-size:small;line-height:1.6;margin-bottom:1.6em;max-width:100%;overflow:auto;padding:1em 1.5em;display:block;word-wrap:break-word;"]);
7068
7061
  const Debug = ({
7069
7062
  data
@@ -7104,15 +7097,15 @@
7104
7097
  };
7105
7098
  const KoineDialogOverlay = /*#__PURE__*/styled__default["default"](dialog.DialogOverlay).withConfig({
7106
7099
  displayName: "Dialog__KoineDialogOverlay",
7107
- componentId: "sc-1mzpnts-0"
7100
+ componentId: "sc-xnwsgw-0"
7108
7101
  })(["z-index:100;position:fixed;", ""], inset0);
7109
7102
  const KoineDialogBackdrop = /*#__PURE__*/styled__default["default"](framerMotion.m.div).withConfig({
7110
7103
  displayName: "Dialog__KoineDialogBackdrop",
7111
- componentId: "sc-1mzpnts-1"
7104
+ componentId: "sc-xnwsgw-1"
7112
7105
  })(["z-index:2;position:fixed;", " backdrop-filter:blur(0px);"], inset0);
7113
7106
  const KoineDialogInner = /*#__PURE__*/styled__default["default"](framerMotion.m.div).withConfig({
7114
7107
  displayName: "Dialog__KoineDialogInner",
7115
- componentId: "sc-1mzpnts-2"
7108
+ componentId: "sc-xnwsgw-2"
7116
7109
  })(["z-index:3;position:absolute;", " overflow:hidden scroll;", ";"], inset0, p => p.$centered && `${min$1.sm} {
7117
7110
  display: flex;
7118
7111
  justify-content: center;
@@ -7121,23 +7114,23 @@
7121
7114
 
7122
7115
  const KoineDialogContent = /*#__PURE__*/styled__default["default"](dialog.DialogContent).withConfig({
7123
7116
  displayName: "Dialog__KoineDialogContent",
7124
- componentId: "sc-1mzpnts-3"
7117
+ componentId: "sc-xnwsgw-3"
7125
7118
  })(["position:relative;outline:0px;width:100%;margin:0 auto;"]);
7126
7119
  const KoineDialogCloseButton = /*#__PURE__*/styled__default["default"](IconButton).withConfig({
7127
7120
  displayName: "Dialog__KoineDialogCloseButton",
7128
- componentId: "sc-1mzpnts-4"
7121
+ componentId: "sc-xnwsgw-4"
7129
7122
  })(["position:absolute;padding:0;"]);
7130
7123
  const KoineDialogHeader = /*#__PURE__*/styled__default["default"].div.withConfig({
7131
7124
  displayName: "Dialog__KoineDialogHeader",
7132
- componentId: "sc-1mzpnts-5"
7125
+ componentId: "sc-xnwsgw-5"
7133
7126
  })(["z-index:2;position:relative;"]);
7134
7127
  const KoineDialogBody = /*#__PURE__*/styled__default["default"].div.withConfig({
7135
7128
  displayName: "Dialog__KoineDialogBody",
7136
- componentId: "sc-1mzpnts-6"
7129
+ componentId: "sc-xnwsgw-6"
7137
7130
  })(["position:relative;&:hover ", "{}"], KoineDialogCloseButton);
7138
7131
  const KoineDialogBodyChildren = /*#__PURE__*/styled__default["default"].div.withConfig({
7139
7132
  displayName: "Dialog__KoineDialogBodyChildren",
7140
- componentId: "sc-1mzpnts-7"
7133
+ componentId: "sc-xnwsgw-7"
7141
7134
  })(["position:relative;overflow:auto;"]);
7142
7135
  const KoineDialog = _a => {
7143
7136
  var {
@@ -7167,7 +7160,7 @@
7167
7160
  children: [jsxRuntime.jsx(KoineDialogCloseButton, Object.assign({
7168
7161
  onClick: onDismiss
7169
7162
  }, {
7170
- children: jsxRuntime.jsx(MdClear.MdClear, {})
7163
+ children: jsxRuntime.jsx(md.MdClear, {})
7171
7164
  })), jsxRuntime.jsx(KoineDialogBodyChildren, {
7172
7165
  children: children
7173
7166
  })]
@@ -7320,31 +7313,31 @@
7320
7313
  `;
7321
7314
  const Toggle = /*#__PURE__*/styled__default["default"].span.withConfig({
7322
7315
  displayName: "Toggle",
7323
- componentId: "sc-1nsx6c9-0"
7316
+ componentId: "sc-1oq6hcj-0"
7324
7317
  })(["position:relative;display:inline-flex;align-items:center;justify-content:center;width:2em;height:2em;margin:0 -0.3em;padding:0.3em;"]);
7325
7318
  const ToggleLabel = /*#__PURE__*/styled__default["default"].span.withConfig({
7326
7319
  displayName: "Toggle__ToggleLabel",
7327
- componentId: "sc-1nsx6c9-1"
7320
+ componentId: "sc-1oq6hcj-1"
7328
7321
  })(["margin-left:0.6em;"]);
7329
7322
  const ToggleLabelSub = /*#__PURE__*/styled__default["default"].small.withConfig({
7330
7323
  displayName: "Toggle__ToggleLabelSub",
7331
- componentId: "sc-1nsx6c9-2"
7324
+ componentId: "sc-1oq6hcj-2"
7332
7325
  })(["opacity:0.7;font-size:0.7em;;"]);
7333
7326
  const ToggleIndicatorHolder = /*#__PURE__*/styled__default["default"].span.withConfig({
7334
7327
  displayName: "Toggle__ToggleIndicatorHolder",
7335
- componentId: "sc-1nsx6c9-3"
7328
+ componentId: "sc-1oq6hcj-3"
7336
7329
  })(["position:relative;display:flex;input:focus ~ &{", "}"], stateFocus);
7337
7330
  const ToggleIndicatorBgSquare = /*#__PURE__*/styled__default["default"].svg.withConfig({
7338
7331
  displayName: "Toggle__ToggleIndicatorBgSquare",
7339
- componentId: "sc-1nsx6c9-4"
7332
+ componentId: "sc-1oq6hcj-4"
7340
7333
  })(["", ""], toggleIndicatorBgShape);
7341
7334
  const ToggleIndicatorBgCircle = /*#__PURE__*/styled__default["default"].svg.withConfig({
7342
7335
  displayName: "Toggle__ToggleIndicatorBgCircle",
7343
- componentId: "sc-1nsx6c9-5"
7336
+ componentId: "sc-1oq6hcj-5"
7344
7337
  })(["", ""], toggleIndicatorBgShape);
7345
7338
  const ToggleIndicatorFg = /*#__PURE__*/styled__default["default"].svg.withConfig({
7346
7339
  displayName: "Toggle__ToggleIndicatorFg",
7347
- componentId: "sc-1nsx6c9-6"
7340
+ componentId: "sc-1oq6hcj-6"
7348
7341
  })(["", " transform:scale(0);transition:transform 0.18s ease;input:checked + ", " &{transform:scale(1);}"], toggleIndicatorFg, ToggleIndicatorHolder);
7349
7342
  const ToggleIndicatorSquared = props => {
7350
7343
  return jsxRuntime.jsxs(ToggleIndicatorHolder, {
@@ -7553,19 +7546,19 @@
7553
7546
 
7554
7547
  const CheckboxRoot = /*#__PURE__*/styled__default["default"].label.withConfig({
7555
7548
  displayName: "Checkbox__CheckboxRoot",
7556
- componentId: "sc-zwkhrm-0"
7549
+ componentId: "sc-16l2cmd-0"
7557
7550
  })(["display:flex;align-items:center;cursor:pointer;"]);
7558
7551
  const CheckboxToggle = /*#__PURE__*/styled__default["default"](Toggle).withConfig({
7559
7552
  displayName: "Checkbox__CheckboxToggle",
7560
- componentId: "sc-zwkhrm-1"
7553
+ componentId: "sc-16l2cmd-1"
7561
7554
  })(["pointer-events:none;"]);
7562
7555
  const CheckboxIndicator = /*#__PURE__*/styled__default["default"](ToggleIndicatorSquared).withConfig({
7563
7556
  displayName: "Checkbox__CheckboxIndicator",
7564
- componentId: "sc-zwkhrm-2"
7557
+ componentId: "sc-16l2cmd-2"
7565
7558
  })([""]);
7566
7559
  const CheckboxLabel = /*#__PURE__*/styled__default["default"](ToggleLabel).withConfig({
7567
7560
  displayName: "Checkbox__CheckboxLabel",
7568
- componentId: "sc-zwkhrm-3"
7561
+ componentId: "sc-16l2cmd-3"
7569
7562
  })(["font-size:0.8em;"]);
7570
7563
  /**
7571
7564
  * All logic and invisible Inputs come from the `useToggle` hook
@@ -7588,7 +7581,7 @@
7588
7581
 
7589
7582
  const Root$5 = /*#__PURE__*/styled__default["default"].div.withConfig({
7590
7583
  displayName: "Feedback__Root",
7591
- componentId: "sc-ibaaij-0"
7584
+ componentId: "sc-1qnnzkg-0"
7592
7585
  })(["margin-top:0.2em;font-size:12px;", ""], p => p.$danger ? `color: var(--danger);` : "");
7593
7586
  const Feedback = ({
7594
7587
  $danger,
@@ -7605,11 +7598,11 @@
7605
7598
  const field = /*#__PURE__*/styled.css(["padding-bottom:20px;"]);
7606
7599
  const FieldBase = /*#__PURE__*/styled__default["default"].div.withConfig({
7607
7600
  displayName: "Field__FieldBase",
7608
- componentId: "sc-3v73wg-0"
7601
+ componentId: "sc-1eheucu-0"
7609
7602
  })(["", ""], field);
7610
7603
  const FieldRoot = /*#__PURE__*/styled__default["default"](FieldBase).withConfig({
7611
7604
  displayName: "Field__FieldRoot",
7612
- componentId: "sc-3v73wg-1"
7605
+ componentId: "sc-1eheucu-1"
7613
7606
  })(["", ""], p => {
7614
7607
  return p.$danger && `
7615
7608
  color: var(--danger);
@@ -7679,7 +7672,7 @@
7679
7672
 
7680
7673
  const FieldHint = /*#__PURE__*/styled__default["default"].div.withConfig({
7681
7674
  displayName: "FieldHint",
7682
- componentId: "sc-3pzv4y-0"
7675
+ componentId: "sc-1knmi2e-0"
7683
7676
  })(["padding-top:0.6em;opacity:0.7;font-size:75%;"]);
7684
7677
 
7685
7678
  /**
@@ -7746,19 +7739,19 @@
7746
7739
 
7747
7740
  const InputGroupRoot = /*#__PURE__*/styled__default["default"].div.withConfig({
7748
7741
  displayName: "InputGroup__InputGroupRoot",
7749
- componentId: "sc-1nm9i6a-0"
7742
+ componentId: "sc-11syh3s-0"
7750
7743
  })(["", " display:flex;", "{flex-direction:column;}"], field, max$1.sm);
7751
7744
  const InputGroupMain = /*#__PURE__*/styled__default["default"].div.withConfig({
7752
7745
  displayName: "InputGroup__InputGroupMain",
7753
- componentId: "sc-1nm9i6a-1"
7746
+ componentId: "sc-11syh3s-1"
7754
7747
  })(["flex:1;"]);
7755
7748
  const InputGroupButtonPre = /*#__PURE__*/styled__default["default"](KoineButton).withConfig({
7756
7749
  displayName: "InputGroup__InputGroupButtonPre",
7757
- componentId: "sc-1nm9i6a-2"
7750
+ componentId: "sc-11syh3s-2"
7758
7751
  })(["", "{border-bottom:0;border-bottom-left-radius:0;border-bottom-right-radius:0;}", "{border-right:0;border-top-right-radius:0;border-bottom-right-radius:0;}"], max$1.sm, min$1.sm);
7759
7752
  const InputGroupButtonPost = /*#__PURE__*/styled__default["default"](KoineButton).withConfig({
7760
7753
  displayName: "InputGroup__InputGroupButtonPost",
7761
- componentId: "sc-1nm9i6a-3"
7754
+ componentId: "sc-11syh3s-3"
7762
7755
  })(["", "{border-top:0;border-top-left-radius:0;border-top-right-radius:0;}", "{border-left:0;border-top-left-radius:0;border-bottom-left-radius:0;}"], max$1.sm, min$1.sm);
7763
7756
  const InputGroup = ({
7764
7757
  pre,
@@ -7782,11 +7775,11 @@
7782
7775
  const animationCircle = /*#__PURE__*/styled.keyframes(["0%{stroke-dasharray:1px,200px;stroke-dashoffset:0;}50%{stroke-dasharray:100px,200px;stroke-dashoffset:-15px;}100%{stroke-dasharray:100px,200px;stroke-dashoffset:-125px;}"]);
7783
7776
  const ProgressCircularSvg = /*#__PURE__*/styled__default["default"].svg.withConfig({
7784
7777
  displayName: "ProgressCircular__ProgressCircularSvg",
7785
- componentId: "sc-hfo1yr-0"
7778
+ componentId: "sc-mm1llp-0"
7786
7779
  })(["animation:", " 1.5s linear infinite;"], animationRotation);
7787
7780
  const ProgressCircularCircle = /*#__PURE__*/styled__default["default"].circle.withConfig({
7788
7781
  displayName: "ProgressCircular__ProgressCircularCircle",
7789
- componentId: "sc-hfo1yr-1"
7782
+ componentId: "sc-mm1llp-1"
7790
7783
  })(["animation:", " 1.5s linear infinite;"], animationCircle);
7791
7784
  /**
7792
7785
  * @see https://mui.com/components/progress/
@@ -7848,11 +7841,11 @@
7848
7841
 
7849
7842
  const ProgressOverlayWrap = /*#__PURE__*/styled__default["default"](framerMotion.m.div).withConfig({
7850
7843
  displayName: "ProgressOverlay__ProgressOverlayWrap",
7851
- componentId: "sc-umgj5t-0"
7844
+ componentId: "sc-19rm0co-0"
7852
7845
  })(["z-index:10000;position:fixed;top:0;left:0;right:0;bottom:0;pointer-events:none;cursor:wait;"]);
7853
7846
  const ProgressOverlayCenterer = /*#__PURE__*/styled__default["default"].div.withConfig({
7854
7847
  displayName: "ProgressOverlay__ProgressOverlayCenterer",
7855
- componentId: "sc-umgj5t-1"
7848
+ componentId: "sc-19rm0co-1"
7856
7849
  })(["position:absolute;top:0;left:0;right:0;bottom:0;display:flex;align-items:center;justify-content:center;background:var(--progress-overlay-bg);"]);
7857
7850
  const ProgressOverlay = ({
7858
7851
  running
@@ -7892,15 +7885,15 @@
7892
7885
 
7893
7886
  const FormRoot = /*#__PURE__*/styled__default["default"].form.withConfig({
7894
7887
  displayName: "Form__FormRoot",
7895
- componentId: "sc-1c6uqfh-0"
7888
+ componentId: "sc-1lzx9vu-0"
7896
7889
  })(["position:relative;"]);
7897
7890
  const FormOverlay = /*#__PURE__*/styled__default["default"].div.withConfig({
7898
7891
  displayName: "Form__FormOverlay",
7899
- componentId: "sc-1c6uqfh-1"
7892
+ componentId: "sc-1lzx9vu-1"
7900
7893
  })(["z-index:4;", " ", " background:rgba(var(--bodyBg--rgb),.8);pointer-events:none;backdrop-filter:blur(2px);"], overlay, centered);
7901
7894
  const FormFeedback = /*#__PURE__*/styled__default["default"](Alert).withConfig({
7902
7895
  displayName: "Form__FormFeedback",
7903
- componentId: "sc-1c6uqfh-2"
7896
+ componentId: "sc-1lzx9vu-2"
7904
7897
  })(["padding:2em 0;"]);
7905
7898
  const Form = _a => {
7906
7899
  var {
@@ -7981,15 +7974,15 @@
7981
7974
  const ICON_WIDTH = "2em";
7982
7975
  const PasswordInputWrap = /*#__PURE__*/styled__default["default"].div.withConfig({
7983
7976
  displayName: "Password__PasswordInputWrap",
7984
- componentId: "sc-2us5e0-0"
7977
+ componentId: "sc-qcy15i-0"
7985
7978
  })(["position:relative;"]);
7986
7979
  const PasswordInputNative = /*#__PURE__*/styled__default["default"](InputNative).withConfig({
7987
7980
  displayName: "Password__PasswordInputNative",
7988
- componentId: "sc-2us5e0-1"
7981
+ componentId: "sc-qcy15i-1"
7989
7982
  })(["position:relative;padding-right:", ";"], ICON_WIDTH);
7990
7983
  const PasswordIcon = /*#__PURE__*/styled__default["default"].span.withConfig({
7991
7984
  displayName: "Password__PasswordIcon",
7992
- componentId: "sc-2us5e0-2"
7985
+ componentId: "sc-qcy15i-2"
7993
7986
  })(["position:absolute;top:0;right:0;bottom:0;width:", ";display:flex;align-items:center;justify-content:center;cursor:pointer;opacity:0.5;"], ICON_WIDTH);
7994
7987
  const Password = /*#__PURE__*/react.forwardRef(function Password(_a, ref) {
7995
7988
  var {
@@ -8013,7 +8006,7 @@
8013
8006
  }, props)), jsxRuntime.jsx(PasswordIcon, Object.assign({
8014
8007
  onClick: () => setVisible(prev => !prev)
8015
8008
  }, {
8016
- children: visible ? jsxRuntime.jsx(ImEyeBlocked.ImEyeBlocked, {}) : jsxRuntime.jsx(ImEye.ImEye, {})
8009
+ children: visible ? jsxRuntime.jsx(im.ImEyeBlocked, {}) : jsxRuntime.jsx(im.ImEye, {})
8017
8010
  }))]
8018
8011
  })]
8019
8012
  });
@@ -8021,27 +8014,27 @@
8021
8014
 
8022
8015
  const RadioRoot = /*#__PURE__*/styled__default["default"].div.withConfig({
8023
8016
  displayName: "Radio__RadioRoot",
8024
- componentId: "sc-gv6b7r-0"
8017
+ componentId: "sc-8t3f4x-0"
8025
8018
  })([""]);
8026
8019
  const RadioLabel = /*#__PURE__*/styled__default["default"].div.withConfig({
8027
8020
  displayName: "Radio__RadioLabel",
8028
- componentId: "sc-gv6b7r-1"
8021
+ componentId: "sc-8t3f4x-1"
8029
8022
  })(["", ""], label);
8030
8023
  const RadioOptionRoot = /*#__PURE__*/styled__default["default"].label.withConfig({
8031
8024
  displayName: "Radio__RadioOptionRoot",
8032
- componentId: "sc-gv6b7r-2"
8025
+ componentId: "sc-8t3f4x-2"
8033
8026
  })(["display:flex;align-items:center;padding:0.05em;cursor:pointer;"]);
8034
8027
  const RadioToggle = /*#__PURE__*/styled__default["default"](Toggle).withConfig({
8035
8028
  displayName: "Radio__RadioToggle",
8036
- componentId: "sc-gv6b7r-3"
8029
+ componentId: "sc-8t3f4x-3"
8037
8030
  })([""]);
8038
8031
  const RadioIndicator = /*#__PURE__*/styled__default["default"](ToggleIndicatorSquared).withConfig({
8039
8032
  displayName: "Radio__RadioIndicator",
8040
- componentId: "sc-gv6b7r-4"
8033
+ componentId: "sc-8t3f4x-4"
8041
8034
  })([""]);
8042
8035
  const RadioOptionLabel = /*#__PURE__*/styled__default["default"](ToggleLabel).withConfig({
8043
8036
  displayName: "Radio__RadioOptionLabel",
8044
- componentId: "sc-gv6b7r-5"
8037
+ componentId: "sc-8t3f4x-5"
8045
8038
  })([""]);
8046
8039
  const RadioOption = /*#__PURE__*/react.forwardRef(function RadioOption(_a, ref) {
8047
8040
  var {
@@ -8087,11 +8080,11 @@
8087
8080
  const SWITCH_HANDLE_SIZE = 1;
8088
8081
  const SwitchTrack = /*#__PURE__*/styled__default["default"].span.withConfig({
8089
8082
  displayName: "Switch__SwitchTrack",
8090
- componentId: "sc-dstl69-0"
8083
+ componentId: "sc-1ep4r76-0"
8091
8084
  })(["position:relative;width:", "em;height:", "em;padding:", "em;border-radius:", "em;", " input:focus ~ &{", "}input:disabled ~ &{opacity:0.5;cursor:not-allowed;}"], SWITCH_HANDLE_SIZE * 3, SWITCH_HANDLE_SIZE * 1.5, SWITCH_GUTTER, SWITCH_HANDLE_SIZE, toggleBase, stateFocus);
8092
8085
  const SwitchHandle = /*#__PURE__*/styled__default["default"].span.withConfig({
8093
8086
  displayName: "Switch__SwitchHandle",
8094
- componentId: "sc-dstl69-1"
8087
+ componentId: "sc-1ep4r76-1"
8095
8088
  })(["position:absolute;width:", "em;height:", "em;left:", "em;margin-top:-1px;background:currentColor;opacity:0.5;border-radius:100%;transition:all 0.18s ease-in-out;input:checked + ", " &{opacity:1;left:calc(100% - ", "em - ", "em);}"], SWITCH_HANDLE_SIZE, SWITCH_HANDLE_SIZE, SWITCH_GUTTER, SwitchTrack, SWITCH_HANDLE_SIZE, SWITCH_GUTTER);
8096
8089
  /**
8097
8090
  * All logic and invisible Inputs come from the `useToggle` hook
@@ -8114,7 +8107,7 @@
8114
8107
 
8115
8108
  const TextareaNative = /*#__PURE__*/styled__default["default"].textarea.withConfig({
8116
8109
  displayName: "Textarea__TextareaNative",
8117
- componentId: "sc-xvks9s-0"
8110
+ componentId: "sc-1ht2bik-0"
8118
8111
  })(["", " ", " resize:vertical;"], inputBase, inputFocus);
8119
8112
  const Textarea = /*#__PURE__*/react.forwardRef(function Textarea(_a, ref) {
8120
8113
  var {
@@ -8136,15 +8129,15 @@
8136
8129
 
8137
8130
  const EditorRoot = /*#__PURE__*/styled__default["default"].div.withConfig({
8138
8131
  displayName: "components__EditorRoot",
8139
- componentId: "sc-yit760-0"
8132
+ componentId: "sc-l5s3z3-0"
8140
8133
  })(["", " ", ""], inputBorder, inputFocus);
8141
8134
  const EditorBarRoot = /*#__PURE__*/styled__default["default"].div.withConfig({
8142
8135
  displayName: "components__EditorBarRoot",
8143
- componentId: "sc-yit760-1"
8136
+ componentId: "sc-l5s3z3-1"
8144
8137
  })(["display:flex;justify-content:flex-end;border-bottom:1px solid rgba(0,0,0,0.1);"]);
8145
8138
  const EditorBarBtn = /*#__PURE__*/styled__default["default"](IconButton).withConfig({
8146
8139
  displayName: "components__EditorBarBtn",
8147
- componentId: "sc-yit760-2"
8140
+ componentId: "sc-l5s3z3-2"
8148
8141
  })([""]);
8149
8142
  const EditorGlobalStyles = /*#__PURE__*/styled.createGlobalStyle([".ProseMirror{", " &:focus{outline:none;}> *:first-child{margin-top:0;}}"], inputPadding);
8150
8143
 
@@ -8165,12 +8158,12 @@
8165
8158
  onClick: e => handleClick(e, "Bold"),
8166
8159
  className: editor.isActive("bold") ? "is-active" : ""
8167
8160
  }, {
8168
- children: jsxRuntime.jsx(MdFormatBold.MdFormatBold, {})
8161
+ children: jsxRuntime.jsx(md.MdFormatBold, {})
8169
8162
  })), jsxRuntime.jsx(EditorBarBtn, Object.assign({
8170
8163
  onClick: e => handleClick(e, "Italic"),
8171
8164
  className: editor.isActive("bold") ? "is-active" : ""
8172
8165
  }, {
8173
- children: jsxRuntime.jsx(MdFormatItalic.MdFormatItalic, {})
8166
+ children: jsxRuntime.jsx(md.MdFormatItalic, {})
8174
8167
  }))]
8175
8168
  });
8176
8169
  };
@@ -8196,7 +8189,7 @@
8196
8189
 
8197
8190
  const Root$4 = /*#__PURE__*/styled__default["default"].div.withConfig({
8198
8191
  displayName: "TextareaRich__Root",
8199
- componentId: "sc-viqw1n-0"
8192
+ componentId: "sc-o5bcek-0"
8200
8193
  })([".ProseMirror{max-height:160px;overflow:auto;}.EditorContent{position:relative;&:after{position:absolute;content:\"\";bottom:0;left:0;right:16px;height:3em;background:linear-gradient(0deg,white,white 33%,transparent);pointer-events:none;}}"]);
8201
8194
  const TextareaRich = /*#__PURE__*/react.forwardRef(function TextareaRich(_a, ref) {
8202
8195
  var {
@@ -8387,7 +8380,7 @@
8387
8380
 
8388
8381
  const HamburgerLabel = /*#__PURE__*/styled__default["default"].div.withConfig({
8389
8382
  displayName: "Hamburger__HamburgerLabel",
8390
- componentId: "sc-13f3yed-0"
8383
+ componentId: "sc-jjvtrk-0"
8391
8384
  })(["position:absolute;top:30px;font-size:", ";text-transform:uppercase;left:7px;letter-spacing:3px;"], ({
8392
8385
  $toggled
8393
8386
  }) => $toggled ? "0" : "9px");
@@ -8484,7 +8477,7 @@
8484
8477
 
8485
8478
  const KoineImg = /*#__PURE__*/styled__default["default"].img.withConfig({
8486
8479
  displayName: "Img__KoineImg",
8487
- componentId: "sc-17ygzli-0"
8480
+ componentId: "sc-xk4cex-0"
8488
8481
  })([""]); // /**
8489
8482
  // * Replacement core component for native `<img />`
8490
8483
  // *
@@ -8516,7 +8509,7 @@
8516
8509
 
8517
8510
  const KoineLink = /*#__PURE__*/styled__default["default"].a.withConfig({
8518
8511
  displayName: "Link__KoineLink",
8519
- componentId: "sc-1l7zv6f-0"
8512
+ componentId: "sc-ia8uk7-0"
8520
8513
  })([""]);
8521
8514
 
8522
8515
  const LinkBlankA = /*#__PURE__*/styled__default["default"].a.attrs({
@@ -8524,13 +8517,13 @@
8524
8517
  rel: "noopener"
8525
8518
  }).withConfig({
8526
8519
  displayName: "LinkBlank__LinkBlankA",
8527
- componentId: "sc-1ke7vmk-0"
8520
+ componentId: "sc-13mh7z7-0"
8528
8521
  })([""]); // TODO: use `touch` class on <html> instead of relying on screenwidth,
8529
8522
  // probably implement a lean Modernizr like thing with react-helmet
8530
8523
 
8531
- const LinkBlankIcon = /*#__PURE__*/styled__default["default"](MdLaunch.MdLaunch).withConfig({
8524
+ const LinkBlankIcon = /*#__PURE__*/styled__default["default"](md.MdLaunch).withConfig({
8532
8525
  displayName: "LinkBlank__LinkBlankIcon",
8533
- componentId: "sc-1ke7vmk-1"
8526
+ componentId: "sc-13mh7z7-1"
8534
8527
  })(["color:var(---grey100);font-size:inherit;margin-left:3px;line-height:inherit;vertical-align:middle;width:0px;transition:width 0.1s ease-in-out;", "{width:20px;opacity:0.8;}"], max$1.sm);
8535
8528
  const LinkBlank = _a => {
8536
8529
  var {
@@ -8565,7 +8558,7 @@
8565
8558
 
8566
8559
  const Root$3 = /*#__PURE__*/styled__default["default"].nav.withConfig({
8567
8560
  displayName: "PaginationNav__Root",
8568
- componentId: "sc-ydvvbf-0"
8561
+ componentId: "sc-yp3m0g-0"
8569
8562
  })(["display:flex;align-items:center;justify-content:center;padding:20px 0 40px;font-weight:600;& a{text-decoration:none;}"]);
8570
8563
  const item = `
8571
8564
  display: block;
@@ -8573,24 +8566,24 @@
8573
8566
  `;
8574
8567
  const ItemCurrent = /*#__PURE__*/styled__default["default"].span.withConfig({
8575
8568
  displayName: "PaginationNav__ItemCurrent",
8576
- componentId: "sc-ydvvbf-1"
8569
+ componentId: "sc-yp3m0g-1"
8577
8570
  })(["", " background:var(--accent400);border-radius:2px;"], item);
8578
8571
  const ItemLink = /*#__PURE__*/styled__default["default"].a.withConfig({
8579
8572
  displayName: "PaginationNav__ItemLink",
8580
- componentId: "sc-ydvvbf-2"
8573
+ componentId: "sc-yp3m0g-2"
8581
8574
  })(["", " ", ""], item, props => props.prev ? "color: var(--grey100);" : "");
8582
8575
  const DotsSeparator = /*#__PURE__*/styled__default["default"].span.withConfig({
8583
8576
  displayName: "PaginationNav__DotsSeparator",
8584
- componentId: "sc-ydvvbf-3"
8577
+ componentId: "sc-yp3m0g-3"
8585
8578
  })(["color:var(--grey100);"]);
8586
8579
  const arrow = `display: flex; font-size: 20px;`;
8587
8580
  const ItemPrev = /*#__PURE__*/styled__default["default"].a.withConfig({
8588
8581
  displayName: "PaginationNav__ItemPrev",
8589
- componentId: "sc-ydvvbf-4"
8582
+ componentId: "sc-yp3m0g-4"
8590
8583
  })(["", ""], arrow);
8591
8584
  const ItemNext = /*#__PURE__*/styled__default["default"].a.withConfig({
8592
8585
  displayName: "PaginationNav__ItemNext",
8593
- componentId: "sc-ydvvbf-5"
8586
+ componentId: "sc-yp3m0g-5"
8594
8587
  })(["", ""], arrow);
8595
8588
  /*
8596
8589
  * Possible outcomes:
@@ -8657,7 +8650,7 @@
8657
8650
  as: Link,
8658
8651
  href: `${baseUrl}/${prevPage}`
8659
8652
  }, {
8660
- children: jsxRuntime.jsx(CgArrowLeftR.CgArrowLeftR, {})
8653
+ children: jsxRuntime.jsx(cg.CgArrowLeftR, {})
8661
8654
  })), firstPage !== currentPage && jsxRuntime.jsx(ItemLink, Object.assign({
8662
8655
  as: Link,
8663
8656
  href: `${baseUrl}`,
@@ -8687,18 +8680,18 @@
8687
8680
  as: Link,
8688
8681
  href: `${baseUrl}/${nextPage}`
8689
8682
  }, {
8690
- children: jsxRuntime.jsx(CgArrowRightR.CgArrowRightR, {})
8683
+ children: jsxRuntime.jsx(cg.CgArrowRightR, {})
8691
8684
  }))]
8692
8685
  });
8693
8686
  };
8694
8687
 
8695
8688
  const Root$2 = /*#__PURE__*/styled__default["default"].div.withConfig({
8696
8689
  displayName: "PaginationResults__Root",
8697
- componentId: "sc-sg84c7-0"
8690
+ componentId: "sc-1q72gw8-0"
8698
8691
  })([""]);
8699
8692
  const Inner = /*#__PURE__*/styled__default["default"](framerMotion.m.div).withConfig({
8700
8693
  displayName: "PaginationResults__Inner",
8701
- componentId: "sc-sg84c7-1"
8694
+ componentId: "sc-1q72gw8-1"
8702
8695
  })([""]);
8703
8696
  const PaginationResults = ({
8704
8697
  children
@@ -8734,24 +8727,24 @@
8734
8727
 
8735
8728
  const Pill = /*#__PURE__*/styled__default["default"].div.withConfig({
8736
8729
  displayName: "Pill",
8737
- componentId: "sc-lqlli5-0"
8730
+ componentId: "sc-1lkc0vs-0"
8738
8731
  })(["display:inline-block;padding:5px 10px;margin:0 0.5em 0.5em 0;border-radius:2px;text-decoration:none;font-size:13px;font-weight:600;"]);
8739
8732
  const PillGreyLight = /*#__PURE__*/styled__default["default"](Pill).withConfig({
8740
8733
  displayName: "Pill__PillGreyLight",
8741
- componentId: "sc-lqlli5-1"
8734
+ componentId: "sc-1lkc0vs-1"
8742
8735
  })(["background:var(--grey800);color:var(--grey100);&:hover{color:white;background:var(--grey300);}"]);
8743
8736
  const PillAccentLight = /*#__PURE__*/styled__default["default"](Pill).withConfig({
8744
8737
  displayName: "Pill__PillAccentLight",
8745
- componentId: "sc-lqlli5-2"
8738
+ componentId: "sc-1lkc0vs-2"
8746
8739
  })(["background:var(--accent400);color:var(--grey100);&:hover{color:#fff;background:var(--accent300);}"]);
8747
8740
  const PillAccentLightOutlined = /*#__PURE__*/styled__default["default"](Pill).withConfig({
8748
8741
  displayName: "Pill__PillAccentLightOutlined",
8749
- componentId: "sc-lqlli5-3"
8742
+ componentId: "sc-1lkc0vs-3"
8750
8743
  })(["border:1px solid var(--accent300);color:var(--accent200);&:hover{color:#fff;background:var(--accent300);}"]);
8751
8744
 
8752
8745
  const RatingStarRoot = /*#__PURE__*/styled__default["default"].svg.withConfig({
8753
8746
  displayName: "Rating__RatingStarRoot",
8754
- componentId: "sc-crwndz-0"
8747
+ componentId: "sc-1bacl73-0"
8755
8748
  })(["display:inline-block;vertical-align:middle;margin-right:1px;"]);
8756
8749
  const RatingStar = _a => {
8757
8750
  var {
@@ -8798,19 +8791,19 @@
8798
8791
  };
8799
8792
  const RatingDetails = /*#__PURE__*/styled__default["default"].span.withConfig({
8800
8793
  displayName: "Rating__RatingDetails",
8801
- componentId: "sc-crwndz-1"
8794
+ componentId: "sc-1bacl73-1"
8802
8795
  })(["padding-left:0.5em;font-size:12px;color:var(--grey100);&:before{content:\"(\";}&:after{content:\")\";}"]);
8803
8796
  const RatingCount = /*#__PURE__*/styled__default["default"].span.withConfig({
8804
8797
  displayName: "Rating__RatingCount",
8805
- componentId: "sc-crwndz-2"
8798
+ componentId: "sc-1bacl73-2"
8806
8799
  })([""]);
8807
8800
  const RatingValue = /*#__PURE__*/styled__default["default"].span.withConfig({
8808
8801
  displayName: "Rating__RatingValue",
8809
- componentId: "sc-crwndz-3"
8802
+ componentId: "sc-1bacl73-3"
8810
8803
  })(["display:none;"]);
8811
8804
  const RatingRoot = /*#__PURE__*/styled__default["default"].div.withConfig({
8812
8805
  displayName: "Rating__RatingRoot",
8813
- componentId: "sc-crwndz-4"
8806
+ componentId: "sc-1bacl73-4"
8814
8807
  })(["display:flex;align-items:center;&:hover ", "{display:inline-block;}"], RatingValue);
8815
8808
  const Rating = ({
8816
8809
  value: _value = 0,
@@ -8947,7 +8940,7 @@
8947
8940
 
8948
8941
  const SidebarWrapper = /*#__PURE__*/styled__default["default"].div.withConfig({
8949
8942
  displayName: "Sidebar__SidebarWrapper",
8950
- componentId: "sc-1ouq5nf-0"
8943
+ componentId: "sc-1uyprzh-0"
8951
8944
  })(["", ""], p => `${max$1.md} {
8952
8945
  z-index: 20;
8953
8946
  display: flex;
@@ -8967,7 +8960,7 @@
8967
8960
  }`);
8968
8961
  const SidebarToggle = /*#__PURE__*/styled__default["default"].span.withConfig({
8969
8962
  displayName: "Sidebar__SidebarToggle",
8970
- componentId: "sc-1ouq5nf-1"
8963
+ componentId: "sc-1uyprzh-1"
8971
8964
  })(["z-index:21;position:fixed;right:var(--gutter-half);bottom:var(--gutter-half);", "{display:none;}path{stroke:currentColor;}"], min$1.md);
8972
8965
  const Sidebar = ({
8973
8966
  children
@@ -8984,7 +8977,7 @@
8984
8977
  children: jsxRuntime.jsx(IconButtonFab, Object.assign({
8985
8978
  "$variant": "contained"
8986
8979
  }, {
8987
- children: open ? jsxRuntime.jsx(CgCloseR.CgCloseR, {}) : jsxRuntime.jsx(GrFolderOpen.GrFolderOpen, {})
8980
+ children: open ? jsxRuntime.jsx(cg.CgCloseR, {}) : jsxRuntime.jsx(gr.GrFolderOpen, {})
8988
8981
  }))
8989
8982
  })), jsxRuntime.jsx(SidebarWrapper, Object.assign({
8990
8983
  "$open": open,
@@ -8997,8 +8990,8 @@
8997
8990
 
8998
8991
  const Root$1 = /*#__PURE__*/styled__default["default"].div.withConfig({
8999
8992
  displayName: "Spacing__Root",
9000
- componentId: "sc-1va4yn4-0"
9001
- })(["", " ", ""], p => p.$top && p.theme.spacingTop(...p.$top), p => p.$bottom && p.theme.spacingBottom(...p.$bottom));
8993
+ componentId: "sc-12si043-0"
8994
+ })(["", " ", ""], p => p.$top && spacingTop.call(p.theme, ...p.$top), p => p.$bottom && spacingBottom.call(p.theme, ...p.$bottom));
9002
8995
 
9003
8996
  const extractDirectionArgs = raw => {
9004
8997
  const [size, factor, property, devices] = raw.split(":");
@@ -9070,7 +9063,7 @@
9070
9063
 
9071
9064
  const TabsStyled = /*#__PURE__*/styled__default["default"](tabs.Tabs).withConfig({
9072
9065
  displayName: "Tabs__TabsStyled",
9073
- componentId: "sc-6cl9w0-0"
9066
+ componentId: "sc-16y06a0-0"
9074
9067
  })(["", "{display:flex;", "}"], min$1.sm, p => p.$vertical && "flex-direction: column;");
9075
9068
  const Tabs = props => {
9076
9069
  return jsxRuntime.jsx(framerMotion.AnimateSharedLayout, {
@@ -9079,19 +9072,19 @@
9079
9072
  };
9080
9073
  const TabList = /*#__PURE__*/styled__default["default"](tabs.TabList).withConfig({
9081
9074
  displayName: "Tabs__TabList",
9082
- componentId: "sc-6cl9w0-1"
9075
+ componentId: "sc-16y06a0-1"
9083
9076
  })(["display:flex;flex-direction:column;", "{border-right:1px solid var(--grey800);}"], min$1.sm);
9084
9077
  const TabWrap = /*#__PURE__*/styled__default["default"](tabs.Tab).withConfig({
9085
9078
  displayName: "Tabs__TabWrap",
9086
- componentId: "sc-6cl9w0-2"
9079
+ componentId: "sc-16y06a0-2"
9087
9080
  })(["", " position:relative;justify-content:flex-end;padding:0.7em;margin-bottom:1em;font-weight:bold;color:", ";", "{padding-right:var(--gutter-half);}&:hover{color:", ";}"], btnStyleReset, p => p.$active ? "var(--accent200)" : "var(--grey300)", min$1.sm, p => p.$active ? "var(--accent200)" : "var(--accent300)");
9088
9081
  const TabText = /*#__PURE__*/styled__default["default"].span.withConfig({
9089
9082
  displayName: "Tabs__TabText",
9090
- componentId: "sc-6cl9w0-3"
9083
+ componentId: "sc-16y06a0-3"
9091
9084
  })(["position:relative;z-index:1;"]);
9092
9085
  const TabUnderline = /*#__PURE__*/styled__default["default"](UnderlineSkewed).withConfig({
9093
9086
  displayName: "Tabs__TabUnderline",
9094
- componentId: "sc-6cl9w0-4"
9087
+ componentId: "sc-16y06a0-4"
9095
9088
  })([""]);
9096
9089
  const Tab = _a => {
9097
9090
  var {
@@ -9117,16 +9110,16 @@
9117
9110
  };
9118
9111
  const TabPanels = /*#__PURE__*/styled__default["default"](tabs.TabPanels).withConfig({
9119
9112
  displayName: "Tabs__TabPanels",
9120
- componentId: "sc-6cl9w0-5"
9113
+ componentId: "sc-16y06a0-5"
9121
9114
  })(["flex:1;"]);
9122
9115
  const TabPanel = /*#__PURE__*/styled__default["default"](tabs.TabPanel).withConfig({
9123
9116
  displayName: "Tabs__TabPanel",
9124
- componentId: "sc-6cl9w0-6"
9117
+ componentId: "sc-16y06a0-6"
9125
9118
  })(["", "{padding-left:var(--gutter-half);}"], min$1.sm);
9126
9119
 
9127
9120
  const CopyPasteVisible = /*#__PURE__*/styled__default["default"].span.withConfig({
9128
9121
  displayName: "CopyPasteVisible",
9129
- componentId: "sc-1o5i7oc-0"
9122
+ componentId: "sc-1r2c256-0"
9130
9123
  })(["color:transparent;opacity:0;font-size:0;"]);
9131
9124
 
9132
9125
  const p = `
@@ -9161,48 +9154,48 @@
9161
9154
  `;
9162
9155
  const P = /*#__PURE__*/styled__default["default"].div.withConfig({
9163
9156
  displayName: "Native__P",
9164
- componentId: "sc-197h14l-0"
9157
+ componentId: "sc-1nx3nmy-0"
9165
9158
  })(["", ""], p);
9166
9159
  const H1 = /*#__PURE__*/styled__default["default"].div.withConfig({
9167
9160
  displayName: "Native__H1",
9168
- componentId: "sc-197h14l-1"
9161
+ componentId: "sc-1nx3nmy-1"
9169
9162
  })(["", ""], h1);
9170
9163
  const H2 = /*#__PURE__*/styled__default["default"].div.withConfig({
9171
9164
  displayName: "Native__H2",
9172
- componentId: "sc-197h14l-2"
9165
+ componentId: "sc-1nx3nmy-2"
9173
9166
  })(["", ""], h2);
9174
9167
  const H3 = /*#__PURE__*/styled__default["default"].div.withConfig({
9175
9168
  displayName: "Native__H3",
9176
- componentId: "sc-197h14l-3"
9169
+ componentId: "sc-1nx3nmy-3"
9177
9170
  })(["", ""], h3);
9178
9171
  const H4 = /*#__PURE__*/styled__default["default"].div.withConfig({
9179
9172
  displayName: "Native__H4",
9180
- componentId: "sc-197h14l-4"
9173
+ componentId: "sc-1nx3nmy-4"
9181
9174
  })(["", ""], h4);
9182
9175
 
9183
9176
  const Root = /*#__PURE__*/styled__default["default"].div.withConfig({
9184
9177
  displayName: "ReadMore__Root",
9185
- componentId: "sc-1klncrk-0"
9178
+ componentId: "sc-wgc8of-0"
9186
9179
  })([""]);
9187
9180
  const Content = /*#__PURE__*/styled__default["default"].div.withConfig({
9188
9181
  displayName: "ReadMore__Content",
9189
- componentId: "sc-1klncrk-1"
9182
+ componentId: "sc-wgc8of-1"
9190
9183
  })(["& p:first-child{margin-top:0;}"]);
9191
9184
  const BtnWrap = /*#__PURE__*/styled__default["default"].span.withConfig({
9192
9185
  displayName: "ReadMore__BtnWrap",
9193
- componentId: "sc-1klncrk-2"
9186
+ componentId: "sc-wgc8of-2"
9194
9187
  })(["display:flex;justify-content:flex-end;transition:transform 0.18s ease-in-out;text-align:right;transform:translateY(", ");opacity:", ";"], p => p.$expanded ? "0" : "-100%", p => p.$expanded ? 0 : 1);
9195
9188
  const BtnFader = /*#__PURE__*/styled__default["default"].div.withConfig({
9196
9189
  displayName: "ReadMore__BtnFader",
9197
- componentId: "sc-1klncrk-3"
9190
+ componentId: "sc-wgc8of-3"
9198
9191
  })(["width:30%;transition:transform 0.18s ease-in-out;background:linear-gradient(45deg,transparent 50%,", " 70%);"], p => p.$bg);
9199
9192
  const Btn = /*#__PURE__*/styled__default["default"].span.withConfig({
9200
9193
  displayName: "ReadMore__Btn",
9201
- componentId: "sc-1klncrk-4"
9194
+ componentId: "sc-wgc8of-4"
9202
9195
  })(["padding:0 10px 0 10px;line-height:", ";background:var(--bodyBg);color:var(--grey600);white-space:nowrap;font-size:", "px;cursor:pointer;"], p => p.$lineHeight ? p.$lineHeight : "inherit", p => p.$fontSize);
9203
9196
  const BtnIcon = /*#__PURE__*/styled__default["default"].span.withConfig({
9204
9197
  displayName: "ReadMore__BtnIcon",
9205
- componentId: "sc-1klncrk-5"
9198
+ componentId: "sc-wgc8of-5"
9206
9199
  })(["display:inline-block;margin:0 0 0 4px;transition:transform 0.18s ease-in-out;", ";font-size:", "px;"], p => p.$expanded ? "transform: rotate(180deg);" : "", p => p.$fontSize);
9207
9200
  const ReadMore = _a => {
9208
9201
  var {