@arc-ui/components 11.3.0 → 11.4.0
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/Button/Button.cjs.d.ts +1 -1
- package/dist/Button/Button.cjs.js +1 -1
- package/dist/Button/Button.esm.d.ts +1 -1
- package/dist/Button/Button.esm.js +1 -1
- package/dist/Card/Card.cjs.js +1 -1
- package/dist/Card/Card.esm.js +1 -1
- package/dist/ProgressBar/ProgressBar.cjs.d.ts +47 -0
- package/dist/ProgressBar/ProgressBar.cjs.js +113 -0
- package/dist/ProgressBar/ProgressBar.esm.d.ts +47 -0
- package/dist/ProgressBar/ProgressBar.esm.js +105 -0
- package/dist/ProgressBar/package.json +7 -0
- package/dist/SiteHeader/SiteHeader.cjs.js +1 -1
- package/dist/SiteHeader/SiteHeader.esm.js +1 -1
- package/dist/Switch/Switch.cjs.js +1 -1
- package/dist/Switch/Switch.esm.js +1 -1
- package/dist/Tag/Tag.cjs.d.ts +33 -0
- package/dist/Tag/Tag.cjs.js +73 -0
- package/dist/Tag/Tag.esm.d.ts +33 -0
- package/dist/Tag/Tag.esm.js +65 -0
- package/dist/Tag/package.json +7 -0
- package/dist/VerticalSpace/VerticalSpace.cjs.d.ts +1 -1
- package/dist/VerticalSpace/VerticalSpace.cjs.js +1 -1
- package/dist/VerticalSpace/VerticalSpace.esm.d.ts +1 -1
- package/dist/VerticalSpace/VerticalSpace.esm.js +1 -1
- package/dist/_shared/cjs/{Button-b3a69953.js → Button-1af6868c.js} +1 -4
- package/dist/_shared/{esm/VerticalSpace-6b4f5e50.d.ts → cjs/VerticalSpace-7aed88ab.d.ts} +16 -0
- package/dist/_shared/cjs/{VerticalSpace-65ad083c.js → VerticalSpace-7aed88ab.js} +6 -2
- package/dist/_shared/esm/{Button-69439f8f.js → Button-10700df4.js} +1 -4
- package/dist/_shared/{cjs/VerticalSpace-65ad083c.d.ts → esm/VerticalSpace-3579b20e.d.ts} +16 -0
- package/dist/_shared/esm/{VerticalSpace-6b4f5e50.js → VerticalSpace-3579b20e.js} +6 -2
- package/dist/index.es.js +133 -75
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +361 -302
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/types/components/ProgressBar/ProgressBar.d.ts +46 -0
- package/dist/types/components/ProgressBar/constants/progress-bar-icon-map.d.ts +3 -0
- package/dist/types/components/ProgressBar/index.d.ts +1 -0
- package/dist/types/components/ProgressBar/types/progress-bar-icons.d.ts +1 -0
- package/dist/types/components/ProgressBar/types/progress-bar-state.d.ts +1 -0
- package/dist/types/components/ProgressBar/utils/get-progress-bar-props.d.ts +1 -0
- package/dist/types/components/Tag/Tag.d.ts +32 -0
- package/dist/types/components/Tag/index.d.ts +1 -0
- package/dist/types/components/VerticalSpace/VerticalSpace.d.ts +16 -0
- package/dist/types/components/index.d.ts +1 -0
- package/dist/types/styles.d.ts +2 -0
- package/package.json +4 -4
- /package/dist/_shared/cjs/{Button-b3a69953.d.ts → Button-1af6868c.d.ts} +0 -0
- /package/dist/_shared/esm/{Button-69439f8f.d.ts → Button-10700df4.d.ts} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
export { VerticalSpace } from "../_shared/esm/VerticalSpace-
|
|
1
|
+
export { VerticalSpace } from "../_shared/esm/VerticalSpace-3579b20e";
|
|
@@ -71,10 +71,7 @@ var Button = React$1.forwardRef(function (_a, ref) {
|
|
|
71
71
|
});
|
|
72
72
|
var ButtonIcon = function (_a) {
|
|
73
73
|
var icon = _a.icon, isChevron = _a.isChevron, isBeforeText = _a.isBeforeText;
|
|
74
|
-
return (React__default["default"].createElement("span", { className:
|
|
75
|
-
"arc-Button-icon": true,
|
|
76
|
-
"arc-Button-icon--chevron": isChevron
|
|
77
|
-
}) }, isChevron ? (React__default["default"].createElement(Icon.Icon, { icon: isBeforeText ? BtIconChevronLeftMid_2 : BtIconChevronRightMid.BtIconChevronRightMid_2 })) : (React__default["default"].createElement(Icon.Icon, { icon: icon }))));
|
|
74
|
+
return (React__default["default"].createElement("span", { className: "arc-Button-icon" }, isChevron ? (React__default["default"].createElement(Icon.Icon, { icon: isBeforeText ? BtIconChevronLeftMid_2 : BtIconChevronRightMid.BtIconChevronRightMid_2 })) : (React__default["default"].createElement(Icon.Icon, { icon: icon }))));
|
|
78
75
|
};
|
|
79
76
|
|
|
80
77
|
exports.Button = Button;
|
|
@@ -14,5 +14,21 @@ interface VerticalSpaceProps {
|
|
|
14
14
|
* Size of the VerticalSpace.
|
|
15
15
|
*/
|
|
16
16
|
size?: VerticalSpaceSize;
|
|
17
|
+
/**
|
|
18
|
+
* Size of the VerticalSpace from the small breakpoint upwards.
|
|
19
|
+
*/
|
|
20
|
+
sizeS?: VerticalSpaceSize;
|
|
21
|
+
/**
|
|
22
|
+
* Size of the VerticalSpace from the medium breakpoint upwards.
|
|
23
|
+
*/
|
|
24
|
+
sizeM?: VerticalSpaceSize;
|
|
25
|
+
/**
|
|
26
|
+
* Size of the VerticalSpace from the large breakpoint upwards.
|
|
27
|
+
*/
|
|
28
|
+
sizeL?: VerticalSpaceSize;
|
|
29
|
+
/**
|
|
30
|
+
* Size of the VerticalSpace from the extra large breakpoint upwards.
|
|
31
|
+
*/
|
|
32
|
+
sizeXL?: VerticalSpaceSize;
|
|
17
33
|
}
|
|
18
34
|
export { VerticalSpace, VerticalSpaceSize, VerticalSpaceProps };
|
|
@@ -13,11 +13,15 @@ var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
|
13
13
|
*/
|
|
14
14
|
var VerticalSpace = function (_a) {
|
|
15
15
|
var _b;
|
|
16
|
-
var _c = _a.isDebugVisible, isDebugVisible = _c === void 0 ? false : _c, _d = _a.size, size = _d === void 0 ? "24" : _d, props = index.__rest(_a, ["isDebugVisible", "size"]);
|
|
16
|
+
var _c = _a.isDebugVisible, isDebugVisible = _c === void 0 ? false : _c, _d = _a.size, size = _d === void 0 ? "24" : _d, sizeS = _a.sizeS, sizeM = _a.sizeM, sizeL = _a.sizeL, sizeXL = _a.sizeXL, props = index.__rest(_a, ["isDebugVisible", "size", "sizeS", "sizeM", "sizeL", "sizeXL"]);
|
|
17
17
|
return (React__default["default"].createElement("div", index.__assign({ className: index$1.classNames((_b = {
|
|
18
18
|
"arc-VerticalSpace": true
|
|
19
19
|
},
|
|
20
|
-
_b["arc-VerticalSpace--size".concat(size)] = size
|
|
20
|
+
_b["arc-VerticalSpace--size".concat(size)] = size,
|
|
21
|
+
_b["arc-VerticalSpace--sizeS".concat(sizeS)] = sizeS && sizeS,
|
|
22
|
+
_b["arc-VerticalSpace--sizeM".concat(sizeM)] = sizeM && sizeM,
|
|
23
|
+
_b["arc-VerticalSpace--sizeL".concat(sizeL)] = sizeL && sizeL,
|
|
24
|
+
_b["arc-VerticalSpace--sizeXL".concat(sizeXL)] = sizeXL && sizeXL,
|
|
21
25
|
_b["arc-VerticalSpace--debugVisible"] = isDebugVisible,
|
|
22
26
|
_b)) }, index.filterDataAttrs(props))));
|
|
23
27
|
};
|
|
@@ -65,10 +65,7 @@ var Button = forwardRef(function (_a, ref) {
|
|
|
65
65
|
});
|
|
66
66
|
var ButtonIcon = function (_a) {
|
|
67
67
|
var icon = _a.icon, isChevron = _a.isChevron, isBeforeText = _a.isBeforeText;
|
|
68
|
-
return (React__default.createElement("span", { className:
|
|
69
|
-
"arc-Button-icon": true,
|
|
70
|
-
"arc-Button-icon--chevron": isChevron
|
|
71
|
-
}) }, isChevron ? (React__default.createElement(Icon, { icon: isBeforeText ? BtIconChevronLeftMid_2 : BtIconChevronRightMid_2 })) : (React__default.createElement(Icon, { icon: icon }))));
|
|
68
|
+
return (React__default.createElement("span", { className: "arc-Button-icon" }, isChevron ? (React__default.createElement(Icon, { icon: isBeforeText ? BtIconChevronLeftMid_2 : BtIconChevronRightMid_2 })) : (React__default.createElement(Icon, { icon: icon }))));
|
|
72
69
|
};
|
|
73
70
|
|
|
74
71
|
export { Button as B };
|
|
@@ -14,5 +14,21 @@ interface VerticalSpaceProps {
|
|
|
14
14
|
* Size of the VerticalSpace.
|
|
15
15
|
*/
|
|
16
16
|
size?: VerticalSpaceSize;
|
|
17
|
+
/**
|
|
18
|
+
* Size of the VerticalSpace from the small breakpoint upwards.
|
|
19
|
+
*/
|
|
20
|
+
sizeS?: VerticalSpaceSize;
|
|
21
|
+
/**
|
|
22
|
+
* Size of the VerticalSpace from the medium breakpoint upwards.
|
|
23
|
+
*/
|
|
24
|
+
sizeM?: VerticalSpaceSize;
|
|
25
|
+
/**
|
|
26
|
+
* Size of the VerticalSpace from the large breakpoint upwards.
|
|
27
|
+
*/
|
|
28
|
+
sizeL?: VerticalSpaceSize;
|
|
29
|
+
/**
|
|
30
|
+
* Size of the VerticalSpace from the extra large breakpoint upwards.
|
|
31
|
+
*/
|
|
32
|
+
sizeXL?: VerticalSpaceSize;
|
|
17
33
|
}
|
|
18
34
|
export { VerticalSpace, VerticalSpaceSize, VerticalSpaceProps };
|
|
@@ -7,11 +7,15 @@ import React__default from 'react';
|
|
|
7
7
|
*/
|
|
8
8
|
var VerticalSpace = function (_a) {
|
|
9
9
|
var _b;
|
|
10
|
-
var _c = _a.isDebugVisible, isDebugVisible = _c === void 0 ? false : _c, _d = _a.size, size = _d === void 0 ? "24" : _d, props = __rest(_a, ["isDebugVisible", "size"]);
|
|
10
|
+
var _c = _a.isDebugVisible, isDebugVisible = _c === void 0 ? false : _c, _d = _a.size, size = _d === void 0 ? "24" : _d, sizeS = _a.sizeS, sizeM = _a.sizeM, sizeL = _a.sizeL, sizeXL = _a.sizeXL, props = __rest(_a, ["isDebugVisible", "size", "sizeS", "sizeM", "sizeL", "sizeXL"]);
|
|
11
11
|
return (React__default.createElement("div", __assign({ className: classNames((_b = {
|
|
12
12
|
"arc-VerticalSpace": true
|
|
13
13
|
},
|
|
14
|
-
_b["arc-VerticalSpace--size".concat(size)] = size
|
|
14
|
+
_b["arc-VerticalSpace--size".concat(size)] = size,
|
|
15
|
+
_b["arc-VerticalSpace--sizeS".concat(sizeS)] = sizeS && sizeS,
|
|
16
|
+
_b["arc-VerticalSpace--sizeM".concat(sizeM)] = sizeM && sizeM,
|
|
17
|
+
_b["arc-VerticalSpace--sizeL".concat(sizeL)] = sizeL && sizeL,
|
|
18
|
+
_b["arc-VerticalSpace--sizeXL".concat(sizeXL)] = sizeXL && sizeXL,
|
|
15
19
|
_b["arc-VerticalSpace--debugVisible"] = isDebugVisible,
|
|
16
20
|
_b)) }, filterDataAttrs(props))));
|
|
17
21
|
};
|
package/dist/index.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as React$
|
|
1
|
+
import * as React$a from 'react';
|
|
2
2
|
import React__default, { createContext, useContext, useRef, useState, useEffect, forwardRef, useMemo, createElement, useCallback, Children, isValidElement, cloneElement, Fragment, useLayoutEffect, useId } from 'react';
|
|
3
3
|
|
|
4
4
|
/*! *****************************************************************************
|
|
@@ -853,9 +853,9 @@ function debounce(func, wait, options) {
|
|
|
853
853
|
|
|
854
854
|
var debounce_1 = debounce;
|
|
855
855
|
|
|
856
|
-
const React$
|
|
856
|
+
const React$9 = React__default;
|
|
857
857
|
const BtIconChevronLeft2Px = props =>
|
|
858
|
-
/*#__PURE__*/ React$
|
|
858
|
+
/*#__PURE__*/ React$9.createElement(
|
|
859
859
|
"svg",
|
|
860
860
|
Object.assign(
|
|
861
861
|
{
|
|
@@ -864,8 +864,8 @@ const BtIconChevronLeft2Px = props =>
|
|
|
864
864
|
},
|
|
865
865
|
props
|
|
866
866
|
),
|
|
867
|
-
/*#__PURE__*/ React$
|
|
868
|
-
/*#__PURE__*/ React$
|
|
867
|
+
/*#__PURE__*/ React$9.createElement("defs", null),
|
|
868
|
+
/*#__PURE__*/ React$9.createElement("path", {
|
|
869
869
|
d:
|
|
870
870
|
"M22.5,29.99854a.99676.99676,0,0,1-.707-.293L8.08594,15.99268,21.793,2.294A1.00023,1.00023,0,0,1,23.207,3.709l-12.293,12.28467L23.207,28.2915a1,1,0,0,1-.707,1.707Z",
|
|
871
871
|
fill: "currentColor"
|
|
@@ -873,9 +873,9 @@ const BtIconChevronLeft2Px = props =>
|
|
|
873
873
|
);
|
|
874
874
|
var BtIconChevronLeft2Px_2 = BtIconChevronLeft2Px;
|
|
875
875
|
|
|
876
|
-
const React$
|
|
876
|
+
const React$8 = React__default;
|
|
877
877
|
const BtIconChevronRight2Px = props =>
|
|
878
|
-
/*#__PURE__*/ React$
|
|
878
|
+
/*#__PURE__*/ React$8.createElement(
|
|
879
879
|
"svg",
|
|
880
880
|
Object.assign(
|
|
881
881
|
{
|
|
@@ -884,8 +884,8 @@ const BtIconChevronRight2Px = props =>
|
|
|
884
884
|
},
|
|
885
885
|
props
|
|
886
886
|
),
|
|
887
|
-
/*#__PURE__*/ React$
|
|
888
|
-
/*#__PURE__*/ React$
|
|
887
|
+
/*#__PURE__*/ React$8.createElement("defs", null),
|
|
888
|
+
/*#__PURE__*/ React$8.createElement("path", {
|
|
889
889
|
d:
|
|
890
890
|
"M9.5,29.99854A1.00025,1.00025,0,0,1,8.793,28.291l12.293-12.28467L8.793,3.7085A.99989.99989,0,0,1,10.207,2.29443l13.707,13.71289L10.207,29.70605A.99827.99827,0,0,1,9.5,29.99854Z",
|
|
891
891
|
fill: "currentColor"
|
|
@@ -893,9 +893,9 @@ const BtIconChevronRight2Px = props =>
|
|
|
893
893
|
);
|
|
894
894
|
var BtIconChevronRight2Px_2 = BtIconChevronRight2Px;
|
|
895
895
|
|
|
896
|
-
const React$
|
|
896
|
+
const React$7 = React__default;
|
|
897
897
|
const ArcIconArc = props =>
|
|
898
|
-
/*#__PURE__*/ React$
|
|
898
|
+
/*#__PURE__*/ React$7.createElement(
|
|
899
899
|
"svg",
|
|
900
900
|
Object.assign(
|
|
901
901
|
{
|
|
@@ -904,7 +904,7 @@ const ArcIconArc = props =>
|
|
|
904
904
|
},
|
|
905
905
|
props
|
|
906
906
|
),
|
|
907
|
-
/*#__PURE__*/ React$
|
|
907
|
+
/*#__PURE__*/ React$7.createElement("path", {
|
|
908
908
|
fill: "none",
|
|
909
909
|
d: "M3.472 11.69a6.5 6.5 0 012.321-6.839A6.5 6.5 0 0113 4.38",
|
|
910
910
|
stroke: "currentColor"
|
|
@@ -1097,9 +1097,9 @@ var BrandLogo = function (_a) {
|
|
|
1097
1097
|
} }, filterDataAttrs(props)), label ? React__default.createElement("span", { className: "arc-BrandLogo-text" }, label) : null));
|
|
1098
1098
|
};
|
|
1099
1099
|
|
|
1100
|
-
const React$
|
|
1100
|
+
const React$6 = React__default;
|
|
1101
1101
|
const BtIconChevronLeftMid = props =>
|
|
1102
|
-
/*#__PURE__*/ React$
|
|
1102
|
+
/*#__PURE__*/ React$6.createElement(
|
|
1103
1103
|
"svg",
|
|
1104
1104
|
Object.assign(
|
|
1105
1105
|
{
|
|
@@ -1109,7 +1109,7 @@ const BtIconChevronLeftMid = props =>
|
|
|
1109
1109
|
},
|
|
1110
1110
|
props
|
|
1111
1111
|
),
|
|
1112
|
-
/*#__PURE__*/ React$
|
|
1112
|
+
/*#__PURE__*/ React$6.createElement("path", {
|
|
1113
1113
|
fillRule: "evenodd",
|
|
1114
1114
|
clipRule: "evenodd",
|
|
1115
1115
|
d:
|
|
@@ -1119,9 +1119,9 @@ const BtIconChevronLeftMid = props =>
|
|
|
1119
1119
|
);
|
|
1120
1120
|
var BtIconChevronLeftMid_2 = BtIconChevronLeftMid;
|
|
1121
1121
|
|
|
1122
|
-
const React$
|
|
1122
|
+
const React$5 = React__default;
|
|
1123
1123
|
const BtIconChevronRightMid = props =>
|
|
1124
|
-
/*#__PURE__*/ React$
|
|
1124
|
+
/*#__PURE__*/ React$5.createElement(
|
|
1125
1125
|
"svg",
|
|
1126
1126
|
Object.assign(
|
|
1127
1127
|
{
|
|
@@ -1131,7 +1131,7 @@ const BtIconChevronRightMid = props =>
|
|
|
1131
1131
|
},
|
|
1132
1132
|
props
|
|
1133
1133
|
),
|
|
1134
|
-
/*#__PURE__*/ React$
|
|
1134
|
+
/*#__PURE__*/ React$5.createElement("path", {
|
|
1135
1135
|
fillRule: "evenodd",
|
|
1136
1136
|
clipRule: "evenodd",
|
|
1137
1137
|
d:
|
|
@@ -1178,10 +1178,7 @@ var Button = forwardRef(function (_a, ref) {
|
|
|
1178
1178
|
});
|
|
1179
1179
|
var ButtonIcon = function (_a) {
|
|
1180
1180
|
var icon = _a.icon, isChevron = _a.isChevron, isBeforeText = _a.isBeforeText;
|
|
1181
|
-
return (React__default.createElement("span", { className:
|
|
1182
|
-
"arc-Button-icon": true,
|
|
1183
|
-
"arc-Button-icon--chevron": isChevron
|
|
1184
|
-
}) }, isChevron ? (React__default.createElement(Icon, { icon: isBeforeText ? BtIconChevronLeftMid_2 : BtIconChevronRightMid_2 })) : (React__default.createElement(Icon, { icon: icon }))));
|
|
1181
|
+
return (React__default.createElement("span", { className: "arc-Button-icon" }, isChevron ? (React__default.createElement(Icon, { icon: isBeforeText ? BtIconChevronLeftMid_2 : BtIconChevronRightMid_2 })) : (React__default.createElement(Icon, { icon: icon }))));
|
|
1185
1182
|
};
|
|
1186
1183
|
|
|
1187
1184
|
/**
|
|
@@ -1438,12 +1435,12 @@ var CardLink = function (_a) {
|
|
|
1438
1435
|
}), href: href, rel: target === "_blank" ? "noopener noreferrer" : undefined, tabIndex: isButton ? -1 : undefined, target: target }, filterDataAttrs(linkData)),
|
|
1439
1436
|
React__default.createElement("span", { className: "arc-Card-linkText" }, children),
|
|
1440
1437
|
isButton && (React__default.createElement("span", { className: "arc-Card-linkIcon" },
|
|
1441
|
-
React__default.createElement(Icon, { testId: "cardIcon", icon: BtIconChevronRightMid_2, size:
|
|
1438
|
+
React__default.createElement(Icon, { testId: "cardIcon", icon: BtIconChevronRightMid_2, size: 24 })))));
|
|
1442
1439
|
};
|
|
1443
1440
|
|
|
1444
|
-
const React$
|
|
1441
|
+
const React$4 = React__default;
|
|
1445
1442
|
const BtIconTickAlt2Px = props =>
|
|
1446
|
-
/*#__PURE__*/ React$
|
|
1443
|
+
/*#__PURE__*/ React$4.createElement(
|
|
1447
1444
|
"svg",
|
|
1448
1445
|
Object.assign(
|
|
1449
1446
|
{
|
|
@@ -1452,8 +1449,8 @@ const BtIconTickAlt2Px = props =>
|
|
|
1452
1449
|
},
|
|
1453
1450
|
props
|
|
1454
1451
|
),
|
|
1455
|
-
/*#__PURE__*/ React$
|
|
1456
|
-
/*#__PURE__*/ React$
|
|
1452
|
+
/*#__PURE__*/ React$4.createElement("defs", null),
|
|
1453
|
+
/*#__PURE__*/ React$4.createElement("path", {
|
|
1457
1454
|
d:
|
|
1458
1455
|
"M13.49963,21.91418l-4.707-4.707a1.0014,1.0014,0,0,1,0-1.41406,1.02353,1.02353,0,0,1,1.41406,0l3.293,3.293,8.293-8.293a.99989.99989,0,1,1,1.41406,1.41406Z",
|
|
1459
1456
|
fill: "currentColor"
|
|
@@ -1461,9 +1458,9 @@ const BtIconTickAlt2Px = props =>
|
|
|
1461
1458
|
);
|
|
1462
1459
|
var BtIconTickAlt2Px_2 = BtIconTickAlt2Px;
|
|
1463
1460
|
|
|
1464
|
-
const React$
|
|
1461
|
+
const React$3 = React__default;
|
|
1465
1462
|
const BtIconAlert = props =>
|
|
1466
|
-
/*#__PURE__*/ React$
|
|
1463
|
+
/*#__PURE__*/ React$3.createElement(
|
|
1467
1464
|
"svg",
|
|
1468
1465
|
Object.assign(
|
|
1469
1466
|
{
|
|
@@ -1472,17 +1469,17 @@ const BtIconAlert = props =>
|
|
|
1472
1469
|
},
|
|
1473
1470
|
props
|
|
1474
1471
|
),
|
|
1475
|
-
/*#__PURE__*/ React$
|
|
1476
|
-
/*#__PURE__*/ React$
|
|
1472
|
+
/*#__PURE__*/ React$3.createElement("defs", null),
|
|
1473
|
+
/*#__PURE__*/ React$3.createElement("path", {
|
|
1477
1474
|
d:
|
|
1478
1475
|
"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,27A13,13,0,1,1,29,16,13.01474,13.01474,0,0,1,16,29Z",
|
|
1479
1476
|
fill: "currentColor"
|
|
1480
1477
|
}),
|
|
1481
|
-
/*#__PURE__*/ React$
|
|
1478
|
+
/*#__PURE__*/ React$3.createElement("path", {
|
|
1482
1479
|
fill: "currentColor",
|
|
1483
1480
|
d: "M16 20.99335A1 1 0 1 0 16 22.99335 1 1 0 1 0 16 20.99335z"
|
|
1484
1481
|
}),
|
|
1485
|
-
/*#__PURE__*/ React$
|
|
1482
|
+
/*#__PURE__*/ React$3.createElement("path", {
|
|
1486
1483
|
d:
|
|
1487
1484
|
"M16.00488,19.00977a.49972.49972,0,0,0,.5-.5L16.50684,9.5a.5.5,0,0,0-1,0l-.002,9.00977A.5.5,0,0,0,16.00488,19.00977Z",
|
|
1488
1485
|
fill: "currentColor"
|
|
@@ -1720,9 +1717,9 @@ var Curve = function (_a) {
|
|
|
1720
1717
|
_b)) }, filterDataAttrs(props))));
|
|
1721
1718
|
};
|
|
1722
1719
|
|
|
1723
|
-
const React$
|
|
1720
|
+
const React$2 = React__default;
|
|
1724
1721
|
const BtIconChevronDown2Px = props =>
|
|
1725
|
-
/*#__PURE__*/ React$
|
|
1722
|
+
/*#__PURE__*/ React$2.createElement(
|
|
1726
1723
|
"svg",
|
|
1727
1724
|
Object.assign(
|
|
1728
1725
|
{
|
|
@@ -1731,8 +1728,8 @@ const BtIconChevronDown2Px = props =>
|
|
|
1731
1728
|
},
|
|
1732
1729
|
props
|
|
1733
1730
|
),
|
|
1734
|
-
/*#__PURE__*/ React$
|
|
1735
|
-
/*#__PURE__*/ React$
|
|
1731
|
+
/*#__PURE__*/ React$2.createElement("defs", null),
|
|
1732
|
+
/*#__PURE__*/ React$2.createElement("path", {
|
|
1736
1733
|
d:
|
|
1737
1734
|
"M15.99316,23.91406,2.294,10.207A.99989.99989,0,1,1,3.708,8.793l12.28515,12.293L28.292,8.793A.99989.99989,0,1,1,29.70605,10.207Z",
|
|
1738
1735
|
fill: "currentColor"
|
|
@@ -33756,11 +33753,11 @@ function $d3863c46a17e8a28$var$removeLinks(items) {
|
|
|
33756
33753
|
* See: https://reactjs.org/docs/hooks-reference.html#uselayouteffect
|
|
33757
33754
|
*/ const $9f79659886946c16$export$e5c5a5f917a5871c = Boolean(globalThis === null || globalThis === void 0 ? void 0 : globalThis.document) ? useLayoutEffect : ()=>{};
|
|
33758
33755
|
|
|
33759
|
-
const $1746a345f3d73bb7$var$useReactId = React$
|
|
33756
|
+
const $1746a345f3d73bb7$var$useReactId = React$a['useId'.toString()] || (()=>undefined
|
|
33760
33757
|
);
|
|
33761
33758
|
let $1746a345f3d73bb7$var$count = 0;
|
|
33762
33759
|
function $1746a345f3d73bb7$export$f680877a34711e37(deterministicId) {
|
|
33763
|
-
const [id, setId] = React$
|
|
33760
|
+
const [id, setId] = React$a.useState($1746a345f3d73bb7$var$useReactId()); // React versions older than 18 will have client-side ids only.
|
|
33764
33761
|
$9f79659886946c16$export$e5c5a5f917a5871c(()=>{
|
|
33765
33762
|
if (!deterministicId) setId((reactId)=>reactId !== null && reactId !== void 0 ? reactId : String($1746a345f3d73bb7$var$count++)
|
|
33766
33763
|
);
|
|
@@ -34245,7 +34242,7 @@ var SideCar$1 = function (_a) {
|
|
|
34245
34242
|
if (!Target) {
|
|
34246
34243
|
throw new Error('Sidecar medium not found');
|
|
34247
34244
|
}
|
|
34248
|
-
return React$
|
|
34245
|
+
return React$a.createElement(Target, __assign({}, rest));
|
|
34249
34246
|
};
|
|
34250
34247
|
SideCar$1.isSideCarExport = true;
|
|
34251
34248
|
function exportSidecar(medium, exported) {
|
|
@@ -34261,9 +34258,9 @@ var nothing = function () {
|
|
|
34261
34258
|
/**
|
|
34262
34259
|
* Removes scrollbar from the page and contain the scroll within the Lock
|
|
34263
34260
|
*/
|
|
34264
|
-
var RemoveScroll = React$
|
|
34265
|
-
var ref = React$
|
|
34266
|
-
var _a = React$
|
|
34261
|
+
var RemoveScroll = React$a.forwardRef(function (props, parentRef) {
|
|
34262
|
+
var ref = React$a.useRef(null);
|
|
34263
|
+
var _a = React$a.useState({
|
|
34267
34264
|
onScrollCapture: nothing,
|
|
34268
34265
|
onWheelCapture: nothing,
|
|
34269
34266
|
onTouchMoveCapture: nothing,
|
|
@@ -34272,9 +34269,9 @@ var RemoveScroll = React$9.forwardRef(function (props, parentRef) {
|
|
|
34272
34269
|
var SideCar = sideCar;
|
|
34273
34270
|
var containerRef = useMergeRefs([ref, parentRef]);
|
|
34274
34271
|
var containerProps = __assign$1(__assign$1({}, rest), callbacks);
|
|
34275
|
-
return (React$
|
|
34276
|
-
enabled && (React$
|
|
34277
|
-
forwardProps ? (React$
|
|
34272
|
+
return (React$a.createElement(React$a.Fragment, null,
|
|
34273
|
+
enabled && (React$a.createElement(SideCar, { sideCar: effectCar, removeScrollBar: removeScrollBar, shards: shards, noIsolation: noIsolation, inert: inert, setCallbacks: setCallbacks, allowPinchZoom: !!allowPinchZoom, lockRef: ref })),
|
|
34274
|
+
forwardProps ? (React$a.cloneElement(React$a.Children.only(children), __assign$1(__assign$1({}, containerProps), { ref: containerRef }))) : (React$a.createElement(Container, __assign$1({}, containerProps, { className: className, ref: containerRef }), children))));
|
|
34278
34275
|
});
|
|
34279
34276
|
RemoveScroll.defaultProps = {
|
|
34280
34277
|
enabled: true,
|
|
@@ -34353,7 +34350,7 @@ var stylesheetSingleton = function () {
|
|
|
34353
34350
|
var styleHookSingleton = function () {
|
|
34354
34351
|
var sheet = stylesheetSingleton();
|
|
34355
34352
|
return function (styles, isDynamic) {
|
|
34356
|
-
React$
|
|
34353
|
+
React$a.useEffect(function () {
|
|
34357
34354
|
sheet.add(styles);
|
|
34358
34355
|
return function () {
|
|
34359
34356
|
sheet.remove();
|
|
@@ -34434,8 +34431,8 @@ var RemoveScrollBar = function (props) {
|
|
|
34434
34431
|
however it will be used only by the "first" invocation
|
|
34435
34432
|
due to singleton nature of <Style
|
|
34436
34433
|
*/
|
|
34437
|
-
var gap = React$
|
|
34438
|
-
return React$
|
|
34434
|
+
var gap = React$a.useMemo(function () { return getGapWidth(gapMode); }, [gapMode]);
|
|
34435
|
+
return React$a.createElement(Style, { styles: getStyles(gap, !noRelative, gapMode, !noImportant ? '!important' : '') });
|
|
34439
34436
|
};
|
|
34440
34437
|
|
|
34441
34438
|
var passiveSupported = false;
|
|
@@ -34567,16 +34564,16 @@ var generateStyle = function (id) { return "\n .block-interactivity-".concat(id
|
|
|
34567
34564
|
var idCounter = 0;
|
|
34568
34565
|
var lockStack = [];
|
|
34569
34566
|
function RemoveScrollSideCar(props) {
|
|
34570
|
-
var shouldPreventQueue = React$
|
|
34571
|
-
var touchStartRef = React$
|
|
34572
|
-
var activeAxis = React$
|
|
34573
|
-
var id = React$
|
|
34574
|
-
var Style = React$
|
|
34575
|
-
var lastProps = React$
|
|
34576
|
-
React$
|
|
34567
|
+
var shouldPreventQueue = React$a.useRef([]);
|
|
34568
|
+
var touchStartRef = React$a.useRef([0, 0]);
|
|
34569
|
+
var activeAxis = React$a.useRef();
|
|
34570
|
+
var id = React$a.useState(idCounter++)[0];
|
|
34571
|
+
var Style = React$a.useState(function () { return styleSingleton(); })[0];
|
|
34572
|
+
var lastProps = React$a.useRef(props);
|
|
34573
|
+
React$a.useEffect(function () {
|
|
34577
34574
|
lastProps.current = props;
|
|
34578
34575
|
}, [props]);
|
|
34579
|
-
React$
|
|
34576
|
+
React$a.useEffect(function () {
|
|
34580
34577
|
if (props.inert) {
|
|
34581
34578
|
document.body.classList.add("block-interactivity-".concat(id));
|
|
34582
34579
|
var allow_1 = __spreadArray([props.lockRef.current], (props.shards || []).map(extractRef), true).filter(Boolean);
|
|
@@ -34588,7 +34585,7 @@ function RemoveScrollSideCar(props) {
|
|
|
34588
34585
|
}
|
|
34589
34586
|
return;
|
|
34590
34587
|
}, [props.inert, props.lockRef.current, props.shards]);
|
|
34591
|
-
var shouldCancelEvent = React$
|
|
34588
|
+
var shouldCancelEvent = React$a.useCallback(function (event, parent) {
|
|
34592
34589
|
if ('touches' in event && event.touches.length === 2) {
|
|
34593
34590
|
return !lastProps.current.allowPinchZoom;
|
|
34594
34591
|
}
|
|
@@ -34627,7 +34624,7 @@ function RemoveScrollSideCar(props) {
|
|
|
34627
34624
|
var cancelingAxis = activeAxis.current || currentAxis;
|
|
34628
34625
|
return handleScroll(cancelingAxis, parent, event, cancelingAxis === 'h' ? deltaX : deltaY, true);
|
|
34629
34626
|
}, []);
|
|
34630
|
-
var shouldPrevent = React$
|
|
34627
|
+
var shouldPrevent = React$a.useCallback(function (_event) {
|
|
34631
34628
|
var event = _event;
|
|
34632
34629
|
if (!lockStack.length || lockStack[lockStack.length - 1] !== Style) {
|
|
34633
34630
|
// not the last active
|
|
@@ -34656,24 +34653,24 @@ function RemoveScrollSideCar(props) {
|
|
|
34656
34653
|
}
|
|
34657
34654
|
}
|
|
34658
34655
|
}, []);
|
|
34659
|
-
var shouldCancel = React$
|
|
34656
|
+
var shouldCancel = React$a.useCallback(function (name, delta, target, should) {
|
|
34660
34657
|
var event = { name: name, delta: delta, target: target, should: should };
|
|
34661
34658
|
shouldPreventQueue.current.push(event);
|
|
34662
34659
|
setTimeout(function () {
|
|
34663
34660
|
shouldPreventQueue.current = shouldPreventQueue.current.filter(function (e) { return e !== event; });
|
|
34664
34661
|
}, 1);
|
|
34665
34662
|
}, []);
|
|
34666
|
-
var scrollTouchStart = React$
|
|
34663
|
+
var scrollTouchStart = React$a.useCallback(function (event) {
|
|
34667
34664
|
touchStartRef.current = getTouchXY(event);
|
|
34668
34665
|
activeAxis.current = undefined;
|
|
34669
34666
|
}, []);
|
|
34670
|
-
var scrollWheel = React$
|
|
34667
|
+
var scrollWheel = React$a.useCallback(function (event) {
|
|
34671
34668
|
shouldCancel(event.type, getDeltaXY(event), event.target, shouldCancelEvent(event, props.lockRef.current));
|
|
34672
34669
|
}, []);
|
|
34673
|
-
var scrollTouchMove = React$
|
|
34670
|
+
var scrollTouchMove = React$a.useCallback(function (event) {
|
|
34674
34671
|
shouldCancel(event.type, getTouchXY(event), event.target, shouldCancelEvent(event, props.lockRef.current));
|
|
34675
34672
|
}, []);
|
|
34676
|
-
React$
|
|
34673
|
+
React$a.useEffect(function () {
|
|
34677
34674
|
lockStack.push(Style);
|
|
34678
34675
|
props.setCallbacks({
|
|
34679
34676
|
onScrollCapture: scrollWheel,
|
|
@@ -34691,14 +34688,14 @@ function RemoveScrollSideCar(props) {
|
|
|
34691
34688
|
};
|
|
34692
34689
|
}, []);
|
|
34693
34690
|
var removeScrollBar = props.removeScrollBar, inert = props.inert;
|
|
34694
|
-
return (React$
|
|
34695
|
-
inert ? React$
|
|
34696
|
-
removeScrollBar ? React$
|
|
34691
|
+
return (React$a.createElement(React$a.Fragment, null,
|
|
34692
|
+
inert ? React$a.createElement(Style, { styles: generateStyle(id) }) : null,
|
|
34693
|
+
removeScrollBar ? React$a.createElement(RemoveScrollBar, { gapMode: "margin" }) : null));
|
|
34697
34694
|
}
|
|
34698
34695
|
|
|
34699
34696
|
var SideCar = exportSidecar(effectCar, RemoveScrollSideCar);
|
|
34700
34697
|
|
|
34701
|
-
var ReactRemoveScroll = React$
|
|
34698
|
+
var ReactRemoveScroll = React$a.forwardRef(function (props, ref) { return (React$a.createElement(RemoveScroll, __assign$1({}, props, { ref: ref, sideCar: SideCar }))); });
|
|
34702
34699
|
ReactRemoveScroll.classNames = RemoveScroll.classNames;
|
|
34703
34700
|
var $01b9c$RemoveScroll = ReactRemoveScroll;
|
|
34704
34701
|
|
|
@@ -35709,9 +35706,9 @@ const $cc7e05a45900e73f$export$c3468e2714d175fa = $cc7e05a45900e73f$export$6b919
|
|
|
35709
35706
|
const $cc7e05a45900e73f$export$2f60d3ec9ad468f2 = $cc7e05a45900e73f$export$d8117927658af6d7;
|
|
35710
35707
|
const $cc7e05a45900e73f$export$bf1aedc3039c8d63 = $cc7e05a45900e73f$export$ff951e476c12189;
|
|
35711
35708
|
|
|
35712
|
-
const React = React__default;
|
|
35709
|
+
const React$1 = React__default;
|
|
35713
35710
|
const BtIconChevronUp2Px = props =>
|
|
35714
|
-
/*#__PURE__*/ React.createElement(
|
|
35711
|
+
/*#__PURE__*/ React$1.createElement(
|
|
35715
35712
|
"svg",
|
|
35716
35713
|
Object.assign(
|
|
35717
35714
|
{
|
|
@@ -35720,8 +35717,8 @@ const BtIconChevronUp2Px = props =>
|
|
|
35720
35717
|
},
|
|
35721
35718
|
props
|
|
35722
35719
|
),
|
|
35723
|
-
/*#__PURE__*/ React.createElement("defs", null),
|
|
35724
|
-
/*#__PURE__*/ React.createElement("path", {
|
|
35720
|
+
/*#__PURE__*/ React$1.createElement("defs", null),
|
|
35721
|
+
/*#__PURE__*/ React$1.createElement("path", {
|
|
35725
35722
|
d:
|
|
35726
35723
|
"M28.999,23.5a.99676.99676,0,0,1-.707-.293l-12.28515-12.293L3.708,23.207A.99989.99989,0,0,1,2.294,21.793l13.71289-13.707L29.70605,21.793a.99976.99976,0,0,1-.707,1.707Z",
|
|
35727
35724
|
fill: "currentColor"
|
|
@@ -36667,11 +36664,15 @@ const $6be4966fd9bbc698$export$6521433ed15a34db = $6be4966fd9bbc698$export$4d07b
|
|
|
36667
36664
|
*/
|
|
36668
36665
|
var VerticalSpace = function (_a) {
|
|
36669
36666
|
var _b;
|
|
36670
|
-
var _c = _a.isDebugVisible, isDebugVisible = _c === void 0 ? false : _c, _d = _a.size, size = _d === void 0 ? "24" : _d, props = __rest$2(_a, ["isDebugVisible", "size"]);
|
|
36667
|
+
var _c = _a.isDebugVisible, isDebugVisible = _c === void 0 ? false : _c, _d = _a.size, size = _d === void 0 ? "24" : _d, sizeS = _a.sizeS, sizeM = _a.sizeM, sizeL = _a.sizeL, sizeXL = _a.sizeXL, props = __rest$2(_a, ["isDebugVisible", "size", "sizeS", "sizeM", "sizeL", "sizeXL"]);
|
|
36671
36668
|
return (React__default.createElement("div", __assign$2({ className: classNames((_b = {
|
|
36672
36669
|
"arc-VerticalSpace": true
|
|
36673
36670
|
},
|
|
36674
|
-
_b["arc-VerticalSpace--size".concat(size)] = size
|
|
36671
|
+
_b["arc-VerticalSpace--size".concat(size)] = size,
|
|
36672
|
+
_b["arc-VerticalSpace--sizeS".concat(sizeS)] = sizeS && sizeS,
|
|
36673
|
+
_b["arc-VerticalSpace--sizeM".concat(sizeM)] = sizeM && sizeM,
|
|
36674
|
+
_b["arc-VerticalSpace--sizeL".concat(sizeL)] = sizeL && sizeL,
|
|
36675
|
+
_b["arc-VerticalSpace--sizeXL".concat(sizeXL)] = sizeXL && sizeXL,
|
|
36675
36676
|
_b["arc-VerticalSpace--debugVisible"] = isDebugVisible,
|
|
36676
36677
|
_b)) }, filterDataAttrs(props))));
|
|
36677
36678
|
};
|
|
@@ -36724,6 +36725,63 @@ var Badge = function (_a) {
|
|
|
36724
36725
|
React__default.createElement(Text, { size: size === "default" ? "xs" : "m" }, children))));
|
|
36725
36726
|
};
|
|
36726
36727
|
|
|
36728
|
+
const React = React__default;
|
|
36729
|
+
const BtIconCross = props =>
|
|
36730
|
+
/*#__PURE__*/ React.createElement(
|
|
36731
|
+
"svg",
|
|
36732
|
+
Object.assign(
|
|
36733
|
+
{
|
|
36734
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
36735
|
+
viewBox: "0 0 32 32"
|
|
36736
|
+
},
|
|
36737
|
+
props
|
|
36738
|
+
),
|
|
36739
|
+
/*#__PURE__*/ React.createElement("defs", null),
|
|
36740
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
36741
|
+
d:
|
|
36742
|
+
"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,27A13,13,0,1,1,29,16,13.01474,13.01474,0,0,1,16,29Z",
|
|
36743
|
+
fill: "currentColor"
|
|
36744
|
+
}),
|
|
36745
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
36746
|
+
d:
|
|
36747
|
+
"M20.85352,11.14648a.49983.49983,0,0,0-.707,0L16,15.293l-4.14648-4.14649a.5.5,0,0,0-.707.707L15.293,16l-4.14649,4.14648a.5.5,0,1,0,.707.707L16,16.707l4.14648,4.14649a.5.5,0,0,0,.707-.707L16.707,16l4.14649-4.14648A.49983.49983,0,0,0,20.85352,11.14648Z",
|
|
36748
|
+
fill: "currentColor"
|
|
36749
|
+
})
|
|
36750
|
+
);
|
|
36751
|
+
var BtIconCross_2 = BtIconCross;
|
|
36752
|
+
|
|
36753
|
+
/**
|
|
36754
|
+
* use `Tag` to promote features and manage filtering.
|
|
36755
|
+
*/
|
|
36756
|
+
var Tag = function (_a) {
|
|
36757
|
+
var children = _a.children, isRemovable = _a.isRemovable, link = _a.link, icon = _a.icon, onClick = _a.onClick, onRemove = _a.onRemove, props = __rest$2(_a, ["children", "isRemovable", "link", "icon", "onClick", "onRemove"]);
|
|
36758
|
+
var surface = useContext(Context$3).surface;
|
|
36759
|
+
var _b = useState(false), isRemoved = _b[0], setIsRemoved = _b[1];
|
|
36760
|
+
var onRemoveHandler = function () {
|
|
36761
|
+
setIsRemoved(function (p) { return !p; });
|
|
36762
|
+
onRemove && onRemove();
|
|
36763
|
+
};
|
|
36764
|
+
return (React__default.createElement("div", __assign$2({ className: classNames("arc-Tag", {
|
|
36765
|
+
"arc-Tag--onDarkSurface": surface === "dark",
|
|
36766
|
+
"arc-Tag--isRemovable": isRemovable,
|
|
36767
|
+
"arc-Tag--hasIcon": icon,
|
|
36768
|
+
"arc-Tag--hasLink": link || onClick,
|
|
36769
|
+
"arc-Tag--removed": isRemoved
|
|
36770
|
+
}) }, (isRemoved && { "aria-hidden": true }), filterDataAttrs(props)),
|
|
36771
|
+
link ? (React__default.createElement("a", { className: "arc-Tag-content", href: link, tabIndex: 0 },
|
|
36772
|
+
icon && (React__default.createElement("span", { className: "arc-Tag-icon" },
|
|
36773
|
+
React__default.createElement(Icon, { "data-testid": "arc-Tag-icon", icon: icon, size: 16 }))),
|
|
36774
|
+
React__default.createElement("div", { className: "arc-Tag-label" }, children))) : (React__default.createElement(React__default.Fragment, null, onClick ? (React__default.createElement("button", { className: "arc-Tag-content", onClick: onClick, "data-testid": "arc-Tag-content" },
|
|
36775
|
+
icon && (React__default.createElement("span", { className: "arc-Tag-icon" },
|
|
36776
|
+
React__default.createElement(Icon, { "data-testid": "arc-Tag-icon", icon: icon, size: 16 }))),
|
|
36777
|
+
React__default.createElement("div", { className: "arc-Tag-label" }, children))) : (React__default.createElement("div", { className: "arc-Tag-content", "data-testid": "arc-Tag-content" },
|
|
36778
|
+
icon && (React__default.createElement("span", { className: "arc-Tag-icon" },
|
|
36779
|
+
React__default.createElement(Icon, { "data-testid": "arc-Tag-icon", icon: icon, size: 16 }))),
|
|
36780
|
+
React__default.createElement("div", { className: "arc-Tag-label" }, children))))),
|
|
36781
|
+
isRemovable && (React__default.createElement("button", { className: "arc-Tag-icon arc-Tag-icon--removable", onClick: onRemoveHandler, "data-testid": "arc-Tag-icon-removable", "aria-live": "polite", "aria-roledescription": "remove tag" },
|
|
36782
|
+
React__default.createElement(Icon, { icon: BtIconCross_2, color: "brand", size: 20 })))));
|
|
36783
|
+
};
|
|
36784
|
+
|
|
36727
36785
|
/**
|
|
36728
36786
|
* Provides text for screen readers that is visually hidden.
|
|
36729
36787
|
*/
|
|
@@ -36775,5 +36833,5 @@ var Truncate = function (_a) {
|
|
|
36775
36833
|
return (React__default.createElement("div", { className: "arc-Truncate", style: { maxWidth: "".concat(maxWidth, "%") }, title: title }, children));
|
|
36776
36834
|
};
|
|
36777
36835
|
|
|
36778
|
-
export { Align, Badge, Base, BrandLogo, Breadcrumbs, Button, Card, Checkbox, Clock, Clock_rehydrator as ClockRehydrator, Columns, Curve, Disclosure, Elevation, FormControl, Group, Heading, Icon, Image, Markup, Poster, RadioGroup, Rule, Section, Select, SiteFooter, SiteFooter_rehydrator as SiteFooterRehydrator, SiteHeader, SiteHeaderRehydrator, Surface, Context$3 as SurfaceContext, Switch, Text, TextInput, Truncate, UniversalHeader, VerticalSpace, VisuallyHidden };
|
|
36836
|
+
export { Align, Badge, Base, BrandLogo, Breadcrumbs, Button, Card, Checkbox, Clock, Clock_rehydrator as ClockRehydrator, Columns, Curve, Disclosure, Elevation, FormControl, Group, Heading, Icon, Image, Markup, Poster, RadioGroup, Rule, Section, Select, SiteFooter, SiteFooter_rehydrator as SiteFooterRehydrator, SiteHeader, SiteHeaderRehydrator, Surface, Context$3 as SurfaceContext, Switch, Tag, Text, TextInput, Truncate, UniversalHeader, VerticalSpace, VisuallyHidden };
|
|
36779
36837
|
//# sourceMappingURL=index.es.js.map
|