@nypl/design-system-react-components 1.5.2 → 1.5.4
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/components/Icons/IconNames.d.ts +2 -2
- package/dist/components/Icons/IconSvgs.d.ts +2 -0
- package/dist/design-system-react-components.cjs.development.js +670 -564
- package/dist/design-system-react-components.cjs.development.js.map +1 -1
- package/dist/design-system-react-components.cjs.production.min.js +1 -1
- package/dist/design-system-react-components.cjs.production.min.js.map +1 -1
- package/dist/design-system-react-components.esm.js +670 -564
- package/dist/design-system-react-components.esm.js.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/theme/components/breadcrumb.d.ts +13 -0
- package/dist/theme/components/feedbackBox.d.ts +9 -2
- package/dist/theme/components/footer.d.ts +3 -0
- package/dist/theme/components/select.d.ts +1 -0
- package/dist/theme/components/textInput.d.ts +6 -0
- package/package.json +1 -1
|
@@ -1100,53 +1100,53 @@ var _excluded$J = ["title", "titleId"];
|
|
|
1100
1100
|
function _extends$K() { _extends$K = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$K.apply(this, arguments); }
|
|
1101
1101
|
function _objectWithoutProperties$J(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$K(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1102
1102
|
function _objectWithoutPropertiesLoose$K(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
1103
|
-
var
|
|
1103
|
+
var SvgSocialPinterest = function SvgSocialPinterest(_ref) {
|
|
1104
1104
|
var title = _ref.title,
|
|
1105
1105
|
titleId = _ref.titleId,
|
|
1106
1106
|
props = _objectWithoutProperties$J(_ref, _excluded$J);
|
|
1107
1107
|
return /*#__PURE__*/createElement("svg", _extends$K({
|
|
1108
1108
|
viewBox: "0 0 36 36",
|
|
1109
|
+
fill: "none",
|
|
1109
1110
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1110
1111
|
"aria-labelledby": titleId
|
|
1111
1112
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1112
1113
|
id: titleId
|
|
1113
1114
|
}, title) : null, _g$1 || (_g$1 = /*#__PURE__*/createElement("g", {
|
|
1114
|
-
clipPath: "url(#social-
|
|
1115
|
+
clipPath: "url(#social-pinterest_svg__clip0_77652_129156)"
|
|
1115
1116
|
}, /*#__PURE__*/createElement("path", {
|
|
1116
|
-
|
|
1117
|
-
clipRule: "evenodd",
|
|
1118
|
-
d: "M26.555 28.756c-.655.319-1.908.597-2.842.62-2.82.078-3.368-2.024-3.39-3.548V14.621h7.075v-5.45h-7.051V0h-5.16c-.085 0-.233.076-.255.269C14.631 3.075 13.345 8 8 9.97v4.65h3.566v11.762c0 4.028 2.907 9.75 10.583 9.615 2.59-.046 5.466-1.153 6.101-2.11l-1.695-5.132Z"
|
|
1117
|
+
d: "M0 18c0 7.371 4.432 13.703 10.774 16.487-.05-1.257-.008-2.766.314-4.133l2.316-9.809s-.575-1.149-.575-2.848c0-2.667 1.546-4.66 3.471-4.66 1.638 0 2.429 1.23 2.429 2.703 0 1.646-1.05 4.108-1.59 6.388-.45 1.91.957 3.467 2.841 3.467 3.41 0 5.707-4.38 5.707-9.57 0-3.945-2.657-6.898-7.49-6.898-5.46 0-8.861 4.072-8.861 8.62 0 1.568.462 2.674 1.186 3.53.333.394.38.552.26 1.004-.087.33-.286 1.128-.368 1.444-.12.456-.489.62-.9.45-2.516-1.026-3.687-3.78-3.687-6.876 0-5.113 4.312-11.245 12.865-11.245 6.872 0 11.395 4.973 11.395 10.312 0 7.061-3.925 12.336-9.712 12.336-1.944 0-3.771-1.05-4.398-2.243 0 0-1.045 4.147-1.266 4.948-.382 1.388-1.129 2.775-1.812 3.856 1.62.478 3.33.738 5.102.738 9.94 0 18-8.06 18-18C36 8.058 27.94 0 18 0 8.06 0 0 8.06 0 18Z"
|
|
1119
1118
|
}))));
|
|
1120
1119
|
};
|
|
1121
1120
|
|
|
1122
|
-
var
|
|
1121
|
+
var _g$2;
|
|
1123
1122
|
var _excluded$K = ["title", "titleId"];
|
|
1124
1123
|
function _extends$L() { _extends$L = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$L.apply(this, arguments); }
|
|
1125
1124
|
function _objectWithoutProperties$K(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$L(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1126
1125
|
function _objectWithoutPropertiesLoose$L(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
1127
|
-
var
|
|
1126
|
+
var SvgSocialSoundcloud = function SvgSocialSoundcloud(_ref) {
|
|
1128
1127
|
var title = _ref.title,
|
|
1129
1128
|
titleId = _ref.titleId,
|
|
1130
1129
|
props = _objectWithoutProperties$K(_ref, _excluded$K);
|
|
1131
1130
|
return /*#__PURE__*/createElement("svg", _extends$L({
|
|
1132
1131
|
viewBox: "0 0 36 36",
|
|
1132
|
+
fill: "none",
|
|
1133
1133
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1134
1134
|
"aria-labelledby": titleId
|
|
1135
1135
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1136
1136
|
id: titleId
|
|
1137
|
-
}, title) : null,
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
d: "
|
|
1141
|
-
})));
|
|
1137
|
+
}, title) : null, _g$2 || (_g$2 = /*#__PURE__*/createElement("g", {
|
|
1138
|
+
clipPath: "url(#social-soundcloud_svg__clip0_77654_130801)"
|
|
1139
|
+
}, /*#__PURE__*/createElement("path", {
|
|
1140
|
+
d: "M0 24.386c0 .446.162.784.486 1.013.324.23.67.31 1.038.243.347-.067.59-.19.73-.369.139-.178.209-.474.209-.887v-4.858c0-.347-.12-.64-.36-.88s-.534-.36-.88-.36c-.335 0-.623.12-.863.36s-.36.533-.36.88v4.858Zm3.853 2.077c0 .324.114.567.343.729.23.162.522.242.88.242.368 0 .667-.08.896-.242.229-.162.343-.405.343-.73V15.14c0-.335-.12-.623-.36-.863s-.533-.36-.88-.36c-.334 0-.622.12-.862.36s-.36.527-.36.863v11.324Zm3.836.536c0 .324.117.567.352.729.234.162.536.243.905.243.357 0 .65-.081.879-.243.229-.162.344-.405.344-.729V16.663c0-.346-.12-.642-.36-.888a1.164 1.164 0 0 0-.863-.368 1.21 1.21 0 0 0-.888.368 1.21 1.21 0 0 0-.369.888v10.336Zm3.853.05c0 .614.413.922 1.24.922.826 0 1.24-.308 1.24-.922V10.297c0-.938-.285-1.468-.855-1.591-.368-.09-.732.017-1.089.318-.357.302-.536.726-.536 1.273V27.05Zm3.92.486V9.309c0-.58.173-.927.52-1.039a9.566 9.566 0 0 1 2.227-.268c1.71 0 3.3.402 4.775 1.206A9.835 9.835 0 0 1 26.56 12.5a9.814 9.814 0 0 1 1.583 4.599 5.495 5.495 0 0 1 2.178-.436c1.563 0 2.9.553 4.012 1.659C35.444 19.427 36 20.756 36 22.308c0 1.564-.556 2.899-1.667 4.004-1.111 1.106-2.443 1.659-3.995 1.659l-14.574-.017a.392.392 0 0 1-.227-.184.494.494 0 0 1-.075-.235Z"
|
|
1141
|
+
}))));
|
|
1142
1142
|
};
|
|
1143
1143
|
|
|
1144
|
-
var _g$
|
|
1144
|
+
var _g$3;
|
|
1145
1145
|
var _excluded$L = ["title", "titleId"];
|
|
1146
1146
|
function _extends$M() { _extends$M = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$M.apply(this, arguments); }
|
|
1147
1147
|
function _objectWithoutProperties$L(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$M(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1148
1148
|
function _objectWithoutPropertiesLoose$M(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
1149
|
-
var
|
|
1149
|
+
var SvgSocialTumblr = function SvgSocialTumblr(_ref) {
|
|
1150
1150
|
var title = _ref.title,
|
|
1151
1151
|
titleId = _ref.titleId,
|
|
1152
1152
|
props = _objectWithoutProperties$L(_ref, _excluded$L);
|
|
@@ -1156,47 +1156,93 @@ var SvgSocialYoutube = function SvgSocialYoutube(_ref) {
|
|
|
1156
1156
|
"aria-labelledby": titleId
|
|
1157
1157
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1158
1158
|
id: titleId
|
|
1159
|
-
}, title) : null, _g$
|
|
1160
|
-
clipPath: "url(#social-
|
|
1159
|
+
}, title) : null, _g$3 || (_g$3 = /*#__PURE__*/createElement("g", {
|
|
1160
|
+
clipPath: "url(#social-tumblr_svg__clip0_17226_338)"
|
|
1161
1161
|
}, /*#__PURE__*/createElement("path", {
|
|
1162
1162
|
fillRule: "evenodd",
|
|
1163
1163
|
clipRule: "evenodd",
|
|
1164
|
-
d: "
|
|
1164
|
+
d: "M26.555 28.756c-.655.319-1.908.597-2.842.62-2.82.078-3.368-2.024-3.39-3.548V14.621h7.075v-5.45h-7.051V0h-5.16c-.085 0-.233.076-.255.269C14.631 3.075 13.345 8 8 9.97v4.65h3.566v11.762c0 4.028 2.907 9.75 10.583 9.615 2.59-.046 5.466-1.153 6.101-2.11l-1.695-5.132Z"
|
|
1165
1165
|
}))));
|
|
1166
1166
|
};
|
|
1167
1167
|
|
|
1168
|
-
var _path$
|
|
1168
|
+
var _path$G;
|
|
1169
1169
|
var _excluded$M = ["title", "titleId"];
|
|
1170
1170
|
function _extends$N() { _extends$N = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$N.apply(this, arguments); }
|
|
1171
1171
|
function _objectWithoutProperties$M(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$N(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1172
1172
|
function _objectWithoutPropertiesLoose$N(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
1173
|
-
var
|
|
1173
|
+
var SvgSocialTwitter = function SvgSocialTwitter(_ref) {
|
|
1174
1174
|
var title = _ref.title,
|
|
1175
1175
|
titleId = _ref.titleId,
|
|
1176
1176
|
props = _objectWithoutProperties$M(_ref, _excluded$M);
|
|
1177
1177
|
return /*#__PURE__*/createElement("svg", _extends$N({
|
|
1178
|
-
viewBox: "0 0
|
|
1178
|
+
viewBox: "0 0 36 36",
|
|
1179
1179
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1180
1180
|
"aria-labelledby": titleId
|
|
1181
1181
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1182
1182
|
id: titleId
|
|
1183
|
-
}, title) : null, _path$
|
|
1183
|
+
}, title) : null, _path$G || (_path$G = /*#__PURE__*/createElement("path", {
|
|
1184
1184
|
fillRule: "evenodd",
|
|
1185
1185
|
clipRule: "evenodd",
|
|
1186
|
-
d: "
|
|
1186
|
+
d: "M36 6.551a14.427 14.427 0 0 1-4.24 1.192 7.557 7.557 0 0 0 3.247-4.188 14.548 14.548 0 0 1-4.693 1.835A7.284 7.284 0 0 0 24.924 3c-4.077 0-7.384 3.391-7.384 7.573 0 .594.064 1.17.19 1.725-6.138-.316-11.579-3.328-15.224-7.916a7.711 7.711 0 0 0-1 3.812 7.623 7.623 0 0 0 3.286 6.303 7.252 7.252 0 0 1-3.347-.944v.093c0 3.67 2.547 6.732 5.927 7.425a7.042 7.042 0 0 1-1.946.267c-.475 0-.94-.046-1.39-.134.94 3.007 3.666 5.198 6.899 5.256a14.584 14.584 0 0 1-9.173 3.244c-.596 0-1.185-.034-1.762-.104A20.563 20.563 0 0 0 11.322 33c13.587 0 21.014-11.538 21.014-21.547 0-.33-.006-.659-.02-.982A15.158 15.158 0 0 0 36 6.551Z"
|
|
1187
1187
|
})));
|
|
1188
1188
|
};
|
|
1189
1189
|
|
|
1190
|
-
var
|
|
1190
|
+
var _g$4;
|
|
1191
1191
|
var _excluded$N = ["title", "titleId"];
|
|
1192
1192
|
function _extends$O() { _extends$O = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$O.apply(this, arguments); }
|
|
1193
1193
|
function _objectWithoutProperties$N(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$O(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1194
1194
|
function _objectWithoutPropertiesLoose$O(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
1195
|
-
var
|
|
1195
|
+
var SvgSocialYoutube = function SvgSocialYoutube(_ref) {
|
|
1196
1196
|
var title = _ref.title,
|
|
1197
1197
|
titleId = _ref.titleId,
|
|
1198
1198
|
props = _objectWithoutProperties$N(_ref, _excluded$N);
|
|
1199
1199
|
return /*#__PURE__*/createElement("svg", _extends$O({
|
|
1200
|
+
viewBox: "0 0 36 36",
|
|
1201
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1202
|
+
"aria-labelledby": titleId
|
|
1203
|
+
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1204
|
+
id: titleId
|
|
1205
|
+
}, title) : null, _g$4 || (_g$4 = /*#__PURE__*/createElement("g", {
|
|
1206
|
+
clipPath: "url(#social-youtube_svg__clip0_17226_337)"
|
|
1207
|
+
}, /*#__PURE__*/createElement("path", {
|
|
1208
|
+
fillRule: "evenodd",
|
|
1209
|
+
clipRule: "evenodd",
|
|
1210
|
+
d: "m14.283 22.452-.001-10.186 9.727 5.11-9.726 5.076ZM35.64 10.501s-.352-2.499-1.431-3.599c-1.37-1.444-2.904-1.451-3.607-1.535C25.564 5 18.008 5 18.008 5h-.016s-7.557 0-12.594.367c-.704.084-2.238.09-3.608 1.535C.71 8.002.36 10.501.36 10.501S0 13.435 0 16.368v2.751c0 2.935.36 5.868.36 5.868s.351 2.498 1.43 3.598c1.37 1.445 3.169 1.4 3.97 1.55C8.64 30.414 18 30.5 18 30.5s7.564-.011 12.602-.378c.703-.085 2.238-.092 3.607-1.537 1.079-1.1 1.431-3.598 1.431-3.598s.36-2.933.36-5.868v-2.75c0-2.934-.36-5.868-.36-5.868Z"
|
|
1211
|
+
}))));
|
|
1212
|
+
};
|
|
1213
|
+
|
|
1214
|
+
var _path$H;
|
|
1215
|
+
var _excluded$O = ["title", "titleId"];
|
|
1216
|
+
function _extends$P() { _extends$P = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$P.apply(this, arguments); }
|
|
1217
|
+
function _objectWithoutProperties$O(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$P(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1218
|
+
function _objectWithoutPropertiesLoose$P(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
1219
|
+
var SvgSpeakerNotes = function SvgSpeakerNotes(_ref) {
|
|
1220
|
+
var title = _ref.title,
|
|
1221
|
+
titleId = _ref.titleId,
|
|
1222
|
+
props = _objectWithoutProperties$O(_ref, _excluded$O);
|
|
1223
|
+
return /*#__PURE__*/createElement("svg", _extends$P({
|
|
1224
|
+
viewBox: "0 0 24 24",
|
|
1225
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1226
|
+
"aria-labelledby": titleId
|
|
1227
|
+
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
1228
|
+
id: titleId
|
|
1229
|
+
}, title) : null, _path$H || (_path$H = /*#__PURE__*/createElement("path", {
|
|
1230
|
+
fillRule: "evenodd",
|
|
1231
|
+
clipRule: "evenodd",
|
|
1232
|
+
d: "M4 2h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H6l-4 4 .01-18c0-1.1.89-2 1.99-2Zm1.17 14H20V4H4v13.17l.58-.58.59-.59ZM6 12h2v2H6v-2Zm2-3H6v2h2V9ZM6 6h2v2H6V6Zm9 6h-5v2h5v-2Zm-5-3h8v2h-8V9Zm8-3h-8v2h8V6Z"
|
|
1233
|
+
})));
|
|
1234
|
+
};
|
|
1235
|
+
|
|
1236
|
+
var _path$I, _path2$d;
|
|
1237
|
+
var _excluded$P = ["title", "titleId"];
|
|
1238
|
+
function _extends$Q() { _extends$Q = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$Q.apply(this, arguments); }
|
|
1239
|
+
function _objectWithoutProperties$P(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$Q(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1240
|
+
function _objectWithoutPropertiesLoose$Q(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
1241
|
+
var SvgUtilityAccountFilled = function SvgUtilityAccountFilled(_ref) {
|
|
1242
|
+
var title = _ref.title,
|
|
1243
|
+
titleId = _ref.titleId,
|
|
1244
|
+
props = _objectWithoutProperties$P(_ref, _excluded$P);
|
|
1245
|
+
return /*#__PURE__*/createElement("svg", _extends$Q({
|
|
1200
1246
|
viewBox: "0 0 24 24",
|
|
1201
1247
|
fill: "none",
|
|
1202
1248
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1213,15 +1259,15 @@ var SvgUtilityAccountFilled = function SvgUtilityAccountFilled(_ref) {
|
|
|
1213
1259
|
};
|
|
1214
1260
|
|
|
1215
1261
|
var _path$J, _path2$e;
|
|
1216
|
-
var _excluded$
|
|
1217
|
-
function _extends$
|
|
1218
|
-
function _objectWithoutProperties$
|
|
1219
|
-
function _objectWithoutPropertiesLoose$
|
|
1262
|
+
var _excluded$Q = ["title", "titleId"];
|
|
1263
|
+
function _extends$R() { _extends$R = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$R.apply(this, arguments); }
|
|
1264
|
+
function _objectWithoutProperties$Q(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$R(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1265
|
+
function _objectWithoutPropertiesLoose$R(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
1220
1266
|
var SvgUtilityAccountUnfilled = function SvgUtilityAccountUnfilled(_ref) {
|
|
1221
1267
|
var title = _ref.title,
|
|
1222
1268
|
titleId = _ref.titleId,
|
|
1223
|
-
props = _objectWithoutProperties$
|
|
1224
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1269
|
+
props = _objectWithoutProperties$Q(_ref, _excluded$Q);
|
|
1270
|
+
return /*#__PURE__*/createElement("svg", _extends$R({
|
|
1225
1271
|
viewBox: "0 0 24 24",
|
|
1226
1272
|
fill: "none",
|
|
1227
1273
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1244,15 +1290,15 @@ var SvgUtilityAccountUnfilled = function SvgUtilityAccountUnfilled(_ref) {
|
|
|
1244
1290
|
};
|
|
1245
1291
|
|
|
1246
1292
|
var _path$K;
|
|
1247
|
-
var _excluded$
|
|
1248
|
-
function _extends$
|
|
1249
|
-
function _objectWithoutProperties$
|
|
1250
|
-
function _objectWithoutPropertiesLoose$
|
|
1293
|
+
var _excluded$R = ["title", "titleId"];
|
|
1294
|
+
function _extends$S() { _extends$S = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$S.apply(this, arguments); }
|
|
1295
|
+
function _objectWithoutProperties$R(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$S(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1296
|
+
function _objectWithoutPropertiesLoose$S(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
1251
1297
|
var SvgUtilityHamburger = function SvgUtilityHamburger(_ref) {
|
|
1252
1298
|
var title = _ref.title,
|
|
1253
1299
|
titleId = _ref.titleId,
|
|
1254
|
-
props = _objectWithoutProperties$
|
|
1255
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
1300
|
+
props = _objectWithoutProperties$R(_ref, _excluded$R);
|
|
1301
|
+
return /*#__PURE__*/createElement("svg", _extends$S({
|
|
1256
1302
|
viewBox: "0 0 24 24",
|
|
1257
1303
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1258
1304
|
"aria-labelledby": titleId
|
|
@@ -1312,6 +1358,8 @@ var iconSvgs = {
|
|
|
1312
1358
|
search: SvgSearch,
|
|
1313
1359
|
socialFacebook: SvgSocialFacebook,
|
|
1314
1360
|
socialInstagram: SvgSocialInstagram,
|
|
1361
|
+
socialPinterest: SvgSocialPinterest,
|
|
1362
|
+
socialSoundCloud: SvgSocialSoundcloud,
|
|
1315
1363
|
socialTumblr: SvgSocialTumblr,
|
|
1316
1364
|
socialTwitter: SvgSocialTwitter,
|
|
1317
1365
|
socialYoutube: SvgSocialYoutube,
|
|
@@ -1322,7 +1370,7 @@ var iconSvgs = {
|
|
|
1322
1370
|
utilitySearch: SvgSearch
|
|
1323
1371
|
};
|
|
1324
1372
|
|
|
1325
|
-
var _excluded$
|
|
1373
|
+
var _excluded$S = ["align", "children", "className", "color", "decorative", "iconRotation", "id", "name", "size", "title", "type"];
|
|
1326
1374
|
/**
|
|
1327
1375
|
* Renders SVG-based icons.
|
|
1328
1376
|
*/
|
|
@@ -1346,7 +1394,7 @@ var Icon = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
1346
1394
|
title = _props$title === void 0 ? name + " icon" : _props$title,
|
|
1347
1395
|
_props$type = props.type,
|
|
1348
1396
|
type = _props$type === void 0 ? "default" : _props$type,
|
|
1349
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
1397
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$S);
|
|
1350
1398
|
var styles = useStyleConfig("Icon", {
|
|
1351
1399
|
align: align,
|
|
1352
1400
|
color: color,
|
|
@@ -1404,7 +1452,7 @@ var Icon = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
1404
1452
|
}
|
|
1405
1453
|
});
|
|
1406
1454
|
|
|
1407
|
-
var _excluded$
|
|
1455
|
+
var _excluded$T = ["accordionData", "id", "isDefaultOpen", "isAlwaysRendered", "panelMaxHeight"];
|
|
1408
1456
|
/**
|
|
1409
1457
|
* Get the minus or plus icon depending on whether the accordion
|
|
1410
1458
|
* is open or closed.
|
|
@@ -1511,7 +1559,7 @@ var Accordion = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, re
|
|
|
1511
1559
|
_props$isAlwaysRender = props.isAlwaysRendered,
|
|
1512
1560
|
isAlwaysRendered = _props$isAlwaysRender === void 0 ? false : _props$isAlwaysRender,
|
|
1513
1561
|
panelMaxHeight = props.panelMaxHeight,
|
|
1514
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
1562
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$T);
|
|
1515
1563
|
var isDarkMode = useColorMode().colorMode === "dark";
|
|
1516
1564
|
// Pass `0` to open the first accordion in the 0-index based array.
|
|
1517
1565
|
var openFirstAccordion = isDefaultOpen ? [0] : undefined;
|
|
@@ -1523,7 +1571,7 @@ var Accordion = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, re
|
|
|
1523
1571
|
}, rest), getElementsFromData(accordionData, id, isAlwaysRendered, isDarkMode, panelMaxHeight));
|
|
1524
1572
|
}));
|
|
1525
1573
|
|
|
1526
|
-
var _excluded$
|
|
1574
|
+
var _excluded$U = ["buttonType", "children", "className", "id", "isDisabled", "mouseDown", "onClick", "size", "type"];
|
|
1527
1575
|
/**
|
|
1528
1576
|
* Renders a simple `button` element with custom variant styles.
|
|
1529
1577
|
*/
|
|
@@ -1543,7 +1591,7 @@ var Button = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref)
|
|
|
1543
1591
|
size = _props$size === void 0 ? "medium" : _props$size,
|
|
1544
1592
|
_props$type = props.type,
|
|
1545
1593
|
type = _props$type === void 0 ? "button" : _props$type,
|
|
1546
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
1594
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$U);
|
|
1547
1595
|
var btnCallback = mouseDown ? {
|
|
1548
1596
|
onMouseDown: onClick
|
|
1549
1597
|
} : {
|
|
@@ -1590,7 +1638,7 @@ var Button = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref)
|
|
|
1590
1638
|
}
|
|
1591
1639
|
});
|
|
1592
1640
|
|
|
1593
|
-
var _excluded$
|
|
1641
|
+
var _excluded$V = ["children", "className", "href", "id", "onClick", "type"];
|
|
1594
1642
|
/**
|
|
1595
1643
|
* Renders the `Link` children components with a direction arrow icon based
|
|
1596
1644
|
* on the `"backwards"` or `"forwards"` `linkType` value.
|
|
@@ -1646,7 +1694,7 @@ var Link = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
1646
1694
|
onClick = props.onClick,
|
|
1647
1695
|
_props$type = props.type,
|
|
1648
1696
|
type = _props$type === void 0 ? "default" : _props$type,
|
|
1649
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
1697
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$V);
|
|
1650
1698
|
// Merge the necessary props alongside any extra props for the
|
|
1651
1699
|
// anchor element.
|
|
1652
1700
|
var linkProps = _extends({
|
|
@@ -1673,7 +1721,7 @@ var Link = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
1673
1721
|
var styles = useMultiStyleConfig("Link", {
|
|
1674
1722
|
variant: variant
|
|
1675
1723
|
});
|
|
1676
|
-
var rel = type === "external" ? "nofollow" : null;
|
|
1724
|
+
var rel = type === "external" ? "nofollow noopener noreferrer" : null;
|
|
1677
1725
|
var target = type === "external" ? "_blank" : null;
|
|
1678
1726
|
// Render with specific direction arrows if the type is
|
|
1679
1727
|
// "forwards" or "backwards". Or render with the launch icon
|
|
@@ -1712,7 +1760,7 @@ var Link = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
1712
1760
|
}
|
|
1713
1761
|
}));
|
|
1714
1762
|
|
|
1715
|
-
var _excluded$
|
|
1763
|
+
var _excluded$W = ["className", "id", "isCapitalized", "isUppercase", "isLowercase", "level", "noSpace", "size", "text", "url", "urlClass"];
|
|
1716
1764
|
/** Map the word heading level to the number heading level. The default is 2. */
|
|
1717
1765
|
var getMappedLevel = function getMappedLevel(level) {
|
|
1718
1766
|
if (level === void 0) {
|
|
@@ -1741,7 +1789,7 @@ var Heading = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref)
|
|
|
1741
1789
|
text = props.text,
|
|
1742
1790
|
url = props.url,
|
|
1743
1791
|
urlClass = props.urlClass,
|
|
1744
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
1792
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$W);
|
|
1745
1793
|
var finalLevel = getMappedLevel(level);
|
|
1746
1794
|
var variant = size ? size : "h" + finalLevel;
|
|
1747
1795
|
var styles = useStyleConfig("Heading", {
|
|
@@ -1789,7 +1837,7 @@ var Heading = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref)
|
|
|
1789
1837
|
}, rest), content);
|
|
1790
1838
|
}));
|
|
1791
1839
|
|
|
1792
|
-
var _excluded$
|
|
1840
|
+
var _excluded$X = ["ariaAtomic", "ariaLive", "className", "id", "isInvalid", "isRenderedText", "text"];
|
|
1793
1841
|
/**
|
|
1794
1842
|
* Component that always renders a div even if the text content is not passed.
|
|
1795
1843
|
* This pattern guarantees accessibility guidelines are met if the text content
|
|
@@ -1808,7 +1856,7 @@ var HelperErrorText = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (_re
|
|
|
1808
1856
|
_ref$isRenderedText = _ref.isRenderedText,
|
|
1809
1857
|
isRenderedText = _ref$isRenderedText === void 0 ? true : _ref$isRenderedText,
|
|
1810
1858
|
text = _ref.text,
|
|
1811
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1859
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$X);
|
|
1812
1860
|
var styles = useStyleConfig("HelperErrorText", {
|
|
1813
1861
|
isInvalid: isInvalid
|
|
1814
1862
|
});
|
|
@@ -1829,7 +1877,7 @@ var HelperErrorText = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (_re
|
|
|
1829
1877
|
}) : text : null);
|
|
1830
1878
|
}));
|
|
1831
1879
|
|
|
1832
|
-
var _excluded$
|
|
1880
|
+
var _excluded$Y = ["children", "className", "isBold", "isItalic", "isCapitalized", "isUppercase", "isLowercase", "noSpace", "size"];
|
|
1833
1881
|
var Text = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
1834
1882
|
var children = props.children,
|
|
1835
1883
|
_props$className = props.className,
|
|
@@ -1842,7 +1890,7 @@ var Text = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
1842
1890
|
noSpace = props.noSpace,
|
|
1843
1891
|
_props$size = props.size,
|
|
1844
1892
|
size = _props$size === void 0 ? "default" : _props$size,
|
|
1845
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
1893
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$Y);
|
|
1846
1894
|
var styles = useStyleConfig("Text", {
|
|
1847
1895
|
variant: size,
|
|
1848
1896
|
isBold: isBold,
|
|
@@ -1875,7 +1923,7 @@ var Text = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
1875
1923
|
}, rest), children);
|
|
1876
1924
|
}));
|
|
1877
1925
|
|
|
1878
|
-
var _excluded$
|
|
1926
|
+
var _excluded$Z = ["children", "className", "descriptionText", "headingText", "helperText", "helperTextStyles", "id", "invalidText", "isInvalid", "showHelperInvalidText"];
|
|
1879
1927
|
var ComponentWrapper = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
1880
1928
|
var children = props.children,
|
|
1881
1929
|
className = props.className,
|
|
@@ -1890,7 +1938,7 @@ var ComponentWrapper = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (pr
|
|
|
1890
1938
|
isInvalid = _props$isInvalid === void 0 ? false : _props$isInvalid,
|
|
1891
1939
|
_props$showHelperInva = props.showHelperInvalidText,
|
|
1892
1940
|
showHelperInvalidText = _props$showHelperInva === void 0 ? true : _props$showHelperInva,
|
|
1893
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
1941
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$Z);
|
|
1894
1942
|
var hasChildren = !!children;
|
|
1895
1943
|
var styles = useMultiStyleConfig("ComponentWrapper", {
|
|
1896
1944
|
hasChildren: hasChildren
|
|
@@ -1918,7 +1966,7 @@ var ComponentWrapper = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (pr
|
|
|
1918
1966
|
}));
|
|
1919
1967
|
}));
|
|
1920
1968
|
|
|
1921
|
-
var _excluded$
|
|
1969
|
+
var _excluded$_ = ["activeLetters", "className", "currentLetter", "descriptionText", "headingText", "id", "isDisabled", "onClick"];
|
|
1922
1970
|
var AlphabetFilter = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
1923
1971
|
var activeLetters = props.activeLetters,
|
|
1924
1972
|
className = props.className,
|
|
@@ -1928,7 +1976,7 @@ var AlphabetFilter = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (prop
|
|
|
1928
1976
|
id = props.id,
|
|
1929
1977
|
isDisabled = props.isDisabled,
|
|
1930
1978
|
onClick = props.onClick,
|
|
1931
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
1979
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$_);
|
|
1932
1980
|
var styles = useMultiStyleConfig("AlphabetFilter", {});
|
|
1933
1981
|
var filterButtons = [{
|
|
1934
1982
|
text: "#",
|
|
@@ -2083,7 +2131,7 @@ var AlphabetFilter = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (prop
|
|
|
2083
2131
|
}, getFilterLetters())));
|
|
2084
2132
|
}));
|
|
2085
2133
|
|
|
2086
|
-
var _excluded
|
|
2134
|
+
var _excluded$$ = ["audioType", "className", "descriptionText", "embedCode", "headingText", "helperText", "id", "iframeTitle"];
|
|
2087
2135
|
/*
|
|
2088
2136
|
* List all the third-party services to be used for basic type checks
|
|
2089
2137
|
* and to define AudioType.
|
|
@@ -2102,7 +2150,7 @@ var AudioPlayer = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props,
|
|
|
2102
2150
|
id = props.id,
|
|
2103
2151
|
_props$iframeTitle = props.iframeTitle,
|
|
2104
2152
|
iframeTitle = _props$iframeTitle === void 0 ? null : _props$iframeTitle,
|
|
2105
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded
|
|
2153
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$$);
|
|
2106
2154
|
var _useState = useState(false),
|
|
2107
2155
|
invalidEmbed = _useState[0],
|
|
2108
2156
|
setInvalidEmbed = _useState[1];
|
|
@@ -2183,7 +2231,7 @@ function parseIframeEmbedCode(embedCode) {
|
|
|
2183
2231
|
return undefined;
|
|
2184
2232
|
}
|
|
2185
2233
|
|
|
2186
|
-
var _excluded$
|
|
2234
|
+
var _excluded$10 = ["additionalWrapperStyles", "className", "children", "aspectRatio", "size"],
|
|
2187
2235
|
_excluded2 = ["additionalFigureStyles", "additionalImageStyles", "additionalWrapperStyles", "alt", "aspectRatio", "caption", "className", "component", "credit", "imageType", "isLazy", "size", "src"];
|
|
2188
2236
|
var ImageWrapper = /*#__PURE__*/chakra(function (props) {
|
|
2189
2237
|
var _props$additionalWrap = props.additionalWrapperStyles,
|
|
@@ -2195,7 +2243,7 @@ var ImageWrapper = /*#__PURE__*/chakra(function (props) {
|
|
|
2195
2243
|
aspectRatio = _props$aspectRatio === void 0 ? "original" : _props$aspectRatio,
|
|
2196
2244
|
_props$size = props.size,
|
|
2197
2245
|
size = _props$size === void 0 ? "default" : _props$size,
|
|
2198
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
2246
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$10);
|
|
2199
2247
|
var styles = useMultiStyleConfig("CustomImageWrapper", {
|
|
2200
2248
|
ratio: aspectRatio,
|
|
2201
2249
|
size: size
|
|
@@ -2303,13 +2351,13 @@ var Image = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
2303
2351
|
}
|
|
2304
2352
|
});
|
|
2305
2353
|
|
|
2306
|
-
var _excluded
|
|
2354
|
+
var _excluded$11 = ["children", "className", "content", "id", "isDisabled", "shouldWrapChildren"];
|
|
2307
2355
|
var Tooltip = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
2308
2356
|
var children = props.children,
|
|
2309
2357
|
content = props.content,
|
|
2310
2358
|
isDisabled = props.isDisabled,
|
|
2311
2359
|
shouldWrapChildren = props.shouldWrapChildren,
|
|
2312
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded
|
|
2360
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$11);
|
|
2313
2361
|
if (typeof content !== "string" && typeof content !== "number") {
|
|
2314
2362
|
React__default.Children.map(content, function (contentChild) {
|
|
2315
2363
|
if (contentChild.type !== Icon || contentChild.type !== Image) {
|
|
@@ -2392,44 +2440,65 @@ var truncateText = function truncateText(text, truncateTextLength) {
|
|
|
2392
2440
|
if (truncateTextLength === void 0) {
|
|
2393
2441
|
truncateTextLength = 60;
|
|
2394
2442
|
}
|
|
2395
|
-
var
|
|
2396
|
-
return
|
|
2443
|
+
var updatedText = text.substring(0, truncateTextLength - 1);
|
|
2444
|
+
return updatedText.substring(0, updatedText.lastIndexOf(" ")) + "...";
|
|
2397
2445
|
};
|
|
2398
2446
|
|
|
2399
|
-
var _excluded$
|
|
2447
|
+
var _excluded$12 = ["breadcrumbsData", "breadcrumbsType", "className", "id"];
|
|
2400
2448
|
var breadcrumbTextLength = 40;
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2449
|
+
/**
|
|
2450
|
+
* Truncate breadcrumb text if it is more than 40 characters in length and
|
|
2451
|
+
* then add ellipsis at the end.
|
|
2452
|
+
*/
|
|
2453
|
+
var tooltipWrapperOrText = function tooltipWrapperOrText(breadcrumbsData, breadcrumbsID, renderIcon, isCurrentPage) {
|
|
2454
|
+
if (renderIcon === void 0) {
|
|
2455
|
+
renderIcon = false;
|
|
2456
|
+
}
|
|
2457
|
+
if (isCurrentPage === void 0) {
|
|
2458
|
+
isCurrentPage = false;
|
|
2459
|
+
}
|
|
2460
|
+
var textLength = breadcrumbsData.text.length;
|
|
2461
|
+
var renderTooltip = textLength >= breadcrumbTextLength;
|
|
2462
|
+
// If the text is more than 40 characters in length, truncate it.
|
|
2463
|
+
var updatedText = textLength <= breadcrumbTextLength ? breadcrumbsData.text : truncateText(breadcrumbsData.text, breadcrumbTextLength);
|
|
2464
|
+
var linkWrapper = React__default.createElement(BreadcrumbLink, {
|
|
2465
|
+
href: breadcrumbsData.url,
|
|
2466
|
+
"aria-current": isCurrentPage ? "page" : undefined
|
|
2467
|
+
}, renderIcon && React__default.createElement(Icon, {
|
|
2468
|
+
name: "arrow",
|
|
2469
|
+
size: "small",
|
|
2470
|
+
iconRotation: "rotate90",
|
|
2471
|
+
id: breadcrumbsID + "__backarrow",
|
|
2472
|
+
className: "breadcrumbs-icon",
|
|
2473
|
+
type: "breadcrumbs"
|
|
2474
|
+
}), React__default.createElement("span", {
|
|
2475
|
+
className: "breadcrumb-label"
|
|
2476
|
+
}, updatedText));
|
|
2477
|
+
// If the text is more than 40 characters in length, we need a ToolTip
|
|
2478
|
+
// component wrapped *directly* around the anchor element for
|
|
2479
|
+
// accessibility purposes.
|
|
2480
|
+
var breadcrumbLink = renderTooltip ? React__default.createElement(Tooltip, {
|
|
2481
|
+
content: breadcrumbsData.text,
|
|
2482
|
+
id: "breadcrumb-" + breadcrumbsID + "-tooltip"
|
|
2483
|
+
}, linkWrapper) : React__default.createElement(React__default.Fragment, null, linkWrapper);
|
|
2484
|
+
return breadcrumbLink;
|
|
2410
2485
|
};
|
|
2411
2486
|
var getElementsFromData$1 = function getElementsFromData(data, breadcrumbsID) {
|
|
2412
2487
|
if (!(data != null && data.length)) {
|
|
2413
|
-
return
|
|
2488
|
+
return null;
|
|
2414
2489
|
}
|
|
2415
|
-
var
|
|
2490
|
+
var breadcrumbsItems = data.map(function (breadcrumbsData, index) {
|
|
2491
|
+
// The icon renders only on mobile and it should be
|
|
2492
|
+
// part of the second to last element in the nav.
|
|
2493
|
+
var renderIcon = index === data.length - 2;
|
|
2494
|
+
// The current page is the last item in the breadcrumbs
|
|
2495
|
+
// and needs an additional aria attribute.
|
|
2496
|
+
var isCurrentPage = index === data.length - 1;
|
|
2416
2497
|
return React__default.createElement(BreadcrumbItem, {
|
|
2417
|
-
key: index
|
|
2418
|
-
|
|
2419
|
-
}, React__default.createElement(BreadcrumbLink, {
|
|
2420
|
-
href: breadcrumbData.url
|
|
2421
|
-
}, index === data.length - 2 && React__default.createElement(Icon, {
|
|
2422
|
-
name: "arrow",
|
|
2423
|
-
size: "small",
|
|
2424
|
-
iconRotation: "rotate90",
|
|
2425
|
-
id: breadcrumbsID + "__backarrow",
|
|
2426
|
-
className: "breadcrumbs-icon",
|
|
2427
|
-
type: "breadcrumbs"
|
|
2428
|
-
}), React__default.createElement("span", {
|
|
2429
|
-
className: "breadcrumb-label"
|
|
2430
|
-
}, breadcrumbText(breadcrumbData.text, breadcrumbsID))));
|
|
2498
|
+
key: index
|
|
2499
|
+
}, tooltipWrapperOrText(breadcrumbsData, breadcrumbsID, renderIcon, isCurrentPage));
|
|
2431
2500
|
});
|
|
2432
|
-
return
|
|
2501
|
+
return breadcrumbsItems;
|
|
2433
2502
|
};
|
|
2434
2503
|
var Breadcrumbs = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
2435
2504
|
var breadcrumbsData = props.breadcrumbsData,
|
|
@@ -2437,7 +2506,7 @@ var Breadcrumbs = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props,
|
|
|
2437
2506
|
breadcrumbsType = _props$breadcrumbsTyp === void 0 ? "whatsOn" : _props$breadcrumbsTyp,
|
|
2438
2507
|
className = props.className,
|
|
2439
2508
|
id = props.id,
|
|
2440
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
2509
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$12);
|
|
2441
2510
|
if (!breadcrumbsData || breadcrumbsData.length === 0) {
|
|
2442
2511
|
throw new Error("NYPL Reservoir Breadcrumbs: No data was passed to the `breadcrumbsData` prop.");
|
|
2443
2512
|
}
|
|
@@ -2494,7 +2563,7 @@ var useNYPLBreakpoints = function useNYPLBreakpoints() {
|
|
|
2494
2563
|
};
|
|
2495
2564
|
};
|
|
2496
2565
|
|
|
2497
|
-
var _excluded$
|
|
2566
|
+
var _excluded$13 = ["buttonWidth", "children", "className", "id", "isDisabled", "layout"];
|
|
2498
2567
|
/**
|
|
2499
2568
|
* A simple wrapper to group `Button` components together. The layout can be set
|
|
2500
2569
|
* to row or column and the width of internal `Button` components can be set to
|
|
@@ -2511,7 +2580,7 @@ var ButtonGroup = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props,
|
|
|
2511
2580
|
isDisabled = _props$isDisabled === void 0 ? false : _props$isDisabled,
|
|
2512
2581
|
_props$layout = props.layout,
|
|
2513
2582
|
layout = _props$layout === void 0 ? "row" : _props$layout,
|
|
2514
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
2583
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$13);
|
|
2515
2584
|
var newChildren = [];
|
|
2516
2585
|
var _useNYPLBreakpoints = useNYPLBreakpoints(),
|
|
2517
2586
|
isLargerThanMobile = _useNYPLBreakpoints.isLargerThanMobile;
|
|
@@ -2549,7 +2618,7 @@ var ButtonGroup = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props,
|
|
|
2549
2618
|
}, rest), newChildren);
|
|
2550
2619
|
}));
|
|
2551
2620
|
|
|
2552
|
-
var _excluded$
|
|
2621
|
+
var _excluded$14 = ["children"],
|
|
2553
2622
|
_excluded2$1 = ["bottomBorder", "children", "isCentered", "layout", "topBorder"],
|
|
2554
2623
|
_excluded3 = ["className", "children", "id", "mainActionLink", "styles"],
|
|
2555
2624
|
_excluded4 = ["backgroundColor", "children", "className", "foregroundColor", "id", "imageProps", "isAlignedRightActions", "isBordered", "isCentered", "layout", "mainActionLink"];
|
|
@@ -2593,7 +2662,7 @@ var CardHeading = /*#__PURE__*/chakra(Heading);
|
|
|
2593
2662
|
// CardContent child-component
|
|
2594
2663
|
var CardContent = /*#__PURE__*/chakra(function (props) {
|
|
2595
2664
|
var children = props.children,
|
|
2596
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
2665
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$14);
|
|
2597
2666
|
var styles = useStyleConfig("CardContent");
|
|
2598
2667
|
return children ? React__default.createElement(Box, Object.assign({
|
|
2599
2668
|
__css: styles
|
|
@@ -2766,13 +2835,13 @@ var Card = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
2766
2835
|
}, cardRightContents) : null);
|
|
2767
2836
|
}));
|
|
2768
2837
|
|
|
2769
|
-
var _excluded$
|
|
2838
|
+
var _excluded$15 = ["isIndeterminate", "isChecked"],
|
|
2770
2839
|
_excluded2$2 = ["className", "invalidText", "helperText", "id", "isChecked", "isDisabled", "isIndeterminate", "isInvalid", "isRequired", "labelText", "name", "onChange", "showHelperInvalidText", "showLabel", "value"];
|
|
2771
2840
|
function CheckboxIcon(props) {
|
|
2772
2841
|
// We don't need the `isIndeterminate` or `isChecked` props but it
|
|
2773
2842
|
// causes rendering issues on the SVG element, so we remove them
|
|
2774
2843
|
// before passing all the props to the `Icon` component.
|
|
2775
|
-
var rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
2844
|
+
var rest = _objectWithoutPropertiesLoose(props, _excluded$15);
|
|
2776
2845
|
return React__default.createElement(Icon$2, Object.assign({
|
|
2777
2846
|
viewBox: "0 0 24 24"
|
|
2778
2847
|
}, rest), React__default.createElement("path", {
|
|
@@ -2846,7 +2915,7 @@ var Checkbox = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref
|
|
|
2846
2915
|
}, ariaAttributes), showLabel && labelText));
|
|
2847
2916
|
}));
|
|
2848
2917
|
|
|
2849
|
-
var _excluded$
|
|
2918
|
+
var _excluded$16 = ["children", "className", "id", "isLegendHidden", "isRequired", "legendText", "showRequiredLabel"];
|
|
2850
2919
|
/**
|
|
2851
2920
|
* A wrapper component that renders a `fieldset` element along with a `legend`
|
|
2852
2921
|
* element as its first child. Commonly used to wrap form components.
|
|
@@ -2862,7 +2931,7 @@ var Fieldset = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (_ref, ref)
|
|
|
2862
2931
|
legendText = _ref.legendText,
|
|
2863
2932
|
_ref$showRequiredLabe = _ref.showRequiredLabel,
|
|
2864
2933
|
showRequiredLabel = _ref$showRequiredLabe === void 0 ? true : _ref$showRequiredLabe,
|
|
2865
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2934
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$16);
|
|
2866
2935
|
var styles = useMultiStyleConfig("Fieldset", {
|
|
2867
2936
|
isLegendHidden: isLegendHidden
|
|
2868
2937
|
});
|
|
@@ -3026,7 +3095,7 @@ var reservoirSpacingTokens = {
|
|
|
3026
3095
|
};
|
|
3027
3096
|
var spacing = /*#__PURE__*/_extends({}, chakraSpacingTokens, reservoirSpacingTokens);
|
|
3028
3097
|
|
|
3029
|
-
var _excluded$
|
|
3098
|
+
var _excluded$17 = ["children", "defaultValue", "helperText", "id", "invalidText", "isDisabled", "isFullWidth", "isInvalid", "isRequired", "labelText", "layout", "name", "onChange", "showHelperInvalidText", "showLabel", "showRequiredLabel", "value"];
|
|
3030
3099
|
/**
|
|
3031
3100
|
* Wrapper component to wrap `Checkbox` components. Can be displayed in a
|
|
3032
3101
|
* column or in a row. The `CheckboxGroup` component renders all the necessary
|
|
@@ -3060,7 +3129,7 @@ var CheckboxGroup = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props
|
|
|
3060
3129
|
_props$showRequiredLa = props.showRequiredLabel,
|
|
3061
3130
|
showRequiredLabel = _props$showRequiredLa === void 0 ? true : _props$showRequiredLa,
|
|
3062
3131
|
value = props.value,
|
|
3063
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
3132
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$17);
|
|
3064
3133
|
var footnote = isInvalid ? invalidText : helperText;
|
|
3065
3134
|
var newChildren = [];
|
|
3066
3135
|
var spacingProp = layout === "column" ? spacing.input.group["default"].vstack : spacing.input.group["default"].hstack;
|
|
@@ -3150,7 +3219,7 @@ function useWindowSize() {
|
|
|
3150
3219
|
return windowSize;
|
|
3151
3220
|
}
|
|
3152
3221
|
|
|
3153
|
-
var _excluded$
|
|
3222
|
+
var _excluded$18 = ["className", "columnHeaders", "columnHeadersBackgroundColor", "columnHeadersTextColor", "id", "showRowDividers", "tableData", "titleText", "useRowHeaders"];
|
|
3154
3223
|
/**
|
|
3155
3224
|
* Basic `Table` component used to organize and display tabular data in
|
|
3156
3225
|
* rows and columns.
|
|
@@ -3168,7 +3237,7 @@ var Table = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
3168
3237
|
titleText = props.titleText,
|
|
3169
3238
|
_props$useRowHeaders = props.useRowHeaders,
|
|
3170
3239
|
useRowHeaders = _props$useRowHeaders === void 0 ? false : _props$useRowHeaders,
|
|
3171
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
3240
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$18);
|
|
3172
3241
|
var customColors = {};
|
|
3173
3242
|
columnHeadersBackgroundColor && (customColors["backgroundColor"] = columnHeadersBackgroundColor);
|
|
3174
3243
|
columnHeadersTextColor && (customColors["color"] = columnHeadersTextColor);
|
|
@@ -3503,7 +3572,7 @@ var ColorCard = function ColorCard(props) {
|
|
|
3503
3572
|
})));
|
|
3504
3573
|
};
|
|
3505
3574
|
|
|
3506
|
-
var _excluded$
|
|
3575
|
+
var _excluded$19 = ["children", "columns", "className", "gap", "id"];
|
|
3507
3576
|
var SimpleGrid = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
3508
3577
|
var children = props.children,
|
|
3509
3578
|
columns = props.columns,
|
|
@@ -3511,7 +3580,7 @@ var SimpleGrid = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, r
|
|
|
3511
3580
|
_props$gap = props.gap,
|
|
3512
3581
|
gap = _props$gap === void 0 ? "grid.l" : _props$gap,
|
|
3513
3582
|
id = props.id,
|
|
3514
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
3583
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$19);
|
|
3515
3584
|
var responsiveCols = columns ? {
|
|
3516
3585
|
base: 1,
|
|
3517
3586
|
md: columns
|
|
@@ -3533,7 +3602,7 @@ var SimpleGrid = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, r
|
|
|
3533
3602
|
}
|
|
3534
3603
|
});
|
|
3535
3604
|
|
|
3536
|
-
var _excluded$
|
|
3605
|
+
var _excluded$1a = ["children", "className", "gap", "id"],
|
|
3537
3606
|
_excluded2$3 = ["children", "className", "gap", "id"],
|
|
3538
3607
|
_excluded3$1 = ["action", "children", "className", "gap", "id", "method", "onSubmit"];
|
|
3539
3608
|
/** FormRow child-component */
|
|
@@ -3542,7 +3611,7 @@ var FormRow = /*#__PURE__*/chakra(function (props) {
|
|
|
3542
3611
|
className = props.className,
|
|
3543
3612
|
gap = props.gap,
|
|
3544
3613
|
id = props.id,
|
|
3545
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
3614
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1a);
|
|
3546
3615
|
var count = React__default.Children.count(children);
|
|
3547
3616
|
var alteredChildren = React__default.Children.map(children, function (child, i) {
|
|
3548
3617
|
if (!child) return null;
|
|
@@ -3616,7 +3685,7 @@ var Form = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
3616
3685
|
}
|
|
3617
3686
|
});
|
|
3618
3687
|
|
|
3619
|
-
var _excluded$
|
|
3688
|
+
var _excluded$1b = ["children", "className", "htmlFor", "id", "isInlined", "isRequired", "requiredLabelText"];
|
|
3620
3689
|
/**
|
|
3621
3690
|
* A label for form inputs. It should never be used alone.
|
|
3622
3691
|
*/
|
|
@@ -3630,7 +3699,7 @@ var Label = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
3630
3699
|
_props$isRequired = props.isRequired,
|
|
3631
3700
|
isRequired = _props$isRequired === void 0 ? false : _props$isRequired,
|
|
3632
3701
|
requiredLabelText = props.requiredLabelText,
|
|
3633
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
3702
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1b);
|
|
3634
3703
|
var styles = useStyleConfig("Label", {
|
|
3635
3704
|
isInlined: isInlined
|
|
3636
3705
|
});
|
|
@@ -3647,7 +3716,20 @@ var Label = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
3647
3716
|
}, rest), children, isRequired && React__default.createElement("span", null, requiredLabelText ? " (" + requiredLabelText + ")" : " (Required)"));
|
|
3648
3717
|
}));
|
|
3649
3718
|
|
|
3650
|
-
|
|
3719
|
+
/**
|
|
3720
|
+
* DS internal helper hook to use state with prop dependencies.
|
|
3721
|
+
*/
|
|
3722
|
+
function useStateWithDependencies(initialValue) {
|
|
3723
|
+
var _useState = useState(initialValue),
|
|
3724
|
+
value = _useState[0],
|
|
3725
|
+
setValue = _useState[1];
|
|
3726
|
+
useEffect(function () {
|
|
3727
|
+
setValue(initialValue);
|
|
3728
|
+
}, [initialValue]);
|
|
3729
|
+
return [value, setValue];
|
|
3730
|
+
}
|
|
3731
|
+
|
|
3732
|
+
var _excluded$1c = ["className", "defaultValue", "helperText", "id", "invalidText", "isClearable", "isClearableCallback", "isDisabled", "isInvalid", "isRequired", "labelText", "max", "maxLength", "min", "name", "onChange", "onClick", "onFocus", "pattern", "placeholder", "showHelperInvalidText", "showLabel", "showRequiredLabel", "requiredLabelText", "step", "textInputType", "type", "value"];
|
|
3651
3733
|
// Only used internally.
|
|
3652
3734
|
var TextInputFormats = {
|
|
3653
3735
|
email: "jdoe@domain.com",
|
|
@@ -3702,10 +3784,10 @@ var TextInput = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, re
|
|
|
3702
3784
|
_props$type = props.type,
|
|
3703
3785
|
type = _props$type === void 0 ? "text" : _props$type,
|
|
3704
3786
|
value = props.value,
|
|
3705
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
3706
|
-
var
|
|
3707
|
-
finalValue =
|
|
3708
|
-
setFinalValue =
|
|
3787
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1c);
|
|
3788
|
+
var _useStateWithDependen = useStateWithDependencies(value),
|
|
3789
|
+
finalValue = _useStateWithDependen[0],
|
|
3790
|
+
setFinalValue = _useStateWithDependen[1];
|
|
3709
3791
|
var closedRef = useRef();
|
|
3710
3792
|
var mergedRefs = useMergeRefs(closedRef, ref);
|
|
3711
3793
|
// If a ref is not passed, then merging refs won't work.
|
|
@@ -3745,11 +3827,6 @@ var TextInput = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, re
|
|
|
3745
3827
|
var fieldOutput;
|
|
3746
3828
|
var clearButtonOutput;
|
|
3747
3829
|
var options;
|
|
3748
|
-
useEffect(function () {
|
|
3749
|
-
if (value && value !== finalValue) {
|
|
3750
|
-
setFinalValue(value);
|
|
3751
|
-
}
|
|
3752
|
-
}, [finalValue, value]);
|
|
3753
3830
|
if (!id) {
|
|
3754
3831
|
console.warn("NYPL Reservoir TextInput: This component's required `id` prop was not passed.");
|
|
3755
3832
|
}
|
|
@@ -3829,10 +3906,12 @@ var TextInput = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, re
|
|
|
3829
3906
|
id: id + "-label",
|
|
3830
3907
|
isRequired: showRequiredLabel && isRequired,
|
|
3831
3908
|
requiredLabelText: requiredLabelText
|
|
3832
|
-
}, labelText),
|
|
3909
|
+
}, labelText), React__default.createElement(Box, {
|
|
3910
|
+
position: "relative"
|
|
3911
|
+
}, fieldOutput, !isHidden && (finalValue == null ? void 0 : finalValue.length) > 0 && clearButtonOutput));
|
|
3833
3912
|
}));
|
|
3834
3913
|
|
|
3835
|
-
var _excluded$
|
|
3914
|
+
var _excluded$1d = ["dsRef", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRequired", "labelText", "name", "onChange", "onClick", "showLabel", "showHelperInvalidText", "showRequiredLabel", "value"],
|
|
3836
3915
|
_excluded2$4 = ["children", "className", "id", "isDateRange", "isRequired", "labelText", "showLabel", "showRequiredLabel"],
|
|
3837
3916
|
_excluded3$2 = ["className", "dateFormat", "dateType", "helperText", "helperTextFrom", "helperTextTo", "id", "initialDate", "initialDateTo", "invalidText", "isDateRange", "isDisabled", "isInvalid", "isRequired", "labelText", "maxDate", "minDate", "nameFrom", "nameTo", "onChange", "refTo", "showHelperInvalidText", "showLabel", "showRequiredLabel"];
|
|
3838
3917
|
/**
|
|
@@ -3859,7 +3938,7 @@ var CustomTextInput = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
3859
3938
|
showHelperInvalidText = _ref.showHelperInvalidText,
|
|
3860
3939
|
showRequiredLabel = _ref.showRequiredLabel,
|
|
3861
3940
|
value = _ref.value,
|
|
3862
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3941
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$1d);
|
|
3863
3942
|
// The `react-datepicker` passes `disabled=false` to its custom
|
|
3864
3943
|
// input element. We don't need it, so remove it.
|
|
3865
3944
|
delete rest.disabled;
|
|
@@ -4242,13 +4321,13 @@ var checkboxRadioHoverStyles = {
|
|
|
4242
4321
|
_dark: {
|
|
4243
4322
|
span: {
|
|
4244
4323
|
_first: {
|
|
4245
|
-
borderColor: "ui.
|
|
4324
|
+
borderColor: "dark.ui.border.hover"
|
|
4246
4325
|
},
|
|
4247
4326
|
_checked: {
|
|
4248
4327
|
borderColor: "dark.ui.focus"
|
|
4249
4328
|
},
|
|
4250
4329
|
_disabled: {
|
|
4251
|
-
borderColor: "dark.ui.disabled.
|
|
4330
|
+
borderColor: "dark.ui.disabled.secondary"
|
|
4252
4331
|
},
|
|
4253
4332
|
_invalid: {
|
|
4254
4333
|
borderColor: "dark.ui.error.primary"
|
|
@@ -4400,12 +4479,14 @@ var breakpoints = /*#__PURE__*/createBreakpoints({
|
|
|
4400
4479
|
// Reusable variables:
|
|
4401
4480
|
var black = "#000";
|
|
4402
4481
|
var white = "#fff";
|
|
4403
|
-
var grayDark = "#616161";
|
|
4404
4482
|
var grayxxxxDark = "#191919";
|
|
4405
4483
|
var grayxxxDark = "#252525";
|
|
4406
4484
|
var grayxxDark = "#2E2E2E";
|
|
4407
4485
|
var grayxDark = "#424242";
|
|
4486
|
+
var grayDark = "#616161";
|
|
4487
|
+
var graySemiDark = "#8D8D8D";
|
|
4408
4488
|
var grayMedium = "#BDBDBD";
|
|
4489
|
+
var graySemiMedium = "#D9D9D9";
|
|
4409
4490
|
var grayLightCool = "#E9E9E9";
|
|
4410
4491
|
var grayxLightCool = "#F5F5F5";
|
|
4411
4492
|
var grayxxLightCool = "#FAFAFA";
|
|
@@ -4553,7 +4634,9 @@ var colors = {
|
|
|
4553
4634
|
"xx-dark": grayxxDark,
|
|
4554
4635
|
"x-dark": grayxDark,
|
|
4555
4636
|
dark: grayDark,
|
|
4637
|
+
"semi-dark": graySemiDark,
|
|
4556
4638
|
medium: grayMedium,
|
|
4639
|
+
"semi-medium": graySemiMedium,
|
|
4557
4640
|
"light-cool": grayLightCool,
|
|
4558
4641
|
"x-light-cool": grayxLightCool,
|
|
4559
4642
|
"xx-light-cool": grayxxLightCool,
|
|
@@ -4578,7 +4661,7 @@ var colors = {
|
|
|
4578
4661
|
/// State and link utilities
|
|
4579
4662
|
disabled: {
|
|
4580
4663
|
primary: grayDark,
|
|
4581
|
-
secondary:
|
|
4664
|
+
secondary: grayxDark
|
|
4582
4665
|
},
|
|
4583
4666
|
error: {
|
|
4584
4667
|
primary: "#E1767B",
|
|
@@ -4612,8 +4695,8 @@ var colors = {
|
|
|
4612
4695
|
active: grayxDark
|
|
4613
4696
|
},
|
|
4614
4697
|
border: {
|
|
4615
|
-
"default":
|
|
4616
|
-
hover:
|
|
4698
|
+
"default": graySemiDark,
|
|
4699
|
+
hover: graySemiMedium
|
|
4617
4700
|
},
|
|
4618
4701
|
typography: {
|
|
4619
4702
|
heading: grayLightCool,
|
|
@@ -4952,6 +5035,14 @@ var blogs = {
|
|
|
4952
5035
|
}
|
|
4953
5036
|
}
|
|
4954
5037
|
},
|
|
5038
|
+
"li:last-child": {
|
|
5039
|
+
".chakra-breadcrumb__link": {
|
|
5040
|
+
_hover: {
|
|
5041
|
+
// Override the default hover color.
|
|
5042
|
+
color: "ui.black"
|
|
5043
|
+
}
|
|
5044
|
+
}
|
|
5045
|
+
},
|
|
4955
5046
|
svg: {
|
|
4956
5047
|
fill: "ui.black"
|
|
4957
5048
|
}
|
|
@@ -5030,8 +5121,15 @@ var Breadcrumb = {
|
|
|
5030
5121
|
},
|
|
5031
5122
|
".chakra-breadcrumb__link": {
|
|
5032
5123
|
_hover: {
|
|
5124
|
+
// Override the default hover color.
|
|
5125
|
+
color: "ui.white",
|
|
5033
5126
|
cursor: "default",
|
|
5034
5127
|
textDecoration: "none"
|
|
5128
|
+
},
|
|
5129
|
+
_dark: {
|
|
5130
|
+
_hover: {
|
|
5131
|
+
color: "dark.ui.typography.heading"
|
|
5132
|
+
}
|
|
5035
5133
|
}
|
|
5036
5134
|
},
|
|
5037
5135
|
".icon": {
|
|
@@ -5941,6 +6039,7 @@ var select = {
|
|
|
5941
6039
|
_dark: {
|
|
5942
6040
|
backgroundColor: "dark.ui.bg.default",
|
|
5943
6041
|
borderColor: "dark.ui.border.default",
|
|
6042
|
+
color: "dark.ui.typography.body",
|
|
5944
6043
|
_hover: {
|
|
5945
6044
|
borderColor: "dark.ui.border.hover"
|
|
5946
6045
|
},
|
|
@@ -6031,12 +6130,18 @@ var FeedbackBox = {
|
|
|
6031
6130
|
base: undefined,
|
|
6032
6131
|
md: "1px solid"
|
|
6033
6132
|
},
|
|
6034
|
-
borderColor:
|
|
6133
|
+
borderColor: {
|
|
6134
|
+
base: undefined,
|
|
6135
|
+
md: "ui.border.default"
|
|
6136
|
+
},
|
|
6035
6137
|
paddingTop: "m",
|
|
6036
6138
|
paddingBottom: "m",
|
|
6037
6139
|
_dark: {
|
|
6038
6140
|
background: "dark.ui.bg.page",
|
|
6039
|
-
borderColor:
|
|
6141
|
+
borderColor: {
|
|
6142
|
+
base: undefined,
|
|
6143
|
+
md: "dark.ui.border.default"
|
|
6144
|
+
}
|
|
6040
6145
|
}
|
|
6041
6146
|
},
|
|
6042
6147
|
drawerContent: {
|
|
@@ -6048,7 +6153,7 @@ var FeedbackBox = {
|
|
|
6048
6153
|
},
|
|
6049
6154
|
drawerHeader: {
|
|
6050
6155
|
alignItems: "baseline",
|
|
6051
|
-
background: "ui.
|
|
6156
|
+
background: "ui.bg.hover",
|
|
6052
6157
|
borderBottomWidth: "1px",
|
|
6053
6158
|
borderLeftWidth: {
|
|
6054
6159
|
base: undefined,
|
|
@@ -6064,7 +6169,8 @@ var FeedbackBox = {
|
|
|
6064
6169
|
marginBottom: "0"
|
|
6065
6170
|
},
|
|
6066
6171
|
_dark: {
|
|
6067
|
-
background: "dark.ui.bg.hover"
|
|
6172
|
+
background: "dark.ui.bg.hover",
|
|
6173
|
+
borderColor: "dark.ui.border.default"
|
|
6068
6174
|
}
|
|
6069
6175
|
},
|
|
6070
6176
|
openButton: {
|
|
@@ -6257,7 +6363,7 @@ var Footer = {
|
|
|
6257
6363
|
width: "45px",
|
|
6258
6364
|
a: {
|
|
6259
6365
|
display: "block",
|
|
6260
|
-
color: "
|
|
6366
|
+
color: "ui.white",
|
|
6261
6367
|
fontSize: {
|
|
6262
6368
|
base: "40px",
|
|
6263
6369
|
md: "50px"
|
|
@@ -6290,7 +6396,10 @@ var Footer = {
|
|
|
6290
6396
|
outlineColor: "ui.white"
|
|
6291
6397
|
},
|
|
6292
6398
|
_dark: {
|
|
6293
|
-
color: "dark.ui.typography.body"
|
|
6399
|
+
color: "dark.ui.typography.body",
|
|
6400
|
+
_hover: {
|
|
6401
|
+
color: "dark.ui.typography.body"
|
|
6402
|
+
}
|
|
6294
6403
|
}
|
|
6295
6404
|
},
|
|
6296
6405
|
// All SVGs in the footer.
|
|
@@ -7030,8 +7139,12 @@ var HeaderSearchForm = {
|
|
|
7030
7139
|
},
|
|
7031
7140
|
fontStyle: "normal"
|
|
7032
7141
|
},
|
|
7033
|
-
_focus: headerFocus,
|
|
7034
|
-
|
|
7142
|
+
_focus: /*#__PURE__*/_extends({}, headerFocus, {
|
|
7143
|
+
borderRadius: "5px"
|
|
7144
|
+
}),
|
|
7145
|
+
_hover: /*#__PURE__*/_extends({}, headerFocus, {
|
|
7146
|
+
borderRadius: "5px"
|
|
7147
|
+
}),
|
|
7035
7148
|
_dark: {
|
|
7036
7149
|
color: "dark.ui.typography.body"
|
|
7037
7150
|
}
|
|
@@ -7962,7 +8075,7 @@ var baseUnorderedStyles = function baseUnorderedStyles(noStyling) {
|
|
|
7962
8075
|
},
|
|
7963
8076
|
_dark: {
|
|
7964
8077
|
_before: {
|
|
7965
|
-
color: "
|
|
8078
|
+
color: "ui.gray.semi-dark"
|
|
7966
8079
|
}
|
|
7967
8080
|
}
|
|
7968
8081
|
}
|
|
@@ -9422,7 +9535,7 @@ var StyledList = {
|
|
|
9422
9535
|
},
|
|
9423
9536
|
_dark: {
|
|
9424
9537
|
li: {
|
|
9425
|
-
borderColor: "
|
|
9538
|
+
borderColor: "ui.gray.semi-dark"
|
|
9426
9539
|
}
|
|
9427
9540
|
}
|
|
9428
9541
|
}
|
|
@@ -9474,7 +9587,7 @@ var tab = {
|
|
|
9474
9587
|
color: "dark.ui.typography.heading",
|
|
9475
9588
|
border: "1px solid transparent",
|
|
9476
9589
|
borderBottom: "1px solid",
|
|
9477
|
-
borderBottomColor: "dark.ui.border.
|
|
9590
|
+
borderBottomColor: "dark.ui.border.default",
|
|
9478
9591
|
_hover: {
|
|
9479
9592
|
bg: "dark.ui.bg.hover"
|
|
9480
9593
|
},
|
|
@@ -9970,12 +10083,18 @@ var TextInput$1 = {
|
|
|
9970
10083
|
minHeight: "xxl"
|
|
9971
10084
|
}),
|
|
9972
10085
|
clearButton: {
|
|
10086
|
+
borderRadius: "1px",
|
|
10087
|
+
minHeight: {
|
|
10088
|
+
base: "42px",
|
|
10089
|
+
md: "auto"
|
|
10090
|
+
},
|
|
10091
|
+
height: "38px",
|
|
9973
10092
|
position: "absolute",
|
|
9974
10093
|
// When `showLabel` is false, the input field is at the top
|
|
9975
10094
|
// which means the clear button should float higher.
|
|
9976
|
-
top: showLabel ? "
|
|
10095
|
+
top: showLabel ? ".75px" : "1px",
|
|
9977
10096
|
px: "xs",
|
|
9978
|
-
right: "0",
|
|
10097
|
+
right: "0.5px",
|
|
9979
10098
|
// Don't visually show the text. This also helps
|
|
9980
10099
|
// use the "text" `Button` type.
|
|
9981
10100
|
span: screenreaderOnly(),
|
|
@@ -10033,9 +10152,9 @@ var Switch = {
|
|
|
10033
10152
|
return {
|
|
10034
10153
|
alignItems: "start",
|
|
10035
10154
|
track: {
|
|
10036
|
-
backgroundColor: "ui.gray.
|
|
10155
|
+
backgroundColor: "ui.gray.semi-dark",
|
|
10037
10156
|
border: "1px solid",
|
|
10038
|
-
borderColor: "ui.gray.
|
|
10157
|
+
borderColor: "ui.gray.semi-dark",
|
|
10039
10158
|
p: "1px",
|
|
10040
10159
|
_checked: {
|
|
10041
10160
|
bg: "ui.link.primary",
|
|
@@ -10063,8 +10182,8 @@ var Switch = {
|
|
|
10063
10182
|
zIndex: "9999"
|
|
10064
10183
|
},
|
|
10065
10184
|
_dark: {
|
|
10066
|
-
bgColor: "ui.gray.dark",
|
|
10067
|
-
borderColor: "ui.gray.dark",
|
|
10185
|
+
bgColor: "ui.gray.semi-dark",
|
|
10186
|
+
borderColor: "ui.gray.semi-dark",
|
|
10068
10187
|
_checked: {
|
|
10069
10188
|
bg: "dark.ui.link.primary",
|
|
10070
10189
|
borderColor: "dark.ui.link.primary"
|
|
@@ -10317,7 +10436,7 @@ var DSProvider = function DSProvider(_ref) {
|
|
|
10317
10436
|
}, children);
|
|
10318
10437
|
};
|
|
10319
10438
|
|
|
10320
|
-
var _excluded$
|
|
10439
|
+
var _excluded$1e = ["children", "icon", "id", "isCentered", "notificationType"],
|
|
10321
10440
|
_excluded2$5 = ["alignText", "children", "isCentered", "notificationHeading", "notificationType", "showIcon"],
|
|
10322
10441
|
_excluded3$3 = ["ariaLabel", "className", "dismissible", "icon", "id", "isCentered", "noMargin", "notificationContent", "notificationHeading", "notificationType", "showIcon"];
|
|
10323
10442
|
/**
|
|
@@ -10329,7 +10448,7 @@ var NotificationHeading$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
10329
10448
|
id = props.id,
|
|
10330
10449
|
isCentered = props.isCentered,
|
|
10331
10450
|
notificationType = props.notificationType,
|
|
10332
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
10451
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1e);
|
|
10333
10452
|
var styles = useMultiStyleConfig("NotificationHeading", {
|
|
10334
10453
|
icon: icon,
|
|
10335
10454
|
isCentered: isCentered,
|
|
@@ -10490,7 +10609,7 @@ var Notification$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (prop
|
|
|
10490
10609
|
}, childHeading, childContent), dismissibleButton);
|
|
10491
10610
|
}));
|
|
10492
10611
|
|
|
10493
|
-
var _excluded$
|
|
10612
|
+
var _excluded$1f = ["className", "helperText", "id", "invalidText", "isChecked", "isDisabled", "isInvalid", "isRequired", "labelText", "name", "onChange", "showHelperInvalidText", "showLabel", "value"];
|
|
10494
10613
|
var Radio$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
10495
10614
|
var className = props.className,
|
|
10496
10615
|
helperText = props.helperText,
|
|
@@ -10511,7 +10630,7 @@ var Radio$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref)
|
|
|
10511
10630
|
_props$showLabel = props.showLabel,
|
|
10512
10631
|
showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
|
|
10513
10632
|
value = props.value,
|
|
10514
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
10633
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1f);
|
|
10515
10634
|
var styles = useMultiStyleConfig("Radio", {
|
|
10516
10635
|
showLabel: showLabel
|
|
10517
10636
|
});
|
|
@@ -10557,7 +10676,7 @@ var Radio$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref)
|
|
|
10557
10676
|
}, labelText)));
|
|
10558
10677
|
}));
|
|
10559
10678
|
|
|
10560
|
-
var _excluded$
|
|
10679
|
+
var _excluded$1g = ["children", "className", "defaultValue", "helperText", "id", "invalidText", "isDisabled", "isFullWidth", "isInvalid", "isRequired", "labelText", "layout", "name", "onChange", "showHelperInvalidText", "showLabel", "showRequiredLabel"];
|
|
10561
10680
|
/**
|
|
10562
10681
|
* RadioGroup is a wrapper for DS `Radio` components that renders as a fieldset
|
|
10563
10682
|
* HTML element along with optional helper text. The `name` prop is essential
|
|
@@ -10591,7 +10710,7 @@ var RadioGroup$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props,
|
|
|
10591
10710
|
showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
|
|
10592
10711
|
_props$showRequiredLa = props.showRequiredLabel,
|
|
10593
10712
|
showRequiredLabel = _props$showRequiredLa === void 0 ? true : _props$showRequiredLa,
|
|
10594
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
10713
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1g);
|
|
10595
10714
|
var _React$useState = React__default.useState(defaultValue),
|
|
10596
10715
|
value = _React$useState[0],
|
|
10597
10716
|
setValue = _React$useState[1];
|
|
@@ -10655,19 +10774,6 @@ var RadioGroup$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props,
|
|
|
10655
10774
|
}));
|
|
10656
10775
|
}));
|
|
10657
10776
|
|
|
10658
|
-
/**
|
|
10659
|
-
* DS internal helper hook to use state with prop dependencies.
|
|
10660
|
-
*/
|
|
10661
|
-
function useStateWithDependencies(initialValue) {
|
|
10662
|
-
var _useState = useState(initialValue),
|
|
10663
|
-
value = _useState[0],
|
|
10664
|
-
setValue = _useState[1];
|
|
10665
|
-
useEffect(function () {
|
|
10666
|
-
setValue(initialValue);
|
|
10667
|
-
}, [initialValue]);
|
|
10668
|
-
return [value, setValue];
|
|
10669
|
-
}
|
|
10670
|
-
|
|
10671
10777
|
var initialState = {
|
|
10672
10778
|
category: "comment",
|
|
10673
10779
|
comment: "",
|
|
@@ -10738,7 +10844,7 @@ function useFeedbackBoxReducer() {
|
|
|
10738
10844
|
};
|
|
10739
10845
|
}
|
|
10740
10846
|
|
|
10741
|
-
var _excluded$
|
|
10847
|
+
var _excluded$1h = ["className", "confirmationText", "descriptionText", "hiddenFields", "id", "isInvalidComment", "isInvalidEmail", "notificationText", "onSubmit", "showCategoryField", "showEmailField", "title", "view", "isOpen", "onOpen", "onClose"];
|
|
10742
10848
|
/**
|
|
10743
10849
|
* The `FeedbackBox` component renders a fixed-positioned button on the bottom
|
|
10744
10850
|
* right corner of a page that opens a Chakra `Drawer` popup component. Inside
|
|
@@ -10770,7 +10876,7 @@ var FeedbackBox$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (_ref,
|
|
|
10770
10876
|
isOpen = _ref.isOpen,
|
|
10771
10877
|
onOpen = _ref.onOpen,
|
|
10772
10878
|
onClose = _ref.onClose,
|
|
10773
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
10879
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$1h);
|
|
10774
10880
|
// We want to keep internal state for the view but also
|
|
10775
10881
|
// update if the consuming app updates it, based on API
|
|
10776
10882
|
// success and failure responses.
|
|
@@ -11105,7 +11211,7 @@ function useFeedbackBox() {
|
|
|
11105
11211
|
};
|
|
11106
11212
|
}
|
|
11107
11213
|
|
|
11108
|
-
var _excluded$
|
|
11214
|
+
var _excluded$1i = ["id", "isOpen", "multiSelectId", "multiSelectLabelText", "onClear", "onKeyDown", "onMenuToggle", "selectedItems"];
|
|
11109
11215
|
var _templateObject;
|
|
11110
11216
|
var grow = /*#__PURE__*/keyframes$1(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n from {width: 22px; opacity: 0; }\n to {width: 46px; opacity: 1;}\n"])));
|
|
11111
11217
|
/**
|
|
@@ -11124,7 +11230,7 @@ var MultiSelectMenuButton$1 = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
11124
11230
|
onClear = props.onClear,
|
|
11125
11231
|
onMenuToggle = props.onMenuToggle,
|
|
11126
11232
|
selectedItems = props.selectedItems,
|
|
11127
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
11233
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1i);
|
|
11128
11234
|
var iconType = isOpen ? "minus" : "plus";
|
|
11129
11235
|
var growAnimation = grow + " 150ms ease-out";
|
|
11130
11236
|
var _React$useState = React__default.useState(isOpen),
|
|
@@ -11204,7 +11310,7 @@ var MultiSelectMenuButton$1 = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
11204
11310
|
})));
|
|
11205
11311
|
});
|
|
11206
11312
|
|
|
11207
|
-
var _excluded$
|
|
11313
|
+
var _excluded$1j = ["id", "isBlockElement", "isDefaultOpen", "items", "labelText", "onChange", "onClear", "selectedItems", "width"];
|
|
11208
11314
|
/** MultiSelectListbox renders a non-hierarchical list of checkbox options for the `type="listbox". It leverager downshift-js for accessiblity. */
|
|
11209
11315
|
var MultiSelectListbox = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
11210
11316
|
var id = props.id,
|
|
@@ -11216,7 +11322,7 @@ var MultiSelectListbox = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (
|
|
|
11216
11322
|
onClear = props.onClear,
|
|
11217
11323
|
selectedItems = props.selectedItems,
|
|
11218
11324
|
width = props.width,
|
|
11219
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
11325
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1j);
|
|
11220
11326
|
// Downshift.
|
|
11221
11327
|
var _useSelect = useSelect({
|
|
11222
11328
|
items: items,
|
|
@@ -11351,7 +11457,7 @@ var useCloseDropDown = function useCloseDropDown(actionCb, ref) {
|
|
|
11351
11457
|
});
|
|
11352
11458
|
};
|
|
11353
11459
|
|
|
11354
|
-
var _excluded$
|
|
11460
|
+
var _excluded$1k = ["id", "isBlockElement", "isDefaultOpen", "items", "labelText", "onApply", "onChange", "onClear", "onMixedStateChange", "selectedItems", "width"];
|
|
11355
11461
|
var MultiSelectDialog = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
11356
11462
|
var id = props.id,
|
|
11357
11463
|
isBlockElement = props.isBlockElement,
|
|
@@ -11364,7 +11470,7 @@ var MultiSelectDialog = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (p
|
|
|
11364
11470
|
onMixedStateChange = props.onMixedStateChange,
|
|
11365
11471
|
selectedItems = props.selectedItems,
|
|
11366
11472
|
width = props.width,
|
|
11367
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
11473
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1k);
|
|
11368
11474
|
// Use NYPL Breakpoints hook to check screen size
|
|
11369
11475
|
var _useNYPLBreakpoints = useNYPLBreakpoints(),
|
|
11370
11476
|
isLargerThanMobile = _useNYPLBreakpoints.isLargerThanMobile;
|
|
@@ -11529,7 +11635,7 @@ var MultiSelectDialog = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (p
|
|
|
11529
11635
|
}
|
|
11530
11636
|
});
|
|
11531
11637
|
|
|
11532
|
-
var _excluded$
|
|
11638
|
+
var _excluded$1l = ["id", "isBlockElement", "isDefaultOpen", "items", "labelText", "onApply", "onChange", "onClear", "onMixedStateChange", "selectedItems", "type", "width"];
|
|
11533
11639
|
/**
|
|
11534
11640
|
* The `MultiSelect` component is a form input element that presents a list
|
|
11535
11641
|
* of `Checkbox` components from which a user can make one or multiple
|
|
@@ -11553,7 +11659,7 @@ var MultiSelect$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props
|
|
|
11553
11659
|
type = props.type,
|
|
11554
11660
|
_props$width = props.width,
|
|
11555
11661
|
width = _props$width === void 0 ? "default" : _props$width,
|
|
11556
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
11662
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1l);
|
|
11557
11663
|
var commonProps = {
|
|
11558
11664
|
id: id,
|
|
11559
11665
|
isBlockElement: isBlockElement,
|
|
@@ -11590,7 +11696,7 @@ var MultiSelect$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props
|
|
|
11590
11696
|
}
|
|
11591
11697
|
});
|
|
11592
11698
|
|
|
11593
|
-
var _excluded$
|
|
11699
|
+
var _excluded$1m = ["children", "className", "id", "labelText", "layout", "multiSelectWidth", "showLabel"];
|
|
11594
11700
|
/**
|
|
11595
11701
|
* `MultiSelectGroup` is a wrapper component specific for `MultiSelect` components. The wrapped `MutliSelect` components can be displayed in a
|
|
11596
11702
|
* column or in a row. The `MultiSelectGroup` component renders all the necessary
|
|
@@ -11609,7 +11715,7 @@ var MultiSelectGroup = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (pr
|
|
|
11609
11715
|
multiSelectWidth = _props$multiSelectWid === void 0 ? "default" : _props$multiSelectWid,
|
|
11610
11716
|
_props$showLabel = props.showLabel,
|
|
11611
11717
|
showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
|
|
11612
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
11718
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1m);
|
|
11613
11719
|
var newChildren = [];
|
|
11614
11720
|
var _useNYPLBreakpoints = useNYPLBreakpoints(),
|
|
11615
11721
|
isLargerThanMobile = _useNYPLBreakpoints.isLargerThanMobile;
|
|
@@ -11665,7 +11771,7 @@ var MultiSelectGroup = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (pr
|
|
|
11665
11771
|
}, newChildren));
|
|
11666
11772
|
}));
|
|
11667
11773
|
|
|
11668
|
-
var _excluded$
|
|
11774
|
+
var _excluded$1n = ["children", "id", "isOpen", "headingText", "layout", "onClear", "onSubmit", "onToggle", "onOpen", "onClose", "selectedItems", "showClearAll", "showSubmitAll", "filterWidth"];
|
|
11669
11775
|
/**
|
|
11670
11776
|
* `FilterBar` is a wrapper component for filter components.
|
|
11671
11777
|
* The DS considers the following components as filter components:
|
|
@@ -11693,7 +11799,7 @@ var FilterBar$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props,
|
|
|
11693
11799
|
_props$showSubmitAll = props.showSubmitAll,
|
|
11694
11800
|
showSubmitAll = _props$showSubmitAll === void 0 ? false : _props$showSubmitAll,
|
|
11695
11801
|
filterWidth = props.filterWidth,
|
|
11696
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
11802
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1n);
|
|
11697
11803
|
var _useNYPLBreapoints = useNYPLBreakpoints(),
|
|
11698
11804
|
isLargerThanMedium = _useNYPLBreapoints.isLargerThanMedium;
|
|
11699
11805
|
var finalLayout = isLargerThanMedium ? layout : "column";
|
|
@@ -11814,7 +11920,7 @@ var FilterBar$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props,
|
|
|
11814
11920
|
}, "Clear Filters")))))));
|
|
11815
11921
|
}));
|
|
11816
11922
|
|
|
11817
|
-
var _excluded$
|
|
11923
|
+
var _excluded$1o = ["children", "className", "id", "inline", "listItems", "noStyling", "title", "type"];
|
|
11818
11924
|
/**
|
|
11819
11925
|
* A component that renders list item `li` elements or description item `dt`
|
|
11820
11926
|
* and `dd` elements based on the `type` prop. Note that the `title` prop will
|
|
@@ -11832,7 +11938,7 @@ var List$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref)
|
|
|
11832
11938
|
title = props.title,
|
|
11833
11939
|
_props$type = props.type,
|
|
11834
11940
|
type = _props$type === void 0 ? "ul" : _props$type,
|
|
11835
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
11941
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$1o);
|
|
11836
11942
|
var styles = useStyleConfig("List", {
|
|
11837
11943
|
inline: inline,
|
|
11838
11944
|
noStyling: noStyling,
|
|
@@ -11934,15 +12040,15 @@ var checkListChildrenError = function checkListChildrenError(children, listType,
|
|
|
11934
12040
|
};
|
|
11935
12041
|
|
|
11936
12042
|
var _path$L, _path2$f, _path3$7;
|
|
11937
|
-
var _excluded$
|
|
11938
|
-
function _extends$
|
|
11939
|
-
function _objectWithoutProperties$
|
|
11940
|
-
function _objectWithoutPropertiesLoose$
|
|
12043
|
+
var _excluded$1p = ["title", "titleId"];
|
|
12044
|
+
function _extends$T() { _extends$T = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$T.apply(this, arguments); }
|
|
12045
|
+
function _objectWithoutProperties$S(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$T(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12046
|
+
function _objectWithoutPropertiesLoose$T(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
11941
12047
|
var SvgLogoAppleAppStoreBlack = function SvgLogoAppleAppStoreBlack(_ref) {
|
|
11942
12048
|
var title = _ref.title,
|
|
11943
12049
|
titleId = _ref.titleId,
|
|
11944
|
-
props = _objectWithoutProperties$
|
|
11945
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12050
|
+
props = _objectWithoutProperties$S(_ref, _excluded$1p);
|
|
12051
|
+
return /*#__PURE__*/createElement("svg", _extends$T({
|
|
11946
12052
|
viewBox: "0 0 200 67",
|
|
11947
12053
|
fill: "none",
|
|
11948
12054
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -11962,15 +12068,15 @@ var SvgLogoAppleAppStoreBlack = function SvgLogoAppleAppStoreBlack(_ref) {
|
|
|
11962
12068
|
};
|
|
11963
12069
|
|
|
11964
12070
|
var _path$M, _path2$g, _path3$8;
|
|
11965
|
-
var _excluded$
|
|
11966
|
-
function _extends$
|
|
11967
|
-
function _objectWithoutProperties$
|
|
11968
|
-
function _objectWithoutPropertiesLoose$
|
|
12071
|
+
var _excluded$1q = ["title", "titleId"];
|
|
12072
|
+
function _extends$U() { _extends$U = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$U.apply(this, arguments); }
|
|
12073
|
+
function _objectWithoutProperties$T(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$U(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12074
|
+
function _objectWithoutPropertiesLoose$U(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
11969
12075
|
var SvgLogoAppleAppStoreWhite = function SvgLogoAppleAppStoreWhite(_ref) {
|
|
11970
12076
|
var title = _ref.title,
|
|
11971
12077
|
titleId = _ref.titleId,
|
|
11972
|
-
props = _objectWithoutProperties$
|
|
11973
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12078
|
+
props = _objectWithoutProperties$T(_ref, _excluded$1q);
|
|
12079
|
+
return /*#__PURE__*/createElement("svg", _extends$U({
|
|
11974
12080
|
viewBox: "0 0 200 67",
|
|
11975
12081
|
fill: "none",
|
|
11976
12082
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -11990,15 +12096,15 @@ var SvgLogoAppleAppStoreWhite = function SvgLogoAppleAppStoreWhite(_ref) {
|
|
|
11990
12096
|
};
|
|
11991
12097
|
|
|
11992
12098
|
var _path$N, _path2$h, _path3$9;
|
|
11993
|
-
var _excluded$
|
|
11994
|
-
function _extends$
|
|
11995
|
-
function _objectWithoutProperties$
|
|
11996
|
-
function _objectWithoutPropertiesLoose$
|
|
12099
|
+
var _excluded$1r = ["title", "titleId"];
|
|
12100
|
+
function _extends$V() { _extends$V = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$V.apply(this, arguments); }
|
|
12101
|
+
function _objectWithoutProperties$U(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$V(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12102
|
+
function _objectWithoutPropertiesLoose$V(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
11997
12103
|
var SvgLogoBplBlack = function SvgLogoBplBlack(_ref) {
|
|
11998
12104
|
var title = _ref.title,
|
|
11999
12105
|
titleId = _ref.titleId,
|
|
12000
|
-
props = _objectWithoutProperties$
|
|
12001
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12106
|
+
props = _objectWithoutProperties$U(_ref, _excluded$1r);
|
|
12107
|
+
return /*#__PURE__*/createElement("svg", _extends$V({
|
|
12002
12108
|
viewBox: "0 0 328 120",
|
|
12003
12109
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12004
12110
|
"aria-labelledby": titleId
|
|
@@ -12014,15 +12120,15 @@ var SvgLogoBplBlack = function SvgLogoBplBlack(_ref) {
|
|
|
12014
12120
|
};
|
|
12015
12121
|
|
|
12016
12122
|
var _path$O, _path2$i, _path3$a;
|
|
12017
|
-
var _excluded$
|
|
12018
|
-
function _extends$
|
|
12019
|
-
function _objectWithoutProperties$
|
|
12020
|
-
function _objectWithoutPropertiesLoose$
|
|
12123
|
+
var _excluded$1s = ["title", "titleId"];
|
|
12124
|
+
function _extends$W() { _extends$W = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$W.apply(this, arguments); }
|
|
12125
|
+
function _objectWithoutProperties$V(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$W(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12126
|
+
function _objectWithoutPropertiesLoose$W(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12021
12127
|
var SvgLogoBplWhite = function SvgLogoBplWhite(_ref) {
|
|
12022
12128
|
var title = _ref.title,
|
|
12023
12129
|
titleId = _ref.titleId,
|
|
12024
|
-
props = _objectWithoutProperties$
|
|
12025
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12130
|
+
props = _objectWithoutProperties$V(_ref, _excluded$1s);
|
|
12131
|
+
return /*#__PURE__*/createElement("svg", _extends$W({
|
|
12026
12132
|
viewBox: "0 0 328 120",
|
|
12027
12133
|
fill: "#fff",
|
|
12028
12134
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -12039,15 +12145,15 @@ var SvgLogoBplWhite = function SvgLogoBplWhite(_ref) {
|
|
|
12039
12145
|
};
|
|
12040
12146
|
|
|
12041
12147
|
var _rect$2, _path$P;
|
|
12042
|
-
var _excluded$
|
|
12043
|
-
function _extends$
|
|
12044
|
-
function _objectWithoutProperties$
|
|
12045
|
-
function _objectWithoutPropertiesLoose$
|
|
12148
|
+
var _excluded$1t = ["title", "titleId"];
|
|
12149
|
+
function _extends$X() { _extends$X = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$X.apply(this, arguments); }
|
|
12150
|
+
function _objectWithoutProperties$W(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$X(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12151
|
+
function _objectWithoutPropertiesLoose$X(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12046
12152
|
var SvgLogoCleverBadgeColor = function SvgLogoCleverBadgeColor(_ref) {
|
|
12047
12153
|
var title = _ref.title,
|
|
12048
12154
|
titleId = _ref.titleId,
|
|
12049
|
-
props = _objectWithoutProperties$
|
|
12050
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12155
|
+
props = _objectWithoutProperties$W(_ref, _excluded$1t);
|
|
12156
|
+
return /*#__PURE__*/createElement("svg", _extends$X({
|
|
12051
12157
|
viewBox: "0 0 118 119",
|
|
12052
12158
|
fill: "none",
|
|
12053
12159
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -12069,15 +12175,15 @@ var SvgLogoCleverBadgeColor = function SvgLogoCleverBadgeColor(_ref) {
|
|
|
12069
12175
|
};
|
|
12070
12176
|
|
|
12071
12177
|
var _path$Q;
|
|
12072
|
-
var _excluded$
|
|
12073
|
-
function _extends$
|
|
12074
|
-
function _objectWithoutProperties$
|
|
12075
|
-
function _objectWithoutPropertiesLoose$
|
|
12178
|
+
var _excluded$1u = ["title", "titleId"];
|
|
12179
|
+
function _extends$Y() { _extends$Y = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$Y.apply(this, arguments); }
|
|
12180
|
+
function _objectWithoutProperties$X(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$Y(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12181
|
+
function _objectWithoutPropertiesLoose$Y(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12076
12182
|
var SvgLogoCleverColor = function SvgLogoCleverColor(_ref) {
|
|
12077
12183
|
var title = _ref.title,
|
|
12078
12184
|
titleId = _ref.titleId,
|
|
12079
|
-
props = _objectWithoutProperties$
|
|
12080
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12185
|
+
props = _objectWithoutProperties$X(_ref, _excluded$1u);
|
|
12186
|
+
return /*#__PURE__*/createElement("svg", _extends$Y({
|
|
12081
12187
|
viewBox: "0 0 312 88",
|
|
12082
12188
|
fill: "#436CF2",
|
|
12083
12189
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -12092,15 +12198,15 @@ var SvgLogoCleverColor = function SvgLogoCleverColor(_ref) {
|
|
|
12092
12198
|
};
|
|
12093
12199
|
|
|
12094
12200
|
var _path$R;
|
|
12095
|
-
var _excluded$
|
|
12096
|
-
function _extends$
|
|
12097
|
-
function _objectWithoutProperties$
|
|
12098
|
-
function _objectWithoutPropertiesLoose$
|
|
12201
|
+
var _excluded$1v = ["title", "titleId"];
|
|
12202
|
+
function _extends$Z() { _extends$Z = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$Z.apply(this, arguments); }
|
|
12203
|
+
function _objectWithoutProperties$Y(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$Z(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12204
|
+
function _objectWithoutPropertiesLoose$Z(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12099
12205
|
var SvgLogoCleverWhite = function SvgLogoCleverWhite(_ref) {
|
|
12100
12206
|
var title = _ref.title,
|
|
12101
12207
|
titleId = _ref.titleId,
|
|
12102
|
-
props = _objectWithoutProperties$
|
|
12103
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12208
|
+
props = _objectWithoutProperties$Y(_ref, _excluded$1v);
|
|
12209
|
+
return /*#__PURE__*/createElement("svg", _extends$Z({
|
|
12104
12210
|
viewBox: "0 0 312 88",
|
|
12105
12211
|
fill: "#fff",
|
|
12106
12212
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -12114,16 +12220,16 @@ var SvgLogoCleverWhite = function SvgLogoCleverWhite(_ref) {
|
|
|
12114
12220
|
})));
|
|
12115
12221
|
};
|
|
12116
12222
|
|
|
12117
|
-
var _path$S, _path2$j, _path3$b, _path4$1, _path5, _g$
|
|
12118
|
-
var _excluded$
|
|
12119
|
-
function _extends$
|
|
12120
|
-
function _objectWithoutProperties$
|
|
12121
|
-
function _objectWithoutPropertiesLoose$
|
|
12223
|
+
var _path$S, _path2$j, _path3$b, _path4$1, _path5, _g$5, _path6, _path7, _path8;
|
|
12224
|
+
var _excluded$1w = ["title", "titleId"];
|
|
12225
|
+
function _extends$_() { _extends$_ = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$_.apply(this, arguments); }
|
|
12226
|
+
function _objectWithoutProperties$Z(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$_(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12227
|
+
function _objectWithoutPropertiesLoose$_(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12122
12228
|
var SvgLogoDigitalCollectionsBlack = function SvgLogoDigitalCollectionsBlack(_ref) {
|
|
12123
12229
|
var title = _ref.title,
|
|
12124
12230
|
titleId = _ref.titleId,
|
|
12125
|
-
props = _objectWithoutProperties$
|
|
12126
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12231
|
+
props = _objectWithoutProperties$Z(_ref, _excluded$1w);
|
|
12232
|
+
return /*#__PURE__*/createElement("svg", _extends$_({
|
|
12127
12233
|
viewBox: "0 0 360 49",
|
|
12128
12234
|
fill: "none",
|
|
12129
12235
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -12165,7 +12271,7 @@ var SvgLogoDigitalCollectionsBlack = function SvgLogoDigitalCollectionsBlack(_re
|
|
|
12165
12271
|
clipRule: "evenodd",
|
|
12166
12272
|
d: "M0 0h48.05v48.056H0V0Z",
|
|
12167
12273
|
fill: "#fff"
|
|
12168
|
-
}))), _g$
|
|
12274
|
+
}))), _g$5 || (_g$5 = /*#__PURE__*/createElement("g", {
|
|
12169
12275
|
mask: "url(#logo-digital-collections-black_svg__a)",
|
|
12170
12276
|
fillRule: "evenodd",
|
|
12171
12277
|
clipRule: "evenodd"
|
|
@@ -12189,16 +12295,16 @@ var SvgLogoDigitalCollectionsBlack = function SvgLogoDigitalCollectionsBlack(_re
|
|
|
12189
12295
|
})));
|
|
12190
12296
|
};
|
|
12191
12297
|
|
|
12192
|
-
var _path$T, _path2$k, _g$
|
|
12193
|
-
var _excluded$
|
|
12194
|
-
function _extends
|
|
12195
|
-
function _objectWithoutProperties$
|
|
12196
|
-
function _objectWithoutPropertiesLoose
|
|
12298
|
+
var _path$T, _path2$k, _g$6, _path3$c, _path4$2;
|
|
12299
|
+
var _excluded$1x = ["title", "titleId"];
|
|
12300
|
+
function _extends$$() { _extends$$ = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$$.apply(this, arguments); }
|
|
12301
|
+
function _objectWithoutProperties$_(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$$(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12302
|
+
function _objectWithoutPropertiesLoose$$(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12197
12303
|
var SvgLogoDigitalCollectionsWhite = function SvgLogoDigitalCollectionsWhite(_ref) {
|
|
12198
12304
|
var title = _ref.title,
|
|
12199
12305
|
titleId = _ref.titleId,
|
|
12200
|
-
props = _objectWithoutProperties$
|
|
12201
|
-
return /*#__PURE__*/createElement("svg", _extends
|
|
12306
|
+
props = _objectWithoutProperties$_(_ref, _excluded$1x);
|
|
12307
|
+
return /*#__PURE__*/createElement("svg", _extends$$({
|
|
12202
12308
|
viewBox: "0 0 360 47",
|
|
12203
12309
|
fill: "none",
|
|
12204
12310
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -12225,7 +12331,7 @@ var SvgLogoDigitalCollectionsWhite = function SvgLogoDigitalCollectionsWhite(_re
|
|
|
12225
12331
|
clipRule: "evenodd",
|
|
12226
12332
|
d: "m45.284 29.193-.002.007c-.184.584-.419 1.327-.887.986a21.86 21.86 0 0 0-4.795-2.66c-.102-.026-.089-.166-.052-.241.132-.3.218-.617.255-.942a2.3 2.3 0 0 1 .457-.828c.477-.946.77-1.974.863-3.028a7.587 7.587 0 0 0-.14-2.405 5.006 5.006 0 0 1-.291-1.056c0-.184.047-.367.096-.56.044-.169.09-.345.106-.535a3.276 3.276 0 0 0-2.16-2.495c-.602-.28-1.218-.553-1.843-.83-1.246-.55-2.53-1.118-3.824-1.804a22.402 22.402 0 0 1-2.872-2.544 20.652 20.652 0 0 0-4.904-2.125.47.47 0 0 1-.394-.394 11.496 11.496 0 0 0-4.288-6.671c-.8-.624.108-.98 1.215-1.03a23.049 23.049 0 0 1 19.252 8.554 22.924 22.924 0 0 1 4.208 20.6ZM10.89 3.264c-.294.196-.294.701.423.774 2.568.212 4.995 1.218 6.91 2.866.125.13.293.217.475.245.18.015.387.008.632 0 .367-.011.82-.026 1.397.025.466.038.928.104 1.386.197 1.259.223-.628-2.534-2.746-3.986a10.276 10.276 0 0 0-4.247-1.894 1.684 1.684 0 0 0-.931.148 17.638 17.638 0 0 0-3.3 1.625Zm-4.8 4.098c.138-.16.321-.277.527-.334a13.907 13.907 0 0 1 8.683.728c.515.223.754.536.414.754a18.86 18.86 0 0 0-2.462 1.74c-.24.148-.525.205-.804.162a13.404 13.404 0 0 0-8.156.946c-.628.259-1.182-.098-.892-.568a20.167 20.167 0 0 1 2.69-3.428Zm30.19 8.742c-.787-.386-1.683-.683-2.576-.98-1.04-.345-2.077-.689-2.938-1.172-.584-.323-1.102-.74-1.621-1.159-.621-.5-1.245-1.004-1.987-1.349a26.507 26.507 0 0 0-4.302-1.57 7.636 7.636 0 0 0-6.057.873 6.144 6.144 0 0 0-2.284 6.077 7.229 7.229 0 0 0 1.16 3.067c1.651 2.338 4.29 3.589 6.933 4.84 1.193.565 2.386 1.13 3.49 1.795.097.082.242.07.325-.028l.022-.017a4.71 4.71 0 0 1 2.083-2.014 10.554 10.554 0 0 1 4.012-.216 4.416 4.416 0 0 0 3.495-.81 2.488 2.488 0 0 0-.366-3.216c-.277-.16-.628-.235-.98-.312-.292-.063-.585-.126-.837-.238a1.92 1.92 0 0 1-.934-1.024 1.851 1.851 0 0 1-.114-1.507 1.048 1.048 0 0 1 1.236-.183 6.267 6.267 0 0 0 3.244.051 1.596 1.596 0 0 0-1.004-.907Zm-8.946-.494a1.537 1.537 0 0 1-.707 1.216 1.66 1.66 0 0 1-.947-.533 10.413 10.413 0 0 0-1.754-.646 2.28 2.28 0 0 1-1.476-.915c-.316-.76.428-1.115.97-1.292.501-.15 1.02-.234 1.542-.248a2.318 2.318 0 0 1 2.233.709c.192.548.24 1.137.14 1.71ZM.752 17.77c-.15.167-.24.377-.257.598a21.93 21.93 0 0 0 .769 11.968c.233.581 1.143.357 1.117-.89.007-.23.01-.485.013-.762.037-3.404.111-10.122 7.934-14.767.488-.28.898-.56.693-1.043-.352-.32-.86-.41-1.304-.23a15.955 15.955 0 0 0-8.965 5.127ZM37.7 20.924c0 .065.042.373.056.462.081.614.047 1.236-.102 1.838a.262.262 0 0 0 .082.207c.475.322.846.757 1.075 1.26.034.089.144.037.2-.079a6.023 6.023 0 0 0 .068-4.588l-.003-.005c-.016-.031-.057-.11-.121-.073-.257.14-.501.3-.73.476a1.331 1.331 0 0 0-.525.502Zm-7.572 6.356c.088-.348.302-.647.596-.837a5.651 5.651 0 0 1 2.445-.45c.84.001 1.675-.142 2.47-.424.351-.37.86-.534 1.353-.436.258.13.448.37.52.656.114.316.16.654.138.99-.336.941-.717 1.864-1.143 2.764a.91.91 0 0 1-.137.502 4.071 4.071 0 0 1-3.251.437c-.398 0-.793-.07-1.168-.206a2.338 2.338 0 0 1-.584-.49c-.286-.275-.483-.503-.728-.787-.085-.098-.175-.203-.277-.318a1.997 1.997 0 0 1-.46-.604c.054-.272.13-.538.226-.797ZM7.354 39.686c.226.44.54.83.92 1.145a22.772 22.772 0 0 0 12.847 5.304c.913.076 1.015-.254 1.028-.777a15.897 15.897 0 0 0-3.54-6.71c-.454-.594-1.28-1.495-2.27-2.573-2.387-2.602-5.724-6.239-7.07-9.093a9.161 9.161 0 0 1-1.002-6.628c.304-1.109-.622-1.772-1.497-.332-2.753 4.113-1.56 16.237.584 19.664Zm3.76-15.622a9.9 9.9 0 0 1 .14-8.008c.329-.619.644-1.022 1.063-.896.455.126.55.593.62 1.46.469 7.148 4.795 9.548 10.222 12.075a31.21 31.21 0 0 1 13.256 10.748c.621.871.71 1.403.013 1.907A22.208 22.208 0 0 1 28.37 45c-.494.114-1.012.026-1.454-1.111-2.494-6.434-5.913-9.21-9.078-11.78-2.65-2.152-5.121-4.159-6.724-8.046Zm26.813 14.44c.226.45.631.987 1.327.3a22.271 22.271 0 0 0 3.414-4.509.818.818 0 0 0 .089-.8 13.91 13.91 0 0 0-2.832-3.048 5.379 5.379 0 0 0-1.467-.861 1.267 1.267 0 0 0-.417-.05c-.385.046-.431.218-.58.772l-.04.152a2.744 2.744 0 0 1-1.264 1.773 2.496 2.496 0 0 1-1.378.226.358.358 0 0 0-.404.172.346.346 0 0 0 .075.427 20.358 20.358 0 0 1 3.477 5.447Z",
|
|
12227
12333
|
fill: "#fff"
|
|
12228
|
-
}))), _g$
|
|
12334
|
+
}))), _g$6 || (_g$6 = /*#__PURE__*/createElement("g", {
|
|
12229
12335
|
mask: "url(#logo-digital-collections-white_svg__a)"
|
|
12230
12336
|
}, /*#__PURE__*/createElement("path", {
|
|
12231
12337
|
fill: "#fff",
|
|
@@ -12240,15 +12346,15 @@ var SvgLogoDigitalCollectionsWhite = function SvgLogoDigitalCollectionsWhite(_re
|
|
|
12240
12346
|
};
|
|
12241
12347
|
|
|
12242
12348
|
var _path$U, _path2$l, _path3$d, _path4$3, _path5$1, _path6$1, _path7$1, _path8$1, _path9, _path10, _path11, _path12, _path13;
|
|
12243
|
-
var _excluded$
|
|
12244
|
-
function _extends$
|
|
12245
|
-
function _objectWithoutProperties
|
|
12246
|
-
function _objectWithoutPropertiesLoose$
|
|
12349
|
+
var _excluded$1y = ["title", "titleId"];
|
|
12350
|
+
function _extends$10() { _extends$10 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$10.apply(this, arguments); }
|
|
12351
|
+
function _objectWithoutProperties$$(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$10(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12352
|
+
function _objectWithoutPropertiesLoose$10(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12247
12353
|
var SvgLogoFirstbookColor = function SvgLogoFirstbookColor(_ref) {
|
|
12248
12354
|
var title = _ref.title,
|
|
12249
12355
|
titleId = _ref.titleId,
|
|
12250
|
-
props = _objectWithoutProperties
|
|
12251
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12356
|
+
props = _objectWithoutProperties$$(_ref, _excluded$1y);
|
|
12357
|
+
return /*#__PURE__*/createElement("svg", _extends$10({
|
|
12252
12358
|
viewBox: "0 0 172 152",
|
|
12253
12359
|
fill: "none",
|
|
12254
12360
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -12297,23 +12403,23 @@ var SvgLogoFirstbookColor = function SvgLogoFirstbookColor(_ref) {
|
|
|
12297
12403
|
})));
|
|
12298
12404
|
};
|
|
12299
12405
|
|
|
12300
|
-
var _g$
|
|
12301
|
-
var _excluded$
|
|
12302
|
-
function _extends
|
|
12303
|
-
function _objectWithoutProperties$
|
|
12304
|
-
function _objectWithoutPropertiesLoose
|
|
12406
|
+
var _g$7;
|
|
12407
|
+
var _excluded$1z = ["title", "titleId"];
|
|
12408
|
+
function _extends$11() { _extends$11 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$11.apply(this, arguments); }
|
|
12409
|
+
function _objectWithoutProperties$10(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$11(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12410
|
+
function _objectWithoutPropertiesLoose$11(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12305
12411
|
var SvgLogoFirstbookColorNegative = function SvgLogoFirstbookColorNegative(_ref) {
|
|
12306
12412
|
var title = _ref.title,
|
|
12307
12413
|
titleId = _ref.titleId,
|
|
12308
|
-
props = _objectWithoutProperties$
|
|
12309
|
-
return /*#__PURE__*/createElement("svg", _extends
|
|
12414
|
+
props = _objectWithoutProperties$10(_ref, _excluded$1z);
|
|
12415
|
+
return /*#__PURE__*/createElement("svg", _extends$11({
|
|
12310
12416
|
viewBox: "0 0 170 150",
|
|
12311
12417
|
fill: "none",
|
|
12312
12418
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12313
12419
|
"aria-labelledby": titleId
|
|
12314
12420
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
12315
12421
|
id: titleId
|
|
12316
|
-
}, title) : null, _g$
|
|
12422
|
+
}, title) : null, _g$7 || (_g$7 = /*#__PURE__*/createElement("g", {
|
|
12317
12423
|
clipPath: "url(#logo-firstbook-color-negative_svg__clip0_50221_35656)"
|
|
12318
12424
|
}, /*#__PURE__*/createElement("path", {
|
|
12319
12425
|
d: "M78.283 0h-.425C74.686.183.018 4.8.018 44.05v92.317c0 1.966-.328 3.633 1.634 3.916l74.49 9.384h.931l77.432-8.834c1.961-.233 1.634-1.916 1.634-6.25V46.367C156.074 4.8 81.454.183 78.283 0Z",
|
|
@@ -12360,23 +12466,23 @@ var SvgLogoFirstbookColorNegative = function SvgLogoFirstbookColorNegative(_ref)
|
|
|
12360
12466
|
}))));
|
|
12361
12467
|
};
|
|
12362
12468
|
|
|
12363
|
-
var _g$
|
|
12364
|
-
var _excluded$
|
|
12365
|
-
function _extends$
|
|
12366
|
-
function _objectWithoutProperties
|
|
12367
|
-
function _objectWithoutPropertiesLoose$
|
|
12469
|
+
var _g$8, _defs;
|
|
12470
|
+
var _excluded$1A = ["title", "titleId"];
|
|
12471
|
+
function _extends$12() { _extends$12 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$12.apply(this, arguments); }
|
|
12472
|
+
function _objectWithoutProperties$11(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$12(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12473
|
+
function _objectWithoutPropertiesLoose$12(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12368
12474
|
var SvgLogoGooglePlayBlack = function SvgLogoGooglePlayBlack(_ref) {
|
|
12369
12475
|
var title = _ref.title,
|
|
12370
12476
|
titleId = _ref.titleId,
|
|
12371
|
-
props = _objectWithoutProperties
|
|
12372
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12477
|
+
props = _objectWithoutProperties$11(_ref, _excluded$1A);
|
|
12478
|
+
return /*#__PURE__*/createElement("svg", _extends$12({
|
|
12373
12479
|
viewBox: "0 0 200 60",
|
|
12374
12480
|
fill: "none",
|
|
12375
12481
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12376
12482
|
"aria-labelledby": titleId
|
|
12377
12483
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
12378
12484
|
id: titleId
|
|
12379
|
-
}, title) : null, _g$
|
|
12485
|
+
}, title) : null, _g$8 || (_g$8 = /*#__PURE__*/createElement("g", {
|
|
12380
12486
|
clipPath: "url(#logo-google-play-black_svg__a)"
|
|
12381
12487
|
}, /*#__PURE__*/createElement("path", {
|
|
12382
12488
|
d: "M192.593 0H7.407A7.407 7.407 0 0 0 0 7.407v44.445a7.407 7.407 0 0 0 7.407 7.407h185.186A7.407 7.407 0 0 0 200 51.852V7.407A7.407 7.407 0 0 0 192.593 0Z",
|
|
@@ -12501,15 +12607,15 @@ var SvgLogoGooglePlayBlack = function SvgLogoGooglePlayBlack(_ref) {
|
|
|
12501
12607
|
};
|
|
12502
12608
|
|
|
12503
12609
|
var _path$V, _path2$m;
|
|
12504
|
-
var _excluded$
|
|
12505
|
-
function _extends$
|
|
12506
|
-
function _objectWithoutProperties$
|
|
12507
|
-
function _objectWithoutPropertiesLoose$
|
|
12610
|
+
var _excluded$1B = ["title", "titleId"];
|
|
12611
|
+
function _extends$13() { _extends$13 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$13.apply(this, arguments); }
|
|
12612
|
+
function _objectWithoutProperties$12(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$13(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12613
|
+
function _objectWithoutPropertiesLoose$13(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12508
12614
|
var SvgLogoLpaColor = function SvgLogoLpaColor(_ref) {
|
|
12509
12615
|
var title = _ref.title,
|
|
12510
12616
|
titleId = _ref.titleId,
|
|
12511
|
-
props = _objectWithoutProperties$
|
|
12512
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12617
|
+
props = _objectWithoutProperties$12(_ref, _excluded$1B);
|
|
12618
|
+
return /*#__PURE__*/createElement("svg", _extends$13({
|
|
12513
12619
|
viewBox: "0 0 186 74",
|
|
12514
12620
|
fill: "none",
|
|
12515
12621
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -12526,15 +12632,15 @@ var SvgLogoLpaColor = function SvgLogoLpaColor(_ref) {
|
|
|
12526
12632
|
};
|
|
12527
12633
|
|
|
12528
12634
|
var _path$W;
|
|
12529
|
-
var _excluded$
|
|
12530
|
-
function _extends$
|
|
12531
|
-
function _objectWithoutProperties$
|
|
12532
|
-
function _objectWithoutPropertiesLoose$
|
|
12635
|
+
var _excluded$1C = ["title", "titleId"];
|
|
12636
|
+
function _extends$14() { _extends$14 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$14.apply(this, arguments); }
|
|
12637
|
+
function _objectWithoutProperties$13(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$14(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12638
|
+
function _objectWithoutPropertiesLoose$14(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12533
12639
|
var SvgLogoLpaBlack = function SvgLogoLpaBlack(_ref) {
|
|
12534
12640
|
var title = _ref.title,
|
|
12535
12641
|
titleId = _ref.titleId,
|
|
12536
|
-
props = _objectWithoutProperties$
|
|
12537
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12642
|
+
props = _objectWithoutProperties$13(_ref, _excluded$1C);
|
|
12643
|
+
return /*#__PURE__*/createElement("svg", _extends$14({
|
|
12538
12644
|
viewBox: "0 0 186 74",
|
|
12539
12645
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12540
12646
|
"aria-labelledby": titleId
|
|
@@ -12546,15 +12652,15 @@ var SvgLogoLpaBlack = function SvgLogoLpaBlack(_ref) {
|
|
|
12546
12652
|
};
|
|
12547
12653
|
|
|
12548
12654
|
var _path$X;
|
|
12549
|
-
var _excluded$
|
|
12550
|
-
function _extends$
|
|
12551
|
-
function _objectWithoutProperties$
|
|
12552
|
-
function _objectWithoutPropertiesLoose$
|
|
12655
|
+
var _excluded$1D = ["title", "titleId"];
|
|
12656
|
+
function _extends$15() { _extends$15 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$15.apply(this, arguments); }
|
|
12657
|
+
function _objectWithoutProperties$14(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$15(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12658
|
+
function _objectWithoutPropertiesLoose$15(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12553
12659
|
var SvgLogoLpaWhite = function SvgLogoLpaWhite(_ref) {
|
|
12554
12660
|
var title = _ref.title,
|
|
12555
12661
|
titleId = _ref.titleId,
|
|
12556
|
-
props = _objectWithoutProperties$
|
|
12557
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12662
|
+
props = _objectWithoutProperties$14(_ref, _excluded$1D);
|
|
12663
|
+
return /*#__PURE__*/createElement("svg", _extends$15({
|
|
12558
12664
|
viewBox: "0 0 186 74",
|
|
12559
12665
|
fill: "#fff",
|
|
12560
12666
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -12566,91 +12672,91 @@ var SvgLogoLpaWhite = function SvgLogoLpaWhite(_ref) {
|
|
|
12566
12672
|
})));
|
|
12567
12673
|
};
|
|
12568
12674
|
|
|
12569
|
-
var _g$
|
|
12570
|
-
var _excluded$
|
|
12571
|
-
function _extends$
|
|
12572
|
-
function _objectWithoutProperties$
|
|
12573
|
-
function _objectWithoutPropertiesLoose$
|
|
12675
|
+
var _g$9;
|
|
12676
|
+
var _excluded$1E = ["title", "titleId"];
|
|
12677
|
+
function _extends$16() { _extends$16 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$16.apply(this, arguments); }
|
|
12678
|
+
function _objectWithoutProperties$15(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$16(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12679
|
+
function _objectWithoutPropertiesLoose$16(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12574
12680
|
var SvgLogoMlnBlack = function SvgLogoMlnBlack(_ref) {
|
|
12575
12681
|
var title = _ref.title,
|
|
12576
12682
|
titleId = _ref.titleId,
|
|
12577
|
-
props = _objectWithoutProperties$
|
|
12578
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12683
|
+
props = _objectWithoutProperties$15(_ref, _excluded$1E);
|
|
12684
|
+
return /*#__PURE__*/createElement("svg", _extends$16({
|
|
12579
12685
|
viewBox: "0 0 300 71",
|
|
12580
12686
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12581
12687
|
"aria-labelledby": titleId
|
|
12582
12688
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
12583
12689
|
id: titleId
|
|
12584
|
-
}, title) : null, _g$
|
|
12690
|
+
}, title) : null, _g$9 || (_g$9 = /*#__PURE__*/createElement("g", {
|
|
12585
12691
|
clipPath: "url(#logo-mln-black_svg__clip0_51609_40290)"
|
|
12586
12692
|
}, /*#__PURE__*/createElement("path", {
|
|
12587
12693
|
d: "M0 66.115c3.741-4.266 7.607-8.432 11.173-12.871.254-.504.922-1.196 1.053-1.301.44-.354.774-.943 1.274-1.443.5 0 1.346.528 1.904.626 1.391.63.725.269 1.555.63a52.471 52.471 0 0 0 30.7 3.422c15.464-2.48 30.702-6.175 46.065-9.3 9.726-1.983 19.477-3.819 29.528-2.802a32.053 32.053 0 0 1 14.739 4.628 31.83 31.83 0 0 1 10.824 10.97c.25.398.549.794.923 1.365.349-.37.667-.768.948-1.19 6.759-11.21 17.133-15.946 29.928-16.145 12.245-.198 23.992 2.877 35.813 5.431 11.323 2.48 22.67 4.96 34.118 6.795a57.052 57.052 0 0 0 35.439-4.588l14.091 16.839c-5.163 1.091-9.702 2.48-14.291 2.976-17.906 2.48-35.215-.843-52.373-5.53-12.719-3.447-25.389-7.118-38.258-9.92-10.3-2.306-20.725-2.48-30.526 2.678a37.93 37.93 0 0 0-12.869 11.185l-1.646 2.182c-3.167-3.273-5.96-6.745-9.302-9.572-7.781-6.547-17.109-8.358-27.085-7.688-13.592.917-26.411 5.233-39.355 8.952a201.691 201.691 0 0 1-38.058 8.184A89.37 89.37 0 0 1 2.62 67.9c-.823-.248-1.721-.347-2.494-.52L-1 67l1-.885ZM15.57 30h4.991V11.78h.372L27.798 30h3.507l6.865-18.22h.371V30h4.991V3.226h-6.42l-7.385 19.593h-.333L21.99 3.226h-6.42V30Zm36.367 7.2c5.047 0 7.738-1.82 9.556-7.219l6.958-20.41h-5.715L58.45 25.046h-.37L53.792 9.57h-5.956L55.017 30l-.185.78c-.39 1.595-1.503 2.337-3.433 2.337-.5 0-1.039-.018-1.41-.055v4.082c.631.037 1.318.055 1.949.055ZM72.757 30h17.516v-4.62H78.359V3.226h-5.603V30ZM97.582 6.436c1.67 0 3.043-1.336 3.043-3.006A3.029 3.029 0 0 0 97.582.405c-1.67 0-3.061 1.336-3.061 3.025 0 1.67 1.391 3.006 3.061 3.006ZM94.855 30h5.417V9.571h-5.418V30Zm22.933.315c5.103 0 8.294-3.989 8.294-10.52v-.037c0-6.568-3.117-10.52-8.294-10.52-2.802 0-5.084 1.372-6.123 3.599h-.334V1.76h-5.418V30h5.418v-3.173h.334c1.058 2.208 3.229 3.488 6.123 3.488Zm-1.855-4.49c-2.858 0-4.658-2.264-4.658-6.011v-.038c0-3.748 1.819-6.049 4.658-6.049 2.857 0 4.638 2.301 4.638 6.03v.038c0 3.766-1.762 6.03-4.638 6.03ZM130.479 30h5.418V18.57c0-2.894 1.949-4.657 5.029-4.657.835 0 1.67.13 2.486.316V9.497a8.113 8.113 0 0 0-2.022-.26c-2.654 0-4.509 1.3-5.159 3.507h-.334V9.571h-5.418V30Zm21.747.315c2.671 0 4.824-1.131 5.863-3.024h.334V30h5.344V16.047c0-4.36-3.062-6.921-8.48-6.921-5.14 0-8.516 2.375-8.943 5.956l-.019.167h5.01l.037-.074c.427-1.206 1.67-1.893 3.618-1.893 2.227 0 3.433 1.002 3.433 2.765v1.688l-4.936.297c-5.084.297-7.923 2.45-7.923 6.123v.037c0 3.711 2.765 6.123 6.662 6.123Zm-1.373-6.457v-.037c0-1.484 1.131-2.356 3.451-2.505l4.119-.26v1.504c0 2.152-1.874 3.803-4.379 3.803-1.874 0-3.191-.946-3.191-2.505ZM169.073 30h5.418V18.57c0-2.894 1.948-4.657 5.029-4.657.834 0 1.669.13 2.486.316V9.497a8.115 8.115 0 0 0-2.023-.26c-2.653 0-4.508 1.3-5.158 3.507h-.334V9.571h-5.418V30Zm19.353 7.2c5.047 0 7.737-1.82 9.555-7.219l6.958-20.41h-5.714l-4.287 15.475h-.371L190.281 9.57h-5.956L191.506 30l-.186.78c-.389 1.595-1.503 2.337-3.432 2.337-.501 0-1.039-.018-1.41-.055v4.082c.63.037 1.317.055 1.948.055Zm20.818-7.2h5.362V12.874h.297L227.298 30h4.639V3.226h-5.363v17.051h-.297L213.92 3.226h-4.676V30Zm36.609 0h5.603V19.999l9.333-16.773h-6.067l-5.882 11.262h-.334l-5.901-11.262h-6.067l9.315 16.773V30Zm29.279.686c6.457 0 11.04-3.822 11.615-9.425l.019-.204h-5.455l-.038.148c-.593 2.858-2.913 4.732-6.123 4.732-4.23 0-6.846-3.563-6.846-9.315v-.037c0-5.752 2.616-9.296 6.828-9.296 3.191 0 5.585 2.041 6.16 5.047v.13h5.455v-.223c-.519-5.659-5.269-9.704-11.615-9.704-7.775 0-12.562 5.362-12.562 14.046v.037c0 8.684 4.806 14.064 12.562 14.064Z"
|
|
12588
12694
|
}))));
|
|
12589
12695
|
};
|
|
12590
12696
|
|
|
12591
|
-
var _g$
|
|
12592
|
-
var _excluded$
|
|
12593
|
-
function _extends$
|
|
12594
|
-
function _objectWithoutProperties$
|
|
12595
|
-
function _objectWithoutPropertiesLoose$
|
|
12697
|
+
var _g$a;
|
|
12698
|
+
var _excluded$1F = ["title", "titleId"];
|
|
12699
|
+
function _extends$17() { _extends$17 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$17.apply(this, arguments); }
|
|
12700
|
+
function _objectWithoutProperties$16(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$17(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12701
|
+
function _objectWithoutPropertiesLoose$17(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12596
12702
|
var SvgLogoMlnColor = function SvgLogoMlnColor(_ref) {
|
|
12597
12703
|
var title = _ref.title,
|
|
12598
12704
|
titleId = _ref.titleId,
|
|
12599
|
-
props = _objectWithoutProperties$
|
|
12600
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12705
|
+
props = _objectWithoutProperties$16(_ref, _excluded$1F);
|
|
12706
|
+
return /*#__PURE__*/createElement("svg", _extends$17({
|
|
12601
12707
|
viewBox: "0 0 300 71",
|
|
12602
12708
|
fill: "#C60917",
|
|
12603
12709
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12604
12710
|
"aria-labelledby": titleId
|
|
12605
12711
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
12606
12712
|
id: titleId
|
|
12607
|
-
}, title) : null, _g$
|
|
12713
|
+
}, title) : null, _g$a || (_g$a = /*#__PURE__*/createElement("g", {
|
|
12608
12714
|
clipPath: "url(#logo-mln-color_svg__clip0_51609_40290)"
|
|
12609
12715
|
}, /*#__PURE__*/createElement("path", {
|
|
12610
12716
|
d: "M0 66.115c3.741-4.266 7.607-8.432 11.173-12.871.254-.504.922-1.196 1.053-1.301.44-.354.774-.943 1.274-1.443.5 0 1.346.528 1.904.626 1.391.63.725.269 1.555.63a52.471 52.471 0 0 0 30.7 3.422c15.464-2.48 30.702-6.175 46.065-9.3 9.726-1.983 19.477-3.819 29.528-2.802a32.053 32.053 0 0 1 14.739 4.628 31.83 31.83 0 0 1 10.824 10.97c.25.398.549.794.923 1.365.349-.37.667-.768.948-1.19 6.759-11.21 17.133-15.946 29.928-16.145 12.245-.198 23.992 2.877 35.813 5.431 11.323 2.48 22.67 4.96 34.118 6.795a57.052 57.052 0 0 0 35.439-4.588l14.091 16.839c-5.163 1.091-9.702 2.48-14.291 2.976-17.906 2.48-35.215-.843-52.373-5.53-12.719-3.447-25.389-7.118-38.258-9.92-10.3-2.306-20.725-2.48-30.526 2.678a37.93 37.93 0 0 0-12.869 11.185l-1.646 2.182c-3.167-3.273-5.96-6.745-9.302-9.572-7.781-6.547-17.109-8.358-27.085-7.688-13.592.917-26.411 5.233-39.355 8.952a201.691 201.691 0 0 1-38.058 8.184A89.37 89.37 0 0 1 2.62 67.9c-.823-.248-1.721-.347-2.494-.52L-1 67l1-.885ZM15.57 30h4.991V11.78h.372L27.798 30h3.507l6.865-18.22h.371V30h4.991V3.226h-6.42l-7.385 19.593h-.333L21.99 3.226h-6.42V30Zm36.367 7.2c5.047 0 7.738-1.82 9.556-7.219l6.958-20.41h-5.715L58.45 25.046h-.37L53.792 9.57h-5.956L55.017 30l-.185.78c-.39 1.595-1.503 2.337-3.433 2.337-.5 0-1.039-.018-1.41-.055v4.082c.631.037 1.318.055 1.949.055ZM72.757 30h17.516v-4.62H78.359V3.226h-5.603V30ZM97.582 6.436c1.67 0 3.043-1.336 3.043-3.006A3.029 3.029 0 0 0 97.582.405c-1.67 0-3.061 1.336-3.061 3.025 0 1.67 1.391 3.006 3.061 3.006ZM94.855 30h5.417V9.571h-5.418V30Zm22.933.315c5.103 0 8.294-3.989 8.294-10.52v-.037c0-6.568-3.117-10.52-8.294-10.52-2.802 0-5.084 1.372-6.123 3.599h-.334V1.76h-5.418V30h5.418v-3.173h.334c1.058 2.208 3.229 3.488 6.123 3.488Zm-1.855-4.49c-2.858 0-4.658-2.264-4.658-6.011v-.038c0-3.748 1.819-6.049 4.658-6.049 2.857 0 4.638 2.301 4.638 6.03v.038c0 3.766-1.762 6.03-4.638 6.03ZM130.479 30h5.418V18.57c0-2.894 1.949-4.657 5.029-4.657.835 0 1.67.13 2.486.316V9.497a8.113 8.113 0 0 0-2.022-.26c-2.654 0-4.509 1.3-5.159 3.507h-.334V9.571h-5.418V30Zm21.747.315c2.671 0 4.824-1.131 5.863-3.024h.334V30h5.344V16.047c0-4.36-3.062-6.921-8.48-6.921-5.14 0-8.516 2.375-8.943 5.956l-.019.167h5.01l.037-.074c.427-1.206 1.67-1.893 3.618-1.893 2.227 0 3.433 1.002 3.433 2.765v1.688l-4.936.297c-5.084.297-7.923 2.45-7.923 6.123v.037c0 3.711 2.765 6.123 6.662 6.123Zm-1.373-6.457v-.037c0-1.484 1.131-2.356 3.451-2.505l4.119-.26v1.504c0 2.152-1.874 3.803-4.379 3.803-1.874 0-3.191-.946-3.191-2.505ZM169.073 30h5.418V18.57c0-2.894 1.948-4.657 5.029-4.657.834 0 1.669.13 2.486.316V9.497a8.115 8.115 0 0 0-2.023-.26c-2.653 0-4.508 1.3-5.158 3.507h-.334V9.571h-5.418V30Zm19.353 7.2c5.047 0 7.737-1.82 9.555-7.219l6.958-20.41h-5.714l-4.287 15.475h-.371L190.281 9.57h-5.956L191.506 30l-.186.78c-.389 1.595-1.503 2.337-3.432 2.337-.501 0-1.039-.018-1.41-.055v4.082c.63.037 1.317.055 1.948.055Zm20.818-7.2h5.362V12.874h.297L227.298 30h4.639V3.226h-5.363v17.051h-.297L213.92 3.226h-4.676V30Zm36.609 0h5.603V19.999l9.333-16.773h-6.067l-5.882 11.262h-.334l-5.901-11.262h-6.067l9.315 16.773V30Zm29.279.686c6.457 0 11.04-3.822 11.615-9.425l.019-.204h-5.455l-.038.148c-.593 2.858-2.913 4.732-6.123 4.732-4.23 0-6.846-3.563-6.846-9.315v-.037c0-5.752 2.616-9.296 6.828-9.296 3.191 0 5.585 2.041 6.16 5.047v.13h5.455v-.223c-.519-5.659-5.269-9.704-11.615-9.704-7.775 0-12.562 5.362-12.562 14.046v.037c0 8.684 4.806 14.064 12.562 14.064Z"
|
|
12611
12717
|
}))));
|
|
12612
12718
|
};
|
|
12613
12719
|
|
|
12614
|
-
var _g$
|
|
12615
|
-
var _excluded$
|
|
12616
|
-
function _extends$
|
|
12617
|
-
function _objectWithoutProperties$
|
|
12618
|
-
function _objectWithoutPropertiesLoose$
|
|
12720
|
+
var _g$b;
|
|
12721
|
+
var _excluded$1G = ["title", "titleId"];
|
|
12722
|
+
function _extends$18() { _extends$18 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$18.apply(this, arguments); }
|
|
12723
|
+
function _objectWithoutProperties$17(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$18(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12724
|
+
function _objectWithoutPropertiesLoose$18(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12619
12725
|
var SvgLogoMlnWhite = function SvgLogoMlnWhite(_ref) {
|
|
12620
12726
|
var title = _ref.title,
|
|
12621
12727
|
titleId = _ref.titleId,
|
|
12622
|
-
props = _objectWithoutProperties$
|
|
12623
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12728
|
+
props = _objectWithoutProperties$17(_ref, _excluded$1G);
|
|
12729
|
+
return /*#__PURE__*/createElement("svg", _extends$18({
|
|
12624
12730
|
viewBox: "0 0 300 71",
|
|
12625
12731
|
fill: "#fff",
|
|
12626
12732
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12627
12733
|
"aria-labelledby": titleId
|
|
12628
12734
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
12629
12735
|
id: titleId
|
|
12630
|
-
}, title) : null, _g$
|
|
12736
|
+
}, title) : null, _g$b || (_g$b = /*#__PURE__*/createElement("g", {
|
|
12631
12737
|
clipPath: "url(#logo-mln-white_svg__clip0_51609_40290)"
|
|
12632
12738
|
}, /*#__PURE__*/createElement("path", {
|
|
12633
12739
|
d: "M0 66.115c3.741-4.266 7.607-8.432 11.173-12.871.254-.504.922-1.196 1.053-1.301.44-.354.774-.943 1.274-1.443.5 0 1.346.528 1.904.626 1.391.63.725.269 1.555.63a52.471 52.471 0 0 0 30.7 3.422c15.464-2.48 30.702-6.175 46.065-9.3 9.726-1.983 19.477-3.819 29.528-2.802a32.053 32.053 0 0 1 14.739 4.628 31.83 31.83 0 0 1 10.824 10.97c.25.398.549.794.923 1.365.349-.37.667-.768.948-1.19 6.759-11.21 17.133-15.946 29.928-16.145 12.245-.198 23.992 2.877 35.813 5.431 11.323 2.48 22.67 4.96 34.118 6.795a57.052 57.052 0 0 0 35.439-4.588l14.091 16.839c-5.163 1.091-9.702 2.48-14.291 2.976-17.906 2.48-35.215-.843-52.373-5.53-12.719-3.447-25.389-7.118-38.258-9.92-10.3-2.306-20.725-2.48-30.526 2.678a37.93 37.93 0 0 0-12.869 11.185l-1.646 2.182c-3.167-3.273-5.96-6.745-9.302-9.572-7.781-6.547-17.109-8.358-27.085-7.688-13.592.917-26.411 5.233-39.355 8.952a201.691 201.691 0 0 1-38.058 8.184A89.37 89.37 0 0 1 2.62 67.9c-.823-.248-1.721-.347-2.494-.52L-1 67l1-.885ZM15.57 30h4.991V11.78h.372L27.798 30h3.507l6.865-18.22h.371V30h4.991V3.226h-6.42l-7.385 19.593h-.333L21.99 3.226h-6.42V30Zm36.367 7.2c5.047 0 7.738-1.82 9.556-7.219l6.958-20.41h-5.715L58.45 25.046h-.37L53.792 9.57h-5.956L55.017 30l-.185.78c-.39 1.595-1.503 2.337-3.433 2.337-.5 0-1.039-.018-1.41-.055v4.082c.631.037 1.318.055 1.949.055ZM72.757 30h17.516v-4.62H78.359V3.226h-5.603V30ZM97.582 6.436c1.67 0 3.043-1.336 3.043-3.006A3.029 3.029 0 0 0 97.582.405c-1.67 0-3.061 1.336-3.061 3.025 0 1.67 1.391 3.006 3.061 3.006ZM94.855 30h5.417V9.571h-5.418V30Zm22.933.315c5.103 0 8.294-3.989 8.294-10.52v-.037c0-6.568-3.117-10.52-8.294-10.52-2.802 0-5.084 1.372-6.123 3.599h-.334V1.76h-5.418V30h5.418v-3.173h.334c1.058 2.208 3.229 3.488 6.123 3.488Zm-1.855-4.49c-2.858 0-4.658-2.264-4.658-6.011v-.038c0-3.748 1.819-6.049 4.658-6.049 2.857 0 4.638 2.301 4.638 6.03v.038c0 3.766-1.762 6.03-4.638 6.03ZM130.479 30h5.418V18.57c0-2.894 1.949-4.657 5.029-4.657.835 0 1.67.13 2.486.316V9.497a8.113 8.113 0 0 0-2.022-.26c-2.654 0-4.509 1.3-5.159 3.507h-.334V9.571h-5.418V30Zm21.747.315c2.671 0 4.824-1.131 5.863-3.024h.334V30h5.344V16.047c0-4.36-3.062-6.921-8.48-6.921-5.14 0-8.516 2.375-8.943 5.956l-.019.167h5.01l.037-.074c.427-1.206 1.67-1.893 3.618-1.893 2.227 0 3.433 1.002 3.433 2.765v1.688l-4.936.297c-5.084.297-7.923 2.45-7.923 6.123v.037c0 3.711 2.765 6.123 6.662 6.123Zm-1.373-6.457v-.037c0-1.484 1.131-2.356 3.451-2.505l4.119-.26v1.504c0 2.152-1.874 3.803-4.379 3.803-1.874 0-3.191-.946-3.191-2.505ZM169.073 30h5.418V18.57c0-2.894 1.948-4.657 5.029-4.657.834 0 1.669.13 2.486.316V9.497a8.115 8.115 0 0 0-2.023-.26c-2.653 0-4.508 1.3-5.158 3.507h-.334V9.571h-5.418V30Zm19.353 7.2c5.047 0 7.737-1.82 9.555-7.219l6.958-20.41h-5.714l-4.287 15.475h-.371L190.281 9.57h-5.956L191.506 30l-.186.78c-.389 1.595-1.503 2.337-3.432 2.337-.501 0-1.039-.018-1.41-.055v4.082c.63.037 1.317.055 1.948.055Zm20.818-7.2h5.362V12.874h.297L227.298 30h4.639V3.226h-5.363v17.051h-.297L213.92 3.226h-4.676V30Zm36.609 0h5.603V19.999l9.333-16.773h-6.067l-5.882 11.262h-.334l-5.901-11.262h-6.067l9.315 16.773V30Zm29.279.686c6.457 0 11.04-3.822 11.615-9.425l.019-.204h-5.455l-.038.148c-.593 2.858-2.913 4.732-6.123 4.732-4.23 0-6.846-3.563-6.846-9.315v-.037c0-5.752 2.616-9.296 6.828-9.296 3.191 0 5.585 2.041 6.16 5.047v.13h5.455v-.223c-.519-5.659-5.269-9.704-11.615-9.704-7.775 0-12.562 5.362-12.562 14.046v.037c0 8.684 4.806 14.064 12.562 14.064Z"
|
|
12634
12740
|
}))));
|
|
12635
12741
|
};
|
|
12636
12742
|
|
|
12637
|
-
var _g$
|
|
12638
|
-
var _excluded$
|
|
12639
|
-
function _extends$
|
|
12640
|
-
function _objectWithoutProperties$
|
|
12641
|
-
function _objectWithoutPropertiesLoose$
|
|
12743
|
+
var _g$c;
|
|
12744
|
+
var _excluded$1H = ["title", "titleId"];
|
|
12745
|
+
function _extends$19() { _extends$19 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$19.apply(this, arguments); }
|
|
12746
|
+
function _objectWithoutProperties$18(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$19(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12747
|
+
function _objectWithoutPropertiesLoose$19(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12642
12748
|
var SvgLogoNycdoeBlack = function SvgLogoNycdoeBlack(_ref) {
|
|
12643
12749
|
var title = _ref.title,
|
|
12644
12750
|
titleId = _ref.titleId,
|
|
12645
|
-
props = _objectWithoutProperties$
|
|
12646
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12751
|
+
props = _objectWithoutProperties$18(_ref, _excluded$1H);
|
|
12752
|
+
return /*#__PURE__*/createElement("svg", _extends$19({
|
|
12647
12753
|
viewBox: "0 0 341 61",
|
|
12648
12754
|
fill: "none",
|
|
12649
12755
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12650
12756
|
"aria-labelledby": titleId
|
|
12651
12757
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
12652
12758
|
id: titleId
|
|
12653
|
-
}, title) : null, _g$
|
|
12759
|
+
}, title) : null, _g$c || (_g$c = /*#__PURE__*/createElement("g", {
|
|
12654
12760
|
clipPath: "url(#logo-nycdoe-black_svg__clip0_77131_127720)",
|
|
12655
12761
|
fill: "#000"
|
|
12656
12762
|
}, /*#__PURE__*/createElement("path", {
|
|
@@ -12658,23 +12764,23 @@ var SvgLogoNycdoeBlack = function SvgLogoNycdoeBlack(_ref) {
|
|
|
12658
12764
|
}))));
|
|
12659
12765
|
};
|
|
12660
12766
|
|
|
12661
|
-
var _g$
|
|
12662
|
-
var _excluded$
|
|
12663
|
-
function _extends$
|
|
12664
|
-
function _objectWithoutProperties$
|
|
12665
|
-
function _objectWithoutPropertiesLoose$
|
|
12767
|
+
var _g$d, _defs$1;
|
|
12768
|
+
var _excluded$1I = ["title", "titleId"];
|
|
12769
|
+
function _extends$1a() { _extends$1a = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1a.apply(this, arguments); }
|
|
12770
|
+
function _objectWithoutProperties$19(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1a(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12771
|
+
function _objectWithoutPropertiesLoose$1a(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12666
12772
|
var SvgLogoNycdoeColor = function SvgLogoNycdoeColor(_ref) {
|
|
12667
12773
|
var title = _ref.title,
|
|
12668
12774
|
titleId = _ref.titleId,
|
|
12669
|
-
props = _objectWithoutProperties$
|
|
12670
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12775
|
+
props = _objectWithoutProperties$19(_ref, _excluded$1I);
|
|
12776
|
+
return /*#__PURE__*/createElement("svg", _extends$1a({
|
|
12671
12777
|
viewBox: "0 0 341 61",
|
|
12672
12778
|
fill: "none",
|
|
12673
12779
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12674
12780
|
"aria-labelledby": titleId
|
|
12675
12781
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
12676
12782
|
id: titleId
|
|
12677
|
-
}, title) : null, _g$
|
|
12783
|
+
}, title) : null, _g$d || (_g$d = /*#__PURE__*/createElement("g", {
|
|
12678
12784
|
clipPath: "url(#logo-nycdoe-color_svg__a)"
|
|
12679
12785
|
}, /*#__PURE__*/createElement("path", {
|
|
12680
12786
|
d: "M188.913 1.963h6.668c4.756 0 7.601 2.89 7.601 7.69 0 5.08-2.888 7.818-7.601 7.818h-6.668V1.963Zm4.04 12.032h1.91c3.063-.063 4.28-1.257 4.28-4.365 0-2.823-1.521-4.19-4.28-4.19h-1.91v8.555ZM207.932 12.738c.065 1.54.956 2.562 2.518 2.562.891 0 1.76-.413 2.108-1.24h3.454c-.674 2.607-3.086 3.737-5.604 3.737-3.671 0-6.168-2.216-6.168-5.994 0-3.453 2.758-5.929 6.081-5.929 4.039 0 6.06 3.042 5.885 6.864h-8.274Zm4.582-2.064c-.065-1.26-.956-2.301-2.193-2.301-1.304 0-2.172.932-2.389 2.301h4.582ZM217.615 6.2h3.519v1.303h.042c.718-1.064 1.804-1.628 3.107-1.628 3.54 0 5.039 3.04 5.039 6.21 0 2.932-1.564 5.711-4.758 5.711-1.389 0-2.453-.519-3.214-1.54h-.043v4.996h-3.692V6.2Zm3.561 5.517c0 1.976.566 3.256 2.238 3.256 1.65 0 2.216-1.716 2.216-3.256 0-1.434-.566-3.02-2.195-3.02-.999 0-2.259.696-2.259 3.02ZM230.668 9.676c.067-1.478.76-2.435 1.759-3.02 1.001-.564 2.302-.782 3.585-.782 2.671 0 5.255.586 5.255 3.779v4.93c0 .955 0 2 .436 2.888h-3.716c-.128-.348-.174-.695-.216-1.064-.956 1-2.367 1.39-3.714 1.39-2.15 0-3.845-1.084-3.845-3.41 0-3.67 3.997-3.388 6.56-3.91.629-.128.977-.345.977-1.041 0-.847-1.021-1.174-1.781-1.174-1.02 0-1.672.456-1.847 1.414h-3.453Zm4.779 5.842c1.758 0 2.345-1 2.258-3.324-.521.325-1.477.39-2.28.607-.825.196-1.521.544-1.521 1.434 0 .913.717 1.283 1.543 1.283ZM243.378 6.2h3.583v1.976h.042c.544-1.435 1.804-2.194 3.39-2.194.281 0 .586.022.869.087v3.367c-.479-.131-.912-.218-1.413-.218-1.823 0-2.779 1.259-2.779 2.672v5.582h-3.692V6.2ZM259.404 8.59h-2.281v5.123c0 .892.523 1.087 1.325 1.087.303 0 .63-.043.956-.043v2.715c-.674.023-1.346.108-2.021.108-3.148 0-3.952-.912-3.952-3.975V8.59h-1.868V6.2h1.868V2.79h3.692V6.2h2.281v2.39ZM260.831 6.2h3.583v1.542h.045c.672-1.129 1.865-1.868 3.233-1.868 1.414 0 2.672.456 3.28 1.823.892-1.195 2-1.823 3.52-1.823 3.583 0 3.974 2.715 3.974 4.864v6.734h-3.692v-6.624c0-1.218-.587-1.934-1.542-1.934-1.585 0-1.738 1.218-1.738 3.04v5.518h-3.691v-6.408c0-1.326-.392-2.15-1.391-2.15-1.324 0-1.889.762-1.889 3.063v5.495h-3.692V6.2ZM283.631 12.738c.064 1.54.956 2.562 2.519 2.562.892 0 1.76-.413 2.108-1.24h3.453c-.673 2.607-3.084 3.737-5.604 3.737-3.67 0-6.168-2.216-6.168-5.994 0-3.453 2.758-5.929 6.08-5.929 4.04 0 6.062 3.042 5.887 6.864h-8.275Zm4.583-2.064c-.065-1.26-.955-2.301-2.195-2.301-1.301 0-2.17.932-2.388 2.301h4.583ZM293.316 6.2h3.582v1.542h.043c.675-1.152 2.195-1.868 3.541-1.868 3.756 0 4.062 2.735 4.062 4.366v7.232h-3.692V12.02c0-1.543.174-3.106-1.847-3.106-1.389 0-1.997 1.172-1.997 2.41v6.148h-3.692V6.2ZM313.231 8.59h-2.278v5.123c0 .892.52 1.087 1.325 1.087.303 0 .629-.043.953-.043v2.715c-.672.023-1.346.108-2.018.108-3.15 0-3.952-.912-3.952-3.975V8.59h-1.868V6.2h1.868V2.79h3.692V6.2h2.278v2.39ZM326.246 5.875c3.496 0 5.95 2.584 5.95 5.97 0 3.39-2.454 5.95-5.95 5.95-3.499 0-5.93-2.56-5.93-5.95 0-3.386 2.431-5.97 5.93-5.97Zm0 9.098c1.716 0 2.258-1.693 2.258-3.128 0-1.432-.542-3.148-2.258-3.148s-2.238 1.716-2.238 3.148c0 1.435.522 3.128 2.238 3.128ZM334.281 8.589h-1.783v-2.39h1.783c0-3.235 1.128-4.237 4.278-4.237.586 0 1.194.046 1.78.067v2.605a8.094 8.094 0 0 0-.998-.062c-.848 0-1.368.108-1.368 1.128v.5h2.214v2.389h-2.214v8.883h-3.692V8.589ZM188.913 25.826h12.358v3.235h-8.318v2.718h7.601v3.125h-7.601v2.955h8.534v3.474h-12.574V25.827ZM214.339 41.334h-3.519V40.03h-.043c-.717 1.063-1.804 1.628-3.106 1.628-3.54 0-5.039-3.04-5.039-6.21 0-2.932 1.564-5.712 4.757-5.712 1.39 0 2.454.52 3.214 1.54h.044v-5.451h3.692v15.508Zm-8.015-5.755c0 1.541.565 3.258 2.259 3.258 1.802 0 2.194-1.717 2.194-3.149 0-1.63-.588-3.129-2.194-3.129-1.694 0-2.259 1.587-2.259 3.02ZM227.625 41.334h-3.584V39.79h-.043c-.696 1.152-2.128 1.868-3.432 1.868-3.237 0-4.17-1.868-4.17-4.821v-6.776h3.692V36.6c0 1.498.652 2.02 1.825 2.02.803 0 2.02-.522 2.02-2.52v-6.038h3.692v11.272ZM237.03 34.188c-.022-.954-.87-1.628-1.803-1.628-2.063 0-2.389 1.76-2.389 3.323 0 1.456.63 2.953 2.194 2.953 1.28 0 1.934-.738 2.107-1.933h3.583c-.324 3.019-2.672 4.756-5.668 4.756-3.39 0-5.908-2.324-5.908-5.776 0-3.585 2.28-6.147 5.908-6.147 2.801 0 5.298 1.478 5.56 4.452h-3.584ZM241.963 33.538c.066-1.476.76-2.435 1.758-3.019 1.002-.565 2.303-.781 3.586-.781 2.67 0 5.254.584 5.254 3.777v4.93c0 .956 0 2 .436 2.889h-3.716c-.128-.348-.173-.695-.216-1.064-.956.998-2.366 1.39-3.713 1.39-2.151 0-3.845-1.085-3.845-3.41 0-3.67 3.997-3.388 6.56-3.91.629-.129.977-.346.977-1.04 0-.849-1.02-1.175-1.781-1.175-1.02 0-1.672.456-1.847 1.413h-3.453Zm4.778 5.843c1.759 0 2.346-1 2.259-3.325-.521.326-1.477.391-2.28.608-.825.197-1.521.544-1.521 1.434 0 .912.717 1.282 1.542 1.282ZM261.261 32.451h-2.282v5.124c0 .894.523 1.087 1.326 1.087.305 0 .629-.043.956-.043v2.715c-.672.023-1.347.108-2.019.108-3.151 0-3.955-.912-3.955-3.975v-5.016h-1.868v-2.39h1.868v-3.408h3.692v3.409h2.282v2.39ZM266.463 28.65h-3.692v-2.824h3.692v2.825ZM262.771 30.063h3.692v11.272h-3.692V30.063ZM273.933 29.738c3.496 0 5.951 2.582 5.951 5.97 0 3.39-2.455 5.952-5.951 5.952-3.498 0-5.929-2.561-5.929-5.952 0-3.388 2.431-5.97 5.929-5.97Zm0 9.098c1.716 0 2.259-1.693 2.259-3.128 0-1.432-.543-3.148-2.259-3.148-1.716 0-2.237 1.716-2.237 3.148 0 1.435.521 3.128 2.237 3.128ZM281.37 30.063h3.584v1.542h.044c.673-1.152 2.192-1.868 3.539-1.868 3.758 0 4.064 2.735 4.064 4.366v7.231h-3.695v-5.452c0-1.542.175-3.105-1.845-3.105-1.39 0-1.999 1.172-1.999 2.41v6.148h-3.692V30.061Z",
|
|
@@ -12699,23 +12805,23 @@ var SvgLogoNycdoeColor = function SvgLogoNycdoeColor(_ref) {
|
|
|
12699
12805
|
})))));
|
|
12700
12806
|
};
|
|
12701
12807
|
|
|
12702
|
-
var _g$
|
|
12703
|
-
var _excluded$
|
|
12704
|
-
function _extends$
|
|
12705
|
-
function _objectWithoutProperties$
|
|
12706
|
-
function _objectWithoutPropertiesLoose$
|
|
12808
|
+
var _g$e;
|
|
12809
|
+
var _excluded$1J = ["title", "titleId"];
|
|
12810
|
+
function _extends$1b() { _extends$1b = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1b.apply(this, arguments); }
|
|
12811
|
+
function _objectWithoutProperties$1a(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1b(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12812
|
+
function _objectWithoutPropertiesLoose$1b(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12707
12813
|
var SvgLogoNycdoeWhite = function SvgLogoNycdoeWhite(_ref) {
|
|
12708
12814
|
var title = _ref.title,
|
|
12709
12815
|
titleId = _ref.titleId,
|
|
12710
|
-
props = _objectWithoutProperties$
|
|
12711
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12816
|
+
props = _objectWithoutProperties$1a(_ref, _excluded$1J);
|
|
12817
|
+
return /*#__PURE__*/createElement("svg", _extends$1b({
|
|
12712
12818
|
viewBox: "0 0 341 61",
|
|
12713
12819
|
fill: "none",
|
|
12714
12820
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12715
12821
|
"aria-labelledby": titleId
|
|
12716
12822
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
12717
12823
|
id: titleId
|
|
12718
|
-
}, title) : null, _g$
|
|
12824
|
+
}, title) : null, _g$e || (_g$e = /*#__PURE__*/createElement("g", {
|
|
12719
12825
|
clipPath: "url(#logo-nycdoe-white_svg__clip0_77131_127719)",
|
|
12720
12826
|
fill: "#fff"
|
|
12721
12827
|
}, /*#__PURE__*/createElement("path", {
|
|
@@ -12723,15 +12829,15 @@ var SvgLogoNycdoeWhite = function SvgLogoNycdoeWhite(_ref) {
|
|
|
12723
12829
|
}))));
|
|
12724
12830
|
};
|
|
12725
12831
|
|
|
12726
|
-
var _excluded$
|
|
12727
|
-
function _extends$
|
|
12728
|
-
function _objectWithoutProperties$
|
|
12729
|
-
function _objectWithoutPropertiesLoose$
|
|
12832
|
+
var _excluded$1K = ["title", "titleId"];
|
|
12833
|
+
function _extends$1c() { _extends$1c = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1c.apply(this, arguments); }
|
|
12834
|
+
function _objectWithoutProperties$1b(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1c(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12835
|
+
function _objectWithoutPropertiesLoose$1c(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12730
12836
|
var SvgLogoNyplFullBlack = function SvgLogoNyplFullBlack(_ref) {
|
|
12731
12837
|
var title = _ref.title,
|
|
12732
12838
|
titleId = _ref.titleId,
|
|
12733
|
-
props = _objectWithoutProperties$
|
|
12734
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12839
|
+
props = _objectWithoutProperties$1b(_ref, _excluded$1K);
|
|
12840
|
+
return /*#__PURE__*/createElement("svg", _extends$1c({
|
|
12735
12841
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12736
12842
|
viewBox: "0 0 966.787 543.733",
|
|
12737
12843
|
xmlSpace: "preserve",
|
|
@@ -12804,23 +12910,23 @@ var SvgLogoNyplFullBlack = function SvgLogoNyplFullBlack(_ref) {
|
|
|
12804
12910
|
}));
|
|
12805
12911
|
};
|
|
12806
12912
|
|
|
12807
|
-
var _g$
|
|
12808
|
-
var _excluded$
|
|
12809
|
-
function _extends$
|
|
12810
|
-
function _objectWithoutProperties$
|
|
12811
|
-
function _objectWithoutPropertiesLoose$
|
|
12913
|
+
var _g$f, _defs$2;
|
|
12914
|
+
var _excluded$1L = ["title", "titleId"];
|
|
12915
|
+
function _extends$1d() { _extends$1d = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1d.apply(this, arguments); }
|
|
12916
|
+
function _objectWithoutProperties$1c(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1d(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12917
|
+
function _objectWithoutPropertiesLoose$1d(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12812
12918
|
var SvgLogoNyplFullWhite = function SvgLogoNyplFullWhite(_ref) {
|
|
12813
12919
|
var title = _ref.title,
|
|
12814
12920
|
titleId = _ref.titleId,
|
|
12815
|
-
props = _objectWithoutProperties$
|
|
12816
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12921
|
+
props = _objectWithoutProperties$1c(_ref, _excluded$1L);
|
|
12922
|
+
return /*#__PURE__*/createElement("svg", _extends$1d({
|
|
12817
12923
|
viewBox: "0 0 967 568",
|
|
12818
12924
|
fill: "none",
|
|
12819
12925
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12820
12926
|
"aria-labelledby": titleId
|
|
12821
12927
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
12822
12928
|
id: titleId
|
|
12823
|
-
}, title) : null, _g$
|
|
12929
|
+
}, title) : null, _g$f || (_g$f = /*#__PURE__*/createElement("g", {
|
|
12824
12930
|
clipPath: "url(#logo-nypl-full-white_svg__a)",
|
|
12825
12931
|
fill: "#fff"
|
|
12826
12932
|
}, /*#__PURE__*/createElement("path", {
|
|
@@ -12840,15 +12946,15 @@ var SvgLogoNyplFullWhite = function SvgLogoNyplFullWhite(_ref) {
|
|
|
12840
12946
|
};
|
|
12841
12947
|
|
|
12842
12948
|
var _path$Y, _path2$n, _path3$e;
|
|
12843
|
-
var _excluded$
|
|
12844
|
-
function _extends$
|
|
12845
|
-
function _objectWithoutProperties$
|
|
12846
|
-
function _objectWithoutPropertiesLoose$
|
|
12949
|
+
var _excluded$1M = ["title", "titleId"];
|
|
12950
|
+
function _extends$1e() { _extends$1e = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1e.apply(this, arguments); }
|
|
12951
|
+
function _objectWithoutProperties$1d(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1e(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12952
|
+
function _objectWithoutPropertiesLoose$1e(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12847
12953
|
var SvgLogoNyplLionBlack = function SvgLogoNyplLionBlack(_ref) {
|
|
12848
12954
|
var title = _ref.title,
|
|
12849
12955
|
titleId = _ref.titleId,
|
|
12850
|
-
props = _objectWithoutProperties$
|
|
12851
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12956
|
+
props = _objectWithoutProperties$1d(_ref, _excluded$1M);
|
|
12957
|
+
return /*#__PURE__*/createElement("svg", _extends$1e({
|
|
12852
12958
|
viewBox: "0 0 136 135",
|
|
12853
12959
|
fill: "none",
|
|
12854
12960
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -12870,15 +12976,15 @@ var SvgLogoNyplLionBlack = function SvgLogoNyplLionBlack(_ref) {
|
|
|
12870
12976
|
};
|
|
12871
12977
|
|
|
12872
12978
|
var _path$Z;
|
|
12873
|
-
var _excluded$
|
|
12874
|
-
function _extends$
|
|
12875
|
-
function _objectWithoutProperties$
|
|
12876
|
-
function _objectWithoutPropertiesLoose$
|
|
12979
|
+
var _excluded$1N = ["title", "titleId"];
|
|
12980
|
+
function _extends$1f() { _extends$1f = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1f.apply(this, arguments); }
|
|
12981
|
+
function _objectWithoutProperties$1e(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1f(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12982
|
+
function _objectWithoutPropertiesLoose$1f(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12877
12983
|
var SvgLogoNyplLionWhite = function SvgLogoNyplLionWhite(_ref) {
|
|
12878
12984
|
var title = _ref.title,
|
|
12879
12985
|
titleId = _ref.titleId,
|
|
12880
|
-
props = _objectWithoutProperties$
|
|
12881
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
12986
|
+
props = _objectWithoutProperties$1e(_ref, _excluded$1N);
|
|
12987
|
+
return /*#__PURE__*/createElement("svg", _extends$1f({
|
|
12882
12988
|
viewBox: "0 0 125 126",
|
|
12883
12989
|
fill: "none",
|
|
12884
12990
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -12894,15 +13000,15 @@ var SvgLogoNyplLionWhite = function SvgLogoNyplLionWhite(_ref) {
|
|
|
12894
13000
|
};
|
|
12895
13001
|
|
|
12896
13002
|
var _path$_, _path2$o, _path3$f, _path4$4, _path5$2, _path6$2, _path7$2, _path8$2, _path9$1, _path10$1, _path11$1, _path12$1, _path13$1, _path14, _path15;
|
|
12897
|
-
var _excluded$
|
|
12898
|
-
function _extends$
|
|
12899
|
-
function _objectWithoutProperties$
|
|
12900
|
-
function _objectWithoutPropertiesLoose$
|
|
13003
|
+
var _excluded$1O = ["title", "titleId"];
|
|
13004
|
+
function _extends$1g() { _extends$1g = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1g.apply(this, arguments); }
|
|
13005
|
+
function _objectWithoutProperties$1f(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1g(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13006
|
+
function _objectWithoutPropertiesLoose$1g(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12901
13007
|
var SvgLogoNyplTextBlack = function SvgLogoNyplTextBlack(_ref) {
|
|
12902
13008
|
var title = _ref.title,
|
|
12903
13009
|
titleId = _ref.titleId,
|
|
12904
|
-
props = _objectWithoutProperties$
|
|
12905
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13010
|
+
props = _objectWithoutProperties$1f(_ref, _excluded$1O);
|
|
13011
|
+
return /*#__PURE__*/createElement("svg", _extends$1g({
|
|
12906
13012
|
viewBox: "0 0 201 165",
|
|
12907
13013
|
fill: "none",
|
|
12908
13014
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -12972,15 +13078,15 @@ var SvgLogoNyplTextBlack = function SvgLogoNyplTextBlack(_ref) {
|
|
|
12972
13078
|
};
|
|
12973
13079
|
|
|
12974
13080
|
var _path$$, _path2$p, _path3$g, _path4$5, _path5$3, _path6$3, _path7$3, _path8$3, _path9$2, _path10$2, _path11$2, _path12$2, _path13$2, _path14$1, _path15$1;
|
|
12975
|
-
var _excluded$
|
|
12976
|
-
function _extends$
|
|
12977
|
-
function _objectWithoutProperties$
|
|
12978
|
-
function _objectWithoutPropertiesLoose$
|
|
13081
|
+
var _excluded$1P = ["title", "titleId"];
|
|
13082
|
+
function _extends$1h() { _extends$1h = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1h.apply(this, arguments); }
|
|
13083
|
+
function _objectWithoutProperties$1g(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1h(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13084
|
+
function _objectWithoutPropertiesLoose$1h(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12979
13085
|
var SvgLogoNyplTextWhite = function SvgLogoNyplTextWhite(_ref) {
|
|
12980
13086
|
var title = _ref.title,
|
|
12981
13087
|
titleId = _ref.titleId,
|
|
12982
|
-
props = _objectWithoutProperties$
|
|
12983
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13088
|
+
props = _objectWithoutProperties$1g(_ref, _excluded$1P);
|
|
13089
|
+
return /*#__PURE__*/createElement("svg", _extends$1h({
|
|
12984
13090
|
viewBox: "0 0 201 165",
|
|
12985
13091
|
fill: "none",
|
|
12986
13092
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -13049,23 +13155,23 @@ var SvgLogoNyplTextWhite = function SvgLogoNyplTextWhite(_ref) {
|
|
|
13049
13155
|
})));
|
|
13050
13156
|
};
|
|
13051
13157
|
|
|
13052
|
-
var _g$
|
|
13053
|
-
var _excluded$
|
|
13054
|
-
function _extends$
|
|
13055
|
-
function _objectWithoutProperties$
|
|
13056
|
-
function _objectWithoutPropertiesLoose$
|
|
13158
|
+
var _g$g, _defs$3;
|
|
13159
|
+
var _excluded$1Q = ["title", "titleId"];
|
|
13160
|
+
function _extends$1i() { _extends$1i = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1i.apply(this, arguments); }
|
|
13161
|
+
function _objectWithoutProperties$1h(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1i(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13162
|
+
function _objectWithoutPropertiesLoose$1i(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13057
13163
|
var SvgLogoOpenebooksColor = function SvgLogoOpenebooksColor(_ref) {
|
|
13058
13164
|
var title = _ref.title,
|
|
13059
13165
|
titleId = _ref.titleId,
|
|
13060
|
-
props = _objectWithoutProperties$
|
|
13061
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13166
|
+
props = _objectWithoutProperties$1h(_ref, _excluded$1Q);
|
|
13167
|
+
return /*#__PURE__*/createElement("svg", _extends$1i({
|
|
13062
13168
|
viewBox: "0 0 152 139",
|
|
13063
13169
|
fill: "none",
|
|
13064
13170
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13065
13171
|
"aria-labelledby": titleId
|
|
13066
13172
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
13067
13173
|
id: titleId
|
|
13068
|
-
}, title) : null, _g$
|
|
13174
|
+
}, title) : null, _g$g || (_g$g = /*#__PURE__*/createElement("g", {
|
|
13069
13175
|
clipPath: "url(#logo-openebooks-color_svg__clip0_53471_41906)"
|
|
13070
13176
|
}, /*#__PURE__*/createElement("path", {
|
|
13071
13177
|
d: "M130.79 29.541H20.99a5.667 5.667 0 0 0-5.673 5.662v98.138a5.667 5.667 0 0 0 5.673 5.661h109.8a5.667 5.667 0 0 0 5.672-5.661V35.202a5.666 5.666 0 0 0-5.672-5.66Z",
|
|
@@ -13104,23 +13210,23 @@ var SvgLogoOpenebooksColor = function SvgLogoOpenebooksColor(_ref) {
|
|
|
13104
13210
|
})))));
|
|
13105
13211
|
};
|
|
13106
13212
|
|
|
13107
|
-
var _g$
|
|
13108
|
-
var _excluded$
|
|
13109
|
-
function _extends$
|
|
13110
|
-
function _objectWithoutProperties$
|
|
13111
|
-
function _objectWithoutPropertiesLoose$
|
|
13213
|
+
var _g$h, _defs$4;
|
|
13214
|
+
var _excluded$1R = ["title", "titleId"];
|
|
13215
|
+
function _extends$1j() { _extends$1j = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1j.apply(this, arguments); }
|
|
13216
|
+
function _objectWithoutProperties$1i(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1j(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13217
|
+
function _objectWithoutPropertiesLoose$1j(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13112
13218
|
var SvgLogoOpenebooksNegative = function SvgLogoOpenebooksNegative(_ref) {
|
|
13113
13219
|
var title = _ref.title,
|
|
13114
13220
|
titleId = _ref.titleId,
|
|
13115
|
-
props = _objectWithoutProperties$
|
|
13116
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13221
|
+
props = _objectWithoutProperties$1i(_ref, _excluded$1R);
|
|
13222
|
+
return /*#__PURE__*/createElement("svg", _extends$1j({
|
|
13117
13223
|
viewBox: "0 0 155 139",
|
|
13118
13224
|
fill: "none",
|
|
13119
13225
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13120
13226
|
"aria-labelledby": titleId
|
|
13121
13227
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
13122
13228
|
id: titleId
|
|
13123
|
-
}, title) : null, _g$
|
|
13229
|
+
}, title) : null, _g$h || (_g$h = /*#__PURE__*/createElement("g", {
|
|
13124
13230
|
clipPath: "url(#logo-openebooks-negative_svg__clip0_54498_42323)"
|
|
13125
13231
|
}, /*#__PURE__*/createElement("path", {
|
|
13126
13232
|
d: "M78.087 9.5C36.26-12.024 1.802 9.59 0 10.747v110.438c1.074-1.272 5.518-6.158 15.394-9.572v21.596a5.805 5.805 0 0 0 5.79 5.791h112.114a5.808 5.808 0 0 0 5.79-5.791v-22.206c11.82 3.711 15.912 9.885 15.912 9.885V10.797S121.052-12.61 78.087 9.5Z",
|
|
@@ -13182,23 +13288,23 @@ var SvgLogoOpenebooksNegative = function SvgLogoOpenebooksNegative(_ref) {
|
|
|
13182
13288
|
})))));
|
|
13183
13289
|
};
|
|
13184
13290
|
|
|
13185
|
-
var _g$
|
|
13186
|
-
var _excluded$
|
|
13187
|
-
function _extends$
|
|
13188
|
-
function _objectWithoutProperties$
|
|
13189
|
-
function _objectWithoutPropertiesLoose$
|
|
13291
|
+
var _g$i, _defs$5;
|
|
13292
|
+
var _excluded$1S = ["title", "titleId"];
|
|
13293
|
+
function _extends$1k() { _extends$1k = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1k.apply(this, arguments); }
|
|
13294
|
+
function _objectWithoutProperties$1j(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1k(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13295
|
+
function _objectWithoutPropertiesLoose$1k(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13190
13296
|
var SvgLogoOpenebooksWithTextColor = function SvgLogoOpenebooksWithTextColor(_ref) {
|
|
13191
13297
|
var title = _ref.title,
|
|
13192
13298
|
titleId = _ref.titleId,
|
|
13193
|
-
props = _objectWithoutProperties$
|
|
13194
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13299
|
+
props = _objectWithoutProperties$1j(_ref, _excluded$1S);
|
|
13300
|
+
return /*#__PURE__*/createElement("svg", _extends$1k({
|
|
13195
13301
|
viewBox: "0 0 152 139",
|
|
13196
13302
|
fill: "none",
|
|
13197
13303
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13198
13304
|
"aria-labelledby": titleId
|
|
13199
13305
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
13200
13306
|
id: titleId
|
|
13201
|
-
}, title) : null, _g$
|
|
13307
|
+
}, title) : null, _g$i || (_g$i = /*#__PURE__*/createElement("g", {
|
|
13202
13308
|
clipPath: "url(#logo-openebooks-with-text-color_svg__clip0_53471_41905)"
|
|
13203
13309
|
}, /*#__PURE__*/createElement("path", {
|
|
13204
13310
|
d: "M130.79 29.541H20.99a5.667 5.667 0 0 0-5.673 5.662v98.138a5.667 5.667 0 0 0 5.673 5.661h109.8a5.667 5.667 0 0 0 5.672-5.661V35.202a5.666 5.666 0 0 0-5.672-5.66Z",
|
|
@@ -13237,23 +13343,23 @@ var SvgLogoOpenebooksWithTextColor = function SvgLogoOpenebooksWithTextColor(_re
|
|
|
13237
13343
|
})))));
|
|
13238
13344
|
};
|
|
13239
13345
|
|
|
13240
|
-
var _g$
|
|
13241
|
-
var _excluded$
|
|
13242
|
-
function _extends$
|
|
13243
|
-
function _objectWithoutProperties$
|
|
13244
|
-
function _objectWithoutPropertiesLoose$
|
|
13346
|
+
var _g$j, _defs$6;
|
|
13347
|
+
var _excluded$1T = ["title", "titleId"];
|
|
13348
|
+
function _extends$1l() { _extends$1l = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1l.apply(this, arguments); }
|
|
13349
|
+
function _objectWithoutProperties$1k(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1l(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13350
|
+
function _objectWithoutPropertiesLoose$1l(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13245
13351
|
var SvgLogoOpenebooksWithTextNegative = function SvgLogoOpenebooksWithTextNegative(_ref) {
|
|
13246
13352
|
var title = _ref.title,
|
|
13247
13353
|
titleId = _ref.titleId,
|
|
13248
|
-
props = _objectWithoutProperties$
|
|
13249
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13354
|
+
props = _objectWithoutProperties$1k(_ref, _excluded$1T);
|
|
13355
|
+
return /*#__PURE__*/createElement("svg", _extends$1l({
|
|
13250
13356
|
viewBox: "0 0 155 139",
|
|
13251
13357
|
fill: "none",
|
|
13252
13358
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13253
13359
|
"aria-labelledby": titleId
|
|
13254
13360
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
13255
13361
|
id: titleId
|
|
13256
|
-
}, title) : null, _g$
|
|
13362
|
+
}, title) : null, _g$j || (_g$j = /*#__PURE__*/createElement("g", {
|
|
13257
13363
|
clipPath: "url(#logo-openebooks-with-text-negative_svg__clip0_54498_42322)"
|
|
13258
13364
|
}, /*#__PURE__*/createElement("path", {
|
|
13259
13365
|
d: "M78.087 9.5C36.26-12.024 1.802 9.59 0 10.747v110.438c1.074-1.272 5.518-6.158 15.394-9.572v21.596a5.805 5.805 0 0 0 5.79 5.791h112.114a5.808 5.808 0 0 0 5.79-5.791v-22.206c11.82 3.711 15.912 9.885 15.912 9.885V10.797S121.052-12.61 78.087 9.5Z",
|
|
@@ -13319,15 +13425,15 @@ var SvgLogoOpenebooksWithTextNegative = function SvgLogoOpenebooksWithTextNegati
|
|
|
13319
13425
|
};
|
|
13320
13426
|
|
|
13321
13427
|
var _path$10;
|
|
13322
|
-
var _excluded$
|
|
13323
|
-
function _extends$
|
|
13324
|
-
function _objectWithoutProperties$
|
|
13325
|
-
function _objectWithoutPropertiesLoose$
|
|
13428
|
+
var _excluded$1U = ["title", "titleId"];
|
|
13429
|
+
function _extends$1m() { _extends$1m = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1m.apply(this, arguments); }
|
|
13430
|
+
function _objectWithoutProperties$1l(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1m(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13431
|
+
function _objectWithoutPropertiesLoose$1m(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13326
13432
|
var SvgLogoQplAltBlack = function SvgLogoQplAltBlack(_ref) {
|
|
13327
13433
|
var title = _ref.title,
|
|
13328
13434
|
titleId = _ref.titleId,
|
|
13329
|
-
props = _objectWithoutProperties$
|
|
13330
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13435
|
+
props = _objectWithoutProperties$1l(_ref, _excluded$1U);
|
|
13436
|
+
return /*#__PURE__*/createElement("svg", _extends$1m({
|
|
13331
13437
|
viewBox: "0 0 250 134",
|
|
13332
13438
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13333
13439
|
"aria-labelledby": titleId
|
|
@@ -13339,15 +13445,15 @@ var SvgLogoQplAltBlack = function SvgLogoQplAltBlack(_ref) {
|
|
|
13339
13445
|
};
|
|
13340
13446
|
|
|
13341
13447
|
var _path$11;
|
|
13342
|
-
var _excluded$
|
|
13343
|
-
function _extends$
|
|
13344
|
-
function _objectWithoutProperties$
|
|
13345
|
-
function _objectWithoutPropertiesLoose$
|
|
13448
|
+
var _excluded$1V = ["title", "titleId"];
|
|
13449
|
+
function _extends$1n() { _extends$1n = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1n.apply(this, arguments); }
|
|
13450
|
+
function _objectWithoutProperties$1m(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1n(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13451
|
+
function _objectWithoutPropertiesLoose$1n(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13346
13452
|
var SvgLogoQplAltWhite = function SvgLogoQplAltWhite(_ref) {
|
|
13347
13453
|
var title = _ref.title,
|
|
13348
13454
|
titleId = _ref.titleId,
|
|
13349
|
-
props = _objectWithoutProperties$
|
|
13350
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13455
|
+
props = _objectWithoutProperties$1m(_ref, _excluded$1V);
|
|
13456
|
+
return /*#__PURE__*/createElement("svg", _extends$1n({
|
|
13351
13457
|
viewBox: "0 0 250 134",
|
|
13352
13458
|
fill: "#fff",
|
|
13353
13459
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -13360,15 +13466,15 @@ var SvgLogoQplAltWhite = function SvgLogoQplAltWhite(_ref) {
|
|
|
13360
13466
|
};
|
|
13361
13467
|
|
|
13362
13468
|
var _path$12, _path2$q, _path3$h, _path4$6, _path5$4;
|
|
13363
|
-
var _excluded$
|
|
13364
|
-
function _extends$
|
|
13365
|
-
function _objectWithoutProperties$
|
|
13366
|
-
function _objectWithoutPropertiesLoose$
|
|
13469
|
+
var _excluded$1W = ["title", "titleId"];
|
|
13470
|
+
function _extends$1o() { _extends$1o = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1o.apply(this, arguments); }
|
|
13471
|
+
function _objectWithoutProperties$1n(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1o(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13472
|
+
function _objectWithoutPropertiesLoose$1o(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13367
13473
|
var SvgLogoQplBlack = function SvgLogoQplBlack(_ref) {
|
|
13368
13474
|
var title = _ref.title,
|
|
13369
13475
|
titleId = _ref.titleId,
|
|
13370
|
-
props = _objectWithoutProperties$
|
|
13371
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13476
|
+
props = _objectWithoutProperties$1n(_ref, _excluded$1W);
|
|
13477
|
+
return /*#__PURE__*/createElement("svg", _extends$1o({
|
|
13372
13478
|
viewBox: "0 0 320 43",
|
|
13373
13479
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13374
13480
|
"aria-labelledby": titleId
|
|
@@ -13395,23 +13501,23 @@ var SvgLogoQplBlack = function SvgLogoQplBlack(_ref) {
|
|
|
13395
13501
|
})));
|
|
13396
13502
|
};
|
|
13397
13503
|
|
|
13398
|
-
var _g$
|
|
13399
|
-
var _excluded$
|
|
13400
|
-
function _extends$
|
|
13401
|
-
function _objectWithoutProperties$
|
|
13402
|
-
function _objectWithoutPropertiesLoose$
|
|
13504
|
+
var _g$k, _defs$7;
|
|
13505
|
+
var _excluded$1X = ["title", "titleId"];
|
|
13506
|
+
function _extends$1p() { _extends$1p = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1p.apply(this, arguments); }
|
|
13507
|
+
function _objectWithoutProperties$1o(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1p(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13508
|
+
function _objectWithoutPropertiesLoose$1p(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13403
13509
|
var SvgLogoQplColor = function SvgLogoQplColor(_ref) {
|
|
13404
13510
|
var title = _ref.title,
|
|
13405
13511
|
titleId = _ref.titleId,
|
|
13406
|
-
props = _objectWithoutProperties$
|
|
13407
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13512
|
+
props = _objectWithoutProperties$1o(_ref, _excluded$1X);
|
|
13513
|
+
return /*#__PURE__*/createElement("svg", _extends$1p({
|
|
13408
13514
|
viewBox: "0 0 355 48",
|
|
13409
13515
|
fill: "none",
|
|
13410
13516
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13411
13517
|
"aria-labelledby": titleId
|
|
13412
13518
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
13413
13519
|
id: titleId
|
|
13414
|
-
}, title) : null, _g$
|
|
13520
|
+
}, title) : null, _g$k || (_g$k = /*#__PURE__*/createElement("g", {
|
|
13415
13521
|
clipPath: "url(#logo-qpl-color_svg__a)"
|
|
13416
13522
|
}, /*#__PURE__*/createElement("path", {
|
|
13417
13523
|
fillRule: "evenodd",
|
|
@@ -13451,15 +13557,15 @@ var SvgLogoQplColor = function SvgLogoQplColor(_ref) {
|
|
|
13451
13557
|
};
|
|
13452
13558
|
|
|
13453
13559
|
var _path$13, _path2$r, _path3$i, _path4$7, _path5$5;
|
|
13454
|
-
var _excluded$
|
|
13455
|
-
function _extends$
|
|
13456
|
-
function _objectWithoutProperties$
|
|
13457
|
-
function _objectWithoutPropertiesLoose$
|
|
13560
|
+
var _excluded$1Y = ["title", "titleId"];
|
|
13561
|
+
function _extends$1q() { _extends$1q = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1q.apply(this, arguments); }
|
|
13562
|
+
function _objectWithoutProperties$1p(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1q(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13563
|
+
function _objectWithoutPropertiesLoose$1q(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13458
13564
|
var SvgLogoQplWhite = function SvgLogoQplWhite(_ref) {
|
|
13459
13565
|
var title = _ref.title,
|
|
13460
13566
|
titleId = _ref.titleId,
|
|
13461
|
-
props = _objectWithoutProperties$
|
|
13462
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13567
|
+
props = _objectWithoutProperties$1p(_ref, _excluded$1Y);
|
|
13568
|
+
return /*#__PURE__*/createElement("svg", _extends$1q({
|
|
13463
13569
|
viewBox: "0 0 320 43",
|
|
13464
13570
|
fill: "#fff",
|
|
13465
13571
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -13488,15 +13594,15 @@ var SvgLogoQplWhite = function SvgLogoQplWhite(_ref) {
|
|
|
13488
13594
|
};
|
|
13489
13595
|
|
|
13490
13596
|
var _path$14, _path2$s, _path3$j, _path4$8, _path5$6;
|
|
13491
|
-
var _excluded$
|
|
13492
|
-
function _extends$
|
|
13493
|
-
function _objectWithoutProperties$
|
|
13494
|
-
function _objectWithoutPropertiesLoose$
|
|
13597
|
+
var _excluded$1Z = ["title", "titleId"];
|
|
13598
|
+
function _extends$1r() { _extends$1r = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1r.apply(this, arguments); }
|
|
13599
|
+
function _objectWithoutProperties$1q(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1r(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13600
|
+
function _objectWithoutPropertiesLoose$1r(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13495
13601
|
var SvgLogoReservoirIconColor = function SvgLogoReservoirIconColor(_ref) {
|
|
13496
13602
|
var title = _ref.title,
|
|
13497
13603
|
titleId = _ref.titleId,
|
|
13498
|
-
props = _objectWithoutProperties$
|
|
13499
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13604
|
+
props = _objectWithoutProperties$1q(_ref, _excluded$1Z);
|
|
13605
|
+
return /*#__PURE__*/createElement("svg", _extends$1r({
|
|
13500
13606
|
viewBox: "0 0 105 129",
|
|
13501
13607
|
fill: "none",
|
|
13502
13608
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -13521,23 +13627,23 @@ var SvgLogoReservoirIconColor = function SvgLogoReservoirIconColor(_ref) {
|
|
|
13521
13627
|
})));
|
|
13522
13628
|
};
|
|
13523
13629
|
|
|
13524
|
-
var _g$
|
|
13525
|
-
var _excluded$
|
|
13526
|
-
function _extends$
|
|
13527
|
-
function _objectWithoutProperties$
|
|
13528
|
-
function _objectWithoutPropertiesLoose$
|
|
13630
|
+
var _g$l;
|
|
13631
|
+
var _excluded$1_ = ["title", "titleId"];
|
|
13632
|
+
function _extends$1s() { _extends$1s = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1s.apply(this, arguments); }
|
|
13633
|
+
function _objectWithoutProperties$1r(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1s(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13634
|
+
function _objectWithoutPropertiesLoose$1s(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13529
13635
|
var SvgLogoReservoirVerticalColor = function SvgLogoReservoirVerticalColor(_ref) {
|
|
13530
13636
|
var title = _ref.title,
|
|
13531
13637
|
titleId = _ref.titleId,
|
|
13532
|
-
props = _objectWithoutProperties$
|
|
13533
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13638
|
+
props = _objectWithoutProperties$1r(_ref, _excluded$1_);
|
|
13639
|
+
return /*#__PURE__*/createElement("svg", _extends$1s({
|
|
13534
13640
|
viewBox: "0 0 234 261",
|
|
13535
13641
|
fill: "none",
|
|
13536
13642
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13537
13643
|
"aria-labelledby": titleId
|
|
13538
13644
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
13539
13645
|
id: titleId
|
|
13540
|
-
}, title) : null, _g$
|
|
13646
|
+
}, title) : null, _g$l || (_g$l = /*#__PURE__*/createElement("g", {
|
|
13541
13647
|
clipPath: "url(#logo-reservoir-vertical-color_svg__clip0_362_388)"
|
|
13542
13648
|
}, /*#__PURE__*/createElement("path", {
|
|
13543
13649
|
d: "M3.63 181.54H17.3a14.33 14.33 0 0 1 6.56 1.4 10.237 10.237 0 0 1 4.3 3.93 11.481 11.481 0 0 1 1.52 6v.06a11.16 11.16 0 0 1-2.22 7 10.896 10.896 0 0 1-6.08 3.92l9.4 16.46h-4.27l-8.92-15.9c-.13.011-.26.011-.39 0H7.28v15.87H3.63v-38.74ZM17 201.17a9.403 9.403 0 0 0 6.57-2.17 7.75 7.75 0 0 0 2.35-6 7.624 7.624 0 0 0-2.42-6 9.677 9.677 0 0 0-6.66-2.14H7.28v16.35l9.72-.04ZM41.15 219a11.557 11.557 0 0 1-4.39-5 17.6 17.6 0 0 1-1.54-7.64 17.739 17.739 0 0 1 1.54-7.65 11.911 11.911 0 0 1 4.34-5.08 11.786 11.786 0 0 1 6.52-1.8 11.809 11.809 0 0 1 6.46 1.73 11.392 11.392 0 0 1 4.22 4.88 16.998 16.998 0 0 1 1.49 7.33v1.4H37v-2.82h21.07l-1.8 2.55v-1.35a13.449 13.449 0 0 0-1.11-5.78 8.22 8.22 0 0 0-3.06-3.56 8.43 8.43 0 0 0-12.17 3.64 13.048 13.048 0 0 0-1.14 5.7v1.35a13.422 13.422 0 0 0 1.14 5.8 8.37 8.37 0 0 0 3.21 3.65 9.162 9.162 0 0 0 4.86 1.28 9.927 9.927 0 0 0 3.65-.63 7.162 7.162 0 0 0 2.69-1.78 6.86 6.86 0 0 0 1.53-2.69l.08-.24h3.49v.27a9.678 9.678 0 0 1-1.44 3.29c-.66 1.02-1.5 1.911-2.48 2.63a11.782 11.782 0 0 1-3.44 1.72c-1.358.41-2.771.612-4.19.6a12.665 12.665 0 0 1-6.74-1.8ZM70.65 219.74a9.361 9.361 0 0 1-3.75-2.93 8.558 8.558 0 0 1-1.66-4.33v-.25h3.52v.25a6.002 6.002 0 0 0 2.34 3.88 8.222 8.222 0 0 0 5 1.43 10.21 10.21 0 0 0 3.69-.59 5.24 5.24 0 0 0 2.39-1.7c.56-.739.86-1.643.85-2.57A3.812 3.812 0 0 0 82 210a8.8 8.8 0 0 0-4-1.75l-4.22-1a12.702 12.702 0 0 1-5.86-2.76 6.125 6.125 0 0 1-1.92-4.66 6.899 6.899 0 0 1 1.27-4.12 8.552 8.552 0 0 1 3.52-2.81 12.281 12.281 0 0 1 5.14-1 11.883 11.883 0 0 1 5.2 1.06 8.902 8.902 0 0 1 3.52 2.93 8.593 8.593 0 0 1 1.49 4.28v.3H82.8v-.19a5.802 5.802 0 0 0-2.11-3.91 7.231 7.231 0 0 0-4.69-1.51 8.543 8.543 0 0 0-3.33.6 5.081 5.081 0 0 0-2.2 1.7 4.18 4.18 0 0 0-.78 2.51 3.567 3.567 0 0 0 1.21 2.77 9.203 9.203 0 0 0 4 1.77l4.19 1c2.8.667 4.783 1.583 5.95 2.75a6.33 6.33 0 0 1 1.76 4.68 6.859 6.859 0 0 1-1.37 4.22 9.117 9.117 0 0 1-3.75 2.86 13.45 13.45 0 0 1-5.43 1 13.224 13.224 0 0 1-5.6-.98ZM99.15 219a11.557 11.557 0 0 1-4.39-5 17.599 17.599 0 0 1-1.55-7.64 17.74 17.74 0 0 1 1.55-7.65 12.282 12.282 0 0 1 17.32-5.15 11.367 11.367 0 0 1 4.21 4.88 16.841 16.841 0 0 1 1.49 7.33v1.4H95v-2.82h21.09l-1.8 2.55v-1.35a13.31 13.31 0 0 0-1.12-5.78 8.094 8.094 0 0 0-3.06-3.56 8.42 8.42 0 0 0-6.909-.95 8.408 8.408 0 0 0-5.251 4.59 12.91 12.91 0 0 0-1.15 5.7v1.35a13.269 13.269 0 0 0 1.15 5.8 8.41 8.41 0 0 0 3.2 3.65 9.169 9.169 0 0 0 4.87 1.26 10.014 10.014 0 0 0 3.65-.63 7.124 7.124 0 0 0 2.68-1.78 6.62 6.62 0 0 0 1.53-2.69l.08-.24h3.5l-.06.27a9.882 9.882 0 0 1-1.35 3.29 10.197 10.197 0 0 1-2.49 2.63 11.685 11.685 0 0 1-3.44 1.72 13.99 13.99 0 0 1-4.19.6 12.614 12.614 0 0 1-6.78-1.78ZM125.67 192.36h3.55v5h.08a7.999 7.999 0 0 1 2.54-4 6.54 6.54 0 0 1 4.33-1.48 8.024 8.024 0 0 1 2.21.32v3.47a4.558 4.558 0 0 0-1-.28 9.786 9.786 0 0 0-1.64-.12 5.997 5.997 0 0 0-5.68 3.65 9.813 9.813 0 0 0-.79 4.11v17.29h-3.55l-.05-27.96ZM143.52 192.36h3.73l8.49 24.22h.1l8.52-24.22H168l-10.37 27.93h-3.76l-10.35-27.93ZM177.41 219a11.85 11.85 0 0 1-4.47-5 17.174 17.174 0 0 1-1.6-7.68v-.06a16.99 16.99 0 0 1 1.6-7.66 11.775 11.775 0 0 1 4.47-5 13.457 13.457 0 0 1 13.31 0 11.994 11.994 0 0 1 4.47 5 17.067 17.067 0 0 1 1.61 7.68v.06a17.139 17.139 0 0 1-1.61 7.69 12.099 12.099 0 0 1-4.46 5 12.366 12.366 0 0 1-6.66 1.77 12.74 12.74 0 0 1-6.66-1.8Zm11.47-2.73a8.821 8.821 0 0 0 3.17-3.89 14.997 14.997 0 0 0 1.13-6.07v-.06a14.877 14.877 0 0 0-1.13-6.07 8.728 8.728 0 0 0-3.19-3.85A8.63 8.63 0 0 0 184 195a8.497 8.497 0 0 0-4.75 1.34 8.892 8.892 0 0 0-3.18 3.87 14.599 14.599 0 0 0-1.14 6v.06a14.813 14.813 0 0 0 1.14 6.07 8.837 8.837 0 0 0 3.18 3.89 9.254 9.254 0 0 0 9.59 0l.04.04ZM204 186.63a2.288 2.288 0 0 1-.68-1.68 2.206 2.206 0 0 1 .68-1.65 2.354 2.354 0 0 1 2.566-.512c.286.119.546.293.764.512a2.217 2.217 0 0 1 .67 1.7 2.354 2.354 0 0 1-1.446 2.159 2.36 2.36 0 0 1-2.554-.479v-.05Zm-.12 5.73h3.54v27.93h-3.54v-27.93ZM215.8 192.36h3.55v5h.08a8.007 8.007 0 0 1 2.53-4 6.579 6.579 0 0 1 4.34-1.48c.432-.002.864.035 1.29.11.308.05.612.12.91.21v3.47a4.25 4.25 0 0 0-1-.28 10.002 10.002 0 0 0-1.64-.12 5.927 5.927 0 0 0-5.68 3.65 9.813 9.813 0 0 0-.79 4.11v17.29h-3.59v-27.96ZM3.28 235.89H5.2l8.24 11.83-2.2-1.95h.9v-9.88h2.06v13.39h-1.92l-8.23-11.85 2.2 1.94h-.9v9.91H3.28v-13.39ZM22 243.79l-4.71-7.9h2.31l3.42 5.9h.06l3.41-5.9h2.32l-4.72 7.9v5.49H22v-5.49ZM31.86 235.89h2.08v13.39h-2.08v-13.39Zm1 7.07h3.43a2.9 2.9 0 0 0 2.09-.7 2.513 2.513 0 0 0 .75-1.94 2.541 2.541 0 0 0-.75-2 3.002 3.002 0 0 0-2.09-.7H32.9v-1.75h4a4.815 4.815 0 0 1 2.32.55c.64.376 1.163.923 1.51 1.58a4.54 4.54 0 0 1 .57 2.3 4.54 4.54 0 0 1-.57 2.3 4.004 4.004 0 0 1-1.56 1.55 4.71 4.71 0 0 1-2.32.55h-4l.01-1.74ZM44.71 235.89h2.08v11.59H53v1.8h-8.29v-13.39ZM64.88 235.89h4.72a7.002 7.002 0 0 1 3.41.78 5.292 5.292 0 0 1 2.17 2.27 7.91 7.91 0 0 1 .76 3.6 7.901 7.901 0 0 1-.76 3.62 5.257 5.257 0 0 1-2.18 2.33 6.999 6.999 0 0 1-3.42.79h-4.7v-13.39Zm4.52 11.59c.84.026 1.671-.17 2.41-.57a3.608 3.608 0 0 0 1.49-1.66 6.298 6.298 0 0 0 .51-2.67 6.28 6.28 0 0 0-.51-2.66 3.761 3.761 0 0 0-1.5-1.65 4.786 4.786 0 0 0-2.4-.56H67v9.79l2.4-.02ZM79.52 235.89H88v1.8h-6.4v3.9h6.07v1.74H81.6v4.15H88v1.8h-8.5l.02-13.39ZM93.69 249.05a4.238 4.238 0 0 1-1.79-1.31 3.652 3.652 0 0 1-.74-2v-.14h2v.12c.054.4.237.772.52 1.06.306.315.683.552 1.1.69a4.79 4.79 0 0 0 1.58.24 4.24 4.24 0 0 0 1.55-.25 2.31 2.31 0 0 0 1-.71 1.78 1.78 0 0 0 .35-1.09 1.558 1.558 0 0 0-.58-1.28 4.489 4.489 0 0 0-1.91-.77l-1.46-.3a6.003 6.003 0 0 1-2.93-1.34 3.202 3.202 0 0 1-1-2.41c-.01-.717.21-1.418.63-2a3.996 3.996 0 0 1 1.71-1.35 6.06 6.06 0 0 1 2.52-.49 6.14 6.14 0 0 1 2.46.47c.666.285 1.245.74 1.68 1.32.425.583.668 1.279.7 2v.15h-2v-.12a2 2 0 0 0-.46-1.07 2.42 2.42 0 0 0-1-.69 4.412 4.412 0 0 0-2.84 0 2.126 2.126 0 0 0-.94.69 1.592 1.592 0 0 0-.34 1 1.49 1.49 0 0 0 .6 1.23c.552.378 1.18.631 1.84.74l1.46.32a6.21 6.21 0 0 1 3 1.33 3.186 3.186 0 0 1 .94 2.44 3.65 3.65 0 0 1-.62 2.12 3.901 3.901 0 0 1-1.67 1.35 6.837 6.837 0 0 1-2.73.49 7.083 7.083 0 0 1-2.63-.44ZM105.26 235.89h2.08v13.39h-2.08v-13.39ZM113.85 248.65a5.64 5.64 0 0 1-2.16-2.41 8.373 8.373 0 0 1-.77-3.72 7.998 7.998 0 0 1 .76-3.64 5.644 5.644 0 0 1 2.16-2.37 6.421 6.421 0 0 1 3.31-.83 6.26 6.26 0 0 1 2.72.55 5.11 5.11 0 0 1 1.91 1.51 5.518 5.518 0 0 1 1 2.17v.16h-2.08v-.11a3.676 3.676 0 0 0-1.31-1.8 3.742 3.742 0 0 0-2.2-.64 4 4 0 0 0-2.2.6 3.697 3.697 0 0 0-1.41 1.71 6.644 6.644 0 0 0-.49 2.69 6.809 6.809 0 0 0 .5 2.76A4.005 4.005 0 0 0 115 247c.656.418 1.422.63 2.2.61a4.172 4.172 0 0 0 1.92-.42 3.241 3.241 0 0 0 1.3-1.19 3.479 3.479 0 0 0 .48-1.78V244h-3.51v-1.7h5.57v1.37a6.56 6.56 0 0 1-.69 3.11 4.686 4.686 0 0 1-2 2 6.498 6.498 0 0 1-3.11.69 6.247 6.247 0 0 1-3.31-.82ZM126.56 235.89h1.92l8.24 11.83-2.2-1.95h.9v-9.88h2.07v13.39h-1.92l-8.24-11.85 2.2 1.94h-.9v9.91h-2.07v-13.39ZM152 249.05a4.24 4.24 0 0 1-1.79-1.31 3.569 3.569 0 0 1-.74-2v-.14h2v.12c.055.398.233.769.51 1.06.311.313.691.55 1.11.69.51.168 1.044.249 1.58.24a4.24 4.24 0 0 0 1.55-.25 2.311 2.311 0 0 0 1-.71 1.78 1.78 0 0 0 .35-1.09 1.558 1.558 0 0 0-.58-1.28 4.486 4.486 0 0 0-1.91-.77l-1.46-.3a6 6 0 0 1-2.93-1.34 3.208 3.208 0 0 1-1-2.41 3.417 3.417 0 0 1 .64-2 3.995 3.995 0 0 1 1.71-1.35 6.673 6.673 0 0 1 5 0 4.1 4.1 0 0 1 1.69 1.32c.425.583.668 1.279.7 2v.15h-2v-.12a2.003 2.003 0 0 0-.46-1.07 2.416 2.416 0 0 0-1-.69 4.412 4.412 0 0 0-2.84 0 2.125 2.125 0 0 0-.94.69 1.59 1.59 0 0 0-.34 1 1.49 1.49 0 0 0 .6 1.23c.552.378 1.18.631 1.84.74l1.46.32a6.212 6.212 0 0 1 3 1.33 3.215 3.215 0 0 1 .94 2.44 3.65 3.65 0 0 1-.62 2.12 3.895 3.895 0 0 1-1.76 1.38 6.855 6.855 0 0 1-2.73.49 7.076 7.076 0 0 1-2.58-.49ZM166.38 243.79l-4.72-7.9H164l3.43 5.9 3.42-5.9h2.32l-4.73 7.9v5.49h-2.08l.02-5.49ZM177.85 249.05a4.24 4.24 0 0 1-1.79-1.31 3.652 3.652 0 0 1-.74-2v-.14h2v.12c.059.399.241.769.52 1.06.308.317.689.554 1.11.69a4.73 4.73 0 0 0 1.57.24 4.24 4.24 0 0 0 1.55-.25 2.311 2.311 0 0 0 1-.71c.241-.311.368-.696.36-1.09a1.583 1.583 0 0 0-.58-1.28 4.607 4.607 0 0 0-1.92-.77l-1.46-.3a6.057 6.057 0 0 1-2.93-1.34 3.206 3.206 0 0 1-1-2.41 3.343 3.343 0 0 1 .63-2 3.995 3.995 0 0 1 1.71-1.35 6.702 6.702 0 0 1 5 0 4.238 4.238 0 0 1 1.69 1.32 3.74 3.74 0 0 1 .69 2v.15h-2v-.12a2.003 2.003 0 0 0-.46-1.07 2.416 2.416 0 0 0-1-.69 4.412 4.412 0 0 0-2.84 0 2.18 2.18 0 0 0-.94.69 1.65 1.65 0 0 0-.34 1 1.49 1.49 0 0 0 .6 1.23c.552.378 1.18.631 1.84.74l1.46.32a6.163 6.163 0 0 1 3 1.33 3.193 3.193 0 0 1 .94 2.44 3.58 3.58 0 0 1-.62 2.12 3.853 3.853 0 0 1-1.76 1.38 6.838 6.838 0 0 1-2.73.49 7.059 7.059 0 0 1-2.56-.49ZM192.36 237.69h-4.1v-1.8h10.27v1.8h-4.09v11.59h-2.08v-11.59ZM201.82 235.89h8.5v1.8h-6.42v3.9h6.1v1.74h-6.1v4.15h6.42v1.8h-8.5v-13.39ZM214.06 235.89h2.4l4.33 10.68h.06l4.33-10.68h2.41v13.39h-1.9v-9.87h-1l2.17-3.15-5.31 13h-1.54l-5.31-13 2.17 3.15H216v9.87h-1.9l-.04-13.39Z",
|
|
@@ -13555,15 +13661,15 @@ var SvgLogoReservoirVerticalColor = function SvgLogoReservoirVerticalColor(_ref)
|
|
|
13555
13661
|
};
|
|
13556
13662
|
|
|
13557
13663
|
var _path$15, _path2$t, _path3$k, _path4$9, _path5$7;
|
|
13558
|
-
var _excluded$
|
|
13559
|
-
function _extends$
|
|
13560
|
-
function _objectWithoutProperties$
|
|
13561
|
-
function _objectWithoutPropertiesLoose$
|
|
13664
|
+
var _excluded$1$ = ["title", "titleId"];
|
|
13665
|
+
function _extends$1t() { _extends$1t = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1t.apply(this, arguments); }
|
|
13666
|
+
function _objectWithoutProperties$1s(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1t(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13667
|
+
function _objectWithoutPropertiesLoose$1t(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13562
13668
|
var SvgLogoSchomburgBlack = function SvgLogoSchomburgBlack(_ref) {
|
|
13563
13669
|
var title = _ref.title,
|
|
13564
13670
|
titleId = _ref.titleId,
|
|
13565
|
-
props = _objectWithoutProperties$
|
|
13566
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13671
|
+
props = _objectWithoutProperties$1s(_ref, _excluded$1$);
|
|
13672
|
+
return /*#__PURE__*/createElement("svg", _extends$1t({
|
|
13567
13673
|
viewBox: "0 0 185 79",
|
|
13568
13674
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13569
13675
|
"aria-labelledby": titleId
|
|
@@ -13583,15 +13689,15 @@ var SvgLogoSchomburgBlack = function SvgLogoSchomburgBlack(_ref) {
|
|
|
13583
13689
|
};
|
|
13584
13690
|
|
|
13585
13691
|
var _path$16, _path2$u, _path3$l, _path4$a, _path5$8;
|
|
13586
|
-
var _excluded$
|
|
13587
|
-
function _extends$
|
|
13588
|
-
function _objectWithoutProperties$
|
|
13589
|
-
function _objectWithoutPropertiesLoose$
|
|
13692
|
+
var _excluded$20 = ["title", "titleId"];
|
|
13693
|
+
function _extends$1u() { _extends$1u = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1u.apply(this, arguments); }
|
|
13694
|
+
function _objectWithoutProperties$1t(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1u(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13695
|
+
function _objectWithoutPropertiesLoose$1u(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13590
13696
|
var SvgLogoSchomburgCircleBlack = function SvgLogoSchomburgCircleBlack(_ref) {
|
|
13591
13697
|
var title = _ref.title,
|
|
13592
13698
|
titleId = _ref.titleId,
|
|
13593
|
-
props = _objectWithoutProperties$
|
|
13594
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13699
|
+
props = _objectWithoutProperties$1t(_ref, _excluded$20);
|
|
13700
|
+
return /*#__PURE__*/createElement("svg", _extends$1u({
|
|
13595
13701
|
viewBox: "0 0 67 67",
|
|
13596
13702
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13597
13703
|
"aria-labelledby": titleId
|
|
@@ -13611,15 +13717,15 @@ var SvgLogoSchomburgCircleBlack = function SvgLogoSchomburgCircleBlack(_ref) {
|
|
|
13611
13717
|
};
|
|
13612
13718
|
|
|
13613
13719
|
var _path$17, _path2$v, _path3$m, _path4$b, _path5$9;
|
|
13614
|
-
var _excluded$
|
|
13615
|
-
function _extends$
|
|
13616
|
-
function _objectWithoutProperties$
|
|
13617
|
-
function _objectWithoutPropertiesLoose$
|
|
13720
|
+
var _excluded$21 = ["title", "titleId"];
|
|
13721
|
+
function _extends$1v() { _extends$1v = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1v.apply(this, arguments); }
|
|
13722
|
+
function _objectWithoutProperties$1u(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1v(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13723
|
+
function _objectWithoutPropertiesLoose$1v(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13618
13724
|
var SvgLogoSchomburgCircleColor = function SvgLogoSchomburgCircleColor(_ref) {
|
|
13619
13725
|
var title = _ref.title,
|
|
13620
13726
|
titleId = _ref.titleId,
|
|
13621
|
-
props = _objectWithoutProperties$
|
|
13622
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13727
|
+
props = _objectWithoutProperties$1u(_ref, _excluded$21);
|
|
13728
|
+
return /*#__PURE__*/createElement("svg", _extends$1v({
|
|
13623
13729
|
viewBox: "0 0 67 67",
|
|
13624
13730
|
fill: "none",
|
|
13625
13731
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -13645,15 +13751,15 @@ var SvgLogoSchomburgCircleColor = function SvgLogoSchomburgCircleColor(_ref) {
|
|
|
13645
13751
|
};
|
|
13646
13752
|
|
|
13647
13753
|
var _path$18, _path2$w, _path3$n, _path4$c, _path5$a;
|
|
13648
|
-
var _excluded$
|
|
13649
|
-
function _extends$
|
|
13650
|
-
function _objectWithoutProperties$
|
|
13651
|
-
function _objectWithoutPropertiesLoose$
|
|
13754
|
+
var _excluded$22 = ["title", "titleId"];
|
|
13755
|
+
function _extends$1w() { _extends$1w = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1w.apply(this, arguments); }
|
|
13756
|
+
function _objectWithoutProperties$1v(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1w(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13757
|
+
function _objectWithoutPropertiesLoose$1w(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13652
13758
|
var SvgLogoSchomburgCircleWhite = function SvgLogoSchomburgCircleWhite(_ref) {
|
|
13653
13759
|
var title = _ref.title,
|
|
13654
13760
|
titleId = _ref.titleId,
|
|
13655
|
-
props = _objectWithoutProperties$
|
|
13656
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13761
|
+
props = _objectWithoutProperties$1v(_ref, _excluded$22);
|
|
13762
|
+
return /*#__PURE__*/createElement("svg", _extends$1w({
|
|
13657
13763
|
viewBox: "0 0 67 67",
|
|
13658
13764
|
fill: "#fff",
|
|
13659
13765
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -13674,15 +13780,15 @@ var SvgLogoSchomburgCircleWhite = function SvgLogoSchomburgCircleWhite(_ref) {
|
|
|
13674
13780
|
};
|
|
13675
13781
|
|
|
13676
13782
|
var _path$19, _path2$x, _path3$o, _path4$d, _path5$b, _path6$4, _path7$4;
|
|
13677
|
-
var _excluded$
|
|
13678
|
-
function _extends$
|
|
13679
|
-
function _objectWithoutProperties$
|
|
13680
|
-
function _objectWithoutPropertiesLoose$
|
|
13783
|
+
var _excluded$23 = ["title", "titleId"];
|
|
13784
|
+
function _extends$1x() { _extends$1x = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1x.apply(this, arguments); }
|
|
13785
|
+
function _objectWithoutProperties$1w(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1x(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13786
|
+
function _objectWithoutPropertiesLoose$1x(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13681
13787
|
var SvgLogoSchomburgColor = function SvgLogoSchomburgColor(_ref) {
|
|
13682
13788
|
var title = _ref.title,
|
|
13683
13789
|
titleId = _ref.titleId,
|
|
13684
|
-
props = _objectWithoutProperties$
|
|
13685
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13790
|
+
props = _objectWithoutProperties$1w(_ref, _excluded$23);
|
|
13791
|
+
return /*#__PURE__*/createElement("svg", _extends$1x({
|
|
13686
13792
|
viewBox: "0 0 185 79",
|
|
13687
13793
|
fill: "none",
|
|
13688
13794
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -13714,15 +13820,15 @@ var SvgLogoSchomburgColor = function SvgLogoSchomburgColor(_ref) {
|
|
|
13714
13820
|
};
|
|
13715
13821
|
|
|
13716
13822
|
var _path$1a, _path2$y, _path3$p, _path4$e, _path5$c;
|
|
13717
|
-
var _excluded$
|
|
13718
|
-
function _extends$
|
|
13719
|
-
function _objectWithoutProperties$
|
|
13720
|
-
function _objectWithoutPropertiesLoose$
|
|
13823
|
+
var _excluded$24 = ["title", "titleId"];
|
|
13824
|
+
function _extends$1y() { _extends$1y = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1y.apply(this, arguments); }
|
|
13825
|
+
function _objectWithoutProperties$1x(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1y(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13826
|
+
function _objectWithoutPropertiesLoose$1y(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13721
13827
|
var SvgLogoSchomburgWhite = function SvgLogoSchomburgWhite(_ref) {
|
|
13722
13828
|
var title = _ref.title,
|
|
13723
13829
|
titleId = _ref.titleId,
|
|
13724
|
-
props = _objectWithoutProperties$
|
|
13725
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13830
|
+
props = _objectWithoutProperties$1x(_ref, _excluded$24);
|
|
13831
|
+
return /*#__PURE__*/createElement("svg", _extends$1y({
|
|
13726
13832
|
viewBox: "0 0 185 79",
|
|
13727
13833
|
fill: "#fff",
|
|
13728
13834
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -13742,22 +13848,22 @@ var SvgLogoSchomburgWhite = function SvgLogoSchomburgWhite(_ref) {
|
|
|
13742
13848
|
})));
|
|
13743
13849
|
};
|
|
13744
13850
|
|
|
13745
|
-
var _g$
|
|
13746
|
-
var _excluded$
|
|
13747
|
-
function _extends$
|
|
13748
|
-
function _objectWithoutProperties$
|
|
13749
|
-
function _objectWithoutPropertiesLoose$
|
|
13851
|
+
var _g$m, _defs$8;
|
|
13852
|
+
var _excluded$25 = ["title", "titleId"];
|
|
13853
|
+
function _extends$1z() { _extends$1z = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1z.apply(this, arguments); }
|
|
13854
|
+
function _objectWithoutProperties$1y(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1z(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13855
|
+
function _objectWithoutPropertiesLoose$1z(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13750
13856
|
var SvgLogoSimplyeBlack = function SvgLogoSimplyeBlack(_ref) {
|
|
13751
13857
|
var title = _ref.title,
|
|
13752
13858
|
titleId = _ref.titleId,
|
|
13753
|
-
props = _objectWithoutProperties$
|
|
13754
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13859
|
+
props = _objectWithoutProperties$1y(_ref, _excluded$25);
|
|
13860
|
+
return /*#__PURE__*/createElement("svg", _extends$1z({
|
|
13755
13861
|
viewBox: "0 0 512 148",
|
|
13756
13862
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13757
13863
|
"aria-labelledby": titleId
|
|
13758
13864
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
13759
13865
|
id: titleId
|
|
13760
|
-
}, title) : null, _g$
|
|
13866
|
+
}, title) : null, _g$m || (_g$m = /*#__PURE__*/createElement("g", {
|
|
13761
13867
|
clipPath: "url(#logo-simplye-black_svg__a)"
|
|
13762
13868
|
}, /*#__PURE__*/createElement("path", {
|
|
13763
13869
|
d: "M25.017 34.161c-.504-.616-.54-1.441.215-1.69l52.402-17.328a.944.944 0 0 1 1.24.898.998.998 0 0 0 .93.945c.415.067.836.084 1.254.05a1.001 1.001 0 0 0 1.009-.941l-.003-5.512a1.001 1.001 0 0 0-.558-.914 1.137 1.137 0 0 0-.83-.118L21.98 29.023c-2.26.73-2.663 1.004-2.663 3.432l.02 99.764a.916.916 0 0 0 .039.282c1.212 3.697 5.547 5.389 5.547 5.389 4.256 1.615 6.449 2.064 10.304.727 0 0 .085-99.525.035-99.963a.28.28 0 0 0-.23-.242c-.41-.077-6.716-.21-10.017-4.25"
|
|
@@ -13774,23 +13880,23 @@ var SvgLogoSimplyeBlack = function SvgLogoSimplyeBlack(_ref) {
|
|
|
13774
13880
|
})))));
|
|
13775
13881
|
};
|
|
13776
13882
|
|
|
13777
|
-
var _g$
|
|
13778
|
-
var _excluded$
|
|
13779
|
-
function _extends$
|
|
13780
|
-
function _objectWithoutProperties$
|
|
13781
|
-
function _objectWithoutPropertiesLoose$
|
|
13883
|
+
var _g$n, _defs$9;
|
|
13884
|
+
var _excluded$26 = ["title", "titleId"];
|
|
13885
|
+
function _extends$1A() { _extends$1A = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1A.apply(this, arguments); }
|
|
13886
|
+
function _objectWithoutProperties$1z(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1A(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13887
|
+
function _objectWithoutPropertiesLoose$1A(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13782
13888
|
var SvgLogoSimplyeWhite = function SvgLogoSimplyeWhite(_ref) {
|
|
13783
13889
|
var title = _ref.title,
|
|
13784
13890
|
titleId = _ref.titleId,
|
|
13785
|
-
props = _objectWithoutProperties$
|
|
13786
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13891
|
+
props = _objectWithoutProperties$1z(_ref, _excluded$26);
|
|
13892
|
+
return /*#__PURE__*/createElement("svg", _extends$1A({
|
|
13787
13893
|
viewBox: "0 0 512 148",
|
|
13788
13894
|
fill: "#fff",
|
|
13789
13895
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13790
13896
|
"aria-labelledby": titleId
|
|
13791
13897
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
13792
13898
|
id: titleId
|
|
13793
|
-
}, title) : null, _g$
|
|
13899
|
+
}, title) : null, _g$n || (_g$n = /*#__PURE__*/createElement("g", {
|
|
13794
13900
|
clipPath: "url(#logo-simplye-white_svg__a)"
|
|
13795
13901
|
}, /*#__PURE__*/createElement("path", {
|
|
13796
13902
|
d: "M25.017 34.161c-.504-.616-.54-1.441.215-1.69l52.402-17.328a.944.944 0 0 1 1.24.898.998.998 0 0 0 .93.945c.415.067.836.084 1.254.05a1.001 1.001 0 0 0 1.009-.941l-.003-5.512a1.001 1.001 0 0 0-.558-.914 1.137 1.137 0 0 0-.83-.118L21.98 29.023c-2.26.73-2.663 1.004-2.663 3.432l.02 99.764a.916.916 0 0 0 .039.282c1.212 3.697 5.547 5.389 5.547 5.389 4.256 1.615 6.449 2.064 10.304.727 0 0 .085-99.525.035-99.963a.28.28 0 0 0-.23-.242c-.41-.077-6.716-.21-10.017-4.25"
|
|
@@ -13806,23 +13912,23 @@ var SvgLogoSimplyeWhite = function SvgLogoSimplyeWhite(_ref) {
|
|
|
13806
13912
|
})))));
|
|
13807
13913
|
};
|
|
13808
13914
|
|
|
13809
|
-
var _g$
|
|
13810
|
-
var _excluded$
|
|
13811
|
-
function _extends$
|
|
13812
|
-
function _objectWithoutProperties$
|
|
13813
|
-
function _objectWithoutPropertiesLoose$
|
|
13915
|
+
var _g$o, _defs$a;
|
|
13916
|
+
var _excluded$27 = ["title", "titleId"];
|
|
13917
|
+
function _extends$1B() { _extends$1B = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1B.apply(this, arguments); }
|
|
13918
|
+
function _objectWithoutProperties$1A(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1B(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13919
|
+
function _objectWithoutPropertiesLoose$1B(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13814
13920
|
var SvgLogoSimplyeColor = function SvgLogoSimplyeColor(_ref) {
|
|
13815
13921
|
var title = _ref.title,
|
|
13816
13922
|
titleId = _ref.titleId,
|
|
13817
|
-
props = _objectWithoutProperties$
|
|
13818
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13923
|
+
props = _objectWithoutProperties$1A(_ref, _excluded$27);
|
|
13924
|
+
return /*#__PURE__*/createElement("svg", _extends$1B({
|
|
13819
13925
|
viewBox: "0 0 682 196",
|
|
13820
13926
|
fill: "none",
|
|
13821
13927
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13822
13928
|
"aria-labelledby": titleId
|
|
13823
13929
|
}, props), title ? /*#__PURE__*/createElement("title", {
|
|
13824
13930
|
id: titleId
|
|
13825
|
-
}, title) : null, _g$
|
|
13931
|
+
}, title) : null, _g$o || (_g$o = /*#__PURE__*/createElement("g", {
|
|
13826
13932
|
clipPath: "url(#logo-simplye-color_svg__a)"
|
|
13827
13933
|
}, /*#__PURE__*/createElement("path", {
|
|
13828
13934
|
d: "M32.454 44.821c-.672-.822-.72-1.921.288-2.254l69.866-23.102a1.258 1.258 0 0 1 1.654 1.195c-.001.69.559 1.155 1.242 1.26.528.083 1.108.12 1.67.068.727-.068 1.346-.526 1.346-1.255l-.004-7.35c0-.376-.164-.94-.744-1.218-.324-.158-.735-.28-1.108-.156l-78.258 25.96c-3.012.975-3.55 1.34-3.55 4.576l.027 133.016c0 .126.013.257.052.377 1.616 4.929 7.396 7.184 7.396 7.184 5.674 2.155 8.598 2.753 13.738.969 0 0 .115-132.697.047-133.28a.373.373 0 0 0-.306-.323c-.546-.103-8.954-.279-13.355-5.667",
|
|
@@ -13846,15 +13952,15 @@ var SvgLogoSimplyeColor = function SvgLogoSimplyeColor(_ref) {
|
|
|
13846
13952
|
};
|
|
13847
13953
|
|
|
13848
13954
|
var _path$1b;
|
|
13849
|
-
var _excluded$
|
|
13850
|
-
function _extends$
|
|
13851
|
-
function _objectWithoutProperties$
|
|
13852
|
-
function _objectWithoutPropertiesLoose$
|
|
13955
|
+
var _excluded$28 = ["title", "titleId"];
|
|
13956
|
+
function _extends$1C() { _extends$1C = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1C.apply(this, arguments); }
|
|
13957
|
+
function _objectWithoutProperties$1B(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1C(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13958
|
+
function _objectWithoutPropertiesLoose$1C(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13853
13959
|
var SvgLogoSnflBlack = function SvgLogoSnflBlack(_ref) {
|
|
13854
13960
|
var title = _ref.title,
|
|
13855
13961
|
titleId = _ref.titleId,
|
|
13856
|
-
props = _objectWithoutProperties$
|
|
13857
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13962
|
+
props = _objectWithoutProperties$1B(_ref, _excluded$28);
|
|
13963
|
+
return /*#__PURE__*/createElement("svg", _extends$1C({
|
|
13858
13964
|
viewBox: "0 0 84 111",
|
|
13859
13965
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13860
13966
|
"aria-labelledby": titleId
|
|
@@ -13866,15 +13972,15 @@ var SvgLogoSnflBlack = function SvgLogoSnflBlack(_ref) {
|
|
|
13866
13972
|
};
|
|
13867
13973
|
|
|
13868
13974
|
var _path$1c;
|
|
13869
|
-
var _excluded$
|
|
13870
|
-
function _extends$
|
|
13871
|
-
function _objectWithoutProperties$
|
|
13872
|
-
function _objectWithoutPropertiesLoose$
|
|
13975
|
+
var _excluded$29 = ["title", "titleId"];
|
|
13976
|
+
function _extends$1D() { _extends$1D = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1D.apply(this, arguments); }
|
|
13977
|
+
function _objectWithoutProperties$1C(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1D(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13978
|
+
function _objectWithoutPropertiesLoose$1D(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13873
13979
|
var SvgLogoSnflWhite = function SvgLogoSnflWhite(_ref) {
|
|
13874
13980
|
var title = _ref.title,
|
|
13875
13981
|
titleId = _ref.titleId,
|
|
13876
|
-
props = _objectWithoutProperties$
|
|
13877
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
13982
|
+
props = _objectWithoutProperties$1C(_ref, _excluded$29);
|
|
13983
|
+
return /*#__PURE__*/createElement("svg", _extends$1D({
|
|
13878
13984
|
viewBox: "0 0 84 111",
|
|
13879
13985
|
fill: "#fff",
|
|
13880
13986
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -13887,15 +13993,15 @@ var SvgLogoSnflWhite = function SvgLogoSnflWhite(_ref) {
|
|
|
13887
13993
|
};
|
|
13888
13994
|
|
|
13889
13995
|
var _path$1d, _path2$z, _path3$q, _path4$f, _path5$d, _path6$5, _path7$5, _path8$4, _path9$3, _path10$3, _path11$3, _path12$3, _path13$3, _path14$2, _path15$2, _path16, _path17, _path18, _path19, _path20, _path21, _path22, _path23, _path24, _path25, _path26, _path27, _path28, _path29, _path30, _path31, _path32, _path33, _path34, _path35, _path36, _path37, _path38, _path39, _path40, _path41, _path42, _path43, _path44, _path45, _path46, _path47, _path48, _path49, _path50, _path51, _path52, _path53, _path54, _path55;
|
|
13890
|
-
var _excluded$
|
|
13891
|
-
function _extends$
|
|
13892
|
-
function _objectWithoutProperties$
|
|
13893
|
-
function _objectWithoutPropertiesLoose$
|
|
13996
|
+
var _excluded$2a = ["title", "titleId"];
|
|
13997
|
+
function _extends$1E() { _extends$1E = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1E.apply(this, arguments); }
|
|
13998
|
+
function _objectWithoutProperties$1D(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1E(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
13999
|
+
function _objectWithoutPropertiesLoose$1E(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13894
14000
|
var SvgLogoTreasuresColor = function SvgLogoTreasuresColor(_ref) {
|
|
13895
14001
|
var title = _ref.title,
|
|
13896
14002
|
titleId = _ref.titleId,
|
|
13897
|
-
props = _objectWithoutProperties$
|
|
13898
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
14003
|
+
props = _objectWithoutProperties$1D(_ref, _excluded$2a);
|
|
14004
|
+
return /*#__PURE__*/createElement("svg", _extends$1E({
|
|
13899
14005
|
viewBox: "0 0 324 265",
|
|
13900
14006
|
fill: "none",
|
|
13901
14007
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -14071,15 +14177,15 @@ var SvgLogoTreasuresColor = function SvgLogoTreasuresColor(_ref) {
|
|
|
14071
14177
|
};
|
|
14072
14178
|
|
|
14073
14179
|
var _path$1e, _path2$A, _path3$r, _path4$g, _path5$e, _path6$6, _path7$6, _path8$5, _path9$4, _path10$4, _path11$4, _path12$4, _path13$4, _path14$3, _path15$3, _path16$1, _path17$1, _path18$1, _path19$1, _path20$1, _path21$1, _path22$1, _path23$1, _path24$1, _path25$1, _path26$1, _path27$1, _path28$1, _path29$1, _path30$1, _path31$1, _path32$1, _path33$1, _path34$1, _path35$1, _path36$1, _path37$1, _path38$1, _path39$1, _path40$1, _path41$1, _path42$1, _path43$1, _path44$1, _path45$1, _path46$1, _path47$1, _path48$1, _path49$1, _path50$1, _path51$1, _path52$1, _path53$1, _path54$1, _path55$1;
|
|
14074
|
-
var _excluded$
|
|
14075
|
-
function _extends$
|
|
14076
|
-
function _objectWithoutProperties$
|
|
14077
|
-
function _objectWithoutPropertiesLoose$
|
|
14180
|
+
var _excluded$2b = ["title", "titleId"];
|
|
14181
|
+
function _extends$1F() { _extends$1F = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1F.apply(this, arguments); }
|
|
14182
|
+
function _objectWithoutProperties$1E(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1F(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
14183
|
+
function _objectWithoutPropertiesLoose$1F(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
14078
14184
|
var SvgLogoTreasuresColorNegative = function SvgLogoTreasuresColorNegative(_ref) {
|
|
14079
14185
|
var title = _ref.title,
|
|
14080
14186
|
titleId = _ref.titleId,
|
|
14081
|
-
props = _objectWithoutProperties$
|
|
14082
|
-
return /*#__PURE__*/createElement("svg", _extends$
|
|
14187
|
+
props = _objectWithoutProperties$1E(_ref, _excluded$2b);
|
|
14188
|
+
return /*#__PURE__*/createElement("svg", _extends$1F({
|
|
14083
14189
|
viewBox: "0 0 327 266",
|
|
14084
14190
|
fill: "none",
|
|
14085
14191
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -14309,7 +14415,7 @@ var logoSvgs = {
|
|
|
14309
14415
|
treasuresColorNegative: SvgLogoTreasuresColorNegative
|
|
14310
14416
|
};
|
|
14311
14417
|
|
|
14312
|
-
var _excluded$
|
|
14418
|
+
var _excluded$2c = ["children", "className", "decorative", "id", "name", "size", "title"];
|
|
14313
14419
|
/**
|
|
14314
14420
|
* The `Logo` component renders SVG-based logos and color variants that are
|
|
14315
14421
|
* commonly used by the New York Public Library.
|
|
@@ -14326,7 +14432,7 @@ var Logo$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref)
|
|
|
14326
14432
|
size = _props$size === void 0 ? "medium" : _props$size,
|
|
14327
14433
|
_props$title = props.title,
|
|
14328
14434
|
title = _props$title === void 0 ? name + " logo" : _props$title,
|
|
14329
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
14435
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$2c);
|
|
14330
14436
|
var styles = useStyleConfig("Logo", {
|
|
14331
14437
|
size: size
|
|
14332
14438
|
});
|
|
@@ -14427,7 +14533,7 @@ var link$1 = {
|
|
|
14427
14533
|
}]
|
|
14428
14534
|
};
|
|
14429
14535
|
|
|
14430
|
-
var _excluded$
|
|
14536
|
+
var _excluded$2d = ["className", "id"];
|
|
14431
14537
|
/**
|
|
14432
14538
|
* This `Footer` component renders the NYPL-branded footer elements such
|
|
14433
14539
|
* as navigational NYPL.org links, social media links, copyright, and
|
|
@@ -14437,7 +14543,7 @@ var Footer$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (_ref, ref)
|
|
|
14437
14543
|
var className = _ref.className,
|
|
14438
14544
|
_ref$id = _ref.id,
|
|
14439
14545
|
id = _ref$id === void 0 ? "footer" : _ref$id,
|
|
14440
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
14546
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$2d);
|
|
14441
14547
|
var styles = useMultiStyleConfig("Footer", {});
|
|
14442
14548
|
var nyplLinks = link$1.nyplLinks.map(function (links, index) {
|
|
14443
14549
|
return React__default.createElement(List$1, {
|
|
@@ -14506,11 +14612,11 @@ var Footer$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (_ref, ref)
|
|
|
14506
14612
|
})));
|
|
14507
14613
|
}));
|
|
14508
14614
|
|
|
14509
|
-
var _excluded$
|
|
14615
|
+
var _excluded$2e = ["align", "className"];
|
|
14510
14616
|
var HorizontalRule$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
14511
14617
|
var align = props.align,
|
|
14512
14618
|
className = props.className,
|
|
14513
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
14619
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$2e);
|
|
14514
14620
|
var styles = useStyleConfig("HorizontalRule", {
|
|
14515
14621
|
align: align
|
|
14516
14622
|
});
|
|
@@ -14526,7 +14632,7 @@ var HorizontalRule$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (pr
|
|
|
14526
14632
|
}, rest));
|
|
14527
14633
|
}));
|
|
14528
14634
|
|
|
14529
|
-
var _excluded$
|
|
14635
|
+
var _excluded$2f = ["className", "id", "target"];
|
|
14530
14636
|
/**
|
|
14531
14637
|
* SkipNavigation is a component that is used to provide a navigational list of
|
|
14532
14638
|
* links. The first link is used to skip to the main content of the page using
|
|
@@ -14538,7 +14644,7 @@ var SkipNavigation$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (pr
|
|
|
14538
14644
|
id = props.id,
|
|
14539
14645
|
_props$target = props.target,
|
|
14540
14646
|
target = _props$target === void 0 ? "#mainContent" : _props$target,
|
|
14541
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
14647
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$2f);
|
|
14542
14648
|
var styles = useStyleConfig("SkipNavigation");
|
|
14543
14649
|
return React__default.createElement(Box, Object.assign({
|
|
14544
14650
|
as: "nav",
|
|
@@ -15512,7 +15618,7 @@ var Header$1 = /*#__PURE__*/chakra(function (_ref) {
|
|
|
15512
15618
|
}))));
|
|
15513
15619
|
});
|
|
15514
15620
|
|
|
15515
|
-
var _excluded$
|
|
15621
|
+
var _excluded$2g = ["backgroundColor", "backgroundImageSrc", "foregroundColor", "heading", "heroType", "imageProps", "locationDetails", "subHeaderText"];
|
|
15516
15622
|
// Only used for internal purposes.
|
|
15517
15623
|
var heroSecondaryTypes = ["secondary", "secondaryBooksAndMore", "secondaryLocations", "secondaryResearch", "secondaryWhatsOn"];
|
|
15518
15624
|
var Hero$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
@@ -15528,7 +15634,7 @@ var Hero$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref)
|
|
|
15528
15634
|
} : _props$imageProps,
|
|
15529
15635
|
locationDetails = props.locationDetails,
|
|
15530
15636
|
subHeaderText = props.subHeaderText,
|
|
15531
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
15637
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$2g);
|
|
15532
15638
|
var styles = useMultiStyleConfig("Hero", {
|
|
15533
15639
|
variant: heroType
|
|
15534
15640
|
});
|
|
@@ -15623,7 +15729,7 @@ var Hero$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref)
|
|
|
15623
15729
|
}
|
|
15624
15730
|
});
|
|
15625
15731
|
|
|
15626
|
-
var _excluded$
|
|
15732
|
+
var _excluded$2h = ["bodyContent", "closeButtonLabel", "headingText", "id", "isOpen", "onClose"],
|
|
15627
15733
|
_excluded2$6 = ["buttonText", "id", "modalProps"],
|
|
15628
15734
|
_excluded3$4 = ["bodyContent", "closeButtonLabel", "headingText", "id"];
|
|
15629
15735
|
var BaseModal = /*#__PURE__*/chakra(function (_ref) {
|
|
@@ -15634,7 +15740,7 @@ var BaseModal = /*#__PURE__*/chakra(function (_ref) {
|
|
|
15634
15740
|
id = _ref.id,
|
|
15635
15741
|
isOpen = _ref.isOpen,
|
|
15636
15742
|
onClose = _ref.onClose,
|
|
15637
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
15743
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$2h);
|
|
15638
15744
|
var xlarge = "xl";
|
|
15639
15745
|
var fullSize = "full";
|
|
15640
15746
|
var _useNYPLBreakpoints = useNYPLBreakpoints(),
|
|
@@ -15715,7 +15821,7 @@ function useModal() {
|
|
|
15715
15821
|
};
|
|
15716
15822
|
}
|
|
15717
15823
|
|
|
15718
|
-
var _excluded$
|
|
15824
|
+
var _excluded$2i = ["className", "currentPage", "getPageHref", "id", "initialPage", "onPageChange", "pageCount"];
|
|
15719
15825
|
/**
|
|
15720
15826
|
* A component that provides a navigational list of page items.
|
|
15721
15827
|
*/
|
|
@@ -15728,7 +15834,7 @@ var Pagination$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props,
|
|
|
15728
15834
|
initialPage = _props$initialPage === void 0 ? 1 : _props$initialPage,
|
|
15729
15835
|
onPageChange = props.onPageChange,
|
|
15730
15836
|
pageCount = props.pageCount,
|
|
15731
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
15837
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$2i);
|
|
15732
15838
|
var refCurrentPage = useRef(currentPage);
|
|
15733
15839
|
var _useState = useState(initialPage),
|
|
15734
15840
|
selectedPage = _useState[0],
|
|
@@ -15921,7 +16027,7 @@ var Pagination$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props,
|
|
|
15921
16027
|
}, previousLiLink, getPaginationNumbers(selectedPage), nextLiLink));
|
|
15922
16028
|
}));
|
|
15923
16029
|
|
|
15924
|
-
var _excluded$
|
|
16030
|
+
var _excluded$2j = ["darkMode", "id", "indicatorType", "isIndeterminate", "labelText", "showLabel", "size", "value"];
|
|
15925
16031
|
/**
|
|
15926
16032
|
* A component that displays a progress status for any task that takes a long
|
|
15927
16033
|
* time to complete or consists of multiple steps. Examples include downloading,
|
|
@@ -15942,7 +16048,7 @@ var ProgressIndicator$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function
|
|
|
15942
16048
|
size = _props$size === void 0 ? "default" : _props$size,
|
|
15943
16049
|
_props$value = props.value,
|
|
15944
16050
|
value = _props$value === void 0 ? 0 : _props$value,
|
|
15945
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
16051
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$2j);
|
|
15946
16052
|
var styles = useMultiStyleConfig("ProgressIndicator", {
|
|
15947
16053
|
darkMode: darkMode,
|
|
15948
16054
|
size: size
|
|
@@ -16001,7 +16107,7 @@ var ProgressIndicator$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function
|
|
|
16001
16107
|
}, rest), progressComponent(indicatorType));
|
|
16002
16108
|
}));
|
|
16003
16109
|
|
|
16004
|
-
var _excluded$
|
|
16110
|
+
var _excluded$2k = ["children", "className", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRequired", "labelPosition", "labelText", "name", "onChange", "placeholder", "selectType", "showHelperInvalidText", "showLabel", "showRequiredLabel", "value"];
|
|
16005
16111
|
/**
|
|
16006
16112
|
* Component that renders Chakra's `Select` component along with an accessible
|
|
16007
16113
|
* `Label` and optional `HelperErrorText` component.
|
|
@@ -16034,7 +16140,7 @@ var Select$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref
|
|
|
16034
16140
|
showRequiredLabel = _props$showRequiredLa === void 0 ? true : _props$showRequiredLa,
|
|
16035
16141
|
_props$value = props.value,
|
|
16036
16142
|
value = _props$value === void 0 ? "" : _props$value,
|
|
16037
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
16143
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$2k);
|
|
16038
16144
|
var _useState = useState(0),
|
|
16039
16145
|
labelWidth = _useState[0],
|
|
16040
16146
|
setLabelWidth = _useState[1];
|
|
@@ -16119,7 +16225,7 @@ var Select$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref
|
|
|
16119
16225
|
}), children)));
|
|
16120
16226
|
}));
|
|
16121
16227
|
|
|
16122
|
-
var _excluded$
|
|
16228
|
+
var _excluded$2l = ["action", "buttonOnClick", "className", "descriptionText", "headingText", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRequired", "labelText", "method", "noBrandButtonType", "onSubmit", "selectProps", "textInputElement", "textInputProps"];
|
|
16123
16229
|
/**
|
|
16124
16230
|
* Renders a wrapper `form` element to be used with `Select` (optional),
|
|
16125
16231
|
* `Input`, and `Button` components together.
|
|
@@ -16147,7 +16253,7 @@ var SearchBar$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props,
|
|
|
16147
16253
|
selectProps = props.selectProps,
|
|
16148
16254
|
textInputElement = props.textInputElement,
|
|
16149
16255
|
textInputProps = props.textInputProps,
|
|
16150
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
16256
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$2l);
|
|
16151
16257
|
var styles = useMultiStyleConfig("SearchBar", {});
|
|
16152
16258
|
var stateProps = {
|
|
16153
16259
|
helperText: "",
|
|
@@ -16245,7 +16351,7 @@ var SearchBar$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props,
|
|
|
16245
16351
|
}, selectElem, textInputElem, buttonElem));
|
|
16246
16352
|
}));
|
|
16247
16353
|
|
|
16248
|
-
var _excluded$
|
|
16354
|
+
var _excluded$2m = ["className", "contentSize", "headingSize", "imageAspectRatio", "isBordered", "layout", "showButton", "showContent", "showHeading", "showImage", "width"];
|
|
16249
16355
|
/**
|
|
16250
16356
|
* The `SkeletonLoader` component renders a placeholder to be used while
|
|
16251
16357
|
* dynamic content is loading.
|
|
@@ -16271,7 +16377,7 @@ var SkeletonLoader$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (pr
|
|
|
16271
16377
|
_props$showImage = props.showImage,
|
|
16272
16378
|
showImage = _props$showImage === void 0 ? true : _props$showImage,
|
|
16273
16379
|
width = props.width,
|
|
16274
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
16380
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$2m);
|
|
16275
16381
|
var styles = useMultiStyleConfig("SkeletonLoader", {
|
|
16276
16382
|
isBordered: isBordered,
|
|
16277
16383
|
imageAspectRatio: imageAspectRatio,
|
|
@@ -16329,7 +16435,7 @@ var SkeletonLoader$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (pr
|
|
|
16329
16435
|
})))));
|
|
16330
16436
|
}));
|
|
16331
16437
|
|
|
16332
|
-
var _excluded$
|
|
16438
|
+
var _excluded$2n = ["className", "defaultValue", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRangeSlider", "isRequired", "labelText", "max", "min", "name", "onChange", "onChangeEnd", "showBoxes", "showHelperInvalidText", "showLabel", "showRequiredLabel", "showValues", "step", "value"];
|
|
16333
16439
|
/**
|
|
16334
16440
|
* The `Slider` component renders a singular value slider or a range slider
|
|
16335
16441
|
* with a min and max value. The value(s) can be updated through the slider
|
|
@@ -16372,7 +16478,7 @@ var Slider = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref)
|
|
|
16372
16478
|
step = _props$step === void 0 ? 1 : _props$step,
|
|
16373
16479
|
_props$value = props.value,
|
|
16374
16480
|
value = _props$value === void 0 ? isRangeSlider ? typeof defaultValue === "number" ? [min, max] : defaultValue : defaultValue : _props$value,
|
|
16375
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
16481
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$2n);
|
|
16376
16482
|
if (!id) {
|
|
16377
16483
|
console.warn("NYPL Reservoir Slider: This component's required `id` prop was not passed.");
|
|
16378
16484
|
}
|
|
@@ -16565,7 +16671,7 @@ var Slider = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref)
|
|
|
16565
16671
|
}, max), showBoxes && getTextInput("end")));
|
|
16566
16672
|
}));
|
|
16567
16673
|
|
|
16568
|
-
var _excluded$
|
|
16674
|
+
var _excluded$2o = ["children", "className", "id", "level"];
|
|
16569
16675
|
/**
|
|
16570
16676
|
* The `StatusBadge` component is used to display a visual badge for three
|
|
16571
16677
|
* different status levels.
|
|
@@ -16576,7 +16682,7 @@ var StatusBadge$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props
|
|
|
16576
16682
|
id = props.id,
|
|
16577
16683
|
_props$level = props.level,
|
|
16578
16684
|
level = _props$level === void 0 ? "low" : _props$level,
|
|
16579
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
16685
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$2o);
|
|
16580
16686
|
var styles = useStyleConfig("StatusBadge", {
|
|
16581
16687
|
variant: level
|
|
16582
16688
|
});
|
|
@@ -16591,7 +16697,7 @@ var StatusBadge$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props
|
|
|
16591
16697
|
}, rest), children);
|
|
16592
16698
|
}));
|
|
16593
16699
|
|
|
16594
|
-
var _excluded$
|
|
16700
|
+
var _excluded$2p = ["calloutText", "className", "headingText", "id", "imageProps", "bodyContent"];
|
|
16595
16701
|
/**
|
|
16596
16702
|
* Internal component used in the `StructuredContent` component
|
|
16597
16703
|
* that renders the DS `Image` component.
|
|
@@ -16641,7 +16747,7 @@ var StructuredContent$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function
|
|
|
16641
16747
|
src: ""
|
|
16642
16748
|
} : _props$imageProps,
|
|
16643
16749
|
bodyContent = props.bodyContent,
|
|
16644
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
16750
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$2p);
|
|
16645
16751
|
var hasImage = imageProps.src || imageProps.component;
|
|
16646
16752
|
var hasFigureImage = imageProps.caption || imageProps.credit;
|
|
16647
16753
|
var styles = useMultiStyleConfig("StructuredContent", {
|
|
@@ -16774,7 +16880,7 @@ var useCarouselStyles = function useCarouselStyles(slidesCount, slideWidth) {
|
|
|
16774
16880
|
};
|
|
16775
16881
|
};
|
|
16776
16882
|
|
|
16777
|
-
var _excluded$
|
|
16883
|
+
var _excluded$2q = ["children", "defaultIndex", "id", "onChange", "tabsData", "useHash"];
|
|
16778
16884
|
/**
|
|
16779
16885
|
* An internal function used to update the hash in the URL.
|
|
16780
16886
|
* This function is only used when `useHash` is `true`.
|
|
@@ -16876,7 +16982,7 @@ var Tabs = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
16876
16982
|
tabsData = props.tabsData,
|
|
16877
16983
|
_props$useHash = props.useHash,
|
|
16878
16984
|
useHash = _props$useHash === void 0 ? false : _props$useHash,
|
|
16879
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
16985
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$2q);
|
|
16880
16986
|
var styles = useMultiStyleConfig("Tabs", {});
|
|
16881
16987
|
// Just an estimate of the tab width for the mobile carousel.
|
|
16882
16988
|
var initTabWidth = 65;
|
|
@@ -17059,7 +17165,7 @@ var TagSetFilter$1 = /*#__PURE__*/chakra(function (props) {
|
|
|
17059
17165
|
}, "Clear Filters") : null);
|
|
17060
17166
|
});
|
|
17061
17167
|
|
|
17062
|
-
var _excluded$
|
|
17168
|
+
var _excluded$2r = ["className", "id", "isDismissible", "onClick", "tagSetData", "type"];
|
|
17063
17169
|
// Type guard so we can make sure we have a "filter" `TagSet` variant.
|
|
17064
17170
|
function isFilterType(type) {
|
|
17065
17171
|
return type === "filter";
|
|
@@ -17103,7 +17209,7 @@ var TagSet$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref
|
|
|
17103
17209
|
tagSetData = _props$tagSetData === void 0 ? [] : _props$tagSetData,
|
|
17104
17210
|
_props$type = props.type,
|
|
17105
17211
|
type = _props$type === void 0 ? "filter" : _props$type,
|
|
17106
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
17212
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$2r);
|
|
17107
17213
|
var styles = useStyleConfig("TagSet", {});
|
|
17108
17214
|
if (!isFilterType(type)) {
|
|
17109
17215
|
if (isDismissible) {
|
|
@@ -17131,7 +17237,7 @@ var TagSet$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref
|
|
|
17131
17237
|
}));
|
|
17132
17238
|
}));
|
|
17133
17239
|
|
|
17134
|
-
var _excluded$
|
|
17240
|
+
var _excluded$2s = ["aboveHeader", "breakout", "contentId", "contentBottom", "contentPrimary", "contentSidebar", "contentTop", "footer", "header", "sidebar", "renderFooterElement", "renderHeaderElement", "renderSkipNavigation"];
|
|
17135
17241
|
/**
|
|
17136
17242
|
* The main top-level parent component that wraps all template-related
|
|
17137
17243
|
* components.
|
|
@@ -17354,7 +17460,7 @@ var TemplateAppContainer = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function
|
|
|
17354
17460
|
renderHeaderElement = _props$renderHeaderEl === void 0 ? true : _props$renderHeaderEl,
|
|
17355
17461
|
_props$renderSkipNavi = props.renderSkipNavigation,
|
|
17356
17462
|
renderSkipNavigation = _props$renderSkipNavi === void 0 ? false : _props$renderSkipNavi,
|
|
17357
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
17463
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$2s);
|
|
17358
17464
|
var aboveHeaderElem = aboveHeader && React__default.createElement(TemplateAboveHeader, null, aboveHeader);
|
|
17359
17465
|
var contentTopElem = contentTop && React__default.createElement(TemplateContentTop, null, contentTop);
|
|
17360
17466
|
var contentPrimaryElem = contentPrimary && React__default.createElement(TemplateContentPrimary$1, null, contentPrimary);
|
|
@@ -17372,7 +17478,7 @@ var TemplateAppContainer = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function
|
|
|
17372
17478
|
}, footer)));
|
|
17373
17479
|
}));
|
|
17374
17480
|
|
|
17375
|
-
var _excluded$
|
|
17481
|
+
var _excluded$2t = ["defaultChecked", "helperText", "id", "invalidText", "isChecked", "isDisabled", "isInvalid", "isRequired", "labelText", "name", "onChange", "size"];
|
|
17376
17482
|
var onChangeDefault = function onChangeDefault() {
|
|
17377
17483
|
return;
|
|
17378
17484
|
};
|
|
@@ -17398,7 +17504,7 @@ var Toggle$2 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref
|
|
|
17398
17504
|
onChange = _props$onChange === void 0 ? onChangeDefault : _props$onChange,
|
|
17399
17505
|
_props$size = props.size,
|
|
17400
17506
|
size = _props$size === void 0 ? "default" : _props$size,
|
|
17401
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
17507
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$2t);
|
|
17402
17508
|
var styles = useMultiStyleConfig("Toggle", {
|
|
17403
17509
|
isDisabled: isDisabled,
|
|
17404
17510
|
size: size
|
|
@@ -17685,7 +17791,7 @@ function useNYPLTheme() {
|
|
|
17685
17791
|
};
|
|
17686
17792
|
}
|
|
17687
17793
|
|
|
17688
|
-
var _excluded$
|
|
17794
|
+
var _excluded$2u = ["aspectRatio", "className", "descriptionText", "embedCode", "headingText", "helperText", "id", "iframeTitle", "showHelperInvalidText", "videoId", "videoType"];
|
|
17689
17795
|
var VideoPlayer$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props, ref) {
|
|
17690
17796
|
var aspectRatio = props.aspectRatio,
|
|
17691
17797
|
className = props.className,
|
|
@@ -17699,7 +17805,7 @@ var VideoPlayer$1 = /*#__PURE__*/chakra( /*#__PURE__*/forwardRef(function (props
|
|
|
17699
17805
|
showHelperInvalidText = _props$showHelperInva === void 0 ? true : _props$showHelperInva,
|
|
17700
17806
|
videoId = props.videoId,
|
|
17701
17807
|
videoType = props.videoType,
|
|
17702
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
17808
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$2u);
|
|
17703
17809
|
var iframeTitleFinal = videoType === "vimeo" ? iframeTitle || "Vimeo video player" : iframeTitle || "YouTube video player";
|
|
17704
17810
|
var videoSrc = videoType === "vimeo" ? "https://player.vimeo.com/video/" + videoId + "?autoplay=0&loop=0" : "https://www.youtube.com/embed/" + videoId + "?disablekb=1&autoplay=0&fs=1&modestbranding=0";
|
|
17705
17811
|
var iFrameTitleEmbedCode = iframeTitle ? "" + iframeTitle : "Video player";
|