@makeswift/runtime 0.0.5 → 0.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/dist/actions.cjs.js +6 -1
- package/dist/actions.cjs.js.map +1 -1
- package/dist/actions.es.js +6 -2
- package/dist/actions.es.js.map +1 -1
- package/dist/builder.cjs.js +2 -1
- package/dist/builder.cjs.js.map +1 -1
- package/dist/builder.es.js +2 -1
- package/dist/builder.es.js.map +1 -1
- package/dist/components.cjs.js +3 -1
- package/dist/components.cjs.js.map +1 -1
- package/dist/components.es.js +3 -1
- package/dist/components.es.js.map +1 -1
- package/dist/control-serialization.cjs.js +17 -0
- package/dist/control-serialization.cjs.js.map +1 -1
- package/dist/control-serialization.es.js +17 -0
- package/dist/control-serialization.es.js.map +1 -1
- package/dist/controls.cjs.js +20 -0
- package/dist/controls.cjs.js.map +1 -1
- package/dist/controls.es.js +2 -0
- package/dist/controls.es.js.map +1 -1
- package/dist/descriptors.cjs.js.map +1 -1
- package/dist/descriptors.es.js.map +1 -1
- package/dist/index.cjs.js +280 -96
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +280 -96
- package/dist/index.es.js.map +1 -1
- package/dist/list.cjs.js +8 -0
- package/dist/list.cjs.js.map +1 -0
- package/dist/list.es.js +6 -0
- package/dist/list.es.js.map +1 -0
- package/dist/next.cjs.js +2 -0
- package/dist/next.cjs.js.map +1 -1
- package/dist/next.es.js +2 -0
- package/dist/next.es.js.map +1 -1
- package/dist/react-builder-preview.cjs.js +35 -2
- package/dist/react-builder-preview.cjs.js.map +1 -1
- package/dist/react-builder-preview.es.js +37 -4
- package/dist/react-builder-preview.es.js.map +1 -1
- package/dist/react-page.cjs.js +32 -19
- package/dist/react-page.cjs.js.map +1 -1
- package/dist/react-page.es.js +26 -15
- package/dist/react-page.es.js.map +1 -1
- package/dist/react.cjs.js +2 -0
- package/dist/react.cjs.js.map +1 -1
- package/dist/react.es.js +2 -0
- package/dist/react.es.js.map +1 -1
- package/dist/text-input.cjs.js +50 -0
- package/dist/text-input.cjs.js.map +1 -0
- package/dist/text-input.es.js +34 -0
- package/dist/text-input.es.js.map +1 -0
- package/dist/types/builder/serialization/control-serialization.d.ts +4 -2
- package/dist/types/builder/serialization/control-serialization.d.ts.map +1 -1
- package/dist/types/builder/serialization/controls/list.d.ts +5 -0
- package/dist/types/builder/serialization/controls/list.d.ts.map +1 -0
- package/dist/types/builder/serialization/controls/types.d.ts +10 -0
- package/dist/types/builder/serialization/controls/types.d.ts.map +1 -0
- package/dist/types/builder/serialization/index.d.ts +1 -0
- package/dist/types/builder/serialization/index.d.ts.map +1 -1
- package/dist/types/components/builtin/Carousel/Carousel.d.ts +3 -3
- package/dist/types/components/builtin/Carousel/Carousel.d.ts.map +1 -1
- package/dist/types/components/builtin/Countdown/Countdown.d.ts +3 -3
- package/dist/types/components/builtin/Countdown/Countdown.d.ts.map +1 -1
- package/dist/types/components/builtin/Divider/Divider.d.ts +1 -1
- package/dist/types/components/builtin/Divider/Divider.d.ts.map +1 -1
- package/dist/types/components/builtin/Form/Form.d.ts +3 -3
- package/dist/types/components/builtin/Form/Form.d.ts.map +1 -1
- package/dist/types/components/builtin/Form/context/FormContext.d.ts +1 -1
- package/dist/types/components/builtin/Form/context/FormContext.d.ts.map +1 -1
- package/dist/types/components/builtin/Navigation/Navigation.d.ts +3 -3
- package/dist/types/components/builtin/Navigation/Navigation.d.ts.map +1 -1
- package/dist/types/components/builtin/Navigation/components/DropDownButton/index.d.ts.map +1 -1
- package/dist/types/components/builtin/Navigation/components/MobileMenu/index.d.ts +2 -2
- package/dist/types/components/builtin/Navigation/components/MobileMenu/index.d.ts.map +1 -1
- package/dist/types/components/builtin/SocialLinks/SocialLinks.d.ts +2 -2
- package/dist/types/components/builtin/SocialLinks/SocialLinks.d.ts.map +1 -1
- package/dist/types/components/hooks/index.d.ts +1 -1
- package/dist/types/components/hooks/index.d.ts.map +1 -1
- package/dist/types/components/hooks/{useColor.d.ts → useResponsiveColor.d.ts} +2 -2
- package/dist/types/components/hooks/useResponsiveColor.d.ts.map +1 -0
- package/dist/types/controls/checkbox.d.ts +13 -0
- package/dist/types/controls/checkbox.d.ts.map +1 -0
- package/dist/types/controls/color.d.ts +16 -0
- package/dist/types/controls/color.d.ts.map +1 -0
- package/dist/types/controls/control.d.ts +12 -0
- package/dist/types/controls/control.d.ts.map +1 -0
- package/dist/types/controls/image.d.ts +12 -0
- package/dist/types/controls/image.d.ts.map +1 -0
- package/dist/types/controls/index.d.ts +10 -0
- package/dist/types/controls/index.d.ts.map +1 -1
- package/dist/types/controls/list.d.ts +26 -0
- package/dist/types/controls/list.d.ts.map +1 -0
- package/dist/types/controls/number.d.ts +18 -0
- package/dist/types/controls/number.d.ts.map +1 -0
- package/dist/types/controls/select.d.ts +22 -0
- package/dist/types/controls/select.d.ts.map +1 -0
- package/dist/types/controls/shape.d.ts +16 -0
- package/dist/types/controls/shape.d.ts.map +1 -0
- package/dist/types/controls/text-area.d.ts +14 -0
- package/dist/types/controls/text-area.d.ts.map +1 -0
- package/dist/types/controls/text-input.d.ts +13 -0
- package/dist/types/controls/text-input.d.ts.map +1 -0
- package/dist/types/prop-controllers/descriptors.d.ts +13 -2
- package/dist/types/prop-controllers/descriptors.d.ts.map +1 -1
- package/dist/types/runtimes/react/components/index.d.ts +2 -0
- package/dist/types/runtimes/react/components/index.d.ts.map +1 -0
- package/dist/types/runtimes/react/components/render-hook.d.ts +14 -0
- package/dist/types/runtimes/react/components/render-hook.d.ts.map +1 -0
- package/dist/types/runtimes/react/controls/checkbox.d.ts +4 -0
- package/dist/types/runtimes/react/controls/checkbox.d.ts.map +1 -0
- package/dist/types/runtimes/react/controls/color.d.ts +4 -0
- package/dist/types/runtimes/react/controls/color.d.ts.map +1 -0
- package/dist/types/runtimes/react/controls/control.d.ts +20 -0
- package/dist/types/runtimes/react/controls/control.d.ts.map +1 -0
- package/dist/types/runtimes/react/controls/image.d.ts +4 -0
- package/dist/types/runtimes/react/controls/image.d.ts.map +1 -0
- package/dist/types/runtimes/react/controls/list.d.ts +13 -0
- package/dist/types/runtimes/react/controls/list.d.ts.map +1 -0
- package/dist/types/runtimes/react/controls/number.d.ts +4 -0
- package/dist/types/runtimes/react/controls/number.d.ts.map +1 -0
- package/dist/types/runtimes/react/controls/select.d.ts +4 -0
- package/dist/types/runtimes/react/controls/select.d.ts.map +1 -0
- package/dist/types/runtimes/react/controls/shape.d.ts +14 -0
- package/dist/types/runtimes/react/controls/shape.d.ts.map +1 -0
- package/dist/types/runtimes/react/controls/text-area.d.ts +4 -0
- package/dist/types/runtimes/react/controls/text-area.d.ts.map +1 -0
- package/dist/types/runtimes/react/controls/text-input.d.ts +4 -0
- package/dist/types/runtimes/react/controls/text-input.d.ts.map +1 -0
- package/dist/types/runtimes/react/controls.d.ts +7 -1
- package/dist/types/runtimes/react/controls.d.ts.map +1 -1
- package/dist/types/runtimes/react/index.d.ts +1 -1
- package/dist/types/runtimes/react/index.d.ts.map +1 -1
- package/dist/types/state/actions.d.ts +8 -1
- package/dist/types/state/actions.d.ts.map +1 -1
- package/dist/types/state/modules/is-in-builder.d.ts +6 -0
- package/dist/types/state/modules/is-in-builder.d.ts.map +1 -0
- package/dist/types/state/modules/react-components.d.ts +4 -2
- package/dist/types/state/modules/react-components.d.ts.map +1 -1
- package/dist/types/state/react-builder-preview.d.ts.map +1 -1
- package/dist/types/state/react-page.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/types/components/hooks/useColor.d.ts.map +0 -1
package/dist/index.es.js
CHANGED
|
@@ -64,6 +64,8 @@ import Hotkeys from "slate-hotkeys";
|
|
|
64
64
|
import ipsum from "corporate-ipsum";
|
|
65
65
|
import { Editor } from "slate-react";
|
|
66
66
|
import Lists from "@convertkit/slate-lists";
|
|
67
|
+
import { S as ShapeControlType, I as ImageControlType, C as ColorControlType, a as SelectControlType, T as TextAreaControlType, b as TextInputControlType, N as NumberControlType, c as CheckboxControlType } from "./text-input.es.js";
|
|
68
|
+
import { L as ListControlType } from "./list.es.js";
|
|
67
69
|
import { a as StyleControlProperty, S as StyleControlType } from "./style.es.js";
|
|
68
70
|
import { findDOMNode } from "react-dom";
|
|
69
71
|
const PlaceholderBase$1 = styled.div`
|
|
@@ -521,7 +523,7 @@ function useBoxShadow(value) {
|
|
|
521
523
|
});
|
|
522
524
|
});
|
|
523
525
|
}
|
|
524
|
-
function
|
|
526
|
+
function useResponsiveColor(color) {
|
|
525
527
|
const swatchIds = color == null ? [] : [...Array.from(new Set(color.map(({ value: v }) => v && v.swatchId).filter(isNonNullable)))];
|
|
526
528
|
const skip = swatchIds.length === 0;
|
|
527
529
|
const { error, data = {} } = useQuery(SWATCHES_BY_ID, { skip, variables: { ids: swatchIds } });
|
|
@@ -3612,11 +3614,12 @@ var SvgCheck12 = function SvgCheck122(props) {
|
|
|
3612
3614
|
return /* @__PURE__ */ React.createElement("svg", _extends$u({
|
|
3613
3615
|
width: 12,
|
|
3614
3616
|
height: 12,
|
|
3617
|
+
viewBox: "0 0 12 12",
|
|
3615
3618
|
xmlns: "http://www.w3.org/2000/svg"
|
|
3616
3619
|
}, props), _path$t || (_path$t = /* @__PURE__ */ React.createElement("path", {
|
|
3617
3620
|
fillRule: "evenodd",
|
|
3618
3621
|
clipRule: "evenodd",
|
|
3619
|
-
d: "M11.
|
|
3622
|
+
d: "M11.7071 1.79289C12.0976 2.18342 12.0976 2.81658 11.7071 3.20711L4.70711 10.2071C4.31658 10.5976 3.68342 10.5976 3.29289 10.2071L0.292893 7.20711C-0.0976311 6.81658 -0.0976311 6.18342 0.292893 5.79289C0.683417 5.40237 1.31658 5.40237 1.70711 5.79289L4 8.08579L10.2929 1.79289C10.6834 1.40237 11.3166 1.40237 11.7071 1.79289Z"
|
|
3620
3623
|
})));
|
|
3621
3624
|
};
|
|
3622
3625
|
const Shapes = Object.freeze({
|
|
@@ -4825,6 +4828,7 @@ var SvgSpinner20 = function SvgSpinner202(props) {
|
|
|
4825
4828
|
r: 9,
|
|
4826
4829
|
strokeOpacity: 0.4
|
|
4827
4830
|
}), /* @__PURE__ */ React.createElement("path", {
|
|
4831
|
+
strokeLinecap: "round",
|
|
4828
4832
|
d: "M9 18A9 9 0 0 0 9 0"
|
|
4829
4833
|
}))));
|
|
4830
4834
|
};
|
|
@@ -5623,7 +5627,7 @@ function DropDownItem$1(_S) {
|
|
|
5623
5627
|
"color"
|
|
5624
5628
|
]);
|
|
5625
5629
|
return /* @__PURE__ */ jsx(StyledDropDownItem, __spreadProps(__spreadValues({}, restOfProps), {
|
|
5626
|
-
color:
|
|
5630
|
+
color: useResponsiveColor(color)
|
|
5627
5631
|
}));
|
|
5628
5632
|
}
|
|
5629
5633
|
function DropDownButton(_U) {
|
|
@@ -5652,8 +5656,8 @@ function DropDownButton(_U) {
|
|
|
5652
5656
|
return /* @__PURE__ */ jsxs(DropDownContainer, {
|
|
5653
5657
|
ref: container,
|
|
5654
5658
|
children: [/* @__PURE__ */ jsx(Button$1, __spreadProps(__spreadValues({}, restOfProps), {
|
|
5655
|
-
textColor:
|
|
5656
|
-
color:
|
|
5659
|
+
textColor: useResponsiveColor(textColor),
|
|
5660
|
+
color: useResponsiveColor(color),
|
|
5657
5661
|
children: /* @__PURE__ */ jsxs("div", {
|
|
5658
5662
|
style: {
|
|
5659
5663
|
display: "flex",
|
|
@@ -5734,7 +5738,7 @@ function DropDownItem(_W) {
|
|
|
5734
5738
|
"color"
|
|
5735
5739
|
]);
|
|
5736
5740
|
return /* @__PURE__ */ jsx(StyledLink$2, __spreadProps(__spreadValues({}, restOfProps), {
|
|
5737
|
-
color:
|
|
5741
|
+
color: useResponsiveColor(color)
|
|
5738
5742
|
}));
|
|
5739
5743
|
}
|
|
5740
5744
|
function MobileDropDownButton(_Y) {
|
|
@@ -5757,8 +5761,8 @@ function MobileDropDownButton(_Y) {
|
|
|
5757
5761
|
const [isOpen, setIsOpen] = useState(false);
|
|
5758
5762
|
return /* @__PURE__ */ jsxs(Fragment, {
|
|
5759
5763
|
children: [/* @__PURE__ */ jsx(ButtonLink$1, __spreadProps(__spreadValues({}, restOfProps), {
|
|
5760
|
-
textColor:
|
|
5761
|
-
color:
|
|
5764
|
+
textColor: useResponsiveColor(textColor),
|
|
5765
|
+
color: useResponsiveColor(color),
|
|
5762
5766
|
onPointerDown: () => setIsOpen((prev) => !prev),
|
|
5763
5767
|
children: /* @__PURE__ */ jsxs("div", {
|
|
5764
5768
|
style: {
|
|
@@ -5801,8 +5805,8 @@ function NavigationButton$1(props) {
|
|
|
5801
5805
|
"color"
|
|
5802
5806
|
]);
|
|
5803
5807
|
return /* @__PURE__ */ jsx(Button$1, __spreadProps(__spreadValues({}, restOfProps), {
|
|
5804
|
-
textColor:
|
|
5805
|
-
color:
|
|
5808
|
+
textColor: useResponsiveColor(textColor),
|
|
5809
|
+
color: useResponsiveColor(color)
|
|
5806
5810
|
}));
|
|
5807
5811
|
}
|
|
5808
5812
|
const ButtonLink = styled(NavigationButton$1)`
|
|
@@ -5893,6 +5897,12 @@ const Container$2 = styled.nav`
|
|
|
5893
5897
|
align-items: center;
|
|
5894
5898
|
${cssMargin()}
|
|
5895
5899
|
${cssTextStyle()}
|
|
5900
|
+
${(p) => cssMediaRules([p.gutter], ([gutter = {
|
|
5901
|
+
value: 0,
|
|
5902
|
+
unit: "px"
|
|
5903
|
+
}]) => css`
|
|
5904
|
+
gap: ${gutter.value}${gutter.unit};
|
|
5905
|
+
`)}
|
|
5896
5906
|
`;
|
|
5897
5907
|
const LinksContainer = styled.div`
|
|
5898
5908
|
display: flex;
|
|
@@ -5927,8 +5937,8 @@ function NavigationButton(props) {
|
|
|
5927
5937
|
"color"
|
|
5928
5938
|
]);
|
|
5929
5939
|
return /* @__PURE__ */ jsx(Button$1, __spreadProps(__spreadValues({}, restOfProps), {
|
|
5930
|
-
textColor:
|
|
5931
|
-
color:
|
|
5940
|
+
textColor: useResponsiveColor(textColor),
|
|
5941
|
+
color: useResponsiveColor(color)
|
|
5932
5942
|
}));
|
|
5933
5943
|
}
|
|
5934
5944
|
const placeholder = {
|
|
@@ -5963,6 +5973,7 @@ const Navigation = forwardRef(function Navigation2({
|
|
|
5963
5973
|
className: cx(width),
|
|
5964
5974
|
margin,
|
|
5965
5975
|
textStyle: linkTextStyle,
|
|
5976
|
+
gutter,
|
|
5966
5977
|
children: [showLogo === true && /* @__PURE__ */ jsx(ImageComponent, {
|
|
5967
5978
|
altText: logoAltText,
|
|
5968
5979
|
file: logoFile,
|
|
@@ -6247,9 +6258,10 @@ var SvgLogoAngellist20 = function SvgLogoAngellist202(props) {
|
|
|
6247
6258
|
return /* @__PURE__ */ React.createElement("svg", _extends$m({
|
|
6248
6259
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6249
6260
|
width: 20,
|
|
6250
|
-
height: 20
|
|
6261
|
+
height: 20,
|
|
6262
|
+
viewBox: "0 0 20 20"
|
|
6251
6263
|
}, props), _path$m || (_path$m = /* @__PURE__ */ React.createElement("path", {
|
|
6252
|
-
d: "M13.
|
|
6264
|
+
d: "M13.7412,8.2967 C14.3582,6.6297 14.8392,5.2547 15.1842,4.1687 C15.5292,3.0837 15.7022,2.4177 15.7022,2.1707 C15.7022,1.9047 15.6442,1.6987 15.5292,1.5517 C15.4142,1.4057 15.2562,1.3327 15.0532,1.3327 C14.7962,1.3327 14.5332,1.5457 14.2662,1.9707 C13.9992,2.3967 13.7052,3.0817 13.3832,4.0247 L12.0022,7.9947 L13.7412,8.2967 Z M11.9052,11.9917 C11.5102,11.9737 11.1342,11.9327 10.7802,11.8677 C10.4262,11.8047 10.0872,11.7127 9.7652,11.5937 C9.9122,11.8867 10.0432,12.1797 10.1582,12.4727 C10.2742,12.7657 10.3682,13.0547 10.4422,13.3387 C10.6622,13.0637 10.8952,12.8137 11.1382,12.5887 C11.3832,12.3647 11.6382,12.1657 11.9052,11.9917 L11.9052,11.9917 Z M10.3452,7.8297 L8.8542,3.5437 C8.4672,2.4547 8.1682,1.7427 7.9562,1.4077 C7.7442,1.0737 7.5142,0.9067 7.2662,0.9067 C7.0732,0.9067 6.9162,0.9797 6.7972,1.1267 C6.6772,1.2727 6.6172,1.4697 6.6172,1.7167 C6.6172,2.1387 6.7782,2.8707 7.1002,3.9147 C7.4232,4.9587 7.9062,6.3277 8.5502,8.0217 C8.6052,7.9217 8.6832,7.8507 8.7852,7.8087 C8.8862,7.7677 9.0242,7.7477 9.1992,7.7477 C9.2542,7.7477 9.3652,7.7527 9.5312,7.7607 C9.6962,7.7707 9.9682,7.7937 10.3452,7.8297 L10.3452,7.8297 Z M8.9922,14.4637 C9.1482,14.4637 9.2912,14.3937 9.4202,14.2517 C9.5492,14.1097 9.6132,13.9567 9.6132,13.7917 C9.6132,13.6177 9.4872,13.2127 9.2342,12.5757 C8.9802,11.9397 8.6652,11.3147 8.2882,10.7007 C8.0122,10.2427 7.7402,9.8977 7.4732,9.6637 C7.2062,9.4297 6.9532,9.3137 6.7142,9.3137 C6.5202,9.3137 6.3062,9.4347 6.0722,9.6767 C5.8372,9.9197 5.7202,10.1467 5.7202,10.3577 C5.7202,10.5767 5.8352,10.9067 6.0652,11.3457 C6.2952,11.7857 6.6032,12.2527 6.9902,12.7477 C7.3952,13.2877 7.7772,13.7087 8.1362,14.0107 C8.4952,14.3137 8.7802,14.4637 8.9922,14.4637 L8.9922,14.4637 Z M4.8502,14.1347 C4.9792,14.2907 5.1582,14.5197 5.3882,14.8217 C5.9962,15.6547 6.5572,16.0717 7.0732,16.0717 C7.2472,16.0717 7.4042,16.0167 7.5422,15.9067 C7.6802,15.7967 7.7492,15.6827 7.7492,15.5637 C7.7492,15.4257 7.6572,15.1967 7.4732,14.8767 C7.2892,14.5557 7.0362,14.1947 6.7142,13.7917 C6.3452,13.3247 6.0392,12.9837 5.7962,12.7677 C5.5522,12.5527 5.3562,12.4447 5.2092,12.4447 C4.8872,12.4447 4.5902,12.6167 4.3182,12.9607 C4.0472,13.3037 3.9112,13.7087 3.9112,14.1757 C3.9112,14.5517 4.0052,14.9707 4.1942,15.4327 C4.3832,15.8957 4.6572,16.3597 5.0152,16.8267 C5.5582,17.5507 6.2332,18.1067 7.0382,18.4957 C7.8442,18.8857 8.7342,19.0797 9.7102,19.0797 C11.5052,19.0797 13.0082,18.4137 14.2182,17.0817 C15.4282,15.7487 16.0332,14.0797 16.0332,12.0737 C16.0332,11.4607 15.9872,10.9737 15.8952,10.6107 C15.8042,10.2497 15.6512,9.9857 15.4392,9.8217 C15.0622,9.5097 14.3282,9.2307 13.2372,8.9837 C12.1462,8.7357 11.0082,8.6127 9.8202,8.6127 C9.4892,8.6127 9.2542,8.6677 9.1162,8.7777 C8.9782,8.8877 8.9092,9.0747 8.9092,9.3407 C8.9092,9.9637 9.2592,10.4147 9.9582,10.6937 C10.6582,10.9737 11.7902,11.1127 13.3552,11.1127 L13.9212,11.1127 C14.0502,11.1127 14.1532,11.1607 14.2312,11.2567 C14.3092,11.3527 14.3632,11.4977 14.3902,11.6897 C14.2332,11.8367 13.9122,12.0037 13.4242,12.1917 C12.9362,12.3787 12.5632,12.5647 12.3052,12.7477 C11.7542,13.1507 11.3092,13.6287 10.9732,14.1827 C10.6372,14.7367 10.4692,15.2607 10.4692,15.7557 C10.4692,16.0577 10.5402,16.4217 10.6832,16.8477 C10.8262,17.2737 10.8972,17.5367 10.8972,17.6377 L10.8972,17.7337 L10.8692,17.8577 C10.4652,17.8297 10.1452,17.5937 9.9102,17.1497 C9.6752,16.7057 9.5582,16.1127 9.5582,15.3707 L9.5582,15.2477 C9.4842,15.3117 9.4132,15.3577 9.3442,15.3847 C9.2752,15.4127 9.1992,15.4257 9.1162,15.4257 C9.0332,15.4257 8.9552,15.4197 8.8822,15.4047 C8.8072,15.3917 8.7252,15.3707 8.6332,15.3437 C8.6602,15.4447 8.6812,15.5427 8.6952,15.6387 C8.7092,15.7347 8.7162,15.8107 8.7162,15.8657 C8.7162,16.2047 8.5822,16.4957 8.3152,16.7377 C8.0482,16.9807 7.7312,17.1017 7.3632,17.1017 C6.7832,17.1017 6.1942,16.8197 5.5952,16.2567 C4.9972,15.6937 4.6982,15.1427 4.6982,14.6017 C4.6982,14.5007 4.7102,14.4117 4.7332,14.3337 C4.7552,14.2557 4.7952,14.1897 4.8502,14.1347 L4.8502,14.1347 Z M14.7352,8.5297 C15.5642,8.6867 16.1482,9.0337 16.4892,9.5737 C16.8292,10.1147 17.0002,10.9667 17.0002,12.1297 C17.0002,14.4367 16.3032,16.3257 14.9082,17.7957 C13.5132,19.2647 11.7302,19.9997 9.5582,19.9997 C8.7022,19.9997 7.8712,19.8467 7.0662,19.5397 C6.2602,19.2337 5.5682,18.8047 4.9882,18.2557 C4.3252,17.6507 3.8282,17.0127 3.4972,16.3397 C3.1652,15.6667 3.0002,14.9777 3.0002,14.2727 C3.0002,13.4847 3.1702,12.8757 3.5112,12.4447 C3.8512,12.0147 4.3892,11.7217 5.1262,11.5667 C4.9882,11.2457 4.8872,10.9757 4.8222,10.7557 C4.7582,10.5357 4.7252,10.3667 4.7252,10.2477 C4.7252,9.8357 4.9442,9.4147 5.3822,8.9837 C5.8192,8.5527 6.2312,8.3377 6.6172,8.3377 C6.7832,8.3377 6.9572,8.3677 7.1422,8.4267 C7.3262,8.4867 7.5372,8.5857 7.7772,8.7227 C7.0682,6.7267 6.5532,5.1857 6.2312,4.1007 C5.9082,3.0147 5.7472,2.2667 5.7472,1.8547 C5.7472,1.2867 5.8942,0.8357 6.1892,0.5017 C6.4842,0.1677 6.8842,-0.0003 7.3902,-0.0003 C8.2552,-0.0003 9.3512,1.9227 10.6762,5.7697 C10.9062,6.4287 11.0812,6.9367 11.2012,7.2947 C11.3032,7.0097 11.4452,6.6077 11.6292,6.0857 C12.9552,2.2757 14.0952,0.3707 15.0532,0.3707 C15.5222,0.3707 15.8972,0.5287 16.1792,0.8447 C16.4592,1.1607 16.5992,1.5847 16.5992,2.1157 C16.5992,2.5187 16.4452,3.2557 16.1372,4.3267 C15.8282,5.3987 15.3612,6.7997 14.7352,8.5297 L14.7352,8.5297 Z"
|
|
6253
6265
|
})));
|
|
6254
6266
|
};
|
|
6255
6267
|
var _path$l;
|
|
@@ -6271,9 +6283,10 @@ var SvgLogoCodepen20 = function SvgLogoCodepen202(props) {
|
|
|
6271
6283
|
return /* @__PURE__ */ React.createElement("svg", _extends$l({
|
|
6272
6284
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6273
6285
|
width: 20,
|
|
6274
|
-
height: 20
|
|
6286
|
+
height: 20,
|
|
6287
|
+
viewBox: "0 0 20 20"
|
|
6275
6288
|
}, props), _path$l || (_path$l = /* @__PURE__ */ React.createElement("path", {
|
|
6276
|
-
d: "M18.281
|
|
6289
|
+
d: "M18.281,11.4383 L16.132,10.0003 L18.281,8.5623 L18.281,11.4383 Z M10.859,17.5343 L10.859,13.5263 L14.586,11.0343 L17.594,13.0453 L10.859,17.5343 Z M10,12.0333 L6.961,10.0003 L10,7.9663 L13.04,10.0003 L10,12.0333 Z M9.141,17.5343 L2.407,13.0453 L5.415,11.0343 L9.141,13.5263 L9.141,17.5343 Z M1.719,8.5623 L3.869,10.0003 L1.719,11.4383 L1.719,8.5623 Z M9.141,2.4653 L9.141,6.4743 L5.415,8.9663 L2.407,6.9543 L9.141,2.4653 Z M10.859,2.4653 L17.594,6.9543 L14.586,8.9663 L10.859,6.4743 L10.859,2.4653 Z M19.985,6.8033 C19.944,6.5803 19.812,6.3603 19.617,6.2383 L10.477,0.1443 C10.188,-0.0477 9.812,-0.0477 9.523,0.1443 L0.383,6.2383 C0.148,6.3943 0,6.6713 0,6.9533 L0,13.0463 C0,13.3283 0.148,13.6063 0.383,13.7613 L9.523,19.8553 C9.668,19.9523 9.834,20.0003 10,20.0003 C10.167,20.0003 10.333,19.9523 10.477,19.8553 L19.617,13.7613 C19.854,13.6133 20,13.3233 20,13.0463 L20,6.9533 C20.001,6.9023 19.996,6.8533 19.985,6.8033 L19.985,6.8033 Z"
|
|
6277
6290
|
})));
|
|
6278
6291
|
};
|
|
6279
6292
|
var _path$k;
|
|
@@ -6295,9 +6308,10 @@ var SvgLogoDribbble20 = function SvgLogoDribbble202(props) {
|
|
|
6295
6308
|
return /* @__PURE__ */ React.createElement("svg", _extends$k({
|
|
6296
6309
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6297
6310
|
width: 20,
|
|
6298
|
-
height: 20
|
|
6311
|
+
height: 20,
|
|
6312
|
+
viewBox: "0 0 20 20"
|
|
6299
6313
|
}, props), _path$k || (_path$k = /* @__PURE__ */ React.createElement("path", {
|
|
6300
|
-
d: "M19.797 7.
|
|
6314
|
+
d: "M19.797,7.9883 C19.664,7.3443 19.468,6.7143 19.212,6.1083 C18.961,5.5133 18.652,4.9453 18.29,4.4103 C15.203,-0.1687 8.988,-1.3777 4.409,1.7093 C3.344,2.4273 2.427,3.3443 1.709,4.4103 C0.977,5.4923 0.465,6.7083 0.202,7.9883 C-0.067,9.3173 -0.067,10.6863 0.202,12.0153 C0.466,13.2953 0.978,14.5103 1.709,15.5933 C2.427,16.6573 3.343,17.5743 4.407,18.2923 C4.943,18.6533 5.512,18.9623 6.107,19.2143 C8.596,20.2613 11.402,20.2613 13.893,19.2143 C14.486,18.9623 15.056,18.6533 15.591,18.2923 C16.655,17.5743 17.572,16.6583 18.29,15.5933 C19.022,14.5103 19.533,13.2953 19.797,12.0153 C20.067,10.6863 20.067,9.3173 19.797,7.9883 L19.797,7.9883 Z M18.537,9.9153 C16.58,9.5223 14.575,9.4273 12.59,9.6353 C12.528,9.4903 12.469,9.3423 12.408,9.1963 C12.226,8.7773 12.039,8.3633 11.84,7.9563 C13.701,7.2803 15.346,6.1123 16.598,4.5773 C17.838,6.0813 18.524,7.9663 18.54,9.9153 L18.537,9.9153 Z M15.641,3.5933 C14.493,5.0443 12.941,6.1203 11.179,6.6833 C10.23,4.9523 9.163,3.2883 7.987,1.7023 C10.693,1.0433 13.552,1.7493 15.641,3.5923 L15.641,3.5933 Z M6.357,2.2793 C7.506,3.8563 8.566,5.4993 9.528,7.1983 C6.954,7.8773 4.305,8.2273 1.643,8.2413 C2.195,5.6263 3.939,3.4193 6.357,2.2793 L6.357,2.2793 Z M1.461,10.0003 C1.461,9.9093 1.465,9.8183 1.468,9.7273 C4.433,9.7393 7.385,9.3293 10.235,8.5103 C10.48,8.9893 10.714,9.4773 10.928,9.9643 C10.816,9.9943 10.703,10.0293 10.592,10.0663 C7.704,11.1013 5.254,13.0903 3.646,15.7023 C2.238,14.1363 1.462,12.1053 1.465,10.0003 L1.461,10.0003 Z M10.005,18.5453 C8.019,18.5483 6.094,17.8543 4.565,16.5873 C4.677,16.6773 4.756,16.7373 4.756,16.7373 C4.756,16.7373 6.393,13.1673 11.458,11.4013 C11.477,11.3943 11.497,11.3893 11.516,11.3843 C12.327,13.4833 12.938,15.6533 13.339,17.8683 C12.284,18.3153 11.151,18.5463 10.005,18.5453 L10.005,18.5453 Z M14.777,17.0823 C14.4,15.0063 13.843,12.9653 13.115,10.9833 C14.896,10.7193 16.712,10.8463 18.438,11.3563 C18.062,13.6893 16.737,15.7623 14.777,17.0833 L14.777,17.0823 Z"
|
|
6301
6315
|
})));
|
|
6302
6316
|
};
|
|
6303
6317
|
var _path$j;
|
|
@@ -6319,7 +6333,8 @@ var SvgLogoFacebook20 = function SvgLogoFacebook202(props) {
|
|
|
6319
6333
|
return /* @__PURE__ */ React.createElement("svg", _extends$j({
|
|
6320
6334
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6321
6335
|
width: 20,
|
|
6322
|
-
height: 20
|
|
6336
|
+
height: 20,
|
|
6337
|
+
viewBox: "0 0 20 20"
|
|
6323
6338
|
}, props), _path$j || (_path$j = /* @__PURE__ */ React.createElement("path", {
|
|
6324
6339
|
d: "M18.896 0H1.104C.494 0 0 .494 0 1.104v17.792C0 19.506.494 20 1.104 20h9.58v-7.734H8.086V9.238h2.598V7.01c0-2.583 1.577-3.989 3.881-3.989 1.104 0 2.053.082 2.33.119v2.699l-1.59.001c-1.254 0-1.496.596-1.496 1.47v1.928h2.997l-.39 3.028h-2.607V20h5.087c.61 0 1.104-.494 1.104-1.104V1.104C20 .494 19.506 0 18.896 0"
|
|
6325
6340
|
})));
|
|
@@ -6343,9 +6358,10 @@ var SvgLogoGithub20 = function SvgLogoGithub202(props) {
|
|
|
6343
6358
|
return /* @__PURE__ */ React.createElement("svg", _extends$i({
|
|
6344
6359
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6345
6360
|
width: 20,
|
|
6346
|
-
height: 20
|
|
6361
|
+
height: 20,
|
|
6362
|
+
viewBox: "0 0 20 20"
|
|
6347
6363
|
}, props), _path$i || (_path$i = /* @__PURE__ */ React.createElement("path", {
|
|
6348
|
-
d: "M9.
|
|
6364
|
+
d: "M9.9958,0.0029 C4.6058,-0.1251 0.1318,4.1389 0.0028,9.5289 C-0.1012,13.8779 2.6858,17.7709 6.8358,19.0749 C7.0938,19.1759 7.3838,19.0489 7.4848,18.7919 C7.5078,18.7319 7.5198,18.6689 7.5188,18.6049 C7.5188,18.3709 7.5098,17.7559 7.5058,16.9399 C4.7238,17.5299 4.1368,15.6269 4.1368,15.6269 C3.9498,15.0329 3.5558,14.5249 3.0268,14.1959 C2.1178,13.5889 3.0958,13.6019 3.0958,13.6019 C3.7338,13.6849 4.2978,14.0569 4.6268,14.6089 C5.2118,15.6279 6.5058,15.9899 7.5358,15.4229 C7.5828,14.9239 7.8088,14.4589 8.1718,14.1139 C5.9508,13.8669 3.6178,13.0239 3.6178,9.2769 C3.6038,8.3019 3.9738,7.3589 4.6458,6.6519 C4.3408,5.8089 4.3758,4.8799 4.7438,4.0629 C4.7438,4.0629 5.5838,3.7989 7.4938,5.0619 C9.1338,4.6239 10.8598,4.6239 12.5008,5.0619 C14.4098,3.7959 15.2478,4.0629 15.2478,4.0629 C15.6168,4.8789 15.6518,5.8089 15.3468,6.6519 C16.0198,7.3589 16.3898,8.3019 16.3748,9.2769 C16.3748,13.0369 14.0368,13.8649 11.8088,14.1069 C12.2908,14.5819 12.5388,15.2449 12.4888,15.9189 C12.4888,17.2289 12.4758,18.2819 12.4758,18.6049 C12.4718,18.8789 12.6898,19.1069 12.9648,19.1109 C13.0328,19.1119 13.0998,19.0999 13.1638,19.0739 C18.3078,17.4569 21.1658,11.9769 19.5478,6.8329 C18.2418,2.6829 14.3468,-0.1031 9.9958,0.0029"
|
|
6349
6365
|
})));
|
|
6350
6366
|
};
|
|
6351
6367
|
var _path$h;
|
|
@@ -6367,9 +6383,10 @@ var SvgLogoInstagram20 = function SvgLogoInstagram202(props) {
|
|
|
6367
6383
|
return /* @__PURE__ */ React.createElement("svg", _extends$h({
|
|
6368
6384
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6369
6385
|
width: 20,
|
|
6370
|
-
height: 20
|
|
6386
|
+
height: 20,
|
|
6387
|
+
viewBox: "0 0 20 20"
|
|
6371
6388
|
}, props), _path$h || (_path$h = /* @__PURE__ */ React.createElement("path", {
|
|
6372
|
-
d: "M15.338 3.462a1.2 1.2 0 1 0 0 2.4 1.2 1.2 0 0 0 0-2.4M10 13.332a3.333 3.333 0 1 1 0-6.664 3.333 3.333 0 0 1 0 6.665m0-8.468a5.135 5.135 0 1 0 0 10.27 5.135 5.135 0 0 0 0-10.27M10 0C7.284 0 6.943.012 5.877.06 4.813.109 4.086.278 3.45.525a4.919 4.919 0 0 0-1.772 1.153A4.905 4.905 0 0 0 .525 3.45C.278 4.086.109 4.813.06 5.877.011 6.944 0 7.284 0 10s.011 3.057.06 4.123c.049 1.065.218 1.79.465 2.428a4.898 4.898 0 0 0 1.153 1.77 4.882 4.882 0 0 0 1.772 1.154c.636.248 1.363.417 2.427.465 1.066.048 1.407.06 4.123.06s3.056-.012 4.123-.06c1.065-.048 1.791-.217 2.427-.465a4.87 4.87 0 0 0 1.771-1.154 4.888 4.888 0 0 0 1.154-1.77c.247-.637.416-1.363.465-2.428.048-1.066.06-1.407.06-4.123s-.012-3.056-.06-4.123c-.049-1.064-.218-1.791-.465-2.427a4.895 4.895 0 0 0-1.154-1.772A4.907 4.907 0 0 0 16.55.525C15.914.278 15.188.109 14.123.06 13.056.012 12.716 0 10 0m0 1.802c2.67 0 2.986.01 4.041.058.975.045 1.505.207 1.857.345.466.18.799.398 1.149.748.351.349.567.683.749 1.149.137.353.299.882.344 1.857.048 1.055.058 1.37.058 4.04s-.01 2.987-.058 4.042c-.045.975-.207 1.504-.344 1.857a3.11 3.11 0 0 1-.749 1.15c-.35.35-.683.566-1.149.748-.352.137-.882.3-1.857.344-1.055.049-1.37.058-4.041.058-2.67 0-2.987-.01-4.041-.058-.975-.044-1.504-.207-1.857-.344a3.104 3.104 0 0 1-1.15-.748 3.133 3.133 0 0 1-.748-1.15c-.137-.353-.3-.882-.344-1.857-.048-1.055-.058-1.371-.058-4.041 0-2.67.01-2.986.058-4.041.044-.975.207-1.504.344-1.857.182-.466.399-.8.748-1.
|
|
6389
|
+
d: "M15.338 3.462a1.2 1.2 0 1 0 0 2.4 1.2 1.2 0 0 0 0-2.4M10 13.332a3.333 3.333 0 1 1 0-6.664 3.333 3.333 0 0 1 0 6.665m0-8.468a5.135 5.135 0 1 0 0 10.27 5.135 5.135 0 0 0 0-10.27M10 0C7.284 0 6.943.012 5.877.06 4.813.109 4.086.278 3.45.525a4.919 4.919 0 0 0-1.772 1.153A4.905 4.905 0 0 0 .525 3.45C.278 4.086.109 4.813.06 5.877.011 6.944 0 7.284 0 10s.011 3.057.06 4.123c.049 1.065.218 1.79.465 2.428a4.898 4.898 0 0 0 1.153 1.77 4.882 4.882 0 0 0 1.772 1.154c.636.248 1.363.417 2.427.465 1.066.048 1.407.06 4.123.06s3.056-.012 4.123-.06c1.065-.048 1.791-.217 2.427-.465a4.87 4.87 0 0 0 1.771-1.154 4.888 4.888 0 0 0 1.154-1.77c.247-.637.416-1.363.465-2.428.048-1.066.06-1.407.06-4.123s-.012-3.056-.06-4.123c-.049-1.064-.218-1.791-.465-2.427a4.895 4.895 0 0 0-1.154-1.772A4.907 4.907 0 0 0 16.55.525C15.914.278 15.188.109 14.123.06 13.056.012 12.716 0 10 0m0 1.802c2.67 0 2.986.01 4.041.058.975.045 1.505.207 1.857.345.466.18.799.398 1.149.748.351.349.567.683.749 1.149.137.353.299.882.344 1.857.048 1.055.058 1.37.058 4.04s-.01 2.987-.058 4.042c-.045.975-.207 1.504-.344 1.857a3.11 3.11 0 0 1-.749 1.15c-.35.35-.683.566-1.149.748-.352.137-.882.3-1.857.344-1.055.049-1.37.058-4.041.058-2.67 0-2.987-.01-4.041-.058-.975-.044-1.504-.207-1.857-.344a3.104 3.104 0 0 1-1.15-.748 3.133 3.133 0 0 1-.748-1.15c-.137-.353-.3-.882-.344-1.857-.048-1.055-.058-1.371-.058-4.041 0-2.67.01-2.986.058-4.041.044-.975.207-1.504.344-1.857.182-.466.399-.8.748-1.15.35-.35.683-.566 1.15-.747.353-.138.882-.3 1.857-.345C7.014 1.812 7.33 1.802 10 1.802"
|
|
6373
6390
|
})));
|
|
6374
6391
|
};
|
|
6375
6392
|
var _path$g;
|
|
@@ -6391,9 +6408,10 @@ var SvgLogoLinkedin20 = function SvgLogoLinkedin202(props) {
|
|
|
6391
6408
|
return /* @__PURE__ */ React.createElement("svg", _extends$g({
|
|
6392
6409
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6393
6410
|
width: 20,
|
|
6394
|
-
height: 20
|
|
6411
|
+
height: 20,
|
|
6412
|
+
viewBox: "0 0 20 20"
|
|
6395
6413
|
}, props), _path$g || (_path$g = /* @__PURE__ */ React.createElement("path", {
|
|
6396
|
-
d: "
|
|
6414
|
+
d: "M0.516,19.6389 L4.412,19.6389 L4.412,7.2959 L0.516,7.2959 L0.516,19.6389 Z M2.365,5.7519 L2.337,5.7519 C1.152,5.8469 0.114,4.9629 0.019,3.7769 C0.014,3.7219 0.012,3.6669 0.012,3.6119 C-0.118,2.3069 0.834,1.1429 2.14,1.0119 C3.446,0.8809 4.61,1.8339 4.74,3.1399 C4.87,4.4459 3.918,5.6099 2.612,5.7399 C2.53,5.7489 2.447,5.7519 2.365,5.7519 L2.365,5.7519 Z M20,19.6399 L15.583,19.6399 L15.583,13.2519 C15.583,11.5799 14.891,10.4359 13.372,10.4359 C12.418,10.4359 11.569,11.0439 11.262,11.9479 C11.172,12.2759 11.14,12.6179 11.172,12.9569 L11.172,19.6399 L6.791,19.6399 C6.791,19.6399 6.847,8.3249 6.791,7.2959 L11.167,7.2959 L11.167,9.2329 C11.426,8.3869 12.824,7.1769 15.055,7.1769 C17.824,7.1769 20,8.9529 20,12.7759 L20,19.6399 Z"
|
|
6397
6415
|
})));
|
|
6398
6416
|
};
|
|
6399
6417
|
var _path$f;
|
|
@@ -6415,9 +6433,10 @@ var SvgLogoMedium20 = function SvgLogoMedium202(props) {
|
|
|
6415
6433
|
return /* @__PURE__ */ React.createElement("svg", _extends$f({
|
|
6416
6434
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6417
6435
|
width: 20,
|
|
6418
|
-
height: 20
|
|
6436
|
+
height: 20,
|
|
6437
|
+
viewBox: "0 0 20 20"
|
|
6419
6438
|
}, props), _path$f || (_path$f = /* @__PURE__ */ React.createElement("path", {
|
|
6420
|
-
d: "M2.
|
|
6439
|
+
d: "M2.3716,5.2642 C2.3966,5.0162 2.3026,4.7722 2.1196,4.6052 L0.2516,2.3392 L0.2516,2.0002 L6.0506,2.0002 L10.5326,11.9052 L14.4726,2.0002 L19.9996,2.0002 L19.9996,2.3392 L18.4036,3.8812 C18.2656,3.9872 18.1976,4.1602 18.2256,4.3322 L18.2256,15.6672 C18.1976,15.8392 18.2656,16.0132 18.4036,16.1192 L19.9626,17.6612 L19.9626,18.0002 L12.1196,18.0002 L12.1196,17.6612 L13.7346,16.0812 C13.8936,15.9212 13.8936,15.8742 13.8936,15.6302 L13.8936,6.4682 L9.4026,17.9622 L8.7956,17.9622 L3.5666,6.4682 L3.5666,14.1722 C3.5226,14.4952 3.6296,14.8212 3.8566,15.0562 L5.9566,17.6242 L5.9566,17.9622 L-0.0004,17.9622 L-0.0004,17.6242 L2.1006,15.0562 C2.3256,14.8212 2.4256,14.4932 2.3716,14.1722 L2.3716,5.2642 Z"
|
|
6421
6440
|
})));
|
|
6422
6441
|
};
|
|
6423
6442
|
var _path$e;
|
|
@@ -6439,9 +6458,10 @@ var SvgLogoPinterest20 = function SvgLogoPinterest202(props) {
|
|
|
6439
6458
|
return /* @__PURE__ */ React.createElement("svg", _extends$e({
|
|
6440
6459
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6441
6460
|
width: 20,
|
|
6442
|
-
height: 20
|
|
6461
|
+
height: 20,
|
|
6462
|
+
viewBox: "0 0 20 20"
|
|
6443
6463
|
}, props), _path$e || (_path$e = /* @__PURE__ */ React.createElement("path", {
|
|
6444
|
-
d: "M9.
|
|
6464
|
+
d: "M9.9949,-0.0001 C4.4749,-0.0001 -0.0001,4.4759 -0.0001,9.9959 C-0.0001,13.9649 2.3489,17.5579 5.9839,19.1509 C5.9409,18.3809 5.9989,17.6099 6.1559,16.8549 C6.3489,16.0439 7.4419,11.4099 7.4419,11.4099 C7.2249,10.9109 7.1169,10.3709 7.1229,9.8269 C7.1229,8.3459 7.9829,7.2399 9.0499,7.2399 C9.7899,7.2289 10.3979,7.8199 10.4089,8.5599 C10.4089,8.6209 10.4059,8.6809 10.3989,8.7409 C10.2059,9.9449 9.9109,11.1299 9.5159,12.2849 C9.3049,13.1109 9.8039,13.9529 10.6309,14.1649 C10.7819,14.2029 10.9379,14.2179 11.0939,14.2099 C12.9879,14.2099 14.2639,11.7779 14.2639,8.8959 C14.2639,6.7059 12.7889,5.0659 10.1039,5.0659 C7.4929,4.9619 5.2909,6.9949 5.1869,9.6059 C5.1839,9.6879 5.1829,9.7699 5.1839,9.8509 C5.1529,10.5639 5.3879,11.2629 5.8429,11.8129 C6.0079,11.9479 6.0659,12.1729 5.9859,12.3709 C5.9389,12.5529 5.8289,12.9989 5.7829,13.1729 C5.7529,13.3609 5.5769,13.4889 5.3899,13.4579 C5.3519,13.4529 5.3159,13.4409 5.2829,13.4229 C3.8859,12.8539 3.2359,11.3249 3.2359,9.6069 C3.2359,6.7679 5.6299,3.3609 10.3789,3.3609 C14.1949,3.3609 16.7079,6.1249 16.7079,9.0859 C16.7079,13.0069 14.5269,15.9369 11.3139,15.9369 C10.3419,15.9619 9.4229,15.4939 8.8719,14.6919 C8.8719,14.6919 8.2919,16.9949 8.1689,17.4389 C7.9369,18.1969 7.5989,18.9169 7.1629,19.5799 C12.4559,21.1479 18.0179,18.1269 19.5859,12.8339 C21.1529,7.5419 18.1339,1.9789 12.8409,0.4119 C11.9169,0.1379 10.9589,-0.0001 9.9949,-0.0001"
|
|
6445
6465
|
})));
|
|
6446
6466
|
};
|
|
6447
6467
|
var _path$d;
|
|
@@ -6463,9 +6483,10 @@ var SvgLogoReddit20 = function SvgLogoReddit202(props) {
|
|
|
6463
6483
|
return /* @__PURE__ */ React.createElement("svg", _extends$d({
|
|
6464
6484
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6465
6485
|
width: 20,
|
|
6466
|
-
height: 20
|
|
6486
|
+
height: 20,
|
|
6487
|
+
viewBox: "0 0 20 20"
|
|
6467
6488
|
}, props), _path$d || (_path$d = /* @__PURE__ */ React.createElement("path", {
|
|
6468
|
-
d: "M13.
|
|
6489
|
+
d: "M13.4384,13.0825 C12.6094,13.0825 11.9374,12.4105 11.9374,11.5805 C11.9374,10.7515 12.6094,10.0795 13.4384,10.0795 C14.2674,10.0795 14.9404,10.7515 14.9404,11.5805 C14.9734,12.4095 14.3284,13.1075 13.5004,13.1415 C13.4744,13.1425 13.4494,13.1435 13.4234,13.1425 L13.4384,13.0825 Z M13.7094,15.6495 C12.6434,16.4525 11.3334,16.8605 10.0004,16.8065 C8.6674,16.8605 7.3564,16.4525 6.2924,15.6495 C6.1494,15.4775 6.1744,15.2215 6.3484,15.0795 C6.4974,14.9565 6.7124,14.9565 6.8624,15.0795 C7.7654,15.7415 8.8664,16.0755 9.9854,16.0245 C11.1054,16.0865 12.2114,15.7635 13.1234,15.1095 C13.2894,14.9475 13.5544,14.9505 13.7164,15.1165 C13.8774,15.2825 13.8754,15.5485 13.7094,15.7095 L13.7094,15.6495 Z M4.9854,11.5205 C4.9854,10.6915 5.6574,10.0195 6.4864,10.0195 C7.3164,10.0195 7.9884,10.6915 7.9884,11.5205 C7.9884,12.3505 7.3164,13.0215 6.4864,13.0215 C5.6574,13.0215 4.9854,12.3505 4.9854,11.5205 L4.9854,11.5205 Z M20.0004,10.0195 C19.9564,8.8095 18.9384,7.8645 17.7294,7.9095 C17.1914,7.9285 16.6794,8.1455 16.2914,8.5185 C14.5834,7.3565 12.5754,6.7155 10.5104,6.6715 L11.4864,1.9865 L14.7004,2.6625 C14.7884,3.4865 15.5284,4.0835 16.3534,3.9945 C17.1774,3.9065 17.7744,3.1655 17.6854,2.3415 C17.5964,1.5175 16.8564,0.9205 16.0324,1.0095 C15.5574,1.0605 15.1344,1.3335 14.8944,1.7465 L11.2164,1.0105 C10.9654,0.9565 10.7164,1.1145 10.6624,1.3655 C10.6624,1.3675 10.6614,1.3695 10.6614,1.3715 L9.5494,6.5815 C7.4594,6.6125 5.4244,7.2545 3.6944,8.4285 C2.8124,7.5985 1.4254,7.6405 0.5954,8.5225 C-0.2336,9.4045 -0.1916,10.7915 0.6894,11.6205 C0.8624,11.7835 1.0614,11.9175 1.2764,12.0165 C1.2604,12.2355 1.2604,12.4575 1.2764,12.6775 C1.2764,16.0405 5.1954,18.7725 10.0304,18.7725 C14.8654,18.7725 18.7834,16.0405 18.7834,12.6775 C18.8004,12.4575 18.8004,12.2355 18.7834,12.0165 C19.5404,11.6405 20.0124,10.8635 20.0004,10.0195 L20.0004,10.0195 Z"
|
|
6469
6490
|
})));
|
|
6470
6491
|
};
|
|
6471
6492
|
var _path$c;
|
|
@@ -6487,9 +6508,10 @@ var SvgLogoRss20 = function SvgLogoRss202(props) {
|
|
|
6487
6508
|
return /* @__PURE__ */ React.createElement("svg", _extends$c({
|
|
6488
6509
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6489
6510
|
width: 20,
|
|
6490
|
-
height: 20
|
|
6511
|
+
height: 20,
|
|
6512
|
+
viewBox: "0 0 20 20"
|
|
6491
6513
|
}, props), _path$c || (_path$c = /* @__PURE__ */ React.createElement("path", {
|
|
6492
|
-
d: "M15
|
|
6514
|
+
d: "M15,19 C15,11.28 8.72,5 1,5 C0.447,5 0,5.448 0,6 C0,6.552 0.447,7 1,7 C7.617,7 13,12.383 13,19 C13,19.553 13.447,20 14,20 C14.553,20 15,19.553 15,19 M20,19 C20,8.523 11.477,0 1,0 C0.447,0 0,0.448 0,1 C0,1.552 0.447,2 1,2 C10.374,2 18,9.626 18,19 C18,19.553 18.447,20 19,20 C19.553,20 20,19.553 20,19 M10,19 C10,14.037 5.963,10 1,10 C0.447,10 0,10.448 0,11 C0,11.552 0.447,12 1,12 C4.859,12 8,15.141 8,19 C8,19.553 8.447,20 9,20 C9.553,20 10,19.553 10,19 M5,17.5 C5,18.881 3.881,20 2.5,20 C1.119,20 0,18.881 0,17.5 C0,16.119 1.119,15 2.5,15 C3.881,15 5,16.119 5,17.5"
|
|
6493
6515
|
})));
|
|
6494
6516
|
};
|
|
6495
6517
|
var _path$b;
|
|
@@ -6511,9 +6533,10 @@ var SvgLogoSnapchat20 = function SvgLogoSnapchat202(props) {
|
|
|
6511
6533
|
return /* @__PURE__ */ React.createElement("svg", _extends$b({
|
|
6512
6534
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6513
6535
|
width: 20,
|
|
6514
|
-
height: 20
|
|
6536
|
+
height: 20,
|
|
6537
|
+
viewBox: "0 0 20 20"
|
|
6515
6538
|
}, props), _path$b || (_path$b = /* @__PURE__ */ React.createElement("path", {
|
|
6516
|
-
d: "M10.
|
|
6539
|
+
d: "M10.1260439,19 C10.0750453,19 10.0240468,18.9980823 9.9730482,18.9961645 C9.9410491,18.9980823 9.90705005,19 9.87405098,19 C8.68908421,19 7.92810555,18.4841253 7.19312617,17.9855103 C6.68514041,17.6412742 6.20615385,17.3171745 5.64116969,17.2260814 C5.3661774,17.182932 5.09118511,17.1608779 4.82719252,17.1608779 C4.34920592,17.1608779 3.9722165,17.2308758 3.69722421,17.282655 C3.53022889,17.3142979 3.38623293,17.3421053 3.27723599,17.3421053 C3.16223921,17.3421053 3.03824269,17.3171745 2.9842442,17.1417004 C2.93824549,16.9873215 2.90424645,16.8396548 2.87124737,16.6967824 C2.78724973,16.3276156 2.72825138,16.1013211 2.56625593,16.0763904 C0.687308622,15.7983166 0.149323709,15.419561 0.0293270747,15.1491583 C0.0123275514,15.1108033 0.00232783188,15.0724483 0.000327887969,15.0340933 C-0.00567194377,14.9314937 0.0713258968,14.8394417 0.177322924,14.8231408 C3.0662419,14.3667164 4.36120559,11.5361176 4.41520407,11.4162583 C4.41720402,11.4124228 4.41820399,11.4095461 4.42020393,11.4057106 C4.59719897,11.0624334 4.63119802,10.7642233 4.52320104,10.5197102 C4.3252066,10.0709567 3.67822474,9.87438739 3.25123672,9.74493927 C3.14623966,9.71233752 3.04624247,9.6826124 2.96824465,9.65288728 C2.1142686,9.32878756 2.04327059,8.99701683 2.07726964,8.82825485 C2.13426804,8.5396335 2.53625677,8.33826976 2.86124765,8.33826976 C2.95024516,8.33826976 3.02924294,8.35265289 3.09524109,8.38237801 C3.47923032,8.5549755 3.82522062,8.64223311 4.12421223,8.64223311 C4.53720065,8.64223311 4.7171956,8.47634775 4.73919499,8.45429363 C4.72919527,8.26731302 4.71619563,8.07170254 4.70219602,7.86937993 C4.61619844,6.55955679 4.51020141,4.93234605 4.94218929,4.00319625 C6.23715298,1.21958236 8.98307597,1.00287662 9.79405322,1.00287662 C9.81405266,1.00287662 10.1490433,1 10.1490433,1 L10.1970419,1 C11.0100191,1 13.7619419,1.21574686 15.0579056,4.0012785 C15.4898935,4.93138717 15.3828965,6.55955679 15.2968989,7.86842105 L15.292899,7.92499467 C15.2818993,8.10813978 15.2698997,8.28457277 15.2598999,8.45429363 C15.2808993,8.47347113 15.4468947,8.62784999 15.8208842,8.64127424 L15.8208842,8.64127424 C16.1058762,8.63072661 16.432867,8.54442787 16.791857,8.38237801 C16.896854,8.33539314 17.0128508,8.32580439 17.0928485,8.32580439 C17.2138451,8.32580439 17.3368417,8.34881739 17.4388388,8.38909013 L17.4458386,8.39196676 C17.7358305,8.489772 17.9258252,8.68442361 17.9298251,8.88866397 C17.9338249,9.08043895 17.7808292,9.3690603 17.0318502,9.65288728 C16.9538524,9.68165353 16.8548552,9.71233752 16.7498581,9.74493927 C16.3208702,9.87438739 15.6748883,10.0709567 15.4768938,10.5187513 C15.3678969,10.7632644 15.4028959,11.0624334 15.579891,11.4057106 C15.5808909,11.4085873 15.5828909,11.4124228 15.5838908,11.4162583 C15.6378893,11.5361176 16.932853,14.3657575 19.822772,14.8231408 C19.928769,14.8394417 20.0047669,14.9305348 19.999767,15.0340933 C19.9967671,15.0724483 19.9867674,15.1117622 19.9697678,15.1501172 C19.8507712,15.4176433 19.3137862,15.7963989 17.433839,16.0754315 C17.2798433,16.0984445 17.219845,16.2902195 17.1288475,16.6919881 C17.0958484,16.8386959 17.0618494,16.9825272 17.0148507,17.1340294 C16.9748518,17.2644364 16.8898542,17.3267633 16.7468582,17.3267633 L16.7228589,17.3267633 C16.6238617,17.3267633 16.4818657,17.3085446 16.3018707,17.274984 C15.9838796,17.2164926 15.6268896,17.1608779 15.1729024,17.1608779 C14.9079098,17.1608779 14.6339175,17.182932 14.3579252,17.2260814 C13.793941,17.3171745 13.3149545,17.6412742 12.8089687,17.9845515 C12.0719893,18.4841253 11.3120107,19 10.1260439,19"
|
|
6517
6540
|
})));
|
|
6518
6541
|
};
|
|
6519
6542
|
var _path$a;
|
|
@@ -6535,9 +6558,10 @@ var SvgLogoSoundcloud20 = function SvgLogoSoundcloud202(props) {
|
|
|
6535
6558
|
return /* @__PURE__ */ React.createElement("svg", _extends$a({
|
|
6536
6559
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6537
6560
|
width: 20,
|
|
6538
|
-
height: 20
|
|
6561
|
+
height: 20,
|
|
6562
|
+
viewBox: "0 0 20 20"
|
|
6539
6563
|
}, props), _path$a || (_path$a = /* @__PURE__ */ React.createElement("path", {
|
|
6540
|
-
d: "M0 13.
|
|
6564
|
+
d: "M0,13.23 C0,13.482 0.09,13.672 0.27,13.801 C0.45,13.93 0.642,13.976 0.847,13.938 C1.039,13.9 1.174,13.831 1.252,13.73 C1.329,13.629 1.368,13.463 1.368,13.23 L1.368,10.494 C1.368,10.298 1.301,10.133 1.168,9.998 C1.035,9.863 0.872,9.794 0.679,9.794 C0.493,9.794 0.333,9.863 0.2,9.998 C0.067,10.133 0,10.298 0,10.494 L0,13.23 Z M2.141,14.401 C2.141,14.584 2.204,14.72 2.331,14.811 C2.458,14.903 2.621,14.948 2.82,14.948 C3.024,14.948 3.19,14.903 3.318,14.811 C3.445,14.72 3.509,14.584 3.509,14.401 L3.509,8.021 C3.509,7.832 3.442,7.669 3.309,7.534 C3.175,7.399 3.012,7.332 2.82,7.332 C2.634,7.332 2.474,7.399 2.341,7.534 C2.207,7.669 2.141,7.832 2.141,8.021 L2.141,14.401 Z M4.271,14.703 C4.271,14.885 4.337,15.022 4.467,15.113 C4.598,15.205 4.765,15.25 4.97,15.25 C5.168,15.25 5.331,15.205 5.458,15.113 C5.585,15.022 5.649,14.885 5.649,14.703 L5.649,8.879 C5.649,8.684 5.583,8.518 5.449,8.379 C5.315,8.241 5.156,8.171 4.97,8.171 C4.777,8.171 4.613,8.241 4.477,8.379 C4.34,8.518 4.271,8.684 4.271,8.879 L4.271,14.703 Z M6.412,14.731 C6.412,15.077 6.642,15.25 7.101,15.25 C7.56,15.25 7.79,15.077 7.79,14.731 L7.79,5.293 C7.79,4.764 7.62,4.404 7.311,4.365 C7.102,4.337 6.909,4.338 6.71,4.508 C6.512,4.678 6.412,4.985 6.412,5.293 L6.412,14.731 Z M8.59,15.004 L8.59,4.736 C8.59,4.409 8.686,4.214 8.878,4.151 C9.294,4.05 9.707,4 10.117,4 C11.066,4 11.95,4.227 12.769,4.68 C13.587,5.132 14.25,5.751 14.755,6.534 C15.261,7.317 15.554,8.181 15.635,9.125 C16.013,8.961 16.417,8.879 16.845,8.879 C17.713,8.879 18.457,9.191 19.074,9.814 C19.691,10.437 20,11.185 20,12.06 C20,12.941 19.691,13.693 19.074,14.316 C18.457,14.939 17.716,15.251 16.854,15.251 L8.758,15.241 C8.702,15.222 8.66,15.187 8.632,15.137 C8.604,15.086 8.59,15.042 8.59,15.004 L8.59,15.004 Z"
|
|
6541
6565
|
})));
|
|
6542
6566
|
};
|
|
6543
6567
|
var _path$9;
|
|
@@ -6559,9 +6583,10 @@ var SvgLogoSpotify20 = function SvgLogoSpotify202(props) {
|
|
|
6559
6583
|
return /* @__PURE__ */ React.createElement("svg", _extends$9({
|
|
6560
6584
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6561
6585
|
width: 20,
|
|
6562
|
-
height: 20
|
|
6586
|
+
height: 20,
|
|
6587
|
+
viewBox: "0 0 20 20"
|
|
6563
6588
|
}, props), _path$9 || (_path$9 = /* @__PURE__ */ React.createElement("path", {
|
|
6564
|
-
d: "M10
|
|
6589
|
+
d: "M10,0 C4.477,0 0,4.477 0,10 C0,15.522 4.477,20 10,20 C15.522,20 20,15.522 20,10 C19.984,4.484 15.517,0.016 10,0 M14.6,14.454 C14.438,14.74 14.075,14.841 13.79,14.679 C13.776,14.672 13.763,14.663 13.75,14.654 C11.4,13.2 8.45,12.904 4.95,13.704 C4.619,13.787 4.283,13.586 4.2,13.255 C4.117,12.923 4.319,12.587 4.65,12.505 C8.45,11.654 11.75,12.005 14.35,13.604 C14.647,13.749 14.771,14.107 14.627,14.405 C14.619,14.422 14.609,14.438 14.6,14.454 M15.805,11.7 C15.591,12.058 15.128,12.174 14.771,11.96 C14.766,11.957 14.76,11.953 14.755,11.95 C11.725,10.247 8.138,9.833 4.8,10.8 C4.399,10.926 3.973,10.703 3.848,10.303 C3.722,9.902 3.945,9.476 4.345,9.35 C8.126,8.269 12.183,8.755 15.6,10.7 C15.929,10.909 16.026,11.346 15.816,11.675 C15.812,11.684 15.806,11.691 15.8,11.7 M15.9,8.9 C12.7,7 7.35,6.8 4.3,7.75 C3.823,7.92 3.298,7.671 3.128,7.194 C2.958,6.717 3.206,6.192 3.683,6.022 C3.707,6.014 3.73,6.006 3.754,6 C7.305,4.95 13.154,5.15 16.854,7.35 C17.304,7.617 17.459,8.193 17.204,8.65 C16.886,9.031 16.342,9.136 15.904,8.9"
|
|
6565
6590
|
})));
|
|
6566
6591
|
};
|
|
6567
6592
|
var _path$8;
|
|
@@ -6583,9 +6608,10 @@ var SvgLogoTelegram20 = function SvgLogoTelegram202(props) {
|
|
|
6583
6608
|
return /* @__PURE__ */ React.createElement("svg", _extends$8({
|
|
6584
6609
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6585
6610
|
width: 20,
|
|
6586
|
-
height: 20
|
|
6611
|
+
height: 20,
|
|
6612
|
+
viewBox: "0 0 20 20"
|
|
6587
6613
|
}, props), _path$8 || (_path$8 = /* @__PURE__ */ React.createElement("path", {
|
|
6588
|
-
d: "M18.54 1.
|
|
6614
|
+
d: "M18.54 1.2L.778 8.458s-.84.3-.774.852c.066.553.752.807.752.807l4.468 1.566 10.728-7.096s.62-.392.597 0c0 0 .111.07-.22.391-.333.324-8.429 7.904-8.429 7.904l-.583 5.182c.247.112.473-.066.473-.066l2.887-2.742 4.501 3.593c1.216.554 1.66-.598 1.66-.598L20 1.638c0-1.106-1.46-.438-1.46-.438"
|
|
6589
6615
|
})));
|
|
6590
6616
|
};
|
|
6591
6617
|
var _path$7;
|
|
@@ -6607,9 +6633,10 @@ var SvgLogoTumblr20 = function SvgLogoTumblr202(props) {
|
|
|
6607
6633
|
return /* @__PURE__ */ React.createElement("svg", _extends$7({
|
|
6608
6634
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6609
6635
|
width: 20,
|
|
6610
|
-
height: 20
|
|
6636
|
+
height: 20,
|
|
6637
|
+
viewBox: "0 0 20 20"
|
|
6611
6638
|
}, props), _path$7 || (_path$7 = /* @__PURE__ */ React.createElement("path", {
|
|
6612
|
-
d: "M15.083
|
|
6639
|
+
d: "M15.083,15.965 C14.595,16.173 14.071,16.29 13.54,16.31 C12.585,16.38 11.754,15.669 11.684,14.724 C11.674,14.596 11.679,14.467 11.698,14.34 L11.698,8.115 L15.542,8.115 L15.542,5.087 L11.707,5.087 L11.707,0 L8.904,0 C8.827,0.008 8.768,0.072 8.766,0.15 C8.667,2.515 7.201,4.612 5,5.533 L5,8.115 L6.937,8.115 L6.937,14.648 C6.903,17.569 9.266,19.966 12.215,19.999 C12.372,20.001 12.529,19.996 12.687,19.985 C14.094,19.96 15.655,19.349 16,18.814 L15.083,15.963"
|
|
6613
6640
|
})));
|
|
6614
6641
|
};
|
|
6615
6642
|
var _path$6;
|
|
@@ -6631,9 +6658,10 @@ var SvgLogoTwitch20 = function SvgLogoTwitch202(props) {
|
|
|
6631
6658
|
return /* @__PURE__ */ React.createElement("svg", _extends$6({
|
|
6632
6659
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6633
6660
|
width: 20,
|
|
6634
|
-
height: 20
|
|
6661
|
+
height: 20,
|
|
6662
|
+
viewBox: "0 0 20 20"
|
|
6635
6663
|
}, props), _path$6 || (_path$6 = /* @__PURE__ */ React.createElement("path", {
|
|
6636
|
-
d: "M1.406
|
|
6664
|
+
d: "M1.406 0L0 3.433v14.03h5.001V20h2.812l2.656-2.537h4.063L20 12.238V0H1.406zm1.719 1.791h15v9.552L15 14.328h-5l-2.656 2.537v-2.537H3.125V1.791zm10 8.651h1.876V5.224h-1.876v5.218zm-5 0H10V5.224H8.125v5.218z"
|
|
6637
6665
|
})));
|
|
6638
6666
|
};
|
|
6639
6667
|
var _path$5;
|
|
@@ -6655,7 +6683,8 @@ var SvgLogoTwitter20 = function SvgLogoTwitter202(props) {
|
|
|
6655
6683
|
return /* @__PURE__ */ React.createElement("svg", _extends$5({
|
|
6656
6684
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6657
6685
|
width: 20,
|
|
6658
|
-
height: 20
|
|
6686
|
+
height: 20,
|
|
6687
|
+
viewBox: "0 0 20 20"
|
|
6659
6688
|
}, props), _path$5 || (_path$5 = /* @__PURE__ */ React.createElement("path", {
|
|
6660
6689
|
d: "M6.29 18.254c7.547 0 11.675-6.253 11.675-11.675 0-.178-.004-.354-.012-.53A8.339 8.339 0 0 0 20 3.924a8.165 8.165 0 0 1-2.356.646 4.12 4.12 0 0 0 1.804-2.27 8.198 8.198 0 0 1-2.606.996A4.104 4.104 0 0 0 9.85 7.039a11.652 11.652 0 0 1-8.458-4.287 4.101 4.101 0 0 0 1.27 5.477 4.058 4.058 0 0 1-1.858-.513l-.001.052a4.104 4.104 0 0 0 3.292 4.023 4.107 4.107 0 0 1-1.853.07 4.107 4.107 0 0 0 3.833 2.85 8.233 8.233 0 0 1-5.096 1.757A8.33 8.33 0 0 1 0 16.411a11.614 11.614 0 0 0 6.29 1.843"
|
|
6661
6690
|
})));
|
|
@@ -6679,7 +6708,8 @@ var SvgLogoWhatsapp20 = function SvgLogoWhatsapp202(props) {
|
|
|
6679
6708
|
return /* @__PURE__ */ React.createElement("svg", _extends$4({
|
|
6680
6709
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6681
6710
|
width: 20,
|
|
6682
|
-
height: 20
|
|
6711
|
+
height: 20,
|
|
6712
|
+
viewBox: "0 0 20 20"
|
|
6683
6713
|
}, props), _path$4 || (_path$4 = /* @__PURE__ */ React.createElement("path", {
|
|
6684
6714
|
d: "M14.785 11.957c-.246-.135-1.455-.783-1.683-.873-.226-.091-.39-.14-.568.104-.177.242-.679.784-.83.944-.152.162-.3.177-.546.043-.246-.135-1.043-.428-1.969-1.31-.719-.687-1.192-1.52-1.329-1.774-.137-.255 0-.384.13-.503.116-.107.261-.281.392-.421.13-.142.176-.244.266-.406.09-.163.054-.31-.005-.437-.058-.125-.512-1.369-.703-1.875-.19-.505-.4-.43-.548-.436-.146-.005-.312-.032-.479-.037a.925.925 0 0 0-.68.285c-.24.24-.909.819-.956 2.042-.046 1.224.807 2.44.926 2.61.12.17 1.63 2.822 4.14 3.913 2.51 1.091 2.523.758 2.984.734.461-.024 1.505-.546 1.736-1.12.231-.572.25-1.07.191-1.175-.059-.107-.223-.176-.469-.309m-4.604 5.896a8.18 8.18 0 0 1-4.497-1.34l-3.14.997 1.02-3.011a8.025 8.025 0 0 1-1.556-4.755c0-4.474 3.667-8.112 8.173-8.112 4.507 0 8.173 3.638 8.173 8.111 0 4.472-3.666 8.11-8.173 8.11m0-17.852C4.76 0 .363 4.362.363 9.742c0 1.841.515 3.563 1.41 5.03L0 20l5.435-1.727a9.838 9.838 0 0 0 4.746 1.212c5.423 0 9.82-4.362 9.82-9.742 0-5.381-4.397-9.744-9.82-9.744"
|
|
6685
6715
|
})));
|
|
@@ -6703,9 +6733,10 @@ var SvgLogoVimeo20 = function SvgLogoVimeo202(props) {
|
|
|
6703
6733
|
return /* @__PURE__ */ React.createElement("svg", _extends$3({
|
|
6704
6734
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6705
6735
|
width: 20,
|
|
6706
|
-
height: 20
|
|
6736
|
+
height: 20,
|
|
6737
|
+
viewBox: "0 0 20 20"
|
|
6707
6738
|
}, props), _path$3 || (_path$3 = /* @__PURE__ */ React.createElement("path", {
|
|
6708
|
-
d: "M19.
|
|
6739
|
+
d: "M19.9925,5.1568 C19.9055,7.1858 18.5465,9.9608 15.9165,13.4798 C13.1975,17.1598 10.8945,18.9998 9.0105,18.9998 C7.8455,18.9998 6.8595,17.8788 6.0535,15.6358 C5.5135,13.5758 4.9745,11.5168 4.4385,9.4618 C3.8385,7.2158 3.1955,6.0918 2.5095,6.0928 C1.9385,6.3398 1.4095,6.6718 0.9405,7.0768 L-0.0005,5.8158 C0.9855,4.9158 1.9575,4.0118 2.9155,3.1068 C4.2285,1.9218 5.2145,1.2978 5.8735,1.2348 C7.4265,1.0768 8.3835,2.1828 8.7445,4.5538 C9.1295,7.1118 9.3975,8.7018 9.5485,9.3258 C9.9985,11.4458 10.4915,12.5058 11.0275,12.5038 C11.4455,12.5038 12.0735,11.8188 12.9115,10.4488 C13.5725,9.5078 14.0305,8.4398 14.2555,7.3148 C14.3755,6.1288 13.9275,5.5398 12.9115,5.5398 C12.4005,5.5448 11.8965,5.6568 11.4315,5.8658 C12.4195,2.5298 14.3035,0.9088 17.0825,1.0038 C19.1415,1.0638 20.1105,2.4498 19.9895,5.1628"
|
|
6709
6740
|
})));
|
|
6710
6741
|
};
|
|
6711
6742
|
var _path$2;
|
|
@@ -6727,9 +6758,10 @@ var SvgLogoYelp20 = function SvgLogoYelp202(props) {
|
|
|
6727
6758
|
return /* @__PURE__ */ React.createElement("svg", _extends$2({
|
|
6728
6759
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6729
6760
|
width: 20,
|
|
6730
|
-
height: 20
|
|
6761
|
+
height: 20,
|
|
6762
|
+
viewBox: "0 0 20 20"
|
|
6731
6763
|
}, props), _path$2 || (_path$2 = /* @__PURE__ */ React.createElement("path", {
|
|
6732
|
-
d: "M6.
|
|
6764
|
+
d: "M6.8613,0.3896 C6.0563,0.5906 5.2893,0.8566 4.5633,1.1786 C4.0593,1.4016 3.8703,1.9796 4.1483,2.4296 L8.5173,9.4756 C9.0073,10.2666 10.3053,9.9426 10.3053,9.0296 L10.3053,0.8936 C10.3053,0.3736 9.8303,-0.0384 9.2743,0.0026 C8.4723,0.0616 7.6663,0.1896 6.8613,0.3896 M17.9203,9.2746 C17.4263,8.2136 16.6963,7.2976 15.8053,6.5656 C15.3723,6.2096 14.7013,6.2916 14.3783,6.7376 L11.7773,10.3276 C11.2773,11.0176 11.9763,11.9126 12.8363,11.6836 L17.3053,10.4906 C17.8633,10.3416 18.1503,9.7696 17.9203,9.2746 M11.7003,14.4386 L14.1653,18.1116 C14.4723,18.5696 15.1423,18.6696 15.5903,18.3266 C16.5293,17.6046 17.2823,16.7006 17.8003,15.6886 C18.0493,15.2026 17.7813,14.6216 17.2313,14.4546 L12.8093,13.1176 C11.9583,12.8596 11.2263,13.7326 11.7003,14.4386 M5.6013,18.7326 C6.5943,19.3676 7.7313,19.7996 8.9333,19.9876 C9.5053,20.0766 10.0313,19.6776 10.0513,19.1376 L10.2143,14.8096 C10.2453,13.9766 9.1423,13.5626 8.5443,14.1816 L5.4323,17.3996 C5.0463,17.7996 5.1253,18.4266 5.6013,18.7326 M3.7593,9.3866 L7.9393,11.2856 C8.7433,11.6506 8.6193,12.7506 7.7513,12.9526 L3.2393,13.9996 C2.6763,14.1306 2.1213,13.7696 2.0543,13.2326 C1.9123,12.0846 2.0523,10.9516 2.4313,9.9026 C2.6153,9.3926 3.2403,9.1516 3.7593,9.3866"
|
|
6733
6765
|
})));
|
|
6734
6766
|
};
|
|
6735
6767
|
var _path$1;
|
|
@@ -6751,9 +6783,10 @@ var SvgLogoYoutube20 = function SvgLogoYoutube202(props) {
|
|
|
6751
6783
|
return /* @__PURE__ */ React.createElement("svg", _extends$1({
|
|
6752
6784
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6753
6785
|
width: 20,
|
|
6754
|
-
height: 20
|
|
6786
|
+
height: 20,
|
|
6787
|
+
viewBox: "0 0 20 20"
|
|
6755
6788
|
}, props), _path$1 || (_path$1 = /* @__PURE__ */ React.createElement("path", {
|
|
6756
|
-
d: "M8
|
|
6789
|
+
d: "M8,13 L8,7 L13,10 L8,13 Z M19.582,5.186 C19.353,4.326 18.675,3.648 17.813,3.418 C16.254,3 10,3 10,3 C10,3 3.746,3 2.186,3.418 C1.326,3.648 0.648,4.326 0.418,5.186 C0,6.746 0,10 0,10 C0,10 0,13.254 0.418,14.813 C0.648,15.675 1.326,16.353 2.186,16.582 C3.746,17 10,17 10,17 C10,17 16.254,17 17.813,16.582 C18.675,16.353 19.353,15.675 19.582,14.813 C20,13.254 20,10 20,10 C20,10 20,6.746 19.582,5.186 L19.582,5.186 Z"
|
|
6757
6790
|
})));
|
|
6758
6791
|
};
|
|
6759
6792
|
const SocialLinksOptions = [{
|
|
@@ -7781,11 +7814,12 @@ var SvgWarning20 = function SvgWarning202(props) {
|
|
|
7781
7814
|
return /* @__PURE__ */ React.createElement("svg", _extends({
|
|
7782
7815
|
width: 20,
|
|
7783
7816
|
height: 20,
|
|
7817
|
+
viewBox: "0 0 20 20",
|
|
7784
7818
|
xmlns: "http://www.w3.org/2000/svg"
|
|
7785
7819
|
}, props), _path || (_path = /* @__PURE__ */ React.createElement("path", {
|
|
7786
7820
|
fillRule: "evenodd",
|
|
7787
7821
|
clipRule: "evenodd",
|
|
7788
|
-
d: "M2.
|
|
7822
|
+
d: "M2.89864 18H17.1014C18.4183 18 19.2633 16.6003 18.65 15.4349L11.5486 1.94236C10.8925 0.69577 9.10749 0.695766 8.45139 1.94236L1.35003 15.4349C0.736692 16.6003 1.58174 18 2.89864 18ZM9 6C9 5.44772 9.44771 5 10 5C10.5523 5 11 5.44772 11 6V11C11 11.5523 10.5523 12 10 12C9.44771 12 9 11.5523 9 11V6ZM11.25 14.75C11.25 15.4404 10.6904 16 10 16C9.30964 16 8.75 15.4404 8.75 14.75C8.75 14.0596 9.30964 13.5 10 13.5C10.6904 13.5 11.25 14.0596 11.25 14.75Z"
|
|
7789
7823
|
})));
|
|
7790
7824
|
};
|
|
7791
7825
|
const ErrorDiv = styled("div")`
|
|
@@ -8135,7 +8169,7 @@ function useStyleControlCssObject(style, controlDefinition) {
|
|
|
8135
8169
|
return `${borderRadius.value}${borderRadius.unit}`;
|
|
8136
8170
|
}
|
|
8137
8171
|
}
|
|
8138
|
-
const useInsertionEffect = (_ea = React
|
|
8172
|
+
const useInsertionEffect = (_ea = React["useInsertionEffect"]) != null ? _ea : React.useLayoutEffect;
|
|
8139
8173
|
function useFormattedStyle(styleControlData, controlDefinition) {
|
|
8140
8174
|
const style = useStyleControlCssObject(styleControlData, controlDefinition);
|
|
8141
8175
|
const serialized = serializeStyles([style], cache.registered);
|
|
@@ -8144,6 +8178,141 @@ function useFormattedStyle(styleControlData, controlDefinition) {
|
|
|
8144
8178
|
});
|
|
8145
8179
|
return `${cache.key}-${serialized.name}`;
|
|
8146
8180
|
}
|
|
8181
|
+
function RenderHook({
|
|
8182
|
+
hook: useHook,
|
|
8183
|
+
parameters,
|
|
8184
|
+
children
|
|
8185
|
+
}) {
|
|
8186
|
+
return children(useHook(...parameters));
|
|
8187
|
+
}
|
|
8188
|
+
function useCheckboxControlValue(data, definition) {
|
|
8189
|
+
return data != null ? data : definition.config.defaultValue;
|
|
8190
|
+
}
|
|
8191
|
+
function useColorValue(data, definition) {
|
|
8192
|
+
var _a, _b;
|
|
8193
|
+
const result = useQuery(SWATCHES_BY_ID, {
|
|
8194
|
+
variables: { ids: [data == null ? void 0 : data.swatchId] },
|
|
8195
|
+
skip: (data == null ? void 0 : data.swatchId) == null
|
|
8196
|
+
});
|
|
8197
|
+
if (data === void 0) {
|
|
8198
|
+
const { defaultValue } = definition.config;
|
|
8199
|
+
if (defaultValue === void 0)
|
|
8200
|
+
return void 0;
|
|
8201
|
+
let defaultColor;
|
|
8202
|
+
try {
|
|
8203
|
+
defaultColor = ColorHelper(definition.config.defaultValue);
|
|
8204
|
+
} catch {
|
|
8205
|
+
defaultColor = ColorHelper();
|
|
8206
|
+
}
|
|
8207
|
+
return defaultColor.rgb().string();
|
|
8208
|
+
}
|
|
8209
|
+
const [swatch] = (_b = (_a = result.data) == null ? void 0 : _a.swatches) != null ? _b : [null];
|
|
8210
|
+
return ColorHelper({ h: swatch == null ? void 0 : swatch.hue, s: swatch == null ? void 0 : swatch.saturation, l: swatch == null ? void 0 : swatch.lightness }).alpha(data.alpha).rgb().string();
|
|
8211
|
+
}
|
|
8212
|
+
function useImageControlValue(data) {
|
|
8213
|
+
var _a;
|
|
8214
|
+
return (_a = useFile(data)) == null ? void 0 : _a.publicUrl;
|
|
8215
|
+
}
|
|
8216
|
+
function ListControlValue({
|
|
8217
|
+
definition,
|
|
8218
|
+
data,
|
|
8219
|
+
children
|
|
8220
|
+
}) {
|
|
8221
|
+
return (data != null ? data : []).reduce((renderFn, item) => (listControlValue) => /* @__PURE__ */ jsx(ControlValue, {
|
|
8222
|
+
definition: definition.config.type,
|
|
8223
|
+
data: item.value,
|
|
8224
|
+
children: (value) => renderFn([value, ...listControlValue])
|
|
8225
|
+
}), children)([]);
|
|
8226
|
+
}
|
|
8227
|
+
function useNumber(numberControlData, controlDefinition) {
|
|
8228
|
+
return numberControlData != null ? numberControlData : controlDefinition.config.defaultValue;
|
|
8229
|
+
}
|
|
8230
|
+
function useSelectControlValue(data, definition) {
|
|
8231
|
+
return data != null ? data : definition == null ? void 0 : definition.config.defaultValue;
|
|
8232
|
+
}
|
|
8233
|
+
function ShapeControlValue({
|
|
8234
|
+
definition,
|
|
8235
|
+
data,
|
|
8236
|
+
children
|
|
8237
|
+
}) {
|
|
8238
|
+
return Object.entries(definition.config.type).reduce((renderFn, [key, controlDefinition]) => (shapeControlValue) => /* @__PURE__ */ jsx(ControlValue, {
|
|
8239
|
+
definition: controlDefinition,
|
|
8240
|
+
data: data == null ? void 0 : data[key],
|
|
8241
|
+
children: (value) => renderFn(__spreadProps(__spreadValues({}, shapeControlValue), {
|
|
8242
|
+
[key]: value
|
|
8243
|
+
}))
|
|
8244
|
+
}), children)({});
|
|
8245
|
+
}
|
|
8246
|
+
function useTextAreaValue(data, definition) {
|
|
8247
|
+
return data != null ? data : definition.config.defaultValue;
|
|
8248
|
+
}
|
|
8249
|
+
function useTextInputValue(data, definition) {
|
|
8250
|
+
return data != null ? data : definition.config.defaultValue;
|
|
8251
|
+
}
|
|
8252
|
+
function ControlValue({
|
|
8253
|
+
data,
|
|
8254
|
+
definition,
|
|
8255
|
+
children
|
|
8256
|
+
}) {
|
|
8257
|
+
switch (definition.type) {
|
|
8258
|
+
case CheckboxControlType:
|
|
8259
|
+
return /* @__PURE__ */ jsx(RenderHook, {
|
|
8260
|
+
hook: useCheckboxControlValue,
|
|
8261
|
+
parameters: [data, definition],
|
|
8262
|
+
children: (value) => children(value)
|
|
8263
|
+
}, definition.type);
|
|
8264
|
+
case NumberControlType:
|
|
8265
|
+
return /* @__PURE__ */ jsx(RenderHook, {
|
|
8266
|
+
hook: useNumber,
|
|
8267
|
+
parameters: [data, definition],
|
|
8268
|
+
children: (value) => children(value)
|
|
8269
|
+
}, definition.type);
|
|
8270
|
+
case TextInputControlType:
|
|
8271
|
+
return /* @__PURE__ */ jsx(RenderHook, {
|
|
8272
|
+
hook: useTextInputValue,
|
|
8273
|
+
parameters: [data, definition],
|
|
8274
|
+
children: (value) => children(value)
|
|
8275
|
+
}, definition.type);
|
|
8276
|
+
case TextAreaControlType:
|
|
8277
|
+
return /* @__PURE__ */ jsx(RenderHook, {
|
|
8278
|
+
hook: useTextAreaValue,
|
|
8279
|
+
parameters: [data, definition],
|
|
8280
|
+
children: (value) => children(value)
|
|
8281
|
+
}, definition.type);
|
|
8282
|
+
case SelectControlType:
|
|
8283
|
+
return /* @__PURE__ */ jsx(RenderHook, {
|
|
8284
|
+
hook: useSelectControlValue,
|
|
8285
|
+
parameters: [data, definition],
|
|
8286
|
+
children: (value) => children(value)
|
|
8287
|
+
}, definition.type);
|
|
8288
|
+
case ColorControlType:
|
|
8289
|
+
return /* @__PURE__ */ jsx(RenderHook, {
|
|
8290
|
+
hook: useColorValue,
|
|
8291
|
+
parameters: [data, definition],
|
|
8292
|
+
children: (value) => children(value)
|
|
8293
|
+
}, definition.type);
|
|
8294
|
+
case ImageControlType:
|
|
8295
|
+
return /* @__PURE__ */ jsx(RenderHook, {
|
|
8296
|
+
hook: useImageControlValue,
|
|
8297
|
+
parameters: [data],
|
|
8298
|
+
children: (value) => children(value)
|
|
8299
|
+
}, definition.type);
|
|
8300
|
+
case ShapeControlType:
|
|
8301
|
+
return /* @__PURE__ */ jsx(ShapeControlValue, {
|
|
8302
|
+
definition,
|
|
8303
|
+
data,
|
|
8304
|
+
children: (value) => children(value)
|
|
8305
|
+
});
|
|
8306
|
+
case ListControlType:
|
|
8307
|
+
return /* @__PURE__ */ jsx(ListControlValue, {
|
|
8308
|
+
definition,
|
|
8309
|
+
data,
|
|
8310
|
+
children: (value) => children(value)
|
|
8311
|
+
});
|
|
8312
|
+
default:
|
|
8313
|
+
return children(data);
|
|
8314
|
+
}
|
|
8315
|
+
}
|
|
8147
8316
|
function useDeviceMode() {
|
|
8148
8317
|
return "desktop";
|
|
8149
8318
|
}
|
|
@@ -8152,28 +8321,62 @@ function useWidth(value, descriptor, props) {
|
|
|
8152
8321
|
const options = useMemo(() => typeof descriptor.options === "function" ? descriptor.options(props, deviceMode) : descriptor.options, [props, deviceMode]);
|
|
8153
8322
|
return useMemo(() => options.format === WidthControlValueFormats.ClassName ? css$1(responsiveWidth(value, options.defaultValue)) : value, [value, options.defaultValue, options.format]);
|
|
8154
8323
|
}
|
|
8155
|
-
function
|
|
8156
|
-
|
|
8157
|
-
|
|
8158
|
-
|
|
8324
|
+
function PropsValue({
|
|
8325
|
+
element,
|
|
8326
|
+
children
|
|
8327
|
+
}) {
|
|
8159
8328
|
var _a;
|
|
8160
8329
|
const store = useStore();
|
|
8161
8330
|
const propControllerDescriptorsRef = useRef((_a = getComponentPropControllerDescriptors(store.getState(), element.type)) != null ? _a : {});
|
|
8162
8331
|
const props = element.props;
|
|
8163
|
-
return Object.
|
|
8332
|
+
return Object.entries(propControllerDescriptorsRef.current).reduceRight((renderFn, [propName, descriptor]) => (propsValue) => {
|
|
8164
8333
|
switch (descriptor.type) {
|
|
8165
|
-
case
|
|
8166
|
-
|
|
8167
|
-
|
|
8168
|
-
|
|
8169
|
-
case
|
|
8170
|
-
|
|
8334
|
+
case CheckboxControlType:
|
|
8335
|
+
case NumberControlType:
|
|
8336
|
+
case TextInputControlType:
|
|
8337
|
+
case TextAreaControlType:
|
|
8338
|
+
case SelectControlType:
|
|
8339
|
+
case ColorControlType:
|
|
8340
|
+
case ImageControlType:
|
|
8341
|
+
case ShapeControlType:
|
|
8342
|
+
case ListControlType:
|
|
8343
|
+
return /* @__PURE__ */ jsx(ControlValue, {
|
|
8344
|
+
definition: descriptor,
|
|
8345
|
+
data: props[propName],
|
|
8346
|
+
children: (value) => renderFn(__spreadProps(__spreadValues({}, propsValue), {
|
|
8347
|
+
[propName]: value
|
|
8348
|
+
}))
|
|
8349
|
+
});
|
|
8171
8350
|
case StyleControlType:
|
|
8172
|
-
return
|
|
8351
|
+
return /* @__PURE__ */ jsx(RenderHook, {
|
|
8352
|
+
hook: useFormattedStyle,
|
|
8353
|
+
parameters: [props[propName], descriptor],
|
|
8354
|
+
children: (value) => renderFn(__spreadProps(__spreadValues({}, propsValue), {
|
|
8355
|
+
[propName]: value
|
|
8356
|
+
}))
|
|
8357
|
+
}, descriptor.type);
|
|
8358
|
+
case Types.Width:
|
|
8359
|
+
return /* @__PURE__ */ jsx(RenderHook, {
|
|
8360
|
+
hook: useWidth,
|
|
8361
|
+
parameters: [props[propName], descriptor, props],
|
|
8362
|
+
children: (value) => renderFn(__spreadProps(__spreadValues({}, propsValue), {
|
|
8363
|
+
[propName]: value
|
|
8364
|
+
}))
|
|
8365
|
+
}, descriptor.type);
|
|
8366
|
+
case Types.ResponsiveColor:
|
|
8367
|
+
return /* @__PURE__ */ jsx(RenderHook, {
|
|
8368
|
+
hook: useResponsiveColor,
|
|
8369
|
+
parameters: [props[propName]],
|
|
8370
|
+
children: (value) => renderFn(__spreadProps(__spreadValues({}, propsValue), {
|
|
8371
|
+
[propName]: value
|
|
8372
|
+
}))
|
|
8373
|
+
}, descriptor.type);
|
|
8173
8374
|
default:
|
|
8174
|
-
return
|
|
8375
|
+
return renderFn(__spreadProps(__spreadValues({}, propsValue), {
|
|
8376
|
+
[propName]: props[propName]
|
|
8377
|
+
}));
|
|
8175
8378
|
}
|
|
8176
|
-
}));
|
|
8379
|
+
}, children)({});
|
|
8177
8380
|
}
|
|
8178
8381
|
function suppressWarningAndFindDomNode(instance) {
|
|
8179
8382
|
const error = console.error;
|
|
@@ -8280,27 +8483,6 @@ function RuntimeProvider({
|
|
|
8280
8483
|
}));
|
|
8281
8484
|
}
|
|
8282
8485
|
}, [client]);
|
|
8283
|
-
useEffect(() => {
|
|
8284
|
-
const isInBuilder = window.parent !== window;
|
|
8285
|
-
if (!isInBuilder)
|
|
8286
|
-
return;
|
|
8287
|
-
window.addEventListener("focusin", handleFocusIn);
|
|
8288
|
-
window.addEventListener("focusout", handlefocusOut);
|
|
8289
|
-
return () => {
|
|
8290
|
-
window.addEventListener("focusin", handleFocusIn);
|
|
8291
|
-
window.removeEventListener("focusout", handlefocusOut);
|
|
8292
|
-
};
|
|
8293
|
-
function handleFocusIn(event) {
|
|
8294
|
-
if (!(event.target instanceof window.HTMLElement) || !event.target.isContentEditable) {
|
|
8295
|
-
window.parent.focus();
|
|
8296
|
-
}
|
|
8297
|
-
}
|
|
8298
|
-
function handlefocusOut(event) {
|
|
8299
|
-
if (!(event.relatedTarget instanceof window.HTMLElement) || !event.relatedTarget.isContentEditable) {
|
|
8300
|
-
window.parent.focus();
|
|
8301
|
-
}
|
|
8302
|
-
}
|
|
8303
|
-
}, []);
|
|
8304
8486
|
return /* @__PURE__ */ jsx(Context.Provider, {
|
|
8305
8487
|
value: store,
|
|
8306
8488
|
children: /* @__PURE__ */ jsx(MakeswiftProvider, {
|
|
@@ -8374,7 +8556,6 @@ const ElementData = memo(forwardRef(function ElementData2({
|
|
|
8374
8556
|
elementData
|
|
8375
8557
|
}, ref) {
|
|
8376
8558
|
const Component2 = useComponent(elementData.type);
|
|
8377
|
-
const props = useProps(elementData);
|
|
8378
8559
|
const [handle, setHandle] = useState(null);
|
|
8379
8560
|
const [foundDomNode, setFoundDomNode] = useState(null);
|
|
8380
8561
|
useImperativeHandle(ref, () => handle != null ? handle : foundDomNode, [handle, foundDomNode]);
|
|
@@ -8387,10 +8568,13 @@ const ElementData = memo(forwardRef(function ElementData2({
|
|
|
8387
8568
|
}
|
|
8388
8569
|
return /* @__PURE__ */ jsx(FindDomNode, {
|
|
8389
8570
|
ref: setFoundDomNode,
|
|
8390
|
-
children: /* @__PURE__ */
|
|
8391
|
-
|
|
8392
|
-
|
|
8393
|
-
|
|
8571
|
+
children: /* @__PURE__ */ jsx(PropsValue, {
|
|
8572
|
+
element: elementData,
|
|
8573
|
+
children: (props) => /* @__PURE__ */ createElement(Component2, __spreadProps(__spreadValues({}, props), {
|
|
8574
|
+
key: elementData.key,
|
|
8575
|
+
ref: setHandle
|
|
8576
|
+
}))
|
|
8577
|
+
})
|
|
8394
8578
|
});
|
|
8395
8579
|
}));
|
|
8396
8580
|
const ElementReference = memo(forwardRef(function ElementReference2({
|
|
@@ -8486,5 +8670,5 @@ const DocumentReference = memo(forwardRef(function DocumentReference2({
|
|
|
8486
8670
|
document
|
|
8487
8671
|
});
|
|
8488
8672
|
}));
|
|
8489
|
-
export { useBackgrounds as A, Box as B, Carousel as C, DocumentReference as D, Element$1 as E, Form as F, useBorder as G, useBoxShadow as H, ImageComponent as I,
|
|
8673
|
+
export { useBackgrounds as A, Box as B, Carousel as C, DocumentReference as D, Element$1 as E, Form as F, useBorder as G, useBoxShadow as H, ImageComponent as I, useResponsiveColor as J, useFile as K, useMediaQuery as L, usePage as M, Navigation as N, useTable as O, PageProvider as P, MakeswiftClient as Q, RuntimeProvider as R, SocialLinks as S, Text as T, ReactRuntime as a, usePageId as b, Button$1 as c, Countdown as d, Divider as e, Embed as f, Root as g, registerComponent$c as h, DEFAULT_BOX_ANIMATE_TYPE as i, DEFAULT_BOX_ANIMATE_DELAY as j, DEFAULT_BOX_ANIMATE_DURATION as k, DEFAULT_ITEM_ANIMATE_TYPE as l, DEFAULT_ITEM_ANIMATE_DELAY as m, DEFAULT_ITEM_ANIMATE_DURATION as n, DEFAULT_ITEM_STAGGER_DURATION as o, cssMediaRules as p, cssWidth as q, registerBuiltinComponents as r, cssMargin as s, cssPadding as t, useIsInBuilder as u, cssBorder as v, cssBorderRadius as w, cssBoxShadow as x, cssGridItem as y, cssTextStyle as z };
|
|
8490
8674
|
//# sourceMappingURL=index.es.js.map
|