@koine/react 1.0.3 → 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.
- package/Alert/Alert.js +18 -0
- package/Alert/index.js +1 -0
- package/Animations/Reveal.js +17 -0
- package/Animations/Underline.js +15 -0
- package/Animations/index.js +3 -0
- package/Animations/useReveal.js +70 -0
- package/Autocomplete/AutocompleteDownshift.js +158 -0
- package/Autocomplete/AutocompleteDownshiftMultiselect.js +353 -0
- package/Autocomplete/AutocompleteMui.js +172 -0
- package/Autocomplete/AutocompleteReach.js +112 -0
- package/Autocomplete/components.js +89 -0
- package/Autocomplete/helpers.js +28 -0
- package/Autocomplete/index.js +3 -0
- package/Bg/BgColor.js +33 -0
- package/Bg/BgPhoto.js +59 -0
- package/Bg/BgSvg.js +15 -0
- package/Bg/index.js +3 -0
- package/Breadcrumbs/Breadcrumbs.js +70 -0
- package/Breadcrumbs/index.js +1 -0
- package/Buttons/Button.js +79 -0
- package/Buttons/ButtonComposite.d.ts +1 -1
- package/Buttons/ButtonComposite.js +53 -0
- package/Buttons/ButtonFab.js +8 -0
- package/Buttons/ButtonLink.js +16 -0
- package/Buttons/IconButton.js +19 -0
- package/Buttons/index.js +5 -0
- package/Calendar/CalendarDaygridCell.js +52 -0
- package/Calendar/CalendarDaygridNav.js +23 -0
- package/Calendar/CalendarDaygridTable.js +49 -0
- package/Calendar/CalendarLegend.js +12 -0
- package/Calendar/calendar-api-google.js +97 -0
- package/Calendar/index.js +6 -0
- package/Calendar/types.js +1 -0
- package/Calendar/useCalendar.js +166 -0
- package/Calendar/utils.js +197 -0
- package/Carousel/Carousel.js +378 -0
- package/Carousel/CarouselCss.js +39 -0
- package/Carousel/index.js +1 -0
- package/Collapsable/Collapsable.js +132 -0
- package/Collapsable/index.js +1 -0
- package/Debug/Debug.js +21 -0
- package/Debug/index.js +1 -0
- package/Dialog/Dialog.js +93 -0
- package/Dialog/index.js +1 -0
- package/Editor/Editor--tiptap.js +21 -0
- package/Editor/components.d.ts +1 -2
- package/Editor/components.js +28 -0
- package/Editor/index.js +1 -0
- package/Favicon/FaviconTags.js +14 -0
- package/Favicon/index.js +1 -0
- package/Forms/Checkbox/Checkbox.js +24 -0
- package/Forms/Checkbox/index.js +1 -0
- package/Forms/Feedback/Feedback.js +10 -0
- package/Forms/Feedback/index.js +1 -0
- package/Forms/Field/Field.js +61 -0
- package/Forms/Field/FieldControl.js +45 -0
- package/Forms/Field/FieldHint.js +6 -0
- package/Forms/Field/index.js +2 -0
- package/Forms/Form/Form.js +64 -0
- package/Forms/Form/index.js +1 -0
- package/Forms/Input/Input.js +25 -0
- package/Forms/Input/index.js +1 -0
- package/Forms/InputGroup/InputGroup.js +42 -0
- package/Forms/InputGroup/index.js +1 -0
- package/Forms/Label/Label.js +24 -0
- package/Forms/Label/index.js +1 -0
- package/Forms/Password/Password.js +32 -0
- package/Forms/Password/index.js +1 -0
- package/Forms/Radio/Radio.js +31 -0
- package/Forms/Radio/index.js +1 -0
- package/Forms/Switch/Switch.js +50 -0
- package/Forms/Switch/index.js +1 -0
- package/Forms/Textarea/Textarea.js +15 -0
- package/Forms/Textarea/TextareaRich.js +44 -0
- package/Forms/Textarea/index.js +2 -0
- package/Forms/Toggle/Toggle.js +79 -0
- package/Forms/Toggle/index.js +1 -0
- package/Forms/Toggle/useToggle.js +143 -0
- package/Forms/antispam.js +56 -0
- package/Forms/helpers.js +44 -0
- package/Forms/index.js +17 -0
- package/Forms/styles.js +60 -0
- package/Gauge/Gauge.js +102 -0
- package/Grid/Grid.js +79 -0
- package/Grid/index.js +1 -0
- package/Hamburger/Hamburger.js +55 -0
- package/Hamburger/index.js +1 -0
- package/Header/index.js +1 -0
- package/Header/useHeader.js +30 -0
- package/Hidden/Hidden.js +14 -0
- package/Hidden/index.js +1 -0
- package/Img/Img.js +34 -0
- package/Img/index.js +1 -0
- package/Link/Link.js +2 -0
- package/Link/LinkBlank.d.ts +1 -1
- package/Link/LinkBlank.js +28 -0
- package/Link/index.js +2 -0
- package/Menu/Menu.js +11 -0
- package/Menu/index.js +1 -0
- package/MenuItem/MenuItem.js +20 -0
- package/MenuItem/index.js +1 -0
- package/Meta/Meta.js +4 -0
- package/Meta/index.js +1 -0
- package/NoJs/NoJs.js +6 -0
- package/NoJs/index.js +1 -0
- package/Pagination/PaginationNav.js +87 -0
- package/Pagination/PaginationResults.js +10 -0
- package/Pagination/index.js +2 -0
- package/Pill/Pill.js +37 -0
- package/Pill/index.js +1 -0
- package/Progress/ProgressCircular.js +38 -0
- package/Progress/ProgressLinear.js +34 -0
- package/Progress/ProgressOverlay.js +40 -0
- package/Progress/index.js +3 -0
- package/Rating/Rating.js +93 -0
- package/Rating/index.js +45 -0
- package/Select/SelectDownshift.js +38 -0
- package/Select/components.js +20 -0
- package/Select/index.js +3 -0
- package/Sidebar/Sidebar.js +48 -0
- package/Sidebar/index.js +1 -0
- package/Spacing/Spacing.js +47 -0
- package/Spacing/index.js +1 -0
- package/Sticky/Sticky.js +220 -0
- package/Sticky/StickyCss.js +6 -0
- package/Sticky/index.js +1 -0
- package/Tabs/Tabs.js +67 -0
- package/Tabs/index.js +1 -0
- package/Typography/CopyPasteVisible.js +6 -0
- package/Typography/Native.js +47 -0
- package/Typography/ReadMore.js +71 -0
- package/Typography/TextLoop.js +45 -0
- package/Typography/TypeStairs.js +46 -0
- package/Typography/index.js +5 -0
- package/helpers/index.js +19 -0
- package/hooks/index.js +5 -0
- package/hooks/useDateLocale.js +30 -0
- package/hooks/useFocus.js +11 -0
- package/hooks/usePrevious.js +8 -0
- package/hooks/useTraceUpdate.js +20 -0
- package/hooks/useWindowSize.js +13 -0
- package/index.js +36 -0
- package/index.umd.js +234 -257
- package/package.json +15 -9
- package/styles/Body.js +17 -0
- package/styles/Global.js +50 -0
- package/styles/classed.js +11 -0
- package/styles/index.js +7 -0
- package/styles/media.js +150 -0
- package/styles/spacing.d.ts +6 -6
- package/styles/spacing.js +46 -0
- package/styles/styled.d.ts +2 -2
- package/styles/styled.js +27 -0
- package/styles/theme--vanilla.js +53 -0
- package/styles/theme.d.ts +0 -7
- package/styles/theme.js +38 -0
- package/types.js +1 -0
- package/typings.d.ts +21 -0
- package/index.esm.js +0 -9472
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('
|
|
3
|
-
typeof define === 'function' && define.amd ? define(['exports', 'react/jsx-runtime', 'styled-components', 'framer-motion', 'react', '@mui/base/AutocompleteUnstyled', '@koine/utils', '
|
|
4
|
-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.React = {}, global.jsxRuntime, global.styled, global.framerMotion, global.React, global.AutocompleteUnstyled, global.utils, global.
|
|
5
|
-
})(this, (function (exports, jsxRuntime, styled, framerMotion, react, AutocompleteUnstyled, utils,
|
|
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: "
|
|
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: "
|
|
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-
|
|
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-
|
|
1863
|
+
componentId: "sc-35culb-0"
|
|
1864
1864
|
})(["", ""], labelMaterial);
|
|
1865
1865
|
|
|
1866
|
-
function colStretch(direction,
|
|
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-
|
|
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-
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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(
|
|
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: "
|
|
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-
|
|
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-
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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-
|
|
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-
|
|
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: "
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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,11 +2651,9 @@
|
|
|
2653
2651
|
|
|
2654
2652
|
const BodyMain = /*#__PURE__*/styled__default["default"].main.withConfig({
|
|
2655
2653
|
displayName: "Body__BodyMain",
|
|
2656
|
-
componentId: "sc-
|
|
2654
|
+
componentId: "sc-1fva3zb-1"
|
|
2657
2655
|
})(["flex:1;"]);
|
|
2658
2656
|
|
|
2659
|
-
let _$1 = t => t,
|
|
2660
|
-
_t$1;
|
|
2661
2657
|
/**
|
|
2662
2658
|
* App global style
|
|
2663
2659
|
*
|
|
@@ -2707,7 +2703,7 @@
|
|
|
2707
2703
|
-webkit-tap-highlight-color: transparent;
|
|
2708
2704
|
}
|
|
2709
2705
|
`;
|
|
2710
|
-
const StylesGlobal = /*#__PURE__*/styled.createGlobalStyle(
|
|
2706
|
+
const StylesGlobal = /*#__PURE__*/styled.createGlobalStyle(["", ""], stylesGlobal);
|
|
2711
2707
|
|
|
2712
2708
|
var anObject$b = anObject$h;
|
|
2713
2709
|
|
|
@@ -3633,57 +3629,6 @@
|
|
|
3633
3629
|
parseFloat: $parseFloat
|
|
3634
3630
|
});
|
|
3635
3631
|
|
|
3636
|
-
function _spacing(theme, size = "md", factor = 1, property = "padding", direction = "top", devices = ["mobile", "tablet", "desktop"]) {
|
|
3637
|
-
const {
|
|
3638
|
-
breakpoints,
|
|
3639
|
-
devices: DEVICES,
|
|
3640
|
-
spaces: SPACES
|
|
3641
|
-
} = theme;
|
|
3642
|
-
let css = "";
|
|
3643
|
-
const prop = `${property}-${direction}`;
|
|
3644
|
-
|
|
3645
|
-
if (devices === ["mobile"]) {
|
|
3646
|
-
css += `@media(max-width: ${breakpoints[DEVICES.mobile]}px){
|
|
3647
|
-
${prop}: ${SPACES["mobile"][size] * factor}px;
|
|
3648
|
-
}`;
|
|
3649
|
-
} else {
|
|
3650
|
-
for (let index = 0; index < devices.length; index++) {
|
|
3651
|
-
const device = devices[index];
|
|
3652
|
-
|
|
3653
|
-
if (device === "mobile") {
|
|
3654
|
-
css += `${prop}: ${SPACES[device][size] * factor}px;`;
|
|
3655
|
-
} else if (device === "tablet") {
|
|
3656
|
-
css += `@media(min-width: ${breakpoints[DEVICES.tablet]}px){
|
|
3657
|
-
${prop}: ${SPACES["tablet"][size] * factor}px;
|
|
3658
|
-
}`;
|
|
3659
|
-
} else if (device === "desktop") {
|
|
3660
|
-
css += `@media(min-width: ${breakpoints[DEVICES.desktop]}px){
|
|
3661
|
-
${prop}: ${SPACES["desktop"][size] * factor}px;
|
|
3662
|
-
}`;
|
|
3663
|
-
}
|
|
3664
|
-
}
|
|
3665
|
-
}
|
|
3666
|
-
|
|
3667
|
-
return css;
|
|
3668
|
-
}
|
|
3669
|
-
|
|
3670
|
-
function spacing(size, factor, property, direction, devices) {
|
|
3671
|
-
if (direction === "vertical") {
|
|
3672
|
-
return _spacing(this, size, factor, property, "top", devices) + _spacing(this, size, factor, property, "bottom", devices);
|
|
3673
|
-
}
|
|
3674
|
-
|
|
3675
|
-
return _spacing(this, size, factor, property, direction, devices);
|
|
3676
|
-
}
|
|
3677
|
-
function spacingTop(size, factor, property, devices) {
|
|
3678
|
-
return _spacing(this, size, factor, property, "top", devices);
|
|
3679
|
-
}
|
|
3680
|
-
function spacingBottom(size, factor, property, devices) {
|
|
3681
|
-
return _spacing(this, size, factor, property, "bottom", devices);
|
|
3682
|
-
}
|
|
3683
|
-
function spacingVertical(size, factor, property, devices) {
|
|
3684
|
-
return _spacing(this, size, factor, property, "top", devices) + _spacing(this, size, factor, property, "bottom", devices);
|
|
3685
|
-
}
|
|
3686
|
-
|
|
3687
3632
|
const DEFAULT_BREAKPOINTS = {
|
|
3688
3633
|
xs: 0,
|
|
3689
3634
|
sm: 440,
|
|
@@ -3716,12 +3661,7 @@
|
|
|
3716
3661
|
mobile: "sm",
|
|
3717
3662
|
tablet: "md",
|
|
3718
3663
|
desktop: "lg"
|
|
3719
|
-
}
|
|
3720
|
-
spacing,
|
|
3721
|
-
spacingTop,
|
|
3722
|
-
spacingBottom,
|
|
3723
|
-
spacingVertical,
|
|
3724
|
-
colStretch
|
|
3664
|
+
}
|
|
3725
3665
|
};
|
|
3726
3666
|
const createTheme = options => Object.assign(Object.assign({}, themeDefault), options);
|
|
3727
3667
|
const useTheme = styled.useTheme;
|
|
@@ -3906,6 +3846,57 @@
|
|
|
3906
3846
|
};
|
|
3907
3847
|
}
|
|
3908
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
|
+
|
|
3909
3900
|
const THEME_KEY = "theme";
|
|
3910
3901
|
const THEME_DEFAULT = "light";
|
|
3911
3902
|
const getInitialThemeFromRequest = cookie => {
|
|
@@ -3978,21 +3969,21 @@
|
|
|
3978
3969
|
const GRID_GUTTER_DEFAULT = "half";
|
|
3979
3970
|
const Container = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
3980
3971
|
displayName: "Grid__Container",
|
|
3981
|
-
componentId: "sc-
|
|
3972
|
+
componentId: "sc-ppsqbu-0"
|
|
3982
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;" : "");
|
|
3983
3974
|
const ContainerFluid = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
3984
3975
|
displayName: "Grid__ContainerFluid",
|
|
3985
|
-
componentId: "sc-
|
|
3976
|
+
componentId: "sc-ppsqbu-1"
|
|
3986
3977
|
})(["padding:0 ", "px;"], p => p.theme.gutter[p.$gutter || GRID_GUTTER_DEFAULT]);
|
|
3987
3978
|
const Row = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
3988
3979
|
displayName: "Grid__Row",
|
|
3989
|
-
componentId: "sc-
|
|
3980
|
+
componentId: "sc-ppsqbu-2"
|
|
3990
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) {
|
|
3991
3982
|
flex-direction: row-reverse;
|
|
3992
3983
|
}`);
|
|
3993
3984
|
const Col = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
3994
3985
|
displayName: "Grid__Col",
|
|
3995
|
-
componentId: "sc-
|
|
3986
|
+
componentId: "sc-ppsqbu-3"
|
|
3996
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));
|
|
3997
3988
|
|
|
3998
3989
|
function getColWidth(breakpoints, breakpoint, value) {
|
|
@@ -4058,11 +4049,11 @@
|
|
|
4058
4049
|
|
|
4059
4050
|
const BgColor = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
4060
4051
|
displayName: "BgColor",
|
|
4061
|
-
componentId: "sc-
|
|
4052
|
+
componentId: "sc-1ky8mxk-0"
|
|
4062
4053
|
})(["background:", ";"], p => p.$bg);
|
|
4063
4054
|
const BgColorSkewed = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
4064
4055
|
displayName: "BgColor__BgColorSkewed",
|
|
4065
|
-
componentId: "sc-
|
|
4056
|
+
componentId: "sc-1ky8mxk-1"
|
|
4066
4057
|
})(["position:relative;&:before{z-index:-1;content:\"\";", "}"], p => `
|
|
4067
4058
|
${overlay}
|
|
4068
4059
|
transform: ${p.$transform};
|
|
@@ -4106,7 +4097,7 @@
|
|
|
4106
4097
|
|
|
4107
4098
|
const Hidden = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
4108
4099
|
displayName: "Hidden",
|
|
4109
|
-
componentId: "sc-
|
|
4100
|
+
componentId: "sc-q5gqyj-0"
|
|
4110
4101
|
})(["", ""], p => `${p.$min ? `
|
|
4111
4102
|
@media (min-width: ${p.theme.breakpoints[p.$min]}px) {
|
|
4112
4103
|
display: none;
|
|
@@ -4117,11 +4108,11 @@
|
|
|
4117
4108
|
|
|
4118
4109
|
const BgPhotoWrap = /*#__PURE__*/styled__default["default"](Hidden).withConfig({
|
|
4119
4110
|
displayName: "BgPhoto__BgPhotoWrap",
|
|
4120
|
-
componentId: "
|
|
4111
|
+
componentId: "sc-buye6b-0"
|
|
4121
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;"]);
|
|
4122
4113
|
const BgPhotoMask = /*#__PURE__*/styled__default["default"](Container).withConfig({
|
|
4123
4114
|
displayName: "BgPhoto__BgPhotoMask",
|
|
4124
|
-
componentId: "
|
|
4115
|
+
componentId: "sc-buye6b-1"
|
|
4125
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 => {
|
|
4126
4117
|
const containerSizePx = p.theme.breakpoints[p.containerSize];
|
|
4127
4118
|
return `calc(((100vw - ${containerSizePx}px) / 2) + ${p.$overlap + 2}px)`;
|
|
@@ -4149,7 +4140,7 @@
|
|
|
4149
4140
|
|
|
4150
4141
|
const Root$8 = /*#__PURE__*/styled__default["default"].svg.withConfig({
|
|
4151
4142
|
displayName: "BgSvg__Root",
|
|
4152
|
-
componentId: "
|
|
4143
|
+
componentId: "sc-uhj1yp-0"
|
|
4153
4144
|
})(["position:fixed;z-index:-2;bottom:0;transform:rotate(180deg);opacity:0.9;"]);
|
|
4154
4145
|
/**
|
|
4155
4146
|
* Centered triangle shape
|
|
@@ -4173,28 +4164,28 @@
|
|
|
4173
4164
|
const LINK_GUTTER_X = 10;
|
|
4174
4165
|
const Root$7 = /*#__PURE__*/styled__default["default"].nav.withConfig({
|
|
4175
4166
|
displayName: "Breadcrumbs__Root",
|
|
4176
|
-
componentId: "sc-
|
|
4167
|
+
componentId: "sc-110rq3t-0"
|
|
4177
4168
|
})(["display:flex;position:relative;"]);
|
|
4178
4169
|
const Inner$1 = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
4179
4170
|
displayName: "Breadcrumbs__Inner",
|
|
4180
|
-
componentId: "sc-
|
|
4171
|
+
componentId: "sc-110rq3t-1"
|
|
4181
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);
|
|
4182
4173
|
const Item = /*#__PURE__*/styled__default["default"](framerMotion.m.div).withConfig({
|
|
4183
4174
|
displayName: "Breadcrumbs__Item",
|
|
4184
|
-
componentId: "sc-
|
|
4175
|
+
componentId: "sc-110rq3t-2"
|
|
4185
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);
|
|
4186
4177
|
const itemChild = /*#__PURE__*/styled.css(["display:block;padding:10px ", "px;", "{padding:10px ", "px;}"], LINK_GUTTER_X / 2, min$1.sm, LINK_GUTTER_X);
|
|
4187
4178
|
const ItemLink$1 = /*#__PURE__*/styled__default["default"].a.withConfig({
|
|
4188
4179
|
displayName: "Breadcrumbs__ItemLink",
|
|
4189
|
-
componentId: "sc-
|
|
4180
|
+
componentId: "sc-110rq3t-3"
|
|
4190
4181
|
})(["", " text-decoration:none;&:hover{text-decoration:underline;}"], itemChild);
|
|
4191
4182
|
const ItemCurrent$1 = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
4192
4183
|
displayName: "Breadcrumbs__ItemCurrent",
|
|
4193
|
-
componentId: "sc-
|
|
4184
|
+
componentId: "sc-110rq3t-4"
|
|
4194
4185
|
})(["", ""], itemChild);
|
|
4195
|
-
const ItemSeparator = /*#__PURE__*/styled__default["default"](
|
|
4186
|
+
const ItemSeparator = /*#__PURE__*/styled__default["default"](md.MdKeyboardArrowRight).withConfig({
|
|
4196
4187
|
displayName: "Breadcrumbs__ItemSeparator",
|
|
4197
|
-
componentId: "sc-
|
|
4188
|
+
componentId: "sc-110rq3t-5"
|
|
4198
4189
|
})([""]);
|
|
4199
4190
|
const KoineBreadcrumbs = _a => {
|
|
4200
4191
|
var {
|
|
@@ -5168,7 +5159,7 @@
|
|
|
5168
5159
|
|
|
5169
5160
|
const CarouselCssRow = /*#__PURE__*/styled__default["default"](Row).withConfig({
|
|
5170
5161
|
displayName: "CarouselCss__CarouselCssRow",
|
|
5171
|
-
componentId: "sc-
|
|
5162
|
+
componentId: "sc-17zho30-0"
|
|
5172
5163
|
})(["", " scroll-behavior:smooth;scroll-snap-type:x;-ms-overflow-style:none;scrollbar-width:none;&::-webkit-scrollbar{display:none;}"], ({
|
|
5173
5164
|
$gutter: cs,
|
|
5174
5165
|
theme: {
|
|
@@ -5182,7 +5173,7 @@
|
|
|
5182
5173
|
`);
|
|
5183
5174
|
const CarouselCssCol = /*#__PURE__*/styled__default["default"](Col).withConfig({
|
|
5184
5175
|
displayName: "CarouselCss__CarouselCssCol",
|
|
5185
|
-
componentId: "sc-
|
|
5176
|
+
componentId: "sc-17zho30-1"
|
|
5186
5177
|
})(["", " position:relative;scroll-snap-align:", ";"], p => p.$width && `flex-basis: ${p.$width}px; min-width: ${p.$width}px;`, p => p.$snap);
|
|
5187
5178
|
/**
|
|
5188
5179
|
* For programmatic usage an example here @see https://stackoverflow.com/a/65902068/9122820
|
|
@@ -5509,7 +5500,7 @@
|
|
|
5509
5500
|
return jsxRuntime.jsxs(CellOverflow, Object.assign({
|
|
5510
5501
|
onClick: () => expand(true)
|
|
5511
5502
|
}, {
|
|
5512
|
-
children: [jsxRuntime.jsx(
|
|
5503
|
+
children: [jsxRuntime.jsx(md.MdAdd, {}), eventsWithoutPlaceholders.length - maxEvents]
|
|
5513
5504
|
}), "overflowMessage" + i);
|
|
5514
5505
|
}
|
|
5515
5506
|
|
|
@@ -6882,19 +6873,19 @@
|
|
|
6882
6873
|
htmlFor: `${props.id}-input`
|
|
6883
6874
|
})).withConfig({
|
|
6884
6875
|
displayName: "Collapsable__CollapsableHeadRoot",
|
|
6885
|
-
componentId: "
|
|
6876
|
+
componentId: "sc-avx7zd-0"
|
|
6886
6877
|
})(["", " width:100%;padding:0;text-align:left;display:flex;justify-content:space-between;align-items:center;cursor:pointer;"], btnStyleReset);
|
|
6887
6878
|
const CollapsableHeadSpace = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
6888
6879
|
displayName: "Collapsable__CollapsableHeadSpace",
|
|
6889
|
-
componentId: "
|
|
6880
|
+
componentId: "sc-avx7zd-1"
|
|
6890
6881
|
})(["flex:1;padding-left:20px;"]);
|
|
6891
6882
|
const CollapsableHeadAction = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
6892
6883
|
displayName: "Collapsable__CollapsableHeadAction",
|
|
6893
|
-
componentId: "
|
|
6884
|
+
componentId: "sc-avx7zd-2"
|
|
6894
6885
|
})(["padding-left:20px;"]);
|
|
6895
6886
|
const CollaspableHeadLine = /*#__PURE__*/styled__default["default"](framerMotion.m.div).withConfig({
|
|
6896
6887
|
displayName: "Collapsable__CollaspableHeadLine",
|
|
6897
|
-
componentId: "
|
|
6888
|
+
componentId: "sc-avx7zd-3"
|
|
6898
6889
|
})(["width:0%;height:1px;background:#bbb;"]);
|
|
6899
6890
|
const collapsableHeadLineMotion = {
|
|
6900
6891
|
hover: {
|
|
@@ -6906,11 +6897,11 @@
|
|
|
6906
6897
|
};
|
|
6907
6898
|
const CollapsableHeadText = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
6908
6899
|
displayName: "Collapsable__CollapsableHeadText",
|
|
6909
|
-
componentId: "
|
|
6900
|
+
componentId: "sc-avx7zd-4"
|
|
6910
6901
|
})([""]);
|
|
6911
6902
|
const CollapsableHeadIcon = /*#__PURE__*/styled__default["default"](framerMotion.m.div).withConfig({
|
|
6912
6903
|
displayName: "Collapsable__CollapsableHeadIcon",
|
|
6913
|
-
componentId: "
|
|
6904
|
+
componentId: "sc-avx7zd-5"
|
|
6914
6905
|
})([""]);
|
|
6915
6906
|
const CollapsableHead = ({
|
|
6916
6907
|
$expanded,
|
|
@@ -6944,7 +6935,7 @@
|
|
|
6944
6935
|
rotate: $expanded ? 180 : 0
|
|
6945
6936
|
}
|
|
6946
6937
|
}, {
|
|
6947
|
-
children: jsxRuntime.jsx(
|
|
6938
|
+
children: jsxRuntime.jsx(bs.BsBoxArrowInDown, {})
|
|
6948
6939
|
}))
|
|
6949
6940
|
})]
|
|
6950
6941
|
}));
|
|
@@ -6953,15 +6944,15 @@
|
|
|
6953
6944
|
type: "checkbox"
|
|
6954
6945
|
}).withConfig({
|
|
6955
6946
|
displayName: "Collapsable__CollapsableInput",
|
|
6956
|
-
componentId: "
|
|
6947
|
+
componentId: "sc-avx7zd-6"
|
|
6957
6948
|
})([""]);
|
|
6958
6949
|
const CollasableBodyWrap = /*#__PURE__*/styled__default["default"](disclosure.DisclosurePanel).withConfig({
|
|
6959
6950
|
displayName: "Collapsable__CollasableBodyWrap",
|
|
6960
|
-
componentId: "
|
|
6951
|
+
componentId: "sc-avx7zd-7"
|
|
6961
6952
|
})(["&[hidden]{display:block;}"]);
|
|
6962
6953
|
const CollapsableBodyRoot = /*#__PURE__*/styled__default["default"](framerMotion.m.div).withConfig({
|
|
6963
6954
|
displayName: "Collapsable__CollapsableBodyRoot",
|
|
6964
|
-
componentId: "
|
|
6955
|
+
componentId: "sc-avx7zd-8"
|
|
6965
6956
|
})([".no-js &{transition:margin-top 0.2s ease;}.no-js ", ":checked + ", " &{margin-top:0 !important;opacity:1 !important;}"], CollapsableInput, CollasableBodyWrap);
|
|
6966
6957
|
const CollapsableBody = /*#__PURE__*/react.forwardRef(function CollapsableBody(props, ref) {
|
|
6967
6958
|
return jsxRuntime.jsx(CollapsableBodyRoot, Object.assign({
|
|
@@ -7065,7 +7056,7 @@
|
|
|
7065
7056
|
|
|
7066
7057
|
const Root$6 = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
7067
7058
|
displayName: "Debug__Root",
|
|
7068
|
-
componentId: "
|
|
7059
|
+
componentId: "sc-1dz7kfz-0"
|
|
7069
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;"]);
|
|
7070
7061
|
const Debug = ({
|
|
7071
7062
|
data
|
|
@@ -7106,15 +7097,15 @@
|
|
|
7106
7097
|
};
|
|
7107
7098
|
const KoineDialogOverlay = /*#__PURE__*/styled__default["default"](dialog.DialogOverlay).withConfig({
|
|
7108
7099
|
displayName: "Dialog__KoineDialogOverlay",
|
|
7109
|
-
componentId: "sc-
|
|
7100
|
+
componentId: "sc-xnwsgw-0"
|
|
7110
7101
|
})(["z-index:100;position:fixed;", ""], inset0);
|
|
7111
7102
|
const KoineDialogBackdrop = /*#__PURE__*/styled__default["default"](framerMotion.m.div).withConfig({
|
|
7112
7103
|
displayName: "Dialog__KoineDialogBackdrop",
|
|
7113
|
-
componentId: "sc-
|
|
7104
|
+
componentId: "sc-xnwsgw-1"
|
|
7114
7105
|
})(["z-index:2;position:fixed;", " backdrop-filter:blur(0px);"], inset0);
|
|
7115
7106
|
const KoineDialogInner = /*#__PURE__*/styled__default["default"](framerMotion.m.div).withConfig({
|
|
7116
7107
|
displayName: "Dialog__KoineDialogInner",
|
|
7117
|
-
componentId: "sc-
|
|
7108
|
+
componentId: "sc-xnwsgw-2"
|
|
7118
7109
|
})(["z-index:3;position:absolute;", " overflow:hidden scroll;", ";"], inset0, p => p.$centered && `${min$1.sm} {
|
|
7119
7110
|
display: flex;
|
|
7120
7111
|
justify-content: center;
|
|
@@ -7123,23 +7114,23 @@
|
|
|
7123
7114
|
|
|
7124
7115
|
const KoineDialogContent = /*#__PURE__*/styled__default["default"](dialog.DialogContent).withConfig({
|
|
7125
7116
|
displayName: "Dialog__KoineDialogContent",
|
|
7126
|
-
componentId: "sc-
|
|
7117
|
+
componentId: "sc-xnwsgw-3"
|
|
7127
7118
|
})(["position:relative;outline:0px;width:100%;margin:0 auto;"]);
|
|
7128
7119
|
const KoineDialogCloseButton = /*#__PURE__*/styled__default["default"](IconButton).withConfig({
|
|
7129
7120
|
displayName: "Dialog__KoineDialogCloseButton",
|
|
7130
|
-
componentId: "sc-
|
|
7121
|
+
componentId: "sc-xnwsgw-4"
|
|
7131
7122
|
})(["position:absolute;padding:0;"]);
|
|
7132
7123
|
const KoineDialogHeader = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
7133
7124
|
displayName: "Dialog__KoineDialogHeader",
|
|
7134
|
-
componentId: "sc-
|
|
7125
|
+
componentId: "sc-xnwsgw-5"
|
|
7135
7126
|
})(["z-index:2;position:relative;"]);
|
|
7136
7127
|
const KoineDialogBody = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
7137
7128
|
displayName: "Dialog__KoineDialogBody",
|
|
7138
|
-
componentId: "sc-
|
|
7129
|
+
componentId: "sc-xnwsgw-6"
|
|
7139
7130
|
})(["position:relative;&:hover ", "{}"], KoineDialogCloseButton);
|
|
7140
7131
|
const KoineDialogBodyChildren = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
7141
7132
|
displayName: "Dialog__KoineDialogBodyChildren",
|
|
7142
|
-
componentId: "sc-
|
|
7133
|
+
componentId: "sc-xnwsgw-7"
|
|
7143
7134
|
})(["position:relative;overflow:auto;"]);
|
|
7144
7135
|
const KoineDialog = _a => {
|
|
7145
7136
|
var {
|
|
@@ -7169,7 +7160,7 @@
|
|
|
7169
7160
|
children: [jsxRuntime.jsx(KoineDialogCloseButton, Object.assign({
|
|
7170
7161
|
onClick: onDismiss
|
|
7171
7162
|
}, {
|
|
7172
|
-
children: jsxRuntime.jsx(
|
|
7163
|
+
children: jsxRuntime.jsx(md.MdClear, {})
|
|
7173
7164
|
})), jsxRuntime.jsx(KoineDialogBodyChildren, {
|
|
7174
7165
|
children: children
|
|
7175
7166
|
})]
|
|
@@ -7322,31 +7313,31 @@
|
|
|
7322
7313
|
`;
|
|
7323
7314
|
const Toggle = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
7324
7315
|
displayName: "Toggle",
|
|
7325
|
-
componentId: "sc-
|
|
7316
|
+
componentId: "sc-1oq6hcj-0"
|
|
7326
7317
|
})(["position:relative;display:inline-flex;align-items:center;justify-content:center;width:2em;height:2em;margin:0 -0.3em;padding:0.3em;"]);
|
|
7327
7318
|
const ToggleLabel = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
7328
7319
|
displayName: "Toggle__ToggleLabel",
|
|
7329
|
-
componentId: "sc-
|
|
7320
|
+
componentId: "sc-1oq6hcj-1"
|
|
7330
7321
|
})(["margin-left:0.6em;"]);
|
|
7331
7322
|
const ToggleLabelSub = /*#__PURE__*/styled__default["default"].small.withConfig({
|
|
7332
7323
|
displayName: "Toggle__ToggleLabelSub",
|
|
7333
|
-
componentId: "sc-
|
|
7324
|
+
componentId: "sc-1oq6hcj-2"
|
|
7334
7325
|
})(["opacity:0.7;font-size:0.7em;;"]);
|
|
7335
7326
|
const ToggleIndicatorHolder = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
7336
7327
|
displayName: "Toggle__ToggleIndicatorHolder",
|
|
7337
|
-
componentId: "sc-
|
|
7328
|
+
componentId: "sc-1oq6hcj-3"
|
|
7338
7329
|
})(["position:relative;display:flex;input:focus ~ &{", "}"], stateFocus);
|
|
7339
7330
|
const ToggleIndicatorBgSquare = /*#__PURE__*/styled__default["default"].svg.withConfig({
|
|
7340
7331
|
displayName: "Toggle__ToggleIndicatorBgSquare",
|
|
7341
|
-
componentId: "sc-
|
|
7332
|
+
componentId: "sc-1oq6hcj-4"
|
|
7342
7333
|
})(["", ""], toggleIndicatorBgShape);
|
|
7343
7334
|
const ToggleIndicatorBgCircle = /*#__PURE__*/styled__default["default"].svg.withConfig({
|
|
7344
7335
|
displayName: "Toggle__ToggleIndicatorBgCircle",
|
|
7345
|
-
componentId: "sc-
|
|
7336
|
+
componentId: "sc-1oq6hcj-5"
|
|
7346
7337
|
})(["", ""], toggleIndicatorBgShape);
|
|
7347
7338
|
const ToggleIndicatorFg = /*#__PURE__*/styled__default["default"].svg.withConfig({
|
|
7348
7339
|
displayName: "Toggle__ToggleIndicatorFg",
|
|
7349
|
-
componentId: "sc-
|
|
7340
|
+
componentId: "sc-1oq6hcj-6"
|
|
7350
7341
|
})(["", " transform:scale(0);transition:transform 0.18s ease;input:checked + ", " &{transform:scale(1);}"], toggleIndicatorFg, ToggleIndicatorHolder);
|
|
7351
7342
|
const ToggleIndicatorSquared = props => {
|
|
7352
7343
|
return jsxRuntime.jsxs(ToggleIndicatorHolder, {
|
|
@@ -7555,19 +7546,19 @@
|
|
|
7555
7546
|
|
|
7556
7547
|
const CheckboxRoot = /*#__PURE__*/styled__default["default"].label.withConfig({
|
|
7557
7548
|
displayName: "Checkbox__CheckboxRoot",
|
|
7558
|
-
componentId: "
|
|
7549
|
+
componentId: "sc-16l2cmd-0"
|
|
7559
7550
|
})(["display:flex;align-items:center;cursor:pointer;"]);
|
|
7560
7551
|
const CheckboxToggle = /*#__PURE__*/styled__default["default"](Toggle).withConfig({
|
|
7561
7552
|
displayName: "Checkbox__CheckboxToggle",
|
|
7562
|
-
componentId: "
|
|
7553
|
+
componentId: "sc-16l2cmd-1"
|
|
7563
7554
|
})(["pointer-events:none;"]);
|
|
7564
7555
|
const CheckboxIndicator = /*#__PURE__*/styled__default["default"](ToggleIndicatorSquared).withConfig({
|
|
7565
7556
|
displayName: "Checkbox__CheckboxIndicator",
|
|
7566
|
-
componentId: "
|
|
7557
|
+
componentId: "sc-16l2cmd-2"
|
|
7567
7558
|
})([""]);
|
|
7568
7559
|
const CheckboxLabel = /*#__PURE__*/styled__default["default"](ToggleLabel).withConfig({
|
|
7569
7560
|
displayName: "Checkbox__CheckboxLabel",
|
|
7570
|
-
componentId: "
|
|
7561
|
+
componentId: "sc-16l2cmd-3"
|
|
7571
7562
|
})(["font-size:0.8em;"]);
|
|
7572
7563
|
/**
|
|
7573
7564
|
* All logic and invisible Inputs come from the `useToggle` hook
|
|
@@ -7590,7 +7581,7 @@
|
|
|
7590
7581
|
|
|
7591
7582
|
const Root$5 = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
7592
7583
|
displayName: "Feedback__Root",
|
|
7593
|
-
componentId: "
|
|
7584
|
+
componentId: "sc-1qnnzkg-0"
|
|
7594
7585
|
})(["margin-top:0.2em;font-size:12px;", ""], p => p.$danger ? `color: var(--danger);` : "");
|
|
7595
7586
|
const Feedback = ({
|
|
7596
7587
|
$danger,
|
|
@@ -7607,11 +7598,11 @@
|
|
|
7607
7598
|
const field = /*#__PURE__*/styled.css(["padding-bottom:20px;"]);
|
|
7608
7599
|
const FieldBase = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
7609
7600
|
displayName: "Field__FieldBase",
|
|
7610
|
-
componentId: "sc-
|
|
7601
|
+
componentId: "sc-1eheucu-0"
|
|
7611
7602
|
})(["", ""], field);
|
|
7612
7603
|
const FieldRoot = /*#__PURE__*/styled__default["default"](FieldBase).withConfig({
|
|
7613
7604
|
displayName: "Field__FieldRoot",
|
|
7614
|
-
componentId: "sc-
|
|
7605
|
+
componentId: "sc-1eheucu-1"
|
|
7615
7606
|
})(["", ""], p => {
|
|
7616
7607
|
return p.$danger && `
|
|
7617
7608
|
color: var(--danger);
|
|
@@ -7681,7 +7672,7 @@
|
|
|
7681
7672
|
|
|
7682
7673
|
const FieldHint = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
7683
7674
|
displayName: "FieldHint",
|
|
7684
|
-
componentId: "sc-
|
|
7675
|
+
componentId: "sc-1knmi2e-0"
|
|
7685
7676
|
})(["padding-top:0.6em;opacity:0.7;font-size:75%;"]);
|
|
7686
7677
|
|
|
7687
7678
|
/**
|
|
@@ -7748,19 +7739,19 @@
|
|
|
7748
7739
|
|
|
7749
7740
|
const InputGroupRoot = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
7750
7741
|
displayName: "InputGroup__InputGroupRoot",
|
|
7751
|
-
componentId: "sc-
|
|
7742
|
+
componentId: "sc-11syh3s-0"
|
|
7752
7743
|
})(["", " display:flex;", "{flex-direction:column;}"], field, max$1.sm);
|
|
7753
7744
|
const InputGroupMain = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
7754
7745
|
displayName: "InputGroup__InputGroupMain",
|
|
7755
|
-
componentId: "sc-
|
|
7746
|
+
componentId: "sc-11syh3s-1"
|
|
7756
7747
|
})(["flex:1;"]);
|
|
7757
7748
|
const InputGroupButtonPre = /*#__PURE__*/styled__default["default"](KoineButton).withConfig({
|
|
7758
7749
|
displayName: "InputGroup__InputGroupButtonPre",
|
|
7759
|
-
componentId: "sc-
|
|
7750
|
+
componentId: "sc-11syh3s-2"
|
|
7760
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);
|
|
7761
7752
|
const InputGroupButtonPost = /*#__PURE__*/styled__default["default"](KoineButton).withConfig({
|
|
7762
7753
|
displayName: "InputGroup__InputGroupButtonPost",
|
|
7763
|
-
componentId: "sc-
|
|
7754
|
+
componentId: "sc-11syh3s-3"
|
|
7764
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);
|
|
7765
7756
|
const InputGroup = ({
|
|
7766
7757
|
pre,
|
|
@@ -7784,11 +7775,11 @@
|
|
|
7784
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;}"]);
|
|
7785
7776
|
const ProgressCircularSvg = /*#__PURE__*/styled__default["default"].svg.withConfig({
|
|
7786
7777
|
displayName: "ProgressCircular__ProgressCircularSvg",
|
|
7787
|
-
componentId: "
|
|
7778
|
+
componentId: "sc-mm1llp-0"
|
|
7788
7779
|
})(["animation:", " 1.5s linear infinite;"], animationRotation);
|
|
7789
7780
|
const ProgressCircularCircle = /*#__PURE__*/styled__default["default"].circle.withConfig({
|
|
7790
7781
|
displayName: "ProgressCircular__ProgressCircularCircle",
|
|
7791
|
-
componentId: "
|
|
7782
|
+
componentId: "sc-mm1llp-1"
|
|
7792
7783
|
})(["animation:", " 1.5s linear infinite;"], animationCircle);
|
|
7793
7784
|
/**
|
|
7794
7785
|
* @see https://mui.com/components/progress/
|
|
@@ -7850,11 +7841,11 @@
|
|
|
7850
7841
|
|
|
7851
7842
|
const ProgressOverlayWrap = /*#__PURE__*/styled__default["default"](framerMotion.m.div).withConfig({
|
|
7852
7843
|
displayName: "ProgressOverlay__ProgressOverlayWrap",
|
|
7853
|
-
componentId: "
|
|
7844
|
+
componentId: "sc-19rm0co-0"
|
|
7854
7845
|
})(["z-index:10000;position:fixed;top:0;left:0;right:0;bottom:0;pointer-events:none;cursor:wait;"]);
|
|
7855
7846
|
const ProgressOverlayCenterer = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
7856
7847
|
displayName: "ProgressOverlay__ProgressOverlayCenterer",
|
|
7857
|
-
componentId: "
|
|
7848
|
+
componentId: "sc-19rm0co-1"
|
|
7858
7849
|
})(["position:absolute;top:0;left:0;right:0;bottom:0;display:flex;align-items:center;justify-content:center;background:var(--progress-overlay-bg);"]);
|
|
7859
7850
|
const ProgressOverlay = ({
|
|
7860
7851
|
running
|
|
@@ -7894,15 +7885,15 @@
|
|
|
7894
7885
|
|
|
7895
7886
|
const FormRoot = /*#__PURE__*/styled__default["default"].form.withConfig({
|
|
7896
7887
|
displayName: "Form__FormRoot",
|
|
7897
|
-
componentId: "sc-
|
|
7888
|
+
componentId: "sc-1lzx9vu-0"
|
|
7898
7889
|
})(["position:relative;"]);
|
|
7899
7890
|
const FormOverlay = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
7900
7891
|
displayName: "Form__FormOverlay",
|
|
7901
|
-
componentId: "sc-
|
|
7892
|
+
componentId: "sc-1lzx9vu-1"
|
|
7902
7893
|
})(["z-index:4;", " ", " background:rgba(var(--bodyBg--rgb),.8);pointer-events:none;backdrop-filter:blur(2px);"], overlay, centered);
|
|
7903
7894
|
const FormFeedback = /*#__PURE__*/styled__default["default"](Alert).withConfig({
|
|
7904
7895
|
displayName: "Form__FormFeedback",
|
|
7905
|
-
componentId: "sc-
|
|
7896
|
+
componentId: "sc-1lzx9vu-2"
|
|
7906
7897
|
})(["padding:2em 0;"]);
|
|
7907
7898
|
const Form = _a => {
|
|
7908
7899
|
var {
|
|
@@ -7983,15 +7974,15 @@
|
|
|
7983
7974
|
const ICON_WIDTH = "2em";
|
|
7984
7975
|
const PasswordInputWrap = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
7985
7976
|
displayName: "Password__PasswordInputWrap",
|
|
7986
|
-
componentId: "sc-
|
|
7977
|
+
componentId: "sc-qcy15i-0"
|
|
7987
7978
|
})(["position:relative;"]);
|
|
7988
7979
|
const PasswordInputNative = /*#__PURE__*/styled__default["default"](InputNative).withConfig({
|
|
7989
7980
|
displayName: "Password__PasswordInputNative",
|
|
7990
|
-
componentId: "sc-
|
|
7981
|
+
componentId: "sc-qcy15i-1"
|
|
7991
7982
|
})(["position:relative;padding-right:", ";"], ICON_WIDTH);
|
|
7992
7983
|
const PasswordIcon = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
7993
7984
|
displayName: "Password__PasswordIcon",
|
|
7994
|
-
componentId: "sc-
|
|
7985
|
+
componentId: "sc-qcy15i-2"
|
|
7995
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);
|
|
7996
7987
|
const Password = /*#__PURE__*/react.forwardRef(function Password(_a, ref) {
|
|
7997
7988
|
var {
|
|
@@ -8015,7 +8006,7 @@
|
|
|
8015
8006
|
}, props)), jsxRuntime.jsx(PasswordIcon, Object.assign({
|
|
8016
8007
|
onClick: () => setVisible(prev => !prev)
|
|
8017
8008
|
}, {
|
|
8018
|
-
children: visible ? jsxRuntime.jsx(
|
|
8009
|
+
children: visible ? jsxRuntime.jsx(im.ImEyeBlocked, {}) : jsxRuntime.jsx(im.ImEye, {})
|
|
8019
8010
|
}))]
|
|
8020
8011
|
})]
|
|
8021
8012
|
});
|
|
@@ -8023,27 +8014,27 @@
|
|
|
8023
8014
|
|
|
8024
8015
|
const RadioRoot = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
8025
8016
|
displayName: "Radio__RadioRoot",
|
|
8026
|
-
componentId: "
|
|
8017
|
+
componentId: "sc-8t3f4x-0"
|
|
8027
8018
|
})([""]);
|
|
8028
8019
|
const RadioLabel = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
8029
8020
|
displayName: "Radio__RadioLabel",
|
|
8030
|
-
componentId: "
|
|
8021
|
+
componentId: "sc-8t3f4x-1"
|
|
8031
8022
|
})(["", ""], label);
|
|
8032
8023
|
const RadioOptionRoot = /*#__PURE__*/styled__default["default"].label.withConfig({
|
|
8033
8024
|
displayName: "Radio__RadioOptionRoot",
|
|
8034
|
-
componentId: "
|
|
8025
|
+
componentId: "sc-8t3f4x-2"
|
|
8035
8026
|
})(["display:flex;align-items:center;padding:0.05em;cursor:pointer;"]);
|
|
8036
8027
|
const RadioToggle = /*#__PURE__*/styled__default["default"](Toggle).withConfig({
|
|
8037
8028
|
displayName: "Radio__RadioToggle",
|
|
8038
|
-
componentId: "
|
|
8029
|
+
componentId: "sc-8t3f4x-3"
|
|
8039
8030
|
})([""]);
|
|
8040
8031
|
const RadioIndicator = /*#__PURE__*/styled__default["default"](ToggleIndicatorSquared).withConfig({
|
|
8041
8032
|
displayName: "Radio__RadioIndicator",
|
|
8042
|
-
componentId: "
|
|
8033
|
+
componentId: "sc-8t3f4x-4"
|
|
8043
8034
|
})([""]);
|
|
8044
8035
|
const RadioOptionLabel = /*#__PURE__*/styled__default["default"](ToggleLabel).withConfig({
|
|
8045
8036
|
displayName: "Radio__RadioOptionLabel",
|
|
8046
|
-
componentId: "
|
|
8037
|
+
componentId: "sc-8t3f4x-5"
|
|
8047
8038
|
})([""]);
|
|
8048
8039
|
const RadioOption = /*#__PURE__*/react.forwardRef(function RadioOption(_a, ref) {
|
|
8049
8040
|
var {
|
|
@@ -8089,11 +8080,11 @@
|
|
|
8089
8080
|
const SWITCH_HANDLE_SIZE = 1;
|
|
8090
8081
|
const SwitchTrack = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
8091
8082
|
displayName: "Switch__SwitchTrack",
|
|
8092
|
-
componentId: "
|
|
8083
|
+
componentId: "sc-1ep4r76-0"
|
|
8093
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);
|
|
8094
8085
|
const SwitchHandle = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
8095
8086
|
displayName: "Switch__SwitchHandle",
|
|
8096
|
-
componentId: "
|
|
8087
|
+
componentId: "sc-1ep4r76-1"
|
|
8097
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);
|
|
8098
8089
|
/**
|
|
8099
8090
|
* All logic and invisible Inputs come from the `useToggle` hook
|
|
@@ -8116,7 +8107,7 @@
|
|
|
8116
8107
|
|
|
8117
8108
|
const TextareaNative = /*#__PURE__*/styled__default["default"].textarea.withConfig({
|
|
8118
8109
|
displayName: "Textarea__TextareaNative",
|
|
8119
|
-
componentId: "
|
|
8110
|
+
componentId: "sc-1ht2bik-0"
|
|
8120
8111
|
})(["", " ", " resize:vertical;"], inputBase, inputFocus);
|
|
8121
8112
|
const Textarea = /*#__PURE__*/react.forwardRef(function Textarea(_a, ref) {
|
|
8122
8113
|
var {
|
|
@@ -8136,33 +8127,19 @@
|
|
|
8136
8127
|
});
|
|
8137
8128
|
});
|
|
8138
8129
|
|
|
8139
|
-
let _ = t => t,
|
|
8140
|
-
_t;
|
|
8141
8130
|
const EditorRoot = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
8142
8131
|
displayName: "components__EditorRoot",
|
|
8143
|
-
componentId: "
|
|
8132
|
+
componentId: "sc-l5s3z3-0"
|
|
8144
8133
|
})(["", " ", ""], inputBorder, inputFocus);
|
|
8145
8134
|
const EditorBarRoot = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
8146
8135
|
displayName: "components__EditorBarRoot",
|
|
8147
|
-
componentId: "
|
|
8136
|
+
componentId: "sc-l5s3z3-1"
|
|
8148
8137
|
})(["display:flex;justify-content:flex-end;border-bottom:1px solid rgba(0,0,0,0.1);"]);
|
|
8149
8138
|
const EditorBarBtn = /*#__PURE__*/styled__default["default"](IconButton).withConfig({
|
|
8150
8139
|
displayName: "components__EditorBarBtn",
|
|
8151
|
-
componentId: "
|
|
8140
|
+
componentId: "sc-l5s3z3-2"
|
|
8152
8141
|
})([""]);
|
|
8153
|
-
const EditorGlobalStyles = /*#__PURE__*/styled.createGlobalStyle(
|
|
8154
|
-
.ProseMirror {
|
|
8155
|
-
${0}
|
|
8156
|
-
|
|
8157
|
-
&:focus {
|
|
8158
|
-
outline:none;
|
|
8159
|
-
}
|
|
8160
|
-
|
|
8161
|
-
> *:first-child {
|
|
8162
|
-
margin-top: 0;
|
|
8163
|
-
}
|
|
8164
|
-
}
|
|
8165
|
-
`), inputPadding);
|
|
8142
|
+
const EditorGlobalStyles = /*#__PURE__*/styled.createGlobalStyle([".ProseMirror{", " &:focus{outline:none;}> *:first-child{margin-top:0;}}"], inputPadding);
|
|
8166
8143
|
|
|
8167
8144
|
const EditorBar = ({
|
|
8168
8145
|
editor
|
|
@@ -8181,12 +8158,12 @@
|
|
|
8181
8158
|
onClick: e => handleClick(e, "Bold"),
|
|
8182
8159
|
className: editor.isActive("bold") ? "is-active" : ""
|
|
8183
8160
|
}, {
|
|
8184
|
-
children: jsxRuntime.jsx(
|
|
8161
|
+
children: jsxRuntime.jsx(md.MdFormatBold, {})
|
|
8185
8162
|
})), jsxRuntime.jsx(EditorBarBtn, Object.assign({
|
|
8186
8163
|
onClick: e => handleClick(e, "Italic"),
|
|
8187
8164
|
className: editor.isActive("bold") ? "is-active" : ""
|
|
8188
8165
|
}, {
|
|
8189
|
-
children: jsxRuntime.jsx(
|
|
8166
|
+
children: jsxRuntime.jsx(md.MdFormatItalic, {})
|
|
8190
8167
|
}))]
|
|
8191
8168
|
});
|
|
8192
8169
|
};
|
|
@@ -8212,7 +8189,7 @@
|
|
|
8212
8189
|
|
|
8213
8190
|
const Root$4 = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
8214
8191
|
displayName: "TextareaRich__Root",
|
|
8215
|
-
componentId: "
|
|
8192
|
+
componentId: "sc-o5bcek-0"
|
|
8216
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;}}"]);
|
|
8217
8194
|
const TextareaRich = /*#__PURE__*/react.forwardRef(function TextareaRich(_a, ref) {
|
|
8218
8195
|
var {
|
|
@@ -8403,7 +8380,7 @@
|
|
|
8403
8380
|
|
|
8404
8381
|
const HamburgerLabel = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
8405
8382
|
displayName: "Hamburger__HamburgerLabel",
|
|
8406
|
-
componentId: "sc-
|
|
8383
|
+
componentId: "sc-jjvtrk-0"
|
|
8407
8384
|
})(["position:absolute;top:30px;font-size:", ";text-transform:uppercase;left:7px;letter-spacing:3px;"], ({
|
|
8408
8385
|
$toggled
|
|
8409
8386
|
}) => $toggled ? "0" : "9px");
|
|
@@ -8500,7 +8477,7 @@
|
|
|
8500
8477
|
|
|
8501
8478
|
const KoineImg = /*#__PURE__*/styled__default["default"].img.withConfig({
|
|
8502
8479
|
displayName: "Img__KoineImg",
|
|
8503
|
-
componentId: "sc-
|
|
8480
|
+
componentId: "sc-xk4cex-0"
|
|
8504
8481
|
})([""]); // /**
|
|
8505
8482
|
// * Replacement core component for native `<img />`
|
|
8506
8483
|
// *
|
|
@@ -8532,7 +8509,7 @@
|
|
|
8532
8509
|
|
|
8533
8510
|
const KoineLink = /*#__PURE__*/styled__default["default"].a.withConfig({
|
|
8534
8511
|
displayName: "Link__KoineLink",
|
|
8535
|
-
componentId: "sc-
|
|
8512
|
+
componentId: "sc-ia8uk7-0"
|
|
8536
8513
|
})([""]);
|
|
8537
8514
|
|
|
8538
8515
|
const LinkBlankA = /*#__PURE__*/styled__default["default"].a.attrs({
|
|
@@ -8540,13 +8517,13 @@
|
|
|
8540
8517
|
rel: "noopener"
|
|
8541
8518
|
}).withConfig({
|
|
8542
8519
|
displayName: "LinkBlank__LinkBlankA",
|
|
8543
|
-
componentId: "sc-
|
|
8520
|
+
componentId: "sc-13mh7z7-0"
|
|
8544
8521
|
})([""]); // TODO: use `touch` class on <html> instead of relying on screenwidth,
|
|
8545
8522
|
// probably implement a lean Modernizr like thing with react-helmet
|
|
8546
8523
|
|
|
8547
|
-
const LinkBlankIcon = /*#__PURE__*/styled__default["default"](
|
|
8524
|
+
const LinkBlankIcon = /*#__PURE__*/styled__default["default"](md.MdLaunch).withConfig({
|
|
8548
8525
|
displayName: "LinkBlank__LinkBlankIcon",
|
|
8549
|
-
componentId: "sc-
|
|
8526
|
+
componentId: "sc-13mh7z7-1"
|
|
8550
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);
|
|
8551
8528
|
const LinkBlank = _a => {
|
|
8552
8529
|
var {
|
|
@@ -8581,7 +8558,7 @@
|
|
|
8581
8558
|
|
|
8582
8559
|
const Root$3 = /*#__PURE__*/styled__default["default"].nav.withConfig({
|
|
8583
8560
|
displayName: "PaginationNav__Root",
|
|
8584
|
-
componentId: "
|
|
8561
|
+
componentId: "sc-yp3m0g-0"
|
|
8585
8562
|
})(["display:flex;align-items:center;justify-content:center;padding:20px 0 40px;font-weight:600;& a{text-decoration:none;}"]);
|
|
8586
8563
|
const item = `
|
|
8587
8564
|
display: block;
|
|
@@ -8589,24 +8566,24 @@
|
|
|
8589
8566
|
`;
|
|
8590
8567
|
const ItemCurrent = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
8591
8568
|
displayName: "PaginationNav__ItemCurrent",
|
|
8592
|
-
componentId: "
|
|
8569
|
+
componentId: "sc-yp3m0g-1"
|
|
8593
8570
|
})(["", " background:var(--accent400);border-radius:2px;"], item);
|
|
8594
8571
|
const ItemLink = /*#__PURE__*/styled__default["default"].a.withConfig({
|
|
8595
8572
|
displayName: "PaginationNav__ItemLink",
|
|
8596
|
-
componentId: "
|
|
8573
|
+
componentId: "sc-yp3m0g-2"
|
|
8597
8574
|
})(["", " ", ""], item, props => props.prev ? "color: var(--grey100);" : "");
|
|
8598
8575
|
const DotsSeparator = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
8599
8576
|
displayName: "PaginationNav__DotsSeparator",
|
|
8600
|
-
componentId: "
|
|
8577
|
+
componentId: "sc-yp3m0g-3"
|
|
8601
8578
|
})(["color:var(--grey100);"]);
|
|
8602
8579
|
const arrow = `display: flex; font-size: 20px;`;
|
|
8603
8580
|
const ItemPrev = /*#__PURE__*/styled__default["default"].a.withConfig({
|
|
8604
8581
|
displayName: "PaginationNav__ItemPrev",
|
|
8605
|
-
componentId: "
|
|
8582
|
+
componentId: "sc-yp3m0g-4"
|
|
8606
8583
|
})(["", ""], arrow);
|
|
8607
8584
|
const ItemNext = /*#__PURE__*/styled__default["default"].a.withConfig({
|
|
8608
8585
|
displayName: "PaginationNav__ItemNext",
|
|
8609
|
-
componentId: "
|
|
8586
|
+
componentId: "sc-yp3m0g-5"
|
|
8610
8587
|
})(["", ""], arrow);
|
|
8611
8588
|
/*
|
|
8612
8589
|
* Possible outcomes:
|
|
@@ -8673,7 +8650,7 @@
|
|
|
8673
8650
|
as: Link,
|
|
8674
8651
|
href: `${baseUrl}/${prevPage}`
|
|
8675
8652
|
}, {
|
|
8676
|
-
children: jsxRuntime.jsx(
|
|
8653
|
+
children: jsxRuntime.jsx(cg.CgArrowLeftR, {})
|
|
8677
8654
|
})), firstPage !== currentPage && jsxRuntime.jsx(ItemLink, Object.assign({
|
|
8678
8655
|
as: Link,
|
|
8679
8656
|
href: `${baseUrl}`,
|
|
@@ -8703,18 +8680,18 @@
|
|
|
8703
8680
|
as: Link,
|
|
8704
8681
|
href: `${baseUrl}/${nextPage}`
|
|
8705
8682
|
}, {
|
|
8706
|
-
children: jsxRuntime.jsx(
|
|
8683
|
+
children: jsxRuntime.jsx(cg.CgArrowRightR, {})
|
|
8707
8684
|
}))]
|
|
8708
8685
|
});
|
|
8709
8686
|
};
|
|
8710
8687
|
|
|
8711
8688
|
const Root$2 = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
8712
8689
|
displayName: "PaginationResults__Root",
|
|
8713
|
-
componentId: "
|
|
8690
|
+
componentId: "sc-1q72gw8-0"
|
|
8714
8691
|
})([""]);
|
|
8715
8692
|
const Inner = /*#__PURE__*/styled__default["default"](framerMotion.m.div).withConfig({
|
|
8716
8693
|
displayName: "PaginationResults__Inner",
|
|
8717
|
-
componentId: "
|
|
8694
|
+
componentId: "sc-1q72gw8-1"
|
|
8718
8695
|
})([""]);
|
|
8719
8696
|
const PaginationResults = ({
|
|
8720
8697
|
children
|
|
@@ -8750,24 +8727,24 @@
|
|
|
8750
8727
|
|
|
8751
8728
|
const Pill = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
8752
8729
|
displayName: "Pill",
|
|
8753
|
-
componentId: "
|
|
8730
|
+
componentId: "sc-1lkc0vs-0"
|
|
8754
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;"]);
|
|
8755
8732
|
const PillGreyLight = /*#__PURE__*/styled__default["default"](Pill).withConfig({
|
|
8756
8733
|
displayName: "Pill__PillGreyLight",
|
|
8757
|
-
componentId: "
|
|
8734
|
+
componentId: "sc-1lkc0vs-1"
|
|
8758
8735
|
})(["background:var(--grey800);color:var(--grey100);&:hover{color:white;background:var(--grey300);}"]);
|
|
8759
8736
|
const PillAccentLight = /*#__PURE__*/styled__default["default"](Pill).withConfig({
|
|
8760
8737
|
displayName: "Pill__PillAccentLight",
|
|
8761
|
-
componentId: "
|
|
8738
|
+
componentId: "sc-1lkc0vs-2"
|
|
8762
8739
|
})(["background:var(--accent400);color:var(--grey100);&:hover{color:#fff;background:var(--accent300);}"]);
|
|
8763
8740
|
const PillAccentLightOutlined = /*#__PURE__*/styled__default["default"](Pill).withConfig({
|
|
8764
8741
|
displayName: "Pill__PillAccentLightOutlined",
|
|
8765
|
-
componentId: "
|
|
8742
|
+
componentId: "sc-1lkc0vs-3"
|
|
8766
8743
|
})(["border:1px solid var(--accent300);color:var(--accent200);&:hover{color:#fff;background:var(--accent300);}"]);
|
|
8767
8744
|
|
|
8768
8745
|
const RatingStarRoot = /*#__PURE__*/styled__default["default"].svg.withConfig({
|
|
8769
8746
|
displayName: "Rating__RatingStarRoot",
|
|
8770
|
-
componentId: "
|
|
8747
|
+
componentId: "sc-1bacl73-0"
|
|
8771
8748
|
})(["display:inline-block;vertical-align:middle;margin-right:1px;"]);
|
|
8772
8749
|
const RatingStar = _a => {
|
|
8773
8750
|
var {
|
|
@@ -8814,19 +8791,19 @@
|
|
|
8814
8791
|
};
|
|
8815
8792
|
const RatingDetails = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
8816
8793
|
displayName: "Rating__RatingDetails",
|
|
8817
|
-
componentId: "
|
|
8794
|
+
componentId: "sc-1bacl73-1"
|
|
8818
8795
|
})(["padding-left:0.5em;font-size:12px;color:var(--grey100);&:before{content:\"(\";}&:after{content:\")\";}"]);
|
|
8819
8796
|
const RatingCount = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
8820
8797
|
displayName: "Rating__RatingCount",
|
|
8821
|
-
componentId: "
|
|
8798
|
+
componentId: "sc-1bacl73-2"
|
|
8822
8799
|
})([""]);
|
|
8823
8800
|
const RatingValue = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
8824
8801
|
displayName: "Rating__RatingValue",
|
|
8825
|
-
componentId: "
|
|
8802
|
+
componentId: "sc-1bacl73-3"
|
|
8826
8803
|
})(["display:none;"]);
|
|
8827
8804
|
const RatingRoot = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
8828
8805
|
displayName: "Rating__RatingRoot",
|
|
8829
|
-
componentId: "
|
|
8806
|
+
componentId: "sc-1bacl73-4"
|
|
8830
8807
|
})(["display:flex;align-items:center;&:hover ", "{display:inline-block;}"], RatingValue);
|
|
8831
8808
|
const Rating = ({
|
|
8832
8809
|
value: _value = 0,
|
|
@@ -8963,7 +8940,7 @@
|
|
|
8963
8940
|
|
|
8964
8941
|
const SidebarWrapper = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
8965
8942
|
displayName: "Sidebar__SidebarWrapper",
|
|
8966
|
-
componentId: "sc-
|
|
8943
|
+
componentId: "sc-1uyprzh-0"
|
|
8967
8944
|
})(["", ""], p => `${max$1.md} {
|
|
8968
8945
|
z-index: 20;
|
|
8969
8946
|
display: flex;
|
|
@@ -8983,7 +8960,7 @@
|
|
|
8983
8960
|
}`);
|
|
8984
8961
|
const SidebarToggle = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
8985
8962
|
displayName: "Sidebar__SidebarToggle",
|
|
8986
|
-
componentId: "sc-
|
|
8963
|
+
componentId: "sc-1uyprzh-1"
|
|
8987
8964
|
})(["z-index:21;position:fixed;right:var(--gutter-half);bottom:var(--gutter-half);", "{display:none;}path{stroke:currentColor;}"], min$1.md);
|
|
8988
8965
|
const Sidebar = ({
|
|
8989
8966
|
children
|
|
@@ -9000,7 +8977,7 @@
|
|
|
9000
8977
|
children: jsxRuntime.jsx(IconButtonFab, Object.assign({
|
|
9001
8978
|
"$variant": "contained"
|
|
9002
8979
|
}, {
|
|
9003
|
-
children: open ? jsxRuntime.jsx(
|
|
8980
|
+
children: open ? jsxRuntime.jsx(cg.CgCloseR, {}) : jsxRuntime.jsx(gr.GrFolderOpen, {})
|
|
9004
8981
|
}))
|
|
9005
8982
|
})), jsxRuntime.jsx(SidebarWrapper, Object.assign({
|
|
9006
8983
|
"$open": open,
|
|
@@ -9013,8 +8990,8 @@
|
|
|
9013
8990
|
|
|
9014
8991
|
const Root$1 = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
9015
8992
|
displayName: "Spacing__Root",
|
|
9016
|
-
componentId: "sc-
|
|
9017
|
-
})(["", " ", ""], p => p.$top && p.theme
|
|
8993
|
+
componentId: "sc-12si043-0"
|
|
8994
|
+
})(["", " ", ""], p => p.$top && spacingTop.call(p.theme, ...p.$top), p => p.$bottom && spacingBottom.call(p.theme, ...p.$bottom));
|
|
9018
8995
|
|
|
9019
8996
|
const extractDirectionArgs = raw => {
|
|
9020
8997
|
const [size, factor, property, devices] = raw.split(":");
|
|
@@ -9086,7 +9063,7 @@
|
|
|
9086
9063
|
|
|
9087
9064
|
const TabsStyled = /*#__PURE__*/styled__default["default"](tabs.Tabs).withConfig({
|
|
9088
9065
|
displayName: "Tabs__TabsStyled",
|
|
9089
|
-
componentId: "sc-
|
|
9066
|
+
componentId: "sc-16y06a0-0"
|
|
9090
9067
|
})(["", "{display:flex;", "}"], min$1.sm, p => p.$vertical && "flex-direction: column;");
|
|
9091
9068
|
const Tabs = props => {
|
|
9092
9069
|
return jsxRuntime.jsx(framerMotion.AnimateSharedLayout, {
|
|
@@ -9095,19 +9072,19 @@
|
|
|
9095
9072
|
};
|
|
9096
9073
|
const TabList = /*#__PURE__*/styled__default["default"](tabs.TabList).withConfig({
|
|
9097
9074
|
displayName: "Tabs__TabList",
|
|
9098
|
-
componentId: "sc-
|
|
9075
|
+
componentId: "sc-16y06a0-1"
|
|
9099
9076
|
})(["display:flex;flex-direction:column;", "{border-right:1px solid var(--grey800);}"], min$1.sm);
|
|
9100
9077
|
const TabWrap = /*#__PURE__*/styled__default["default"](tabs.Tab).withConfig({
|
|
9101
9078
|
displayName: "Tabs__TabWrap",
|
|
9102
|
-
componentId: "sc-
|
|
9079
|
+
componentId: "sc-16y06a0-2"
|
|
9103
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)");
|
|
9104
9081
|
const TabText = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
9105
9082
|
displayName: "Tabs__TabText",
|
|
9106
|
-
componentId: "sc-
|
|
9083
|
+
componentId: "sc-16y06a0-3"
|
|
9107
9084
|
})(["position:relative;z-index:1;"]);
|
|
9108
9085
|
const TabUnderline = /*#__PURE__*/styled__default["default"](UnderlineSkewed).withConfig({
|
|
9109
9086
|
displayName: "Tabs__TabUnderline",
|
|
9110
|
-
componentId: "sc-
|
|
9087
|
+
componentId: "sc-16y06a0-4"
|
|
9111
9088
|
})([""]);
|
|
9112
9089
|
const Tab = _a => {
|
|
9113
9090
|
var {
|
|
@@ -9133,16 +9110,16 @@
|
|
|
9133
9110
|
};
|
|
9134
9111
|
const TabPanels = /*#__PURE__*/styled__default["default"](tabs.TabPanels).withConfig({
|
|
9135
9112
|
displayName: "Tabs__TabPanels",
|
|
9136
|
-
componentId: "sc-
|
|
9113
|
+
componentId: "sc-16y06a0-5"
|
|
9137
9114
|
})(["flex:1;"]);
|
|
9138
9115
|
const TabPanel = /*#__PURE__*/styled__default["default"](tabs.TabPanel).withConfig({
|
|
9139
9116
|
displayName: "Tabs__TabPanel",
|
|
9140
|
-
componentId: "sc-
|
|
9117
|
+
componentId: "sc-16y06a0-6"
|
|
9141
9118
|
})(["", "{padding-left:var(--gutter-half);}"], min$1.sm);
|
|
9142
9119
|
|
|
9143
9120
|
const CopyPasteVisible = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
9144
9121
|
displayName: "CopyPasteVisible",
|
|
9145
|
-
componentId: "sc-
|
|
9122
|
+
componentId: "sc-1r2c256-0"
|
|
9146
9123
|
})(["color:transparent;opacity:0;font-size:0;"]);
|
|
9147
9124
|
|
|
9148
9125
|
const p = `
|
|
@@ -9177,48 +9154,48 @@
|
|
|
9177
9154
|
`;
|
|
9178
9155
|
const P = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
9179
9156
|
displayName: "Native__P",
|
|
9180
|
-
componentId: "sc-
|
|
9157
|
+
componentId: "sc-1nx3nmy-0"
|
|
9181
9158
|
})(["", ""], p);
|
|
9182
9159
|
const H1 = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
9183
9160
|
displayName: "Native__H1",
|
|
9184
|
-
componentId: "sc-
|
|
9161
|
+
componentId: "sc-1nx3nmy-1"
|
|
9185
9162
|
})(["", ""], h1);
|
|
9186
9163
|
const H2 = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
9187
9164
|
displayName: "Native__H2",
|
|
9188
|
-
componentId: "sc-
|
|
9165
|
+
componentId: "sc-1nx3nmy-2"
|
|
9189
9166
|
})(["", ""], h2);
|
|
9190
9167
|
const H3 = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
9191
9168
|
displayName: "Native__H3",
|
|
9192
|
-
componentId: "sc-
|
|
9169
|
+
componentId: "sc-1nx3nmy-3"
|
|
9193
9170
|
})(["", ""], h3);
|
|
9194
9171
|
const H4 = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
9195
9172
|
displayName: "Native__H4",
|
|
9196
|
-
componentId: "sc-
|
|
9173
|
+
componentId: "sc-1nx3nmy-4"
|
|
9197
9174
|
})(["", ""], h4);
|
|
9198
9175
|
|
|
9199
9176
|
const Root = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
9200
9177
|
displayName: "ReadMore__Root",
|
|
9201
|
-
componentId: "sc-
|
|
9178
|
+
componentId: "sc-wgc8of-0"
|
|
9202
9179
|
})([""]);
|
|
9203
9180
|
const Content = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
9204
9181
|
displayName: "ReadMore__Content",
|
|
9205
|
-
componentId: "sc-
|
|
9182
|
+
componentId: "sc-wgc8of-1"
|
|
9206
9183
|
})(["& p:first-child{margin-top:0;}"]);
|
|
9207
9184
|
const BtnWrap = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
9208
9185
|
displayName: "ReadMore__BtnWrap",
|
|
9209
|
-
componentId: "sc-
|
|
9186
|
+
componentId: "sc-wgc8of-2"
|
|
9210
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);
|
|
9211
9188
|
const BtnFader = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
9212
9189
|
displayName: "ReadMore__BtnFader",
|
|
9213
|
-
componentId: "sc-
|
|
9190
|
+
componentId: "sc-wgc8of-3"
|
|
9214
9191
|
})(["width:30%;transition:transform 0.18s ease-in-out;background:linear-gradient(45deg,transparent 50%,", " 70%);"], p => p.$bg);
|
|
9215
9192
|
const Btn = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
9216
9193
|
displayName: "ReadMore__Btn",
|
|
9217
|
-
componentId: "sc-
|
|
9194
|
+
componentId: "sc-wgc8of-4"
|
|
9218
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);
|
|
9219
9196
|
const BtnIcon = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
9220
9197
|
displayName: "ReadMore__BtnIcon",
|
|
9221
|
-
componentId: "sc-
|
|
9198
|
+
componentId: "sc-wgc8of-5"
|
|
9222
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);
|
|
9223
9200
|
const ReadMore = _a => {
|
|
9224
9201
|
var {
|