@nypl/design-system-react-components 1.3.0-rc → 1.3.0-rc-2

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.
@@ -9001,7 +9001,744 @@ var DSProvider = function DSProvider(_ref) {
9001
9001
  }, children);
9002
9002
  };
9003
9003
 
9004
- var _excluded$1b = ["children", "className", "id", "inline", "listItems", "noStyling", "title", "type"];
9004
+ var _excluded$1b = ["children", "icon", "id", "isCentered", "notificationType"],
9005
+ _excluded2$5 = ["alignText", "children", "icon", "notificationType"],
9006
+ _excluded3$3 = ["ariaLabel", "className", "dismissible", "icon", "id", "isCentered", "noMargin", "notificationContent", "notificationHeading", "notificationType", "showIcon"];
9007
+ /**
9008
+ * NotificationHeading child-component.
9009
+ */
9010
+ var NotificationHeading$1 = /*#__PURE__*/react.chakra(function (props) {
9011
+ var children = props.children,
9012
+ icon = props.icon,
9013
+ id = props.id,
9014
+ isCentered = props.isCentered,
9015
+ notificationType = props.notificationType,
9016
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1b);
9017
+ var styles = react.useMultiStyleConfig("NotificationHeading", {
9018
+ icon: icon,
9019
+ isCentered: isCentered,
9020
+ notificationType: notificationType
9021
+ });
9022
+ return React__default.createElement(react.Box, Object.assign({
9023
+ as: "header",
9024
+ __css: styles
9025
+ }, rest), icon, React__default.createElement(Heading, {
9026
+ id: id + "-heading",
9027
+ level: "four",
9028
+ __css: styles.heading
9029
+ }, children));
9030
+ });
9031
+ /**
9032
+ * NotificationContent child-component.
9033
+ */
9034
+ var NotificationContent$1 = /*#__PURE__*/react.chakra(function (props) {
9035
+ var alignText = props.alignText,
9036
+ children = props.children,
9037
+ icon = props.icon,
9038
+ notificationType = props.notificationType,
9039
+ rest = _objectWithoutPropertiesLoose(props, _excluded2$5);
9040
+ var styles = react.useMultiStyleConfig("NotificationContent", {
9041
+ alignText: alignText,
9042
+ icon: icon,
9043
+ notificationType: notificationType
9044
+ });
9045
+ return React__default.createElement(react.Box, Object.assign({
9046
+ __css: styles
9047
+ }, rest), icon, React__default.createElement(react.Box, {
9048
+ __css: styles.content
9049
+ }, children));
9050
+ });
9051
+ /**
9052
+ * Component used to present users with three different levels of notifications:
9053
+ * standard, announcement, and warning.
9054
+ */
9055
+ var Notification$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (props, ref) {
9056
+ var ariaLabel = props.ariaLabel,
9057
+ className = props.className,
9058
+ _props$dismissible = props.dismissible,
9059
+ dismissible = _props$dismissible === void 0 ? false : _props$dismissible,
9060
+ icon = props.icon,
9061
+ id = props.id,
9062
+ _props$isCentered = props.isCentered,
9063
+ isCentered = _props$isCentered === void 0 ? false : _props$isCentered,
9064
+ _props$noMargin = props.noMargin,
9065
+ noMargin = _props$noMargin === void 0 ? false : _props$noMargin,
9066
+ notificationContent = props.notificationContent,
9067
+ notificationHeading = props.notificationHeading,
9068
+ _props$notificationTy = props.notificationType,
9069
+ notificationType = _props$notificationTy === void 0 ? "standard" : _props$notificationTy,
9070
+ _props$showIcon = props.showIcon,
9071
+ showIcon = _props$showIcon === void 0 ? true : _props$showIcon,
9072
+ rest = _objectWithoutPropertiesLoose(props, _excluded3$3);
9073
+ var _useState = React.useState(true),
9074
+ isOpen = _useState[0],
9075
+ setIsOpen = _useState[1];
9076
+ var handleClose = function handleClose() {
9077
+ return setIsOpen(false);
9078
+ };
9079
+ var styles = react.useMultiStyleConfig("Notification", {
9080
+ dismissible: dismissible,
9081
+ isCentered: isCentered,
9082
+ noMargin: noMargin,
9083
+ notificationType: notificationType
9084
+ });
9085
+ var iconElement = function iconElement() {
9086
+ var baseIconProps = {
9087
+ size: "large",
9088
+ __css: styles.icon
9089
+ };
9090
+ // If the icon should not display, return undefined.
9091
+ if (!showIcon) {
9092
+ return undefined;
9093
+ }
9094
+ // If a custom icon is passed, add specific `Notification` styles.
9095
+ if (icon) return React__default.cloneElement(icon, _extends({
9096
+ id: id + "-custom-notification-icon"
9097
+ }, baseIconProps));
9098
+ var iconProps = {
9099
+ announcement: {
9100
+ color: "section.research.secondary",
9101
+ name: "speakerNotes",
9102
+ title: "Notification announcement icon"
9103
+ },
9104
+ standard: {
9105
+ color: "ui.black",
9106
+ name: "alertNotificationImportant",
9107
+ title: "Notification standard icon"
9108
+ },
9109
+ warning: {
9110
+ color: "brand.primary",
9111
+ name: "errorFilled",
9112
+ title: "Notification warning icon"
9113
+ }
9114
+ };
9115
+ return React__default.createElement(Icon, Object.assign({
9116
+ id: id + "-notification-icon"
9117
+ }, iconProps[notificationType], baseIconProps));
9118
+ };
9119
+ var dismissibleButton = dismissible && React__default.createElement(Button, {
9120
+ "aria-label": "Close the notification",
9121
+ buttonType: "text",
9122
+ id: id + "-notification-dismissible-button",
9123
+ onClick: handleClose,
9124
+ __css: styles.dismissibleButton
9125
+ }, React__default.createElement(Icon, {
9126
+ id: id + "-dismissible-notification-icon",
9127
+ name: "close",
9128
+ size: "large",
9129
+ title: "Notification close icon"
9130
+ }));
9131
+ var iconElem = iconElement();
9132
+ var childHeading = notificationHeading && React__default.createElement(NotificationHeading$1, {
9133
+ icon: iconElem,
9134
+ id: id,
9135
+ isCentered: isCentered,
9136
+ notificationType: notificationType
9137
+ }, notificationHeading);
9138
+ // Specific alignment styles for the content.
9139
+ var alignText = !!(childHeading && showIcon && (!!icon || !isCentered));
9140
+ var childContent = React__default.createElement(NotificationContent$1, {
9141
+ alignText: alignText,
9142
+ icon: !childHeading ? iconElem : undefined,
9143
+ notificationType: notificationType
9144
+ }, notificationContent);
9145
+ // If the `Notification` is closed, don't render anything.
9146
+ if (!isOpen) {
9147
+ return null;
9148
+ }
9149
+ return React__default.createElement(react.Box, Object.assign({
9150
+ "aria-label": ariaLabel,
9151
+ as: "aside",
9152
+ className: className,
9153
+ "data-type": notificationType,
9154
+ id: id,
9155
+ ref: ref,
9156
+ __css: styles
9157
+ }, rest), React__default.createElement(react.Box, {
9158
+ __css: styles.container
9159
+ }, childHeading, childContent), dismissibleButton);
9160
+ }));
9161
+
9162
+ var _excluded$1c = ["className", "helperText", "id", "invalidText", "isChecked", "isDisabled", "isInvalid", "isRequired", "labelText", "name", "onChange", "showHelperInvalidText", "showLabel", "value"];
9163
+ var Radio$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (props, ref) {
9164
+ var className = props.className,
9165
+ helperText = props.helperText,
9166
+ id = props.id,
9167
+ invalidText = props.invalidText,
9168
+ isChecked = props.isChecked,
9169
+ _props$isDisabled = props.isDisabled,
9170
+ isDisabled = _props$isDisabled === void 0 ? false : _props$isDisabled,
9171
+ _props$isInvalid = props.isInvalid,
9172
+ isInvalid = _props$isInvalid === void 0 ? false : _props$isInvalid,
9173
+ _props$isRequired = props.isRequired,
9174
+ isRequired = _props$isRequired === void 0 ? false : _props$isRequired,
9175
+ labelText = props.labelText,
9176
+ name = props.name,
9177
+ onChange = props.onChange,
9178
+ _props$showHelperInva = props.showHelperInvalidText,
9179
+ showHelperInvalidText = _props$showHelperInva === void 0 ? true : _props$showHelperInva,
9180
+ _props$showLabel = props.showLabel,
9181
+ showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
9182
+ value = props.value,
9183
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1c);
9184
+ var styles = react.useMultiStyleConfig("Radio", {
9185
+ showLabel: showLabel
9186
+ });
9187
+ var wrapperStyles = react.useStyleConfig("RadioWrapper");
9188
+ var footnote = isInvalid ? invalidText : helperText;
9189
+ var ariaAttributes = getAriaAttrs({
9190
+ footnote: footnote,
9191
+ id: id,
9192
+ labelText: labelText,
9193
+ name: "Radio",
9194
+ showLabel: showLabel
9195
+ });
9196
+ // We can't use the aria-label because of how Chakra renders its
9197
+ // Radio component. Instead, we'll visually hide the label.
9198
+ delete ariaAttributes["aria-label"];
9199
+ if (!id) {
9200
+ console.warn("NYPL Reservoir Radio: This component's required `id` prop was not passed.");
9201
+ }
9202
+ return React__default.createElement(ComponentWrapper, Object.assign({
9203
+ helperText: helperText,
9204
+ helperTextStyles: styles.helperErrorText,
9205
+ id: id,
9206
+ invalidText: invalidText,
9207
+ isInvalid: isInvalid,
9208
+ showHelperInvalidText: showHelperInvalidText,
9209
+ sx: wrapperStyles
9210
+ }, rest), React__default.createElement(react.Radio, Object.assign({
9211
+ className: className,
9212
+ id: id,
9213
+ isChecked: isChecked,
9214
+ isDisabled: isDisabled,
9215
+ isInvalid: isInvalid,
9216
+ isRequired: isRequired,
9217
+ name: name,
9218
+ onChange: onChange,
9219
+ ref: ref,
9220
+ value: value,
9221
+ alignItems: "flex-start",
9222
+ sx: styles
9223
+ }, ariaAttributes), React__default.createElement(react.Box, {
9224
+ as: "span",
9225
+ __css: showLabel ? {} : styles.hiddenLabel
9226
+ }, labelText)));
9227
+ }));
9228
+
9229
+ var _excluded$1d = ["children", "className", "defaultValue", "helperText", "id", "invalidText", "isDisabled", "isFullWidth", "isInvalid", "isRequired", "labelText", "layout", "name", "onChange", "showHelperInvalidText", "showLabel", "showRequiredLabel"];
9230
+ /**
9231
+ * RadioGroup is a wrapper for DS `Radio` components that renders as a fieldset
9232
+ * HTML element along with optional helper text. The `name` prop is essential
9233
+ * for this form group element and is not needed for individual DS `Radio`
9234
+ * components when `RadioGroup` is used.
9235
+ */
9236
+ var RadioGroup$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (props, ref) {
9237
+ var children = props.children,
9238
+ _props$className = props.className,
9239
+ className = _props$className === void 0 ? "" : _props$className,
9240
+ defaultValue = props.defaultValue,
9241
+ helperText = props.helperText,
9242
+ id = props.id,
9243
+ invalidText = props.invalidText,
9244
+ _props$isDisabled = props.isDisabled,
9245
+ isDisabled = _props$isDisabled === void 0 ? false : _props$isDisabled,
9246
+ _props$isFullWidth = props.isFullWidth,
9247
+ isFullWidth = _props$isFullWidth === void 0 ? false : _props$isFullWidth,
9248
+ _props$isInvalid = props.isInvalid,
9249
+ isInvalid = _props$isInvalid === void 0 ? false : _props$isInvalid,
9250
+ _props$isRequired = props.isRequired,
9251
+ isRequired = _props$isRequired === void 0 ? false : _props$isRequired,
9252
+ labelText = props.labelText,
9253
+ _props$layout = props.layout,
9254
+ layout = _props$layout === void 0 ? "column" : _props$layout,
9255
+ name = props.name,
9256
+ _onChange = props.onChange,
9257
+ _props$showHelperInva = props.showHelperInvalidText,
9258
+ showHelperInvalidText = _props$showHelperInva === void 0 ? true : _props$showHelperInva,
9259
+ _props$showLabel = props.showLabel,
9260
+ showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
9261
+ _props$showRequiredLa = props.showRequiredLabel,
9262
+ showRequiredLabel = _props$showRequiredLa === void 0 ? true : _props$showRequiredLa,
9263
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1d);
9264
+ var _React$useState = React__default.useState(defaultValue),
9265
+ value = _React$useState[0],
9266
+ setValue = _React$useState[1];
9267
+ var footnote = isInvalid ? invalidText : helperText;
9268
+ var spacingProp = layout === "column" ? spacing.s : spacing.l;
9269
+ var newChildren = [];
9270
+ // Get the Chakra-based styles for the custom elements in this component.
9271
+ var styles = react.useMultiStyleConfig("RadioGroup", {
9272
+ isFullWidth: isFullWidth
9273
+ });
9274
+ // Props for the `ChakraRadioGroup` component.
9275
+ var radioGroupProps = {
9276
+ "aria-label": !showLabel ? labelText : undefined,
9277
+ name: name,
9278
+ onChange: function onChange(selected) {
9279
+ setValue(selected);
9280
+ _onChange && _onChange(selected);
9281
+ },
9282
+ ref: ref,
9283
+ value: value
9284
+ };
9285
+ if (!id) {
9286
+ console.warn("NYPL Reservoir RadioGroup: This component's required `id` prop was not passed.");
9287
+ }
9288
+ // Go through the Radio children and update them as needed.
9289
+ React__default.Children.map(children, function (child, key) {
9290
+ if ((child == null ? void 0 : child.type) !== Radio$1) {
9291
+ var _child$props, _child$props2;
9292
+ // Special case for Storybook MDX documentation.
9293
+ if ((_child$props = child.props) != null && _child$props.mdxType && ((_child$props2 = child.props) == null ? void 0 : _child$props2.mdxType) === "Radio") ; else {
9294
+ console.warn("NYPL Reservoir RadioGroup: Only `Radio` components are allowed " + "inside the `RadioGroup` component.");
9295
+ }
9296
+ }
9297
+ if (child !== undefined && child !== null) {
9298
+ var newProps = {
9299
+ key: key,
9300
+ isDisabled: isDisabled,
9301
+ isInvalid: isInvalid,
9302
+ isRequired: isRequired
9303
+ };
9304
+ newChildren.push(React__default.cloneElement(child, newProps));
9305
+ }
9306
+ });
9307
+ return React__default.createElement(Fieldset, Object.assign({
9308
+ className: className,
9309
+ id: "radio-group-" + id,
9310
+ isLegendHidden: !showLabel,
9311
+ isRequired: isRequired,
9312
+ legendText: labelText,
9313
+ showRequiredLabel: showRequiredLabel
9314
+ }, rest, {
9315
+ __css: styles
9316
+ }), React__default.createElement(react.RadioGroup, Object.assign({}, radioGroupProps), React__default.createElement(react.Stack, {
9317
+ direction: [layout],
9318
+ spacing: spacingProp
9319
+ }, newChildren)), footnote && showHelperInvalidText && React__default.createElement(HelperErrorText, {
9320
+ id: id + "-helperErrorText",
9321
+ isInvalid: isInvalid,
9322
+ text: footnote,
9323
+ __css: styles.helperErrorText
9324
+ }));
9325
+ }));
9326
+
9327
+ /**
9328
+ * DS internal helper hook to use state with prop dependencies.
9329
+ */
9330
+ function useStateWithDependencies(initialValue) {
9331
+ var _useState = React.useState(initialValue),
9332
+ value = _useState[0],
9333
+ setValue = _useState[1];
9334
+ React.useEffect(function () {
9335
+ setValue(initialValue);
9336
+ }, [initialValue]);
9337
+ return [value, setValue];
9338
+ }
9339
+
9340
+ var initialState = {
9341
+ category: "comment",
9342
+ comment: "",
9343
+ email: ""
9344
+ };
9345
+ /**
9346
+ * Simple reducer to manage the internal state of the form
9347
+ * fields in the FeedbackBox component.
9348
+ */
9349
+ function reducer(state, action) {
9350
+ switch (action.type) {
9351
+ case "category":
9352
+ return _extends({}, state, {
9353
+ category: action.payload
9354
+ });
9355
+ case "comment":
9356
+ return _extends({}, state, {
9357
+ comment: action.payload
9358
+ });
9359
+ case "email":
9360
+ return _extends({}, state, {
9361
+ email: action.payload
9362
+ });
9363
+ case "clear":
9364
+ default:
9365
+ return initialState;
9366
+ }
9367
+ }
9368
+ /**
9369
+ * DS internal helper reducer hook to manage internal state for the FeedbackBox
9370
+ * component. Note: this custom hook is not tested directly as it's an
9371
+ * implementation detail of the FeedbackBox component, following the guidance
9372
+ * of RTL: https://testing-library.com/docs/example-react-hooks-useReducer
9373
+ */
9374
+ function useFeedbackBoxReducer() {
9375
+ var _useReducer = React.useReducer(reducer, initialState),
9376
+ state = _useReducer[0],
9377
+ dispatch = _useReducer[1];
9378
+ var setCategory = function setCategory(category) {
9379
+ return dispatch({
9380
+ type: "category",
9381
+ payload: category
9382
+ });
9383
+ };
9384
+ var setComment = function setComment(comment) {
9385
+ return dispatch({
9386
+ type: "comment",
9387
+ payload: comment
9388
+ });
9389
+ };
9390
+ var setEmail = function setEmail(email) {
9391
+ return dispatch({
9392
+ type: "email",
9393
+ payload: email
9394
+ });
9395
+ };
9396
+ var clearValues = function clearValues() {
9397
+ return dispatch({
9398
+ type: "clear"
9399
+ });
9400
+ };
9401
+ return {
9402
+ state: state,
9403
+ setCategory: setCategory,
9404
+ setComment: setComment,
9405
+ setEmail: setEmail,
9406
+ clearValues: clearValues
9407
+ };
9408
+ }
9409
+
9410
+ var _excluded$1e = ["className", "confirmationText", "descriptionText", "hiddenFields", "id", "isInvalidComment", "isInvalidEmail", "notificationText", "onSubmit", "showCategoryField", "showEmailField", "title", "view", "isOpen", "onOpen", "onClose"];
9411
+ /**
9412
+ * The `FeedbackBox` component renders a fixed-positioned button on the bottom
9413
+ * right corner of a page that opens a Chakra `Drawer` popup component. Inside
9414
+ * of the popup, a form is rendered with fields that allows users to provide
9415
+ * feedback. The `FeedbackBox` component does *not* call any API with the
9416
+ * submitted data; that feature is the responsibility of the consuming
9417
+ * application.
9418
+ */
9419
+ var FeedbackBox$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (_ref, ref) {
9420
+ var className = _ref.className,
9421
+ confirmationText = _ref.confirmationText,
9422
+ descriptionText = _ref.descriptionText,
9423
+ hiddenFields = _ref.hiddenFields,
9424
+ _ref$id = _ref.id,
9425
+ id = _ref$id === void 0 ? "feedbackbox" : _ref$id,
9426
+ _ref$isInvalidComment = _ref.isInvalidComment,
9427
+ isInvalidComment = _ref$isInvalidComment === void 0 ? false : _ref$isInvalidComment,
9428
+ _ref$isInvalidEmail = _ref.isInvalidEmail,
9429
+ isInvalidEmail = _ref$isInvalidEmail === void 0 ? false : _ref$isInvalidEmail,
9430
+ notificationText = _ref.notificationText,
9431
+ onSubmit = _ref.onSubmit,
9432
+ _ref$showCategoryFiel = _ref.showCategoryField,
9433
+ showCategoryField = _ref$showCategoryFiel === void 0 ? false : _ref$showCategoryFiel,
9434
+ _ref$showEmailField = _ref.showEmailField,
9435
+ showEmailField = _ref$showEmailField === void 0 ? false : _ref$showEmailField,
9436
+ title = _ref.title,
9437
+ _ref$view = _ref.view,
9438
+ view = _ref$view === void 0 ? "form" : _ref$view,
9439
+ isOpen = _ref.isOpen,
9440
+ onOpen = _ref.onOpen,
9441
+ onClose = _ref.onClose,
9442
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded$1e);
9443
+ // We want to keep internal state for the view but also
9444
+ // update if the consuming app updates it, based on API
9445
+ // success and failure responses.
9446
+ var _useStateWithDependen = useStateWithDependencies(view),
9447
+ viewType = _useStateWithDependen[0],
9448
+ setViewType = _useStateWithDependen[1];
9449
+ var _useState = React.useState(false),
9450
+ isSubmitted = _useState[0],
9451
+ setIsSubmitted = _useState[1];
9452
+ // Helps keep track of form field state values.
9453
+ var _useFeedbackBoxReduce = useFeedbackBoxReducer(),
9454
+ state = _useFeedbackBoxReduce.state,
9455
+ setCategory = _useFeedbackBoxReduce.setCategory,
9456
+ setComment = _useFeedbackBoxReduce.setComment,
9457
+ setEmail = _useFeedbackBoxReduce.setEmail,
9458
+ clearValues = _useFeedbackBoxReduce.clearValues;
9459
+ // Chakra's hook to control Drawer's actions.
9460
+ var disclosure = react.useDisclosure();
9461
+ var finalIsOpen = isOpen ? isOpen : disclosure.isOpen;
9462
+ var finalOnOpen = onOpen ? onOpen : disclosure.onOpen;
9463
+ var finalOnClose = onClose ? onClose : disclosure.onClose;
9464
+ var focusRef = React.useRef();
9465
+ var styles = react.useMultiStyleConfig("FeedbackBox", {});
9466
+ var isFormView = viewType === "form";
9467
+ var isConfirmationView = viewType === "confirmation";
9468
+ var isErrorView = viewType === "error";
9469
+ var confirmationTimeout = 3000;
9470
+ var maxCommentCharacters = 500;
9471
+ var initMinHeight = "275px";
9472
+ var initTemplateRows = "auto 1fr";
9473
+ var minHeightWithCategory = "345px";
9474
+ var minHeightWithEmail = "385px";
9475
+ var minHeightWithCategoryAndEmail = "455px";
9476
+ var drawerMinHeight = initMinHeight;
9477
+ var closeAndResetForm = function closeAndResetForm() {
9478
+ finalOnClose();
9479
+ setViewType("form");
9480
+ clearValues();
9481
+ };
9482
+ var internalOnSubmit = function internalOnSubmit(e) {
9483
+ e.preventDefault();
9484
+ var submittedValues = _extends({}, state);
9485
+ if (hiddenFields) {
9486
+ submittedValues = _extends({}, submittedValues, hiddenFields);
9487
+ }
9488
+ onSubmit && onSubmit(submittedValues);
9489
+ setIsSubmitted(true);
9490
+ };
9491
+ var notificationElement = isFormView && notificationText ? React__default.createElement(Notification$1, {
9492
+ isCentered: true,
9493
+ noMargin: true,
9494
+ notificationContent: notificationText,
9495
+ showIcon: false,
9496
+ sx: {
9497
+ // The padding of the Notification is smaller than
9498
+ // the initial one.
9499
+ "> div": {
9500
+ py: "xs"
9501
+ }
9502
+ }
9503
+ }) : undefined;
9504
+ var descriptionElement = isFormView && descriptionText ? React__default.createElement(Text, {
9505
+ fontWeight: "medium",
9506
+ mb: "0"
9507
+ }, descriptionText) : undefined;
9508
+ var privacyPolicyField = React__default.createElement(FormField, null, React__default.createElement(Link, {
9509
+ href: "https://www.nypl.org/help/about-nypl/legal-notices/privacy-policy",
9510
+ type: "external",
9511
+ fontSize: "text.tag"
9512
+ }, "Privacy Policy"));
9513
+ // When the submit button is clicked, set a timeout before displaying
9514
+ // the confirmation or error screen. This automatically goes to the
9515
+ // confirmation view after three (3) seconds, but the consuming app
9516
+ // can set the error view if there are any issues.
9517
+ React.useEffect(function () {
9518
+ var timer;
9519
+ if (isSubmitted) {
9520
+ // If the consuming app does not provide any updates based
9521
+ // on its API response, go to confirmation screen.
9522
+ timer = setTimeout(function () {
9523
+ setIsSubmitted(false);
9524
+ if (isErrorView) {
9525
+ setViewType("error");
9526
+ } else {
9527
+ setViewType("confirmation");
9528
+ }
9529
+ clearValues();
9530
+ }, confirmationTimeout);
9531
+ // If the consuming app does pass the API response to the
9532
+ // component, then cancel the timeout above and display the
9533
+ // appropriate screen.
9534
+ if (view !== viewType) {
9535
+ setIsSubmitted(false);
9536
+ setViewType(view);
9537
+ clearTimeout(timer);
9538
+ }
9539
+ }
9540
+ return function () {
9541
+ return clearTimeout(timer);
9542
+ };
9543
+ }, [clearValues, isErrorView, isSubmitted, setViewType, view, viewType]);
9544
+ // Delay focusing on the confirmation or error message
9545
+ // because it's an element that dynamically gets rendered,
9546
+ // so it is not always available in the DOM.
9547
+ React.useEffect(function () {
9548
+ var timer;
9549
+ if (viewType === "error" || viewType === "confirmation") {
9550
+ timer = setTimeout(function () {
9551
+ var _focusRef$current;
9552
+ focusRef == null ? void 0 : (_focusRef$current = focusRef.current) == null ? void 0 : _focusRef$current.focus();
9553
+ }, 250);
9554
+ }
9555
+ return function () {
9556
+ return clearTimeout(timer);
9557
+ };
9558
+ }, [focusRef, viewType]);
9559
+ if (showCategoryField) {
9560
+ drawerMinHeight = minHeightWithCategory;
9561
+ }
9562
+ if (showEmailField) {
9563
+ drawerMinHeight = minHeightWithEmail;
9564
+ }
9565
+ if (showCategoryField && showEmailField) {
9566
+ drawerMinHeight = minHeightWithCategoryAndEmail;
9567
+ }
9568
+ return React__default.createElement(react.Box, Object.assign({
9569
+ className: className,
9570
+ id: id,
9571
+ ref: ref,
9572
+ sx: styles
9573
+ }, rest), React__default.createElement(Button, {
9574
+ id: "open",
9575
+ onClick: finalOnOpen,
9576
+ sx: styles.openButton
9577
+ }, title), React__default.createElement(react.Drawer, {
9578
+ blockScrollOnMount: false,
9579
+ isOpen: finalIsOpen,
9580
+ onClose: finalOnClose,
9581
+ placement: "bottom"
9582
+ }, React__default.createElement(react.DrawerOverlay, null), React__default.createElement(react.DrawerContent, {
9583
+ sx: styles.drawerContent
9584
+ }, React__default.createElement(react.DrawerHeader, {
9585
+ sx: styles.drawerHeader
9586
+ }, React__default.createElement(Text, {
9587
+ "data-testid": "title"
9588
+ }, title), React__default.createElement(react.Spacer, null), React__default.createElement(Button, {
9589
+ buttonType: "text",
9590
+ id: "close-btn",
9591
+ onClick: finalOnClose,
9592
+ sx: styles.closeButton
9593
+ }, React__default.createElement(Icon, {
9594
+ color: "ui.black",
9595
+ name: "minus",
9596
+ size: "medium"
9597
+ }), React__default.createElement("span", null, "Close ", title))), React__default.createElement(react.DrawerBody, {
9598
+ sx: styles.drawerBody
9599
+ }, React__default.createElement(Form, {
9600
+ gap: "grid.s",
9601
+ id: "feedback-form",
9602
+ onSubmit: internalOnSubmit,
9603
+ sx: {
9604
+ "> div": {
9605
+ minHeight: drawerMinHeight,
9606
+ gridTemplateRows: initTemplateRows
9607
+ }
9608
+ }
9609
+ }, React__default.createElement(FormField, null, notificationElement, descriptionElement), isFormView && React__default.createElement(React__default.Fragment, null, showCategoryField && React__default.createElement(FormField, null, React__default.createElement(RadioGroup$1, {
9610
+ defaultValue: state.category,
9611
+ id: id + "-category",
9612
+ isDisabled: isSubmitted,
9613
+ labelText: "What is your feedback about?",
9614
+ layout: "row",
9615
+ name: id + "-category",
9616
+ onChange: function onChange(selected) {
9617
+ return setCategory(selected);
9618
+ }
9619
+ }, React__default.createElement(Radio$1, {
9620
+ id: "comment",
9621
+ labelText: "Comment",
9622
+ value: "comment"
9623
+ }), React__default.createElement(Radio$1, {
9624
+ id: "correction",
9625
+ labelText: "Correction",
9626
+ value: "correction"
9627
+ }), React__default.createElement(Radio$1, {
9628
+ id: "bug",
9629
+ labelText: "Bug",
9630
+ value: "bug"
9631
+ }))), React__default.createElement(FormField, null, React__default.createElement(TextInput, {
9632
+ helperText: maxCommentCharacters - state.comment.length + " characters remaining",
9633
+ id: id + "-comment",
9634
+ invalidText: "Please fill out this field.",
9635
+ isDisabled: isSubmitted,
9636
+ isInvalid: isInvalidComment,
9637
+ isRequired: true,
9638
+ labelText: "Comment",
9639
+ maxLength: maxCommentCharacters,
9640
+ name: id + "-comment",
9641
+ onChange: function onChange(e) {
9642
+ return setComment(e.target.value);
9643
+ },
9644
+ placeholder: "Enter your question or feedback here",
9645
+ type: "textarea",
9646
+ defaultValue: state.comment
9647
+ })), showEmailField && React__default.createElement(FormField, null, React__default.createElement(TextInput, {
9648
+ id: id + "-email",
9649
+ invalidText: "Please enter a valid email address.",
9650
+ isDisabled: isSubmitted,
9651
+ isInvalid: isInvalidEmail,
9652
+ labelText: "Email",
9653
+ name: id + "-email",
9654
+ onChange: function onChange(e) {
9655
+ return setEmail(e.target.value);
9656
+ },
9657
+ placeholder: "Enter your email address here",
9658
+ type: "email",
9659
+ value: state.email
9660
+ })), privacyPolicyField, React__default.createElement(FormField, null, React__default.createElement(ButtonGroup, {
9661
+ buttonWidth: "full",
9662
+ id: "submit-cancel"
9663
+ }, React__default.createElement(Button, {
9664
+ buttonType: "secondary",
9665
+ id: "cancel",
9666
+ isDisabled: isSubmitted,
9667
+ key: "cancel",
9668
+ onClick: closeAndResetForm
9669
+ }, "Cancel"), React__default.createElement(Button, {
9670
+ id: "submit",
9671
+ isDisabled: isSubmitted,
9672
+ key: "submit",
9673
+ type: "submit"
9674
+ }, "Submit")))), isConfirmationView && React__default.createElement(React__default.Fragment, null, React__default.createElement(react.Box, {
9675
+ key: "confirmationWrapper",
9676
+ margin: "auto",
9677
+ tabIndex: 0,
9678
+ textAlign: "center",
9679
+ ref: focusRef
9680
+ }, React__default.createElement(Icon, {
9681
+ name: "actionCheckCircleFilled",
9682
+ size: "large"
9683
+ }), React__default.createElement(Text, {
9684
+ fontWeight: "medium"
9685
+ }, "Thank you for submitting your feedback."), showEmailField && React__default.createElement(Text, null, "If you provided an email address and require a response, our service staff will reach out to you via email."), confirmationText ? React__default.createElement(Text, null, confirmationText) : undefined), privacyPolicyField, React__default.createElement(FormField, null, React__default.createElement(ButtonGroup, {
9686
+ buttonWidth: "full",
9687
+ id: "submit-cancel"
9688
+ }, React__default.createElement(Button, {
9689
+ id: "return-browsing",
9690
+ buttonType: "secondary",
9691
+ onClick: closeAndResetForm
9692
+ }, "Return to Browsing")))), isErrorView && React__default.createElement(React__default.Fragment, null, React__default.createElement(react.Box, {
9693
+ color: "ui.error.primary",
9694
+ key: "errorWrapper",
9695
+ margin: "auto",
9696
+ tabIndex: 0,
9697
+ textAlign: "center",
9698
+ ref: focusRef
9699
+ }, React__default.createElement(Icon, {
9700
+ color: "ui.error.primary",
9701
+ name: "errorFilled",
9702
+ size: "large"
9703
+ }), React__default.createElement(Text, {
9704
+ fontWeight: "medium"
9705
+ }, "Oops! Something went wrong. An error occured while processing your feedback.")), privacyPolicyField, React__default.createElement(FormField, null, React__default.createElement(ButtonGroup, {
9706
+ buttonWidth: "full",
9707
+ id: "submit-cancel"
9708
+ }, React__default.createElement(Button, {
9709
+ id: "return-browsing2",
9710
+ key: "return-browsing2",
9711
+ buttonType: "secondary",
9712
+ onClick: closeAndResetForm
9713
+ }, "Return to Browsing"), React__default.createElement(Button, {
9714
+ id: "try-again",
9715
+ key: "try-again",
9716
+ onClick: function onClick() {
9717
+ return setViewType("form");
9718
+ }
9719
+ }, "Try Again")))))))));
9720
+ }));
9721
+ function useFeedbackBox() {
9722
+ var _useDisclosure = react.useDisclosure(),
9723
+ isOpen = _useDisclosure.isOpen,
9724
+ onClose = _useDisclosure.onClose,
9725
+ onOpen = _useDisclosure.onOpen;
9726
+ var InternalFeedbackBox = react.chakra(function (props) {
9727
+ return React__default.createElement(FeedbackBox$1, Object.assign({
9728
+ isOpen: isOpen,
9729
+ onClose: onClose,
9730
+ onOpen: onOpen
9731
+ }, props));
9732
+ });
9733
+ return {
9734
+ isOpen: isOpen,
9735
+ onClose: onClose,
9736
+ onOpen: onOpen,
9737
+ FeedbackBox: InternalFeedbackBox
9738
+ };
9739
+ }
9740
+
9741
+ var _excluded$1f = ["children", "className", "id", "inline", "listItems", "noStyling", "title", "type"];
9005
9742
  /**
9006
9743
  * A component that renders list item `li` elements or description item `dt`
9007
9744
  * and `dd` elements based on the `type` prop. Note that the `title` prop will
@@ -9019,7 +9756,7 @@ var List$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (
9019
9756
  title = props.title,
9020
9757
  _props$type = props.type,
9021
9758
  type = _props$type === void 0 ? "ul" : _props$type,
9022
- rest = _objectWithoutPropertiesLoose(props, _excluded$1b);
9759
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1f);
9023
9760
  var styles = react.useStyleConfig("List", {
9024
9761
  inline: inline,
9025
9762
  noStyling: noStyling,
@@ -9121,14 +9858,14 @@ var checkListChildrenError = function checkListChildrenError(children, listType,
9121
9858
  };
9122
9859
 
9123
9860
  var _path$L, _path2$f, _path3$7;
9124
- var _excluded$1c = ["title", "titleId"];
9861
+ var _excluded$1g = ["title", "titleId"];
9125
9862
  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); }
9126
9863
  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; }
9127
9864
  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; }
9128
9865
  var SvgLogoAppleAppStoreBlack = function SvgLogoAppleAppStoreBlack(_ref) {
9129
9866
  var title = _ref.title,
9130
9867
  titleId = _ref.titleId,
9131
- props = _objectWithoutProperties$Q(_ref, _excluded$1c);
9868
+ props = _objectWithoutProperties$Q(_ref, _excluded$1g);
9132
9869
  return /*#__PURE__*/React.createElement("svg", _extends$R({
9133
9870
  viewBox: "0 0 200 67",
9134
9871
  fill: "none",
@@ -9149,14 +9886,14 @@ var SvgLogoAppleAppStoreBlack = function SvgLogoAppleAppStoreBlack(_ref) {
9149
9886
  };
9150
9887
 
9151
9888
  var _path$M, _path2$g, _path3$8;
9152
- var _excluded$1d = ["title", "titleId"];
9889
+ var _excluded$1h = ["title", "titleId"];
9153
9890
  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); }
9154
9891
  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; }
9155
9892
  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; }
9156
9893
  var SvgLogoAppleAppStoreWhite = function SvgLogoAppleAppStoreWhite(_ref) {
9157
9894
  var title = _ref.title,
9158
9895
  titleId = _ref.titleId,
9159
- props = _objectWithoutProperties$R(_ref, _excluded$1d);
9896
+ props = _objectWithoutProperties$R(_ref, _excluded$1h);
9160
9897
  return /*#__PURE__*/React.createElement("svg", _extends$S({
9161
9898
  viewBox: "0 0 200 67",
9162
9899
  fill: "none",
@@ -9177,14 +9914,14 @@ var SvgLogoAppleAppStoreWhite = function SvgLogoAppleAppStoreWhite(_ref) {
9177
9914
  };
9178
9915
 
9179
9916
  var _path$N, _path2$h, _path3$9;
9180
- var _excluded$1e = ["title", "titleId"];
9917
+ var _excluded$1i = ["title", "titleId"];
9181
9918
  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); }
9182
9919
  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; }
9183
9920
  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; }
9184
9921
  var SvgLogoBplBlack = function SvgLogoBplBlack(_ref) {
9185
9922
  var title = _ref.title,
9186
9923
  titleId = _ref.titleId,
9187
- props = _objectWithoutProperties$S(_ref, _excluded$1e);
9924
+ props = _objectWithoutProperties$S(_ref, _excluded$1i);
9188
9925
  return /*#__PURE__*/React.createElement("svg", _extends$T({
9189
9926
  viewBox: "0 0 328 120",
9190
9927
  xmlns: "http://www.w3.org/2000/svg",
@@ -9201,14 +9938,14 @@ var SvgLogoBplBlack = function SvgLogoBplBlack(_ref) {
9201
9938
  };
9202
9939
 
9203
9940
  var _path$O, _path2$i, _path3$a;
9204
- var _excluded$1f = ["title", "titleId"];
9941
+ var _excluded$1j = ["title", "titleId"];
9205
9942
  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); }
9206
9943
  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; }
9207
9944
  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; }
9208
9945
  var SvgLogoBplWhite = function SvgLogoBplWhite(_ref) {
9209
9946
  var title = _ref.title,
9210
9947
  titleId = _ref.titleId,
9211
- props = _objectWithoutProperties$T(_ref, _excluded$1f);
9948
+ props = _objectWithoutProperties$T(_ref, _excluded$1j);
9212
9949
  return /*#__PURE__*/React.createElement("svg", _extends$U({
9213
9950
  viewBox: "0 0 328 120",
9214
9951
  fill: "#fff",
@@ -9226,14 +9963,14 @@ var SvgLogoBplWhite = function SvgLogoBplWhite(_ref) {
9226
9963
  };
9227
9964
 
9228
9965
  var _rect$2, _path$P;
9229
- var _excluded$1g = ["title", "titleId"];
9966
+ var _excluded$1k = ["title", "titleId"];
9230
9967
  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); }
9231
9968
  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; }
9232
9969
  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; }
9233
9970
  var SvgLogoCleverBadgeColor = function SvgLogoCleverBadgeColor(_ref) {
9234
9971
  var title = _ref.title,
9235
9972
  titleId = _ref.titleId,
9236
- props = _objectWithoutProperties$U(_ref, _excluded$1g);
9973
+ props = _objectWithoutProperties$U(_ref, _excluded$1k);
9237
9974
  return /*#__PURE__*/React.createElement("svg", _extends$V({
9238
9975
  viewBox: "0 0 118 119",
9239
9976
  fill: "none",
@@ -9256,14 +9993,14 @@ var SvgLogoCleverBadgeColor = function SvgLogoCleverBadgeColor(_ref) {
9256
9993
  };
9257
9994
 
9258
9995
  var _path$Q;
9259
- var _excluded$1h = ["title", "titleId"];
9996
+ var _excluded$1l = ["title", "titleId"];
9260
9997
  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); }
9261
9998
  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; }
9262
9999
  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; }
9263
10000
  var SvgLogoCleverColor = function SvgLogoCleverColor(_ref) {
9264
10001
  var title = _ref.title,
9265
10002
  titleId = _ref.titleId,
9266
- props = _objectWithoutProperties$V(_ref, _excluded$1h);
10003
+ props = _objectWithoutProperties$V(_ref, _excluded$1l);
9267
10004
  return /*#__PURE__*/React.createElement("svg", _extends$W({
9268
10005
  viewBox: "0 0 312 88",
9269
10006
  fill: "#436CF2",
@@ -9279,14 +10016,14 @@ var SvgLogoCleverColor = function SvgLogoCleverColor(_ref) {
9279
10016
  };
9280
10017
 
9281
10018
  var _path$R;
9282
- var _excluded$1i = ["title", "titleId"];
10019
+ var _excluded$1m = ["title", "titleId"];
9283
10020
  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); }
9284
10021
  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; }
9285
10022
  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; }
9286
10023
  var SvgLogoCleverWhite = function SvgLogoCleverWhite(_ref) {
9287
10024
  var title = _ref.title,
9288
10025
  titleId = _ref.titleId,
9289
- props = _objectWithoutProperties$W(_ref, _excluded$1i);
10026
+ props = _objectWithoutProperties$W(_ref, _excluded$1m);
9290
10027
  return /*#__PURE__*/React.createElement("svg", _extends$X({
9291
10028
  viewBox: "0 0 312 88",
9292
10029
  fill: "#fff",
@@ -9302,14 +10039,14 @@ var SvgLogoCleverWhite = function SvgLogoCleverWhite(_ref) {
9302
10039
  };
9303
10040
 
9304
10041
  var _path$S, _path2$j, _path3$b, _path4$1, _path5, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13;
9305
- var _excluded$1j = ["title", "titleId"];
10042
+ var _excluded$1n = ["title", "titleId"];
9306
10043
  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); }
9307
10044
  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; }
9308
10045
  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; }
9309
10046
  var SvgLogoFirstbookColor = function SvgLogoFirstbookColor(_ref) {
9310
10047
  var title = _ref.title,
9311
10048
  titleId = _ref.titleId,
9312
- props = _objectWithoutProperties$X(_ref, _excluded$1j);
10049
+ props = _objectWithoutProperties$X(_ref, _excluded$1n);
9313
10050
  return /*#__PURE__*/React.createElement("svg", _extends$Y({
9314
10051
  viewBox: "0 0 172 152",
9315
10052
  fill: "none",
@@ -9360,14 +10097,14 @@ var SvgLogoFirstbookColor = function SvgLogoFirstbookColor(_ref) {
9360
10097
  };
9361
10098
 
9362
10099
  var _g$3;
9363
- var _excluded$1k = ["title", "titleId"];
10100
+ var _excluded$1o = ["title", "titleId"];
9364
10101
  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); }
9365
10102
  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; }
9366
10103
  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; }
9367
10104
  var SvgLogoFirstbookColorNegative = function SvgLogoFirstbookColorNegative(_ref) {
9368
10105
  var title = _ref.title,
9369
10106
  titleId = _ref.titleId,
9370
- props = _objectWithoutProperties$Y(_ref, _excluded$1k);
10107
+ props = _objectWithoutProperties$Y(_ref, _excluded$1o);
9371
10108
  return /*#__PURE__*/React.createElement("svg", _extends$Z({
9372
10109
  viewBox: "0 0 170 150",
9373
10110
  fill: "none",
@@ -9423,14 +10160,14 @@ var SvgLogoFirstbookColorNegative = function SvgLogoFirstbookColorNegative(_ref)
9423
10160
  };
9424
10161
 
9425
10162
  var _g$4, _defs;
9426
- var _excluded$1l = ["title", "titleId"];
10163
+ var _excluded$1p = ["title", "titleId"];
9427
10164
  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); }
9428
10165
  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; }
9429
10166
  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; }
9430
10167
  var SvgLogoGooglePlayBlack = function SvgLogoGooglePlayBlack(_ref) {
9431
10168
  var title = _ref.title,
9432
10169
  titleId = _ref.titleId,
9433
- props = _objectWithoutProperties$Z(_ref, _excluded$1l);
10170
+ props = _objectWithoutProperties$Z(_ref, _excluded$1p);
9434
10171
  return /*#__PURE__*/React.createElement("svg", _extends$_({
9435
10172
  viewBox: "0 0 200 60",
9436
10173
  fill: "none",
@@ -9563,14 +10300,14 @@ var SvgLogoGooglePlayBlack = function SvgLogoGooglePlayBlack(_ref) {
9563
10300
  };
9564
10301
 
9565
10302
  var _path$T, _path2$k;
9566
- var _excluded$1m = ["title", "titleId"];
10303
+ var _excluded$1q = ["title", "titleId"];
9567
10304
  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); }
9568
10305
  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; }
9569
10306
  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; }
9570
10307
  var SvgLogoLpaColor = function SvgLogoLpaColor(_ref) {
9571
10308
  var title = _ref.title,
9572
10309
  titleId = _ref.titleId,
9573
- props = _objectWithoutProperties$_(_ref, _excluded$1m);
10310
+ props = _objectWithoutProperties$_(_ref, _excluded$1q);
9574
10311
  return /*#__PURE__*/React.createElement("svg", _extends$$({
9575
10312
  viewBox: "0 0 186 74",
9576
10313
  fill: "none",
@@ -9588,14 +10325,14 @@ var SvgLogoLpaColor = function SvgLogoLpaColor(_ref) {
9588
10325
  };
9589
10326
 
9590
10327
  var _path$U;
9591
- var _excluded$1n = ["title", "titleId"];
10328
+ var _excluded$1r = ["title", "titleId"];
9592
10329
  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); }
9593
10330
  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; }
9594
10331
  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; }
9595
10332
  var SvgLogoLpaBlack = function SvgLogoLpaBlack(_ref) {
9596
10333
  var title = _ref.title,
9597
10334
  titleId = _ref.titleId,
9598
- props = _objectWithoutProperties$$(_ref, _excluded$1n);
10335
+ props = _objectWithoutProperties$$(_ref, _excluded$1r);
9599
10336
  return /*#__PURE__*/React.createElement("svg", _extends$10({
9600
10337
  viewBox: "0 0 186 74",
9601
10338
  xmlns: "http://www.w3.org/2000/svg",
@@ -9608,14 +10345,14 @@ var SvgLogoLpaBlack = function SvgLogoLpaBlack(_ref) {
9608
10345
  };
9609
10346
 
9610
10347
  var _path$V;
9611
- var _excluded$1o = ["title", "titleId"];
10348
+ var _excluded$1s = ["title", "titleId"];
9612
10349
  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); }
9613
10350
  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; }
9614
10351
  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; }
9615
10352
  var SvgLogoLpaWhite = function SvgLogoLpaWhite(_ref) {
9616
10353
  var title = _ref.title,
9617
10354
  titleId = _ref.titleId,
9618
- props = _objectWithoutProperties$10(_ref, _excluded$1o);
10355
+ props = _objectWithoutProperties$10(_ref, _excluded$1s);
9619
10356
  return /*#__PURE__*/React.createElement("svg", _extends$11({
9620
10357
  viewBox: "0 0 186 74",
9621
10358
  fill: "#fff",
@@ -9629,14 +10366,14 @@ var SvgLogoLpaWhite = function SvgLogoLpaWhite(_ref) {
9629
10366
  };
9630
10367
 
9631
10368
  var _g$5;
9632
- var _excluded$1p = ["title", "titleId"];
10369
+ var _excluded$1t = ["title", "titleId"];
9633
10370
  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); }
9634
10371
  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; }
9635
10372
  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; }
9636
10373
  var SvgLogoMlnBlack = function SvgLogoMlnBlack(_ref) {
9637
10374
  var title = _ref.title,
9638
10375
  titleId = _ref.titleId,
9639
- props = _objectWithoutProperties$11(_ref, _excluded$1p);
10376
+ props = _objectWithoutProperties$11(_ref, _excluded$1t);
9640
10377
  return /*#__PURE__*/React.createElement("svg", _extends$12({
9641
10378
  viewBox: "0 0 300 71",
9642
10379
  xmlns: "http://www.w3.org/2000/svg",
@@ -9651,14 +10388,14 @@ var SvgLogoMlnBlack = function SvgLogoMlnBlack(_ref) {
9651
10388
  };
9652
10389
 
9653
10390
  var _g$6;
9654
- var _excluded$1q = ["title", "titleId"];
10391
+ var _excluded$1u = ["title", "titleId"];
9655
10392
  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); }
9656
10393
  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; }
9657
10394
  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; }
9658
10395
  var SvgLogoMlnColor = function SvgLogoMlnColor(_ref) {
9659
10396
  var title = _ref.title,
9660
10397
  titleId = _ref.titleId,
9661
- props = _objectWithoutProperties$12(_ref, _excluded$1q);
10398
+ props = _objectWithoutProperties$12(_ref, _excluded$1u);
9662
10399
  return /*#__PURE__*/React.createElement("svg", _extends$13({
9663
10400
  viewBox: "0 0 300 71",
9664
10401
  fill: "#C60917",
@@ -9674,14 +10411,14 @@ var SvgLogoMlnColor = function SvgLogoMlnColor(_ref) {
9674
10411
  };
9675
10412
 
9676
10413
  var _g$7;
9677
- var _excluded$1r = ["title", "titleId"];
10414
+ var _excluded$1v = ["title", "titleId"];
9678
10415
  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); }
9679
10416
  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; }
9680
10417
  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; }
9681
10418
  var SvgLogoMlnWhite = function SvgLogoMlnWhite(_ref) {
9682
10419
  var title = _ref.title,
9683
10420
  titleId = _ref.titleId,
9684
- props = _objectWithoutProperties$13(_ref, _excluded$1r);
10421
+ props = _objectWithoutProperties$13(_ref, _excluded$1v);
9685
10422
  return /*#__PURE__*/React.createElement("svg", _extends$14({
9686
10423
  viewBox: "0 0 300 71",
9687
10424
  fill: "#fff",
@@ -9697,14 +10434,14 @@ var SvgLogoMlnWhite = function SvgLogoMlnWhite(_ref) {
9697
10434
  };
9698
10435
 
9699
10436
  var _g$8, _defs$1;
9700
- var _excluded$1s = ["title", "titleId"];
10437
+ var _excluded$1w = ["title", "titleId"];
9701
10438
  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); }
9702
10439
  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; }
9703
10440
  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; }
9704
10441
  var SvgLogoNycdoeColor = function SvgLogoNycdoeColor(_ref) {
9705
10442
  var title = _ref.title,
9706
10443
  titleId = _ref.titleId,
9707
- props = _objectWithoutProperties$14(_ref, _excluded$1s);
10444
+ props = _objectWithoutProperties$14(_ref, _excluded$1w);
9708
10445
  return /*#__PURE__*/React.createElement("svg", _extends$15({
9709
10446
  viewBox: "0 0 341 61",
9710
10447
  fill: "none",
@@ -9737,14 +10474,14 @@ var SvgLogoNycdoeColor = function SvgLogoNycdoeColor(_ref) {
9737
10474
  })))));
9738
10475
  };
9739
10476
 
9740
- var _excluded$1t = ["title", "titleId"];
10477
+ var _excluded$1x = ["title", "titleId"];
9741
10478
  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); }
9742
10479
  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; }
9743
10480
  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; }
9744
10481
  var SvgLogoNyplFullBlack = function SvgLogoNyplFullBlack(_ref) {
9745
10482
  var title = _ref.title,
9746
10483
  titleId = _ref.titleId,
9747
- props = _objectWithoutProperties$15(_ref, _excluded$1t);
10484
+ props = _objectWithoutProperties$15(_ref, _excluded$1x);
9748
10485
  return /*#__PURE__*/React.createElement("svg", _extends$16({
9749
10486
  xmlns: "http://www.w3.org/2000/svg",
9750
10487
  viewBox: "0 0 966.787 543.733",
@@ -9819,14 +10556,14 @@ var SvgLogoNyplFullBlack = function SvgLogoNyplFullBlack(_ref) {
9819
10556
  };
9820
10557
 
9821
10558
  var _g$9, _defs$2;
9822
- var _excluded$1u = ["title", "titleId"];
10559
+ var _excluded$1y = ["title", "titleId"];
9823
10560
  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); }
9824
10561
  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; }
9825
10562
  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; }
9826
10563
  var SvgLogoNyplFullWhite = function SvgLogoNyplFullWhite(_ref) {
9827
10564
  var title = _ref.title,
9828
10565
  titleId = _ref.titleId,
9829
- props = _objectWithoutProperties$16(_ref, _excluded$1u);
10566
+ props = _objectWithoutProperties$16(_ref, _excluded$1y);
9830
10567
  return /*#__PURE__*/React.createElement("svg", _extends$17({
9831
10568
  viewBox: "0 0 967 568",
9832
10569
  fill: "none",
@@ -9854,14 +10591,14 @@ var SvgLogoNyplFullWhite = function SvgLogoNyplFullWhite(_ref) {
9854
10591
  };
9855
10592
 
9856
10593
  var _path$W, _path2$l, _path3$c;
9857
- var _excluded$1v = ["title", "titleId"];
10594
+ var _excluded$1z = ["title", "titleId"];
9858
10595
  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); }
9859
10596
  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; }
9860
10597
  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; }
9861
10598
  var SvgLogoNyplLionBlack = function SvgLogoNyplLionBlack(_ref) {
9862
10599
  var title = _ref.title,
9863
10600
  titleId = _ref.titleId,
9864
- props = _objectWithoutProperties$17(_ref, _excluded$1v);
10601
+ props = _objectWithoutProperties$17(_ref, _excluded$1z);
9865
10602
  return /*#__PURE__*/React.createElement("svg", _extends$18({
9866
10603
  viewBox: "0 0 136 135",
9867
10604
  fill: "none",
@@ -9884,14 +10621,14 @@ var SvgLogoNyplLionBlack = function SvgLogoNyplLionBlack(_ref) {
9884
10621
  };
9885
10622
 
9886
10623
  var _path$X;
9887
- var _excluded$1w = ["title", "titleId"];
10624
+ var _excluded$1A = ["title", "titleId"];
9888
10625
  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); }
9889
10626
  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; }
9890
10627
  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; }
9891
10628
  var SvgLogoNyplLionWhite = function SvgLogoNyplLionWhite(_ref) {
9892
10629
  var title = _ref.title,
9893
10630
  titleId = _ref.titleId,
9894
- props = _objectWithoutProperties$18(_ref, _excluded$1w);
10631
+ props = _objectWithoutProperties$18(_ref, _excluded$1A);
9895
10632
  return /*#__PURE__*/React.createElement("svg", _extends$19({
9896
10633
  viewBox: "0 0 125 126",
9897
10634
  fill: "none",
@@ -9908,14 +10645,14 @@ var SvgLogoNyplLionWhite = function SvgLogoNyplLionWhite(_ref) {
9908
10645
  };
9909
10646
 
9910
10647
  var _path$Y, _path2$m, _path3$d, _path4$2, _path5$1, _path6$1, _path7$1, _path8$1, _path9$1, _path10$1, _path11$1, _path12$1, _path13$1, _path14, _path15;
9911
- var _excluded$1x = ["title", "titleId"];
10648
+ var _excluded$1B = ["title", "titleId"];
9912
10649
  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); }
9913
10650
  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; }
9914
10651
  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; }
9915
10652
  var SvgLogoNyplTextBlack = function SvgLogoNyplTextBlack(_ref) {
9916
10653
  var title = _ref.title,
9917
10654
  titleId = _ref.titleId,
9918
- props = _objectWithoutProperties$19(_ref, _excluded$1x);
10655
+ props = _objectWithoutProperties$19(_ref, _excluded$1B);
9919
10656
  return /*#__PURE__*/React.createElement("svg", _extends$1a({
9920
10657
  viewBox: "0 0 201 165",
9921
10658
  fill: "none",
@@ -9986,14 +10723,14 @@ var SvgLogoNyplTextBlack = function SvgLogoNyplTextBlack(_ref) {
9986
10723
  };
9987
10724
 
9988
10725
  var _path$Z, _path2$n, _path3$e, _path4$3, _path5$2, _path6$2, _path7$2, _path8$2, _path9$2, _path10$2, _path11$2, _path12$2, _path13$2, _path14$1, _path15$1;
9989
- var _excluded$1y = ["title", "titleId"];
10726
+ var _excluded$1C = ["title", "titleId"];
9990
10727
  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); }
9991
10728
  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; }
9992
10729
  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; }
9993
10730
  var SvgLogoNyplTextWhite = function SvgLogoNyplTextWhite(_ref) {
9994
10731
  var title = _ref.title,
9995
10732
  titleId = _ref.titleId,
9996
- props = _objectWithoutProperties$1a(_ref, _excluded$1y);
10733
+ props = _objectWithoutProperties$1a(_ref, _excluded$1C);
9997
10734
  return /*#__PURE__*/React.createElement("svg", _extends$1b({
9998
10735
  viewBox: "0 0 201 165",
9999
10736
  fill: "none",
@@ -10064,14 +10801,14 @@ var SvgLogoNyplTextWhite = function SvgLogoNyplTextWhite(_ref) {
10064
10801
  };
10065
10802
 
10066
10803
  var _g$a, _defs$3;
10067
- var _excluded$1z = ["title", "titleId"];
10804
+ var _excluded$1D = ["title", "titleId"];
10068
10805
  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); }
10069
10806
  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; }
10070
10807
  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; }
10071
10808
  var SvgLogoOpenebooksColor = function SvgLogoOpenebooksColor(_ref) {
10072
10809
  var title = _ref.title,
10073
10810
  titleId = _ref.titleId,
10074
- props = _objectWithoutProperties$1b(_ref, _excluded$1z);
10811
+ props = _objectWithoutProperties$1b(_ref, _excluded$1D);
10075
10812
  return /*#__PURE__*/React.createElement("svg", _extends$1c({
10076
10813
  viewBox: "0 0 152 139",
10077
10814
  fill: "none",
@@ -10119,14 +10856,14 @@ var SvgLogoOpenebooksColor = function SvgLogoOpenebooksColor(_ref) {
10119
10856
  };
10120
10857
 
10121
10858
  var _g$b, _defs$4;
10122
- var _excluded$1A = ["title", "titleId"];
10859
+ var _excluded$1E = ["title", "titleId"];
10123
10860
  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); }
10124
10861
  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; }
10125
10862
  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; }
10126
10863
  var SvgLogoOpenebooksNegative = function SvgLogoOpenebooksNegative(_ref) {
10127
10864
  var title = _ref.title,
10128
10865
  titleId = _ref.titleId,
10129
- props = _objectWithoutProperties$1c(_ref, _excluded$1A);
10866
+ props = _objectWithoutProperties$1c(_ref, _excluded$1E);
10130
10867
  return /*#__PURE__*/React.createElement("svg", _extends$1d({
10131
10868
  viewBox: "0 0 155 139",
10132
10869
  fill: "none",
@@ -10197,14 +10934,14 @@ var SvgLogoOpenebooksNegative = function SvgLogoOpenebooksNegative(_ref) {
10197
10934
  };
10198
10935
 
10199
10936
  var _g$c, _defs$5;
10200
- var _excluded$1B = ["title", "titleId"];
10937
+ var _excluded$1F = ["title", "titleId"];
10201
10938
  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); }
10202
10939
  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; }
10203
10940
  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; }
10204
10941
  var SvgLogoOpenebooksWithTextColor = function SvgLogoOpenebooksWithTextColor(_ref) {
10205
10942
  var title = _ref.title,
10206
10943
  titleId = _ref.titleId,
10207
- props = _objectWithoutProperties$1d(_ref, _excluded$1B);
10944
+ props = _objectWithoutProperties$1d(_ref, _excluded$1F);
10208
10945
  return /*#__PURE__*/React.createElement("svg", _extends$1e({
10209
10946
  viewBox: "0 0 152 139",
10210
10947
  fill: "none",
@@ -10252,14 +10989,14 @@ var SvgLogoOpenebooksWithTextColor = function SvgLogoOpenebooksWithTextColor(_re
10252
10989
  };
10253
10990
 
10254
10991
  var _g$d, _defs$6;
10255
- var _excluded$1C = ["title", "titleId"];
10992
+ var _excluded$1G = ["title", "titleId"];
10256
10993
  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); }
10257
10994
  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; }
10258
10995
  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; }
10259
10996
  var SvgLogoOpenebooksWithTextNegative = function SvgLogoOpenebooksWithTextNegative(_ref) {
10260
10997
  var title = _ref.title,
10261
10998
  titleId = _ref.titleId,
10262
- props = _objectWithoutProperties$1e(_ref, _excluded$1C);
10999
+ props = _objectWithoutProperties$1e(_ref, _excluded$1G);
10263
11000
  return /*#__PURE__*/React.createElement("svg", _extends$1f({
10264
11001
  viewBox: "0 0 155 139",
10265
11002
  fill: "none",
@@ -10333,14 +11070,14 @@ var SvgLogoOpenebooksWithTextNegative = function SvgLogoOpenebooksWithTextNegati
10333
11070
  };
10334
11071
 
10335
11072
  var _path$_;
10336
- var _excluded$1D = ["title", "titleId"];
11073
+ var _excluded$1H = ["title", "titleId"];
10337
11074
  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); }
10338
11075
  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; }
10339
11076
  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; }
10340
11077
  var SvgLogoQplAltBlack = function SvgLogoQplAltBlack(_ref) {
10341
11078
  var title = _ref.title,
10342
11079
  titleId = _ref.titleId,
10343
- props = _objectWithoutProperties$1f(_ref, _excluded$1D);
11080
+ props = _objectWithoutProperties$1f(_ref, _excluded$1H);
10344
11081
  return /*#__PURE__*/React.createElement("svg", _extends$1g({
10345
11082
  viewBox: "0 0 250 134",
10346
11083
  xmlns: "http://www.w3.org/2000/svg",
@@ -10353,14 +11090,14 @@ var SvgLogoQplAltBlack = function SvgLogoQplAltBlack(_ref) {
10353
11090
  };
10354
11091
 
10355
11092
  var _path$$;
10356
- var _excluded$1E = ["title", "titleId"];
11093
+ var _excluded$1I = ["title", "titleId"];
10357
11094
  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); }
10358
11095
  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; }
10359
11096
  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; }
10360
11097
  var SvgLogoQplAltWhite = function SvgLogoQplAltWhite(_ref) {
10361
11098
  var title = _ref.title,
10362
11099
  titleId = _ref.titleId,
10363
- props = _objectWithoutProperties$1g(_ref, _excluded$1E);
11100
+ props = _objectWithoutProperties$1g(_ref, _excluded$1I);
10364
11101
  return /*#__PURE__*/React.createElement("svg", _extends$1h({
10365
11102
  viewBox: "0 0 250 134",
10366
11103
  fill: "#fff",
@@ -10374,14 +11111,14 @@ var SvgLogoQplAltWhite = function SvgLogoQplAltWhite(_ref) {
10374
11111
  };
10375
11112
 
10376
11113
  var _path$10, _path2$o, _path3$f, _path4$4, _path5$3;
10377
- var _excluded$1F = ["title", "titleId"];
11114
+ var _excluded$1J = ["title", "titleId"];
10378
11115
  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); }
10379
11116
  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; }
10380
11117
  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; }
10381
11118
  var SvgLogoQplBlack = function SvgLogoQplBlack(_ref) {
10382
11119
  var title = _ref.title,
10383
11120
  titleId = _ref.titleId,
10384
- props = _objectWithoutProperties$1h(_ref, _excluded$1F);
11121
+ props = _objectWithoutProperties$1h(_ref, _excluded$1J);
10385
11122
  return /*#__PURE__*/React.createElement("svg", _extends$1i({
10386
11123
  viewBox: "0 0 320 43",
10387
11124
  xmlns: "http://www.w3.org/2000/svg",
@@ -10410,14 +11147,14 @@ var SvgLogoQplBlack = function SvgLogoQplBlack(_ref) {
10410
11147
  };
10411
11148
 
10412
11149
  var _g$e, _defs$7;
10413
- var _excluded$1G = ["title", "titleId"];
11150
+ var _excluded$1K = ["title", "titleId"];
10414
11151
  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); }
10415
11152
  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; }
10416
11153
  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; }
10417
11154
  var SvgLogoQplColor = function SvgLogoQplColor(_ref) {
10418
11155
  var title = _ref.title,
10419
11156
  titleId = _ref.titleId,
10420
- props = _objectWithoutProperties$1i(_ref, _excluded$1G);
11157
+ props = _objectWithoutProperties$1i(_ref, _excluded$1K);
10421
11158
  return /*#__PURE__*/React.createElement("svg", _extends$1j({
10422
11159
  viewBox: "0 0 355 48",
10423
11160
  fill: "none",
@@ -10465,14 +11202,14 @@ var SvgLogoQplColor = function SvgLogoQplColor(_ref) {
10465
11202
  };
10466
11203
 
10467
11204
  var _path$11, _path2$p, _path3$g, _path4$5, _path5$4;
10468
- var _excluded$1H = ["title", "titleId"];
11205
+ var _excluded$1L = ["title", "titleId"];
10469
11206
  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); }
10470
11207
  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; }
10471
11208
  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; }
10472
11209
  var SvgLogoQplWhite = function SvgLogoQplWhite(_ref) {
10473
11210
  var title = _ref.title,
10474
11211
  titleId = _ref.titleId,
10475
- props = _objectWithoutProperties$1j(_ref, _excluded$1H);
11212
+ props = _objectWithoutProperties$1j(_ref, _excluded$1L);
10476
11213
  return /*#__PURE__*/React.createElement("svg", _extends$1k({
10477
11214
  viewBox: "0 0 320 43",
10478
11215
  fill: "#fff",
@@ -10502,14 +11239,14 @@ var SvgLogoQplWhite = function SvgLogoQplWhite(_ref) {
10502
11239
  };
10503
11240
 
10504
11241
  var _path$12, _path2$q, _path3$h, _path4$6, _path5$5;
10505
- var _excluded$1I = ["title", "titleId"];
11242
+ var _excluded$1M = ["title", "titleId"];
10506
11243
  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); }
10507
11244
  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; }
10508
11245
  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; }
10509
11246
  var SvgLogoReservoirIconColor = function SvgLogoReservoirIconColor(_ref) {
10510
11247
  var title = _ref.title,
10511
11248
  titleId = _ref.titleId,
10512
- props = _objectWithoutProperties$1k(_ref, _excluded$1I);
11249
+ props = _objectWithoutProperties$1k(_ref, _excluded$1M);
10513
11250
  return /*#__PURE__*/React.createElement("svg", _extends$1l({
10514
11251
  viewBox: "0 0 105 129",
10515
11252
  fill: "none",
@@ -10536,14 +11273,14 @@ var SvgLogoReservoirIconColor = function SvgLogoReservoirIconColor(_ref) {
10536
11273
  };
10537
11274
 
10538
11275
  var _g$f;
10539
- var _excluded$1J = ["title", "titleId"];
11276
+ var _excluded$1N = ["title", "titleId"];
10540
11277
  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); }
10541
11278
  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; }
10542
11279
  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; }
10543
11280
  var SvgLogoReservoirVerticalColor = function SvgLogoReservoirVerticalColor(_ref) {
10544
11281
  var title = _ref.title,
10545
11282
  titleId = _ref.titleId,
10546
- props = _objectWithoutProperties$1l(_ref, _excluded$1J);
11283
+ props = _objectWithoutProperties$1l(_ref, _excluded$1N);
10547
11284
  return /*#__PURE__*/React.createElement("svg", _extends$1m({
10548
11285
  viewBox: "0 0 234 261",
10549
11286
  fill: "none",
@@ -10569,14 +11306,14 @@ var SvgLogoReservoirVerticalColor = function SvgLogoReservoirVerticalColor(_ref)
10569
11306
  };
10570
11307
 
10571
11308
  var _path$13, _path2$r, _path3$i, _path4$7, _path5$6;
10572
- var _excluded$1K = ["title", "titleId"];
11309
+ var _excluded$1O = ["title", "titleId"];
10573
11310
  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); }
10574
11311
  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; }
10575
11312
  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; }
10576
11313
  var SvgLogoSchomburgBlack = function SvgLogoSchomburgBlack(_ref) {
10577
11314
  var title = _ref.title,
10578
11315
  titleId = _ref.titleId,
10579
- props = _objectWithoutProperties$1m(_ref, _excluded$1K);
11316
+ props = _objectWithoutProperties$1m(_ref, _excluded$1O);
10580
11317
  return /*#__PURE__*/React.createElement("svg", _extends$1n({
10581
11318
  viewBox: "0 0 185 79",
10582
11319
  xmlns: "http://www.w3.org/2000/svg",
@@ -10597,14 +11334,14 @@ var SvgLogoSchomburgBlack = function SvgLogoSchomburgBlack(_ref) {
10597
11334
  };
10598
11335
 
10599
11336
  var _path$14, _path2$s, _path3$j, _path4$8, _path5$7;
10600
- var _excluded$1L = ["title", "titleId"];
11337
+ var _excluded$1P = ["title", "titleId"];
10601
11338
  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); }
10602
11339
  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; }
10603
11340
  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; }
10604
11341
  var SvgLogoSchomburgCircleBlack = function SvgLogoSchomburgCircleBlack(_ref) {
10605
11342
  var title = _ref.title,
10606
11343
  titleId = _ref.titleId,
10607
- props = _objectWithoutProperties$1n(_ref, _excluded$1L);
11344
+ props = _objectWithoutProperties$1n(_ref, _excluded$1P);
10608
11345
  return /*#__PURE__*/React.createElement("svg", _extends$1o({
10609
11346
  viewBox: "0 0 67 67",
10610
11347
  xmlns: "http://www.w3.org/2000/svg",
@@ -10625,14 +11362,14 @@ var SvgLogoSchomburgCircleBlack = function SvgLogoSchomburgCircleBlack(_ref) {
10625
11362
  };
10626
11363
 
10627
11364
  var _path$15, _path2$t, _path3$k, _path4$9, _path5$8;
10628
- var _excluded$1M = ["title", "titleId"];
11365
+ var _excluded$1Q = ["title", "titleId"];
10629
11366
  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); }
10630
11367
  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; }
10631
11368
  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; }
10632
11369
  var SvgLogoSchomburgCircleColor = function SvgLogoSchomburgCircleColor(_ref) {
10633
11370
  var title = _ref.title,
10634
11371
  titleId = _ref.titleId,
10635
- props = _objectWithoutProperties$1o(_ref, _excluded$1M);
11372
+ props = _objectWithoutProperties$1o(_ref, _excluded$1Q);
10636
11373
  return /*#__PURE__*/React.createElement("svg", _extends$1p({
10637
11374
  viewBox: "0 0 67 67",
10638
11375
  fill: "none",
@@ -10659,14 +11396,14 @@ var SvgLogoSchomburgCircleColor = function SvgLogoSchomburgCircleColor(_ref) {
10659
11396
  };
10660
11397
 
10661
11398
  var _path$16, _path2$u, _path3$l, _path4$a, _path5$9;
10662
- var _excluded$1N = ["title", "titleId"];
11399
+ var _excluded$1R = ["title", "titleId"];
10663
11400
  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); }
10664
11401
  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; }
10665
11402
  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; }
10666
11403
  var SvgLogoSchomburgCircleWhite = function SvgLogoSchomburgCircleWhite(_ref) {
10667
11404
  var title = _ref.title,
10668
11405
  titleId = _ref.titleId,
10669
- props = _objectWithoutProperties$1p(_ref, _excluded$1N);
11406
+ props = _objectWithoutProperties$1p(_ref, _excluded$1R);
10670
11407
  return /*#__PURE__*/React.createElement("svg", _extends$1q({
10671
11408
  viewBox: "0 0 67 67",
10672
11409
  fill: "#fff",
@@ -10688,14 +11425,14 @@ var SvgLogoSchomburgCircleWhite = function SvgLogoSchomburgCircleWhite(_ref) {
10688
11425
  };
10689
11426
 
10690
11427
  var _path$17, _path2$v, _path3$m, _path4$b, _path5$a, _path6$3, _path7$3;
10691
- var _excluded$1O = ["title", "titleId"];
11428
+ var _excluded$1S = ["title", "titleId"];
10692
11429
  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); }
10693
11430
  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; }
10694
11431
  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; }
10695
11432
  var SvgLogoSchomburgColor = function SvgLogoSchomburgColor(_ref) {
10696
11433
  var title = _ref.title,
10697
11434
  titleId = _ref.titleId,
10698
- props = _objectWithoutProperties$1q(_ref, _excluded$1O);
11435
+ props = _objectWithoutProperties$1q(_ref, _excluded$1S);
10699
11436
  return /*#__PURE__*/React.createElement("svg", _extends$1r({
10700
11437
  viewBox: "0 0 185 79",
10701
11438
  fill: "none",
@@ -10728,14 +11465,14 @@ var SvgLogoSchomburgColor = function SvgLogoSchomburgColor(_ref) {
10728
11465
  };
10729
11466
 
10730
11467
  var _path$18, _path2$w, _path3$n, _path4$c, _path5$b;
10731
- var _excluded$1P = ["title", "titleId"];
11468
+ var _excluded$1T = ["title", "titleId"];
10732
11469
  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); }
10733
11470
  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; }
10734
11471
  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; }
10735
11472
  var SvgLogoSchomburgWhite = function SvgLogoSchomburgWhite(_ref) {
10736
11473
  var title = _ref.title,
10737
11474
  titleId = _ref.titleId,
10738
- props = _objectWithoutProperties$1r(_ref, _excluded$1P);
11475
+ props = _objectWithoutProperties$1r(_ref, _excluded$1T);
10739
11476
  return /*#__PURE__*/React.createElement("svg", _extends$1s({
10740
11477
  viewBox: "0 0 185 79",
10741
11478
  fill: "#fff",
@@ -10757,14 +11494,14 @@ var SvgLogoSchomburgWhite = function SvgLogoSchomburgWhite(_ref) {
10757
11494
  };
10758
11495
 
10759
11496
  var _g$g, _defs$8;
10760
- var _excluded$1Q = ["title", "titleId"];
11497
+ var _excluded$1U = ["title", "titleId"];
10761
11498
  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); }
10762
11499
  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; }
10763
11500
  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; }
10764
11501
  var SvgLogoSimplyeBlack = function SvgLogoSimplyeBlack(_ref) {
10765
11502
  var title = _ref.title,
10766
11503
  titleId = _ref.titleId,
10767
- props = _objectWithoutProperties$1s(_ref, _excluded$1Q);
11504
+ props = _objectWithoutProperties$1s(_ref, _excluded$1U);
10768
11505
  return /*#__PURE__*/React.createElement("svg", _extends$1t({
10769
11506
  viewBox: "0 0 512 148",
10770
11507
  xmlns: "http://www.w3.org/2000/svg",
@@ -10789,14 +11526,14 @@ var SvgLogoSimplyeBlack = function SvgLogoSimplyeBlack(_ref) {
10789
11526
  };
10790
11527
 
10791
11528
  var _g$h, _defs$9;
10792
- var _excluded$1R = ["title", "titleId"];
11529
+ var _excluded$1V = ["title", "titleId"];
10793
11530
  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); }
10794
11531
  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; }
10795
11532
  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; }
10796
11533
  var SvgLogoSimplyeWhite = function SvgLogoSimplyeWhite(_ref) {
10797
11534
  var title = _ref.title,
10798
11535
  titleId = _ref.titleId,
10799
- props = _objectWithoutProperties$1t(_ref, _excluded$1R);
11536
+ props = _objectWithoutProperties$1t(_ref, _excluded$1V);
10800
11537
  return /*#__PURE__*/React.createElement("svg", _extends$1u({
10801
11538
  viewBox: "0 0 512 148",
10802
11539
  fill: "#fff",
@@ -10821,14 +11558,14 @@ var SvgLogoSimplyeWhite = function SvgLogoSimplyeWhite(_ref) {
10821
11558
  };
10822
11559
 
10823
11560
  var _g$i, _defs$a;
10824
- var _excluded$1S = ["title", "titleId"];
11561
+ var _excluded$1W = ["title", "titleId"];
10825
11562
  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); }
10826
11563
  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; }
10827
11564
  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; }
10828
11565
  var SvgLogoSimplyeColor = function SvgLogoSimplyeColor(_ref) {
10829
11566
  var title = _ref.title,
10830
11567
  titleId = _ref.titleId,
10831
- props = _objectWithoutProperties$1u(_ref, _excluded$1S);
11568
+ props = _objectWithoutProperties$1u(_ref, _excluded$1W);
10832
11569
  return /*#__PURE__*/React.createElement("svg", _extends$1v({
10833
11570
  viewBox: "0 0 682 196",
10834
11571
  fill: "none",
@@ -10860,14 +11597,14 @@ var SvgLogoSimplyeColor = function SvgLogoSimplyeColor(_ref) {
10860
11597
  };
10861
11598
 
10862
11599
  var _path$19;
10863
- var _excluded$1T = ["title", "titleId"];
11600
+ var _excluded$1X = ["title", "titleId"];
10864
11601
  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); }
10865
11602
  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; }
10866
11603
  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; }
10867
11604
  var SvgLogoSnflBlack = function SvgLogoSnflBlack(_ref) {
10868
11605
  var title = _ref.title,
10869
11606
  titleId = _ref.titleId,
10870
- props = _objectWithoutProperties$1v(_ref, _excluded$1T);
11607
+ props = _objectWithoutProperties$1v(_ref, _excluded$1X);
10871
11608
  return /*#__PURE__*/React.createElement("svg", _extends$1w({
10872
11609
  viewBox: "0 0 84 111",
10873
11610
  xmlns: "http://www.w3.org/2000/svg",
@@ -10880,14 +11617,14 @@ var SvgLogoSnflBlack = function SvgLogoSnflBlack(_ref) {
10880
11617
  };
10881
11618
 
10882
11619
  var _path$1a;
10883
- var _excluded$1U = ["title", "titleId"];
11620
+ var _excluded$1Y = ["title", "titleId"];
10884
11621
  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); }
10885
11622
  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; }
10886
11623
  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; }
10887
11624
  var SvgLogoSnflWhite = function SvgLogoSnflWhite(_ref) {
10888
11625
  var title = _ref.title,
10889
11626
  titleId = _ref.titleId,
10890
- props = _objectWithoutProperties$1w(_ref, _excluded$1U);
11627
+ props = _objectWithoutProperties$1w(_ref, _excluded$1Y);
10891
11628
  return /*#__PURE__*/React.createElement("svg", _extends$1x({
10892
11629
  viewBox: "0 0 84 111",
10893
11630
  fill: "#fff",
@@ -10901,14 +11638,14 @@ var SvgLogoSnflWhite = function SvgLogoSnflWhite(_ref) {
10901
11638
  };
10902
11639
 
10903
11640
  var _path$1b, _path2$x, _path3$o, _path4$d, _path5$c, _path6$4, _path7$4, _path8$3, _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;
10904
- var _excluded$1V = ["title", "titleId"];
11641
+ var _excluded$1Z = ["title", "titleId"];
10905
11642
  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); }
10906
11643
  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; }
10907
11644
  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; }
10908
11645
  var SvgLogoTreasuresColor = function SvgLogoTreasuresColor(_ref) {
10909
11646
  var title = _ref.title,
10910
11647
  titleId = _ref.titleId,
10911
- props = _objectWithoutProperties$1x(_ref, _excluded$1V);
11648
+ props = _objectWithoutProperties$1x(_ref, _excluded$1Z);
10912
11649
  return /*#__PURE__*/React.createElement("svg", _extends$1y({
10913
11650
  viewBox: "0 0 324 265",
10914
11651
  fill: "none",
@@ -11085,14 +11822,14 @@ var SvgLogoTreasuresColor = function SvgLogoTreasuresColor(_ref) {
11085
11822
  };
11086
11823
 
11087
11824
  var _path$1c, _path2$y, _path3$p, _path4$e, _path5$d, _path6$5, _path7$5, _path8$4, _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;
11088
- var _excluded$1W = ["title", "titleId"];
11825
+ var _excluded$1_ = ["title", "titleId"];
11089
11826
  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); }
11090
11827
  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; }
11091
11828
  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; }
11092
11829
  var SvgLogoTreasuresColorNegative = function SvgLogoTreasuresColorNegative(_ref) {
11093
11830
  var title = _ref.title,
11094
11831
  titleId = _ref.titleId,
11095
- props = _objectWithoutProperties$1y(_ref, _excluded$1W);
11832
+ props = _objectWithoutProperties$1y(_ref, _excluded$1_);
11096
11833
  return /*#__PURE__*/React.createElement("svg", _extends$1z({
11097
11834
  viewBox: "0 0 327 266",
11098
11835
  fill: "none",
@@ -11319,7 +12056,7 @@ var logoSvgs = {
11319
12056
  treasuresColorNegative: SvgLogoTreasuresColorNegative
11320
12057
  };
11321
12058
 
11322
- var _excluded$1X = ["children", "className", "decorative", "id", "name", "size", "title"];
12059
+ var _excluded$1$ = ["children", "className", "decorative", "id", "name", "size", "title"];
11323
12060
  /**
11324
12061
  * The `Logo` component renders SVG-based logos and color variants that are
11325
12062
  * commonly used by the New York Public Library.
@@ -11336,7 +12073,7 @@ var Logo$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (
11336
12073
  size = _props$size === void 0 ? "medium" : _props$size,
11337
12074
  _props$title = props.title,
11338
12075
  title = _props$title === void 0 ? name + " logo" : _props$title,
11339
- rest = _objectWithoutPropertiesLoose(props, _excluded$1X);
12076
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1$);
11340
12077
  var styles = react.useStyleConfig("Logo", {
11341
12078
  size: size
11342
12079
  });
@@ -11437,7 +12174,7 @@ var link$1 = {
11437
12174
  }]
11438
12175
  };
11439
12176
 
11440
- var _excluded$1Y = ["className", "id"];
12177
+ var _excluded$20 = ["className", "id"];
11441
12178
  /**
11442
12179
  * This `Footer` component renders the NYPL-branded footer elements such
11443
12180
  * as navigational NYPL.org links, social media links, copyright, and
@@ -11447,7 +12184,7 @@ var Footer$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function
11447
12184
  var className = _ref.className,
11448
12185
  _ref$id = _ref.id,
11449
12186
  id = _ref$id === void 0 ? "footer" : _ref$id,
11450
- rest = _objectWithoutPropertiesLoose(_ref, _excluded$1Y);
12187
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded$20);
11451
12188
  var styles = react.useMultiStyleConfig("Footer", {});
11452
12189
  var nyplLinks = link$1.nyplLinks.map(function (links, index) {
11453
12190
  return React__default.createElement(List$1, {
@@ -11505,232 +12242,67 @@ var Footer$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function
11505
12242
  src: "https://cdn-d8.nypl.org/s3fs-public/2020-05/NYPL_MainFacadeRev2Cam2.png"
11506
12243
  })), React__default.createElement(react.Box, {
11507
12244
  __css: styles.copyright
11508
- }, React__default.createElement("p", null, "\xA9 The New York Public Library, ", new Date().getFullYear()), React__default.createElement("p", null, "The New York Public Library is a 501(c)(3) | EIN 13-1887440"))), React__default.createElement(react.Box, {
11509
- __css: styles.logoContainer
11510
- }, React__default.createElement(Logo$1, {
11511
- "aria-label": "The New York Public Library",
11512
- decorative: false,
11513
- name: "nyplTextWhite",
11514
- size: "small",
11515
- title: "The New York Public Library"
11516
- })));
11517
- }));
11518
-
11519
- var _excluded$1Z = ["align", "className"];
11520
- var HorizontalRule$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (props, ref) {
11521
- var align = props.align,
11522
- className = props.className,
11523
- rest = _objectWithoutPropertiesLoose(props, _excluded$1Z);
11524
- var styles = react.useStyleConfig("HorizontalRule", {
11525
- align: align
11526
- });
11527
- var finalStyles = _extends({}, styles, {
11528
- height: "2px",
11529
- width: "100%"
11530
- });
11531
- return React__default.createElement(react.Box, Object.assign({
11532
- as: "hr",
11533
- className: className,
11534
- ref: ref,
11535
- __css: finalStyles
11536
- }, rest));
11537
- }));
11538
-
11539
- var _excluded$1_ = ["className", "id", "target"];
11540
- /**
11541
- * SkipNavigation is a component that is used to provide a navigational list of
11542
- * links. The first link is used to skip to the main content of the page using
11543
- * the `#mainContent` id, and the second link points to accessibility information
11544
- * on NYPL.org. These links are visually hidden but can be read by screenreaders.
11545
- */
11546
- var SkipNavigation$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (props, ref) {
11547
- var className = props.className,
11548
- id = props.id,
11549
- _props$target = props.target,
11550
- target = _props$target === void 0 ? "#mainContent" : _props$target,
11551
- rest = _objectWithoutPropertiesLoose(props, _excluded$1_);
11552
- var styles = react.useStyleConfig("SkipNavigation");
11553
- return React__default.createElement(react.Box, Object.assign({
11554
- as: "nav",
11555
- "aria-label": "Skip Navigation",
11556
- className: className,
11557
- id: id,
11558
- ref: ref,
11559
- __css: styles
11560
- }, rest), React__default.createElement(List$1, {
11561
- inline: true,
11562
- noStyling: true,
11563
- type: "ul"
11564
- }, React__default.createElement("li", null, React__default.createElement(Link, {
11565
- href: target
11566
- }, "Skip to Main Content")), React__default.createElement("li", null, React__default.createElement(Link, {
11567
- href: "https://www.nypl.org/accessibility"
11568
- }, "Click to learn about accessibility at the Library"))));
11569
- }));
11570
-
11571
- var _excluded$1$ = ["className", "helperText", "id", "invalidText", "isChecked", "isDisabled", "isInvalid", "isRequired", "labelText", "name", "onChange", "showHelperInvalidText", "showLabel", "value"];
11572
- var Radio$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (props, ref) {
11573
- var className = props.className,
11574
- helperText = props.helperText,
11575
- id = props.id,
11576
- invalidText = props.invalidText,
11577
- isChecked = props.isChecked,
11578
- _props$isDisabled = props.isDisabled,
11579
- isDisabled = _props$isDisabled === void 0 ? false : _props$isDisabled,
11580
- _props$isInvalid = props.isInvalid,
11581
- isInvalid = _props$isInvalid === void 0 ? false : _props$isInvalid,
11582
- _props$isRequired = props.isRequired,
11583
- isRequired = _props$isRequired === void 0 ? false : _props$isRequired,
11584
- labelText = props.labelText,
11585
- name = props.name,
11586
- onChange = props.onChange,
11587
- _props$showHelperInva = props.showHelperInvalidText,
11588
- showHelperInvalidText = _props$showHelperInva === void 0 ? true : _props$showHelperInva,
11589
- _props$showLabel = props.showLabel,
11590
- showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
11591
- value = props.value,
11592
- rest = _objectWithoutPropertiesLoose(props, _excluded$1$);
11593
- var styles = react.useMultiStyleConfig("Radio", {
11594
- showLabel: showLabel
11595
- });
11596
- var wrapperStyles = react.useStyleConfig("RadioWrapper");
11597
- var footnote = isInvalid ? invalidText : helperText;
11598
- var ariaAttributes = getAriaAttrs({
11599
- footnote: footnote,
11600
- id: id,
11601
- labelText: labelText,
11602
- name: "Radio",
11603
- showLabel: showLabel
11604
- });
11605
- // We can't use the aria-label because of how Chakra renders its
11606
- // Radio component. Instead, we'll visually hide the label.
11607
- delete ariaAttributes["aria-label"];
11608
- if (!id) {
11609
- console.warn("NYPL Reservoir Radio: This component's required `id` prop was not passed.");
11610
- }
11611
- return React__default.createElement(ComponentWrapper, Object.assign({
11612
- helperText: helperText,
11613
- helperTextStyles: styles.helperErrorText,
11614
- id: id,
11615
- invalidText: invalidText,
11616
- isInvalid: isInvalid,
11617
- showHelperInvalidText: showHelperInvalidText,
11618
- sx: wrapperStyles
11619
- }, rest), React__default.createElement(react.Radio, Object.assign({
11620
- className: className,
11621
- id: id,
11622
- isChecked: isChecked,
11623
- isDisabled: isDisabled,
11624
- isInvalid: isInvalid,
11625
- isRequired: isRequired,
11626
- name: name,
11627
- onChange: onChange,
11628
- ref: ref,
11629
- value: value,
11630
- alignItems: "flex-start",
11631
- sx: styles
11632
- }, ariaAttributes), React__default.createElement(react.Box, {
11633
- as: "span",
11634
- __css: showLabel ? {} : styles.hiddenLabel
11635
- }, labelText)));
11636
- }));
11637
-
11638
- var _excluded$20 = ["children", "className", "defaultValue", "helperText", "id", "invalidText", "isDisabled", "isFullWidth", "isInvalid", "isRequired", "labelText", "layout", "name", "onChange", "showHelperInvalidText", "showLabel", "showRequiredLabel"];
11639
- /**
11640
- * RadioGroup is a wrapper for DS `Radio` components that renders as a fieldset
11641
- * HTML element along with optional helper text. The `name` prop is essential
11642
- * for this form group element and is not needed for individual DS `Radio`
11643
- * components when `RadioGroup` is used.
11644
- */
11645
- var RadioGroup$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (props, ref) {
11646
- var children = props.children,
11647
- _props$className = props.className,
11648
- className = _props$className === void 0 ? "" : _props$className,
11649
- defaultValue = props.defaultValue,
11650
- helperText = props.helperText,
11651
- id = props.id,
11652
- invalidText = props.invalidText,
11653
- _props$isDisabled = props.isDisabled,
11654
- isDisabled = _props$isDisabled === void 0 ? false : _props$isDisabled,
11655
- _props$isFullWidth = props.isFullWidth,
11656
- isFullWidth = _props$isFullWidth === void 0 ? false : _props$isFullWidth,
11657
- _props$isInvalid = props.isInvalid,
11658
- isInvalid = _props$isInvalid === void 0 ? false : _props$isInvalid,
11659
- _props$isRequired = props.isRequired,
11660
- isRequired = _props$isRequired === void 0 ? false : _props$isRequired,
11661
- labelText = props.labelText,
11662
- _props$layout = props.layout,
11663
- layout = _props$layout === void 0 ? "column" : _props$layout,
11664
- name = props.name,
11665
- _onChange = props.onChange,
11666
- _props$showHelperInva = props.showHelperInvalidText,
11667
- showHelperInvalidText = _props$showHelperInva === void 0 ? true : _props$showHelperInva,
11668
- _props$showLabel = props.showLabel,
11669
- showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
11670
- _props$showRequiredLa = props.showRequiredLabel,
11671
- showRequiredLabel = _props$showRequiredLa === void 0 ? true : _props$showRequiredLa,
11672
- rest = _objectWithoutPropertiesLoose(props, _excluded$20);
11673
- var _React$useState = React__default.useState(defaultValue),
11674
- value = _React$useState[0],
11675
- setValue = _React$useState[1];
11676
- var footnote = isInvalid ? invalidText : helperText;
11677
- var spacingProp = layout === "column" ? spacing.s : spacing.l;
11678
- var newChildren = [];
11679
- // Get the Chakra-based styles for the custom elements in this component.
11680
- var styles = react.useMultiStyleConfig("RadioGroup", {
11681
- isFullWidth: isFullWidth
11682
- });
11683
- // Props for the `ChakraRadioGroup` component.
11684
- var radioGroupProps = {
11685
- "aria-label": !showLabel ? labelText : undefined,
11686
- name: name,
11687
- onChange: function onChange(selected) {
11688
- setValue(selected);
11689
- _onChange && _onChange(selected);
11690
- },
11691
- ref: ref,
11692
- value: value
11693
- };
11694
- if (!id) {
11695
- console.warn("NYPL Reservoir RadioGroup: This component's required `id` prop was not passed.");
11696
- }
11697
- // Go through the Radio children and update them as needed.
11698
- React__default.Children.map(children, function (child, key) {
11699
- if ((child == null ? void 0 : child.type) !== Radio$1) {
11700
- var _child$props, _child$props2;
11701
- // Special case for Storybook MDX documentation.
11702
- if ((_child$props = child.props) != null && _child$props.mdxType && ((_child$props2 = child.props) == null ? void 0 : _child$props2.mdxType) === "Radio") ; else {
11703
- console.warn("NYPL Reservoir RadioGroup: Only `Radio` components are allowed " + "inside the `RadioGroup` component.");
11704
- }
11705
- }
11706
- if (child !== undefined && child !== null) {
11707
- var newProps = {
11708
- key: key,
11709
- isDisabled: isDisabled,
11710
- isInvalid: isInvalid,
11711
- isRequired: isRequired
11712
- };
11713
- newChildren.push(React__default.cloneElement(child, newProps));
11714
- }
12245
+ }, React__default.createElement("p", null, "\xA9 The New York Public Library, ", new Date().getFullYear()), React__default.createElement("p", null, "The New York Public Library is a 501(c)(3) | EIN 13-1887440"))), React__default.createElement(react.Box, {
12246
+ __css: styles.logoContainer
12247
+ }, React__default.createElement(Logo$1, {
12248
+ "aria-label": "The New York Public Library",
12249
+ decorative: false,
12250
+ name: "nyplTextWhite",
12251
+ size: "small",
12252
+ title: "The New York Public Library"
12253
+ })));
12254
+ }));
12255
+
12256
+ var _excluded$21 = ["align", "className"];
12257
+ var HorizontalRule$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (props, ref) {
12258
+ var align = props.align,
12259
+ className = props.className,
12260
+ rest = _objectWithoutPropertiesLoose(props, _excluded$21);
12261
+ var styles = react.useStyleConfig("HorizontalRule", {
12262
+ align: align
11715
12263
  });
11716
- return React__default.createElement(Fieldset, Object.assign({
12264
+ var finalStyles = _extends({}, styles, {
12265
+ height: "2px",
12266
+ width: "100%"
12267
+ });
12268
+ return React__default.createElement(react.Box, Object.assign({
12269
+ as: "hr",
11717
12270
  className: className,
11718
- id: "radio-group-" + id,
11719
- isLegendHidden: !showLabel,
11720
- isRequired: isRequired,
11721
- legendText: labelText,
11722
- showRequiredLabel: showRequiredLabel
11723
- }, rest, {
12271
+ ref: ref,
12272
+ __css: finalStyles
12273
+ }, rest));
12274
+ }));
12275
+
12276
+ var _excluded$22 = ["className", "id", "target"];
12277
+ /**
12278
+ * SkipNavigation is a component that is used to provide a navigational list of
12279
+ * links. The first link is used to skip to the main content of the page using
12280
+ * the `#mainContent` id, and the second link points to accessibility information
12281
+ * on NYPL.org. These links are visually hidden but can be read by screenreaders.
12282
+ */
12283
+ var SkipNavigation$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (props, ref) {
12284
+ var className = props.className,
12285
+ id = props.id,
12286
+ _props$target = props.target,
12287
+ target = _props$target === void 0 ? "#mainContent" : _props$target,
12288
+ rest = _objectWithoutPropertiesLoose(props, _excluded$22);
12289
+ var styles = react.useStyleConfig("SkipNavigation");
12290
+ return React__default.createElement(react.Box, Object.assign({
12291
+ as: "nav",
12292
+ "aria-label": "Skip Navigation",
12293
+ className: className,
12294
+ id: id,
12295
+ ref: ref,
11724
12296
  __css: styles
11725
- }), React__default.createElement(react.RadioGroup, Object.assign({}, radioGroupProps), React__default.createElement(react.Stack, {
11726
- direction: [layout],
11727
- spacing: spacingProp
11728
- }, newChildren)), footnote && showHelperInvalidText && React__default.createElement(HelperErrorText, {
11729
- id: id + "-helperErrorText",
11730
- isInvalid: isInvalid,
11731
- text: footnote,
11732
- __css: styles.helperErrorText
11733
- }));
12297
+ }, rest), React__default.createElement(List$1, {
12298
+ inline: true,
12299
+ noStyling: true,
12300
+ type: "ul"
12301
+ }, React__default.createElement("li", null, React__default.createElement(Link, {
12302
+ href: target
12303
+ }, "Skip to Main Content")), React__default.createElement("li", null, React__default.createElement(Link, {
12304
+ href: "https://www.nypl.org/accessibility"
12305
+ }, "Click to learn about accessibility at the Library"))));
11734
12306
  }));
11735
12307
 
11736
12308
  /*eslint no-useless-escape: 0 */
@@ -12695,164 +13267,6 @@ var HeaderMobileIconNav$1 = /*#__PURE__*/react.chakra(function () {
12695
13267
  }), React__default.createElement(HeaderMobileNavButton$1, null));
12696
13268
  });
12697
13269
 
12698
- var _excluded$21 = ["children", "icon", "id", "isCentered", "notificationType"],
12699
- _excluded2$5 = ["alignText", "children", "icon", "notificationType"],
12700
- _excluded3$3 = ["ariaLabel", "className", "dismissible", "icon", "id", "isCentered", "noMargin", "notificationContent", "notificationHeading", "notificationType", "showIcon"];
12701
- /**
12702
- * NotificationHeading child-component.
12703
- */
12704
- var NotificationHeading$1 = /*#__PURE__*/react.chakra(function (props) {
12705
- var children = props.children,
12706
- icon = props.icon,
12707
- id = props.id,
12708
- isCentered = props.isCentered,
12709
- notificationType = props.notificationType,
12710
- rest = _objectWithoutPropertiesLoose(props, _excluded$21);
12711
- var styles = react.useMultiStyleConfig("NotificationHeading", {
12712
- icon: icon,
12713
- isCentered: isCentered,
12714
- notificationType: notificationType
12715
- });
12716
- return React__default.createElement(react.Box, Object.assign({
12717
- as: "header",
12718
- __css: styles
12719
- }, rest), icon, React__default.createElement(Heading, {
12720
- id: id + "-heading",
12721
- level: "four",
12722
- __css: styles.heading
12723
- }, children));
12724
- });
12725
- /**
12726
- * NotificationContent child-component.
12727
- */
12728
- var NotificationContent$1 = /*#__PURE__*/react.chakra(function (props) {
12729
- var alignText = props.alignText,
12730
- children = props.children,
12731
- icon = props.icon,
12732
- notificationType = props.notificationType,
12733
- rest = _objectWithoutPropertiesLoose(props, _excluded2$5);
12734
- var styles = react.useMultiStyleConfig("NotificationContent", {
12735
- alignText: alignText,
12736
- icon: icon,
12737
- notificationType: notificationType
12738
- });
12739
- return React__default.createElement(react.Box, Object.assign({
12740
- __css: styles
12741
- }, rest), icon, React__default.createElement(react.Box, {
12742
- __css: styles.content
12743
- }, children));
12744
- });
12745
- /**
12746
- * Component used to present users with three different levels of notifications:
12747
- * standard, announcement, and warning.
12748
- */
12749
- var Notification$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (props, ref) {
12750
- var ariaLabel = props.ariaLabel,
12751
- className = props.className,
12752
- _props$dismissible = props.dismissible,
12753
- dismissible = _props$dismissible === void 0 ? false : _props$dismissible,
12754
- icon = props.icon,
12755
- id = props.id,
12756
- _props$isCentered = props.isCentered,
12757
- isCentered = _props$isCentered === void 0 ? false : _props$isCentered,
12758
- _props$noMargin = props.noMargin,
12759
- noMargin = _props$noMargin === void 0 ? false : _props$noMargin,
12760
- notificationContent = props.notificationContent,
12761
- notificationHeading = props.notificationHeading,
12762
- _props$notificationTy = props.notificationType,
12763
- notificationType = _props$notificationTy === void 0 ? "standard" : _props$notificationTy,
12764
- _props$showIcon = props.showIcon,
12765
- showIcon = _props$showIcon === void 0 ? true : _props$showIcon,
12766
- rest = _objectWithoutPropertiesLoose(props, _excluded3$3);
12767
- var _useState = React.useState(true),
12768
- isOpen = _useState[0],
12769
- setIsOpen = _useState[1];
12770
- var handleClose = function handleClose() {
12771
- return setIsOpen(false);
12772
- };
12773
- var styles = react.useMultiStyleConfig("Notification", {
12774
- dismissible: dismissible,
12775
- isCentered: isCentered,
12776
- noMargin: noMargin,
12777
- notificationType: notificationType
12778
- });
12779
- var iconElement = function iconElement() {
12780
- var baseIconProps = {
12781
- size: "large",
12782
- __css: styles.icon
12783
- };
12784
- // If the icon should not display, return undefined.
12785
- if (!showIcon) {
12786
- return undefined;
12787
- }
12788
- // If a custom icon is passed, add specific `Notification` styles.
12789
- if (icon) return React__default.cloneElement(icon, _extends({
12790
- id: id + "-custom-notification-icon"
12791
- }, baseIconProps));
12792
- var iconProps = {
12793
- announcement: {
12794
- color: "section.research.secondary",
12795
- name: "speakerNotes",
12796
- title: "Notification announcement icon"
12797
- },
12798
- standard: {
12799
- color: "ui.black",
12800
- name: "alertNotificationImportant",
12801
- title: "Notification standard icon"
12802
- },
12803
- warning: {
12804
- color: "brand.primary",
12805
- name: "errorFilled",
12806
- title: "Notification warning icon"
12807
- }
12808
- };
12809
- return React__default.createElement(Icon, Object.assign({
12810
- id: id + "-notification-icon"
12811
- }, iconProps[notificationType], baseIconProps));
12812
- };
12813
- var dismissibleButton = dismissible && React__default.createElement(Button, {
12814
- "aria-label": "Close the notification",
12815
- buttonType: "text",
12816
- id: id + "-notification-dismissible-button",
12817
- onClick: handleClose,
12818
- __css: styles.dismissibleButton
12819
- }, React__default.createElement(Icon, {
12820
- id: id + "-dismissible-notification-icon",
12821
- name: "close",
12822
- size: "large",
12823
- title: "Notification close icon"
12824
- }));
12825
- var iconElem = iconElement();
12826
- var childHeading = notificationHeading && React__default.createElement(NotificationHeading$1, {
12827
- icon: iconElem,
12828
- id: id,
12829
- isCentered: isCentered,
12830
- notificationType: notificationType
12831
- }, notificationHeading);
12832
- // Specific alignment styles for the content.
12833
- var alignText = !!(childHeading && showIcon && (!!icon || !isCentered));
12834
- var childContent = React__default.createElement(NotificationContent$1, {
12835
- alignText: alignText,
12836
- icon: !childHeading ? iconElem : undefined,
12837
- notificationType: notificationType
12838
- }, notificationContent);
12839
- // If the `Notification` is closed, don't render anything.
12840
- if (!isOpen) {
12841
- return null;
12842
- }
12843
- return React__default.createElement(react.Box, Object.assign({
12844
- "aria-label": ariaLabel,
12845
- as: "aside",
12846
- className: className,
12847
- "data-type": notificationType,
12848
- id: id,
12849
- ref: ref,
12850
- __css: styles
12851
- }, rest), React__default.createElement(react.Box, {
12852
- __css: styles.container
12853
- }, childHeading, childContent), dismissibleButton);
12854
- }));
12855
-
12856
13270
  /**
12857
13271
  * The HeaderSitewideAlerts component makes an API request to an NYPL API
12858
13272
  * endpoint to fetch NYPL sitewide alerts. While this component can be used in
@@ -13178,7 +13592,7 @@ var Header$1 = /*#__PURE__*/react.chakra(function (_ref) {
13178
13592
  }))));
13179
13593
  });
13180
13594
 
13181
- var _excluded$22 = ["backgroundColor", "backgroundImageSrc", "foregroundColor", "heading", "heroType", "imageProps", "locationDetails", "subHeaderText"];
13595
+ var _excluded$23 = ["backgroundColor", "backgroundImageSrc", "foregroundColor", "heading", "heroType", "imageProps", "locationDetails", "subHeaderText"];
13182
13596
  // Only used for internal purposes.
13183
13597
  var heroSecondaryTypes = ["secondary", "secondaryBooksAndMore", "secondaryLocations", "secondaryResearch", "secondaryWhatsOn"];
13184
13598
  var Hero$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (props, ref) {
@@ -13194,7 +13608,7 @@ var Hero$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (
13194
13608
  } : _props$imageProps,
13195
13609
  locationDetails = props.locationDetails,
13196
13610
  subHeaderText = props.subHeaderText,
13197
- rest = _objectWithoutPropertiesLoose(props, _excluded$22);
13611
+ rest = _objectWithoutPropertiesLoose(props, _excluded$23);
13198
13612
  var styles = react.useMultiStyleConfig("Hero", {
13199
13613
  variant: heroType
13200
13614
  });
@@ -13283,7 +13697,7 @@ var Hero$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (
13283
13697
  }
13284
13698
  });
13285
13699
 
13286
- var _excluded$23 = ["bodyContent", "closeButtonLabel", "headingText", "id", "isOpen", "onClose"],
13700
+ var _excluded$24 = ["bodyContent", "closeButtonLabel", "headingText", "id", "isOpen", "onClose"],
13287
13701
  _excluded2$6 = ["buttonText", "id", "modalProps"],
13288
13702
  _excluded3$4 = ["bodyContent", "closeButtonLabel", "headingText", "id"];
13289
13703
  var BaseModal = /*#__PURE__*/react.chakra(function (_ref) {
@@ -13294,7 +13708,7 @@ var BaseModal = /*#__PURE__*/react.chakra(function (_ref) {
13294
13708
  id = _ref.id,
13295
13709
  isOpen = _ref.isOpen,
13296
13710
  onClose = _ref.onClose,
13297
- rest = _objectWithoutPropertiesLoose(_ref, _excluded$23);
13711
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded$24);
13298
13712
  var xlarge = "xl";
13299
13713
  var fullSize = "full";
13300
13714
  var _useNYPLBreakpoints = useNYPLBreakpoints(),
@@ -13375,7 +13789,7 @@ function useModal() {
13375
13789
  };
13376
13790
  }
13377
13791
 
13378
- var _excluded$24 = ["className", "currentPage", "getPageHref", "id", "initialPage", "onPageChange", "pageCount"];
13792
+ var _excluded$25 = ["className", "currentPage", "getPageHref", "id", "initialPage", "onPageChange", "pageCount"];
13379
13793
  /**
13380
13794
  * A component that provides a navigational list of page items.
13381
13795
  */
@@ -13388,7 +13802,7 @@ var Pagination$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(func
13388
13802
  initialPage = _props$initialPage === void 0 ? 1 : _props$initialPage,
13389
13803
  onPageChange = props.onPageChange,
13390
13804
  pageCount = props.pageCount,
13391
- rest = _objectWithoutPropertiesLoose(props, _excluded$24);
13805
+ rest = _objectWithoutPropertiesLoose(props, _excluded$25);
13392
13806
  var refCurrentPage = React.useRef(currentPage);
13393
13807
  var _useState = React.useState(initialPage),
13394
13808
  selectedPage = _useState[0],
@@ -13578,7 +13992,7 @@ var Pagination$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(func
13578
13992
  }, previousLiLink, getPaginationNumbers(selectedPage), nextLiLink));
13579
13993
  }));
13580
13994
 
13581
- var _excluded$25 = ["darkMode", "id", "indicatorType", "isIndeterminate", "labelText", "showLabel", "size", "value"];
13995
+ var _excluded$26 = ["darkMode", "id", "indicatorType", "isIndeterminate", "labelText", "showLabel", "size", "value"];
13582
13996
  /**
13583
13997
  * A component that displays a progress status for any task that takes a long
13584
13998
  * time to complete or consists of multiple steps. Examples include downloading,
@@ -13599,7 +14013,7 @@ var ProgressIndicator$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardR
13599
14013
  size = _props$size === void 0 ? "default" : _props$size,
13600
14014
  _props$value = props.value,
13601
14015
  value = _props$value === void 0 ? 0 : _props$value,
13602
- rest = _objectWithoutPropertiesLoose(props, _excluded$25);
14016
+ rest = _objectWithoutPropertiesLoose(props, _excluded$26);
13603
14017
  var styles = react.useMultiStyleConfig("ProgressIndicator", {
13604
14018
  darkMode: darkMode,
13605
14019
  size: size
@@ -13658,7 +14072,7 @@ var ProgressIndicator$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardR
13658
14072
  }, rest), progressComponent(indicatorType));
13659
14073
  }));
13660
14074
 
13661
- var _excluded$26 = ["children", "className", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRequired", "labelPosition", "labelText", "name", "onChange", "placeholder", "selectType", "showHelperInvalidText", "showLabel", "showRequiredLabel", "value"];
14075
+ var _excluded$27 = ["children", "className", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRequired", "labelPosition", "labelText", "name", "onChange", "placeholder", "selectType", "showHelperInvalidText", "showLabel", "showRequiredLabel", "value"];
13662
14076
  /**
13663
14077
  * Component that renders Chakra's `Select` component along with an accessible
13664
14078
  * `Label` and optional `HelperErrorText` component.
@@ -13691,7 +14105,7 @@ var Select$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function
13691
14105
  showRequiredLabel = _props$showRequiredLa === void 0 ? true : _props$showRequiredLa,
13692
14106
  _props$value = props.value,
13693
14107
  value = _props$value === void 0 ? "" : _props$value,
13694
- rest = _objectWithoutPropertiesLoose(props, _excluded$26);
14108
+ rest = _objectWithoutPropertiesLoose(props, _excluded$27);
13695
14109
  var _useState = React.useState(0),
13696
14110
  labelWidth = _useState[0],
13697
14111
  setLabelWidth = _useState[1];
@@ -13773,7 +14187,7 @@ var Select$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function
13773
14187
  }), children)));
13774
14188
  }));
13775
14189
 
13776
- var _excluded$27 = ["action", "buttonOnClick", "className", "descriptionText", "headingText", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRequired", "labelText", "method", "noBrandButtonType", "onSubmit", "selectProps", "textInputElement", "textInputProps"];
14190
+ var _excluded$28 = ["action", "buttonOnClick", "className", "descriptionText", "headingText", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRequired", "labelText", "method", "noBrandButtonType", "onSubmit", "selectProps", "textInputElement", "textInputProps"];
13777
14191
  /**
13778
14192
  * Renders a wrapper `form` element to be used with `Select` (optional),
13779
14193
  * `Input`, and `Button` components together.
@@ -13801,7 +14215,7 @@ var SearchBar$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(funct
13801
14215
  selectProps = props.selectProps,
13802
14216
  textInputElement = props.textInputElement,
13803
14217
  textInputProps = props.textInputProps,
13804
- rest = _objectWithoutPropertiesLoose(props, _excluded$27);
14218
+ rest = _objectWithoutPropertiesLoose(props, _excluded$28);
13805
14219
  var styles = react.useMultiStyleConfig("SearchBar", {});
13806
14220
  var stateProps = {
13807
14221
  helperText: "",
@@ -13893,7 +14307,7 @@ var SearchBar$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(funct
13893
14307
  }, selectElem, textInputElem, buttonElem));
13894
14308
  }));
13895
14309
 
13896
- var _excluded$28 = ["className", "contentSize", "headingSize", "imageAspectRatio", "isBordered", "layout", "showButton", "showContent", "showHeading", "showImage", "width"];
14310
+ var _excluded$29 = ["className", "contentSize", "headingSize", "imageAspectRatio", "isBordered", "layout", "showButton", "showContent", "showHeading", "showImage", "width"];
13897
14311
  /**
13898
14312
  * The `SkeletonLoader` component renders a placeholder to be used while
13899
14313
  * dynamic content is loading.
@@ -13919,7 +14333,7 @@ var SkeletonLoader$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(
13919
14333
  _props$showImage = props.showImage,
13920
14334
  showImage = _props$showImage === void 0 ? true : _props$showImage,
13921
14335
  width = props.width,
13922
- rest = _objectWithoutPropertiesLoose(props, _excluded$28);
14336
+ rest = _objectWithoutPropertiesLoose(props, _excluded$29);
13923
14337
  var styles = react.useMultiStyleConfig("SkeletonLoader", {
13924
14338
  isBordered: isBordered,
13925
14339
  imageAspectRatio: imageAspectRatio,
@@ -13977,7 +14391,7 @@ var SkeletonLoader$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(
13977
14391
  })))));
13978
14392
  }));
13979
14393
 
13980
- var _excluded$29 = ["className", "defaultValue", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRangeSlider", "isRequired", "labelText", "max", "min", "name", "onChange", "showBoxes", "showHelperInvalidText", "showLabel", "showRequiredLabel", "showValues", "step", "value"];
14394
+ var _excluded$2a = ["className", "defaultValue", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRangeSlider", "isRequired", "labelText", "max", "min", "name", "onChange", "showBoxes", "showHelperInvalidText", "showLabel", "showRequiredLabel", "showValues", "step", "value"];
13981
14395
  /**
13982
14396
  * The `Slider` component renders a singular value slider or a range slider
13983
14397
  * with a min and max value. The value(s) can be updated through the slider
@@ -14018,7 +14432,7 @@ var Slider = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (
14018
14432
  _props$step = props.step,
14019
14433
  step = _props$step === void 0 ? 1 : _props$step,
14020
14434
  value = props.value,
14021
- rest = _objectWithoutPropertiesLoose(props, _excluded$29);
14435
+ rest = _objectWithoutPropertiesLoose(props, _excluded$2a);
14022
14436
  if (!id) {
14023
14437
  console.warn("NYPL Reservoir Slider: This component's required `id` prop was not passed.");
14024
14438
  }
@@ -14209,7 +14623,7 @@ var Slider = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (
14209
14623
  }, max), showBoxes && getTextInput("end")));
14210
14624
  }));
14211
14625
 
14212
- var _excluded$2a = ["children", "className", "id", "level"];
14626
+ var _excluded$2b = ["children", "className", "id", "level"];
14213
14627
  /**
14214
14628
  * The `StatusBadge` component is used to display a visual badge for three
14215
14629
  * different status levels.
@@ -14220,7 +14634,7 @@ var StatusBadge$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(fun
14220
14634
  id = props.id,
14221
14635
  _props$level = props.level,
14222
14636
  level = _props$level === void 0 ? "low" : _props$level,
14223
- rest = _objectWithoutPropertiesLoose(props, _excluded$2a);
14637
+ rest = _objectWithoutPropertiesLoose(props, _excluded$2b);
14224
14638
  var styles = react.useStyleConfig("StatusBadge", {
14225
14639
  variant: level
14226
14640
  });
@@ -14235,7 +14649,7 @@ var StatusBadge$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(fun
14235
14649
  }, rest), children);
14236
14650
  }));
14237
14651
 
14238
- var _excluded$2b = ["calloutText", "className", "headingText", "id", "imageProps", "bodyContent"];
14652
+ var _excluded$2c = ["calloutText", "className", "headingText", "id", "imageProps", "bodyContent"];
14239
14653
  /**
14240
14654
  * Internal component used in the `StructuredContent` component
14241
14655
  * that renders the DS `Image` component.
@@ -14285,7 +14699,7 @@ var StructuredContent$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardR
14285
14699
  src: ""
14286
14700
  } : _props$imageProps,
14287
14701
  bodyContent = props.bodyContent,
14288
- rest = _objectWithoutPropertiesLoose(props, _excluded$2b);
14702
+ rest = _objectWithoutPropertiesLoose(props, _excluded$2c);
14289
14703
  var hasImage = imageProps.src || imageProps.component;
14290
14704
  var hasFigureImage = imageProps.caption || imageProps.credit;
14291
14705
  var styles = react.useMultiStyleConfig("StructuredContent", {
@@ -14418,7 +14832,7 @@ var useCarouselStyles = function useCarouselStyles(slidesCount, slideWidth) {
14418
14832
  };
14419
14833
  };
14420
14834
 
14421
- var _excluded$2c = ["children", "defaultIndex", "id", "onChange", "tabsData", "useHash"];
14835
+ var _excluded$2d = ["children", "defaultIndex", "id", "onChange", "tabsData", "useHash"];
14422
14836
  /**
14423
14837
  * An internal function used to update the hash in the URL.
14424
14838
  * This function is only used when `useHash` is `true`.
@@ -14520,7 +14934,7 @@ var Tabs = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (pr
14520
14934
  tabsData = props.tabsData,
14521
14935
  _props$useHash = props.useHash,
14522
14936
  useHash = _props$useHash === void 0 ? false : _props$useHash,
14523
- rest = _objectWithoutPropertiesLoose(props, _excluded$2c);
14937
+ rest = _objectWithoutPropertiesLoose(props, _excluded$2d);
14524
14938
  var styles = react.useMultiStyleConfig("Tabs", {});
14525
14939
  // Just an estimate of the tab width for the mobile carousel.
14526
14940
  var initTabWidth = 65;
@@ -14600,13 +15014,13 @@ var Tabs = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (pr
14600
15014
  }, React__default.createElement(react.Box, Object.assign({}, carouselStyle), tabs)), nextButton), panels);
14601
15015
  }));
14602
15016
 
14603
- var _excluded$2d = ["children", "className", "content", "id", "isDisabled", "shouldWrapChildren"];
15017
+ var _excluded$2e = ["children", "className", "content", "id", "isDisabled", "shouldWrapChildren"];
14604
15018
  var Tooltip$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (props, ref) {
14605
15019
  var children = props.children,
14606
15020
  content = props.content,
14607
15021
  isDisabled = props.isDisabled,
14608
15022
  shouldWrapChildren = props.shouldWrapChildren,
14609
- rest = _objectWithoutPropertiesLoose(props, _excluded$2d);
15023
+ rest = _objectWithoutPropertiesLoose(props, _excluded$2e);
14610
15024
  if (typeof content !== "string" && typeof content !== "number") {
14611
15025
  React__default.Children.map(content, function (contentChild) {
14612
15026
  if (contentChild.type !== Icon || contentChild.type !== Image) {
@@ -14731,7 +15145,7 @@ var TagSetFilter$1 = /*#__PURE__*/react.chakra(function (props) {
14731
15145
  }, "Clear Filters") : null);
14732
15146
  });
14733
15147
 
14734
- var _excluded$2e = ["className", "id", "isDismissible", "onClick", "tagSetData", "type"];
15148
+ var _excluded$2f = ["className", "id", "isDismissible", "onClick", "tagSetData", "type"];
14735
15149
  // Type guard so we can make sure we have a "filter" `TagSet` variant.
14736
15150
  function isFilterType(type) {
14737
15151
  return type === "filter";
@@ -14775,7 +15189,7 @@ var TagSet$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function
14775
15189
  tagSetData = _props$tagSetData === void 0 ? [] : _props$tagSetData,
14776
15190
  _props$type = props.type,
14777
15191
  type = _props$type === void 0 ? "filter" : _props$type,
14778
- rest = _objectWithoutPropertiesLoose(props, _excluded$2e);
15192
+ rest = _objectWithoutPropertiesLoose(props, _excluded$2f);
14779
15193
  var styles = react.useStyleConfig("TagSet", {});
14780
15194
  if (!isFilterType(type)) {
14781
15195
  if (isDismissible) {
@@ -14803,7 +15217,7 @@ var TagSet$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function
14803
15217
  }));
14804
15218
  }));
14805
15219
 
14806
- var _excluded$2f = ["aboveHeader", "breakout", "contentId", "contentBottom", "contentPrimary", "contentSidebar", "contentTop", "footer", "header", "sidebar", "renderFooterElement", "renderHeaderElement", "renderSkipNavigation"];
15220
+ var _excluded$2g = ["aboveHeader", "breakout", "contentId", "contentBottom", "contentPrimary", "contentSidebar", "contentTop", "footer", "header", "sidebar", "renderFooterElement", "renderHeaderElement", "renderSkipNavigation"];
14807
15221
  /**
14808
15222
  * The main top-level parent component that wraps all template-related
14809
15223
  * components.
@@ -15026,7 +15440,7 @@ var TemplateAppContainer = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forward
15026
15440
  renderHeaderElement = _props$renderHeaderEl === void 0 ? true : _props$renderHeaderEl,
15027
15441
  _props$renderSkipNavi = props.renderSkipNavigation,
15028
15442
  renderSkipNavigation = _props$renderSkipNavi === void 0 ? false : _props$renderSkipNavi,
15029
- rest = _objectWithoutPropertiesLoose(props, _excluded$2f);
15443
+ rest = _objectWithoutPropertiesLoose(props, _excluded$2g);
15030
15444
  var aboveHeaderElem = aboveHeader && React__default.createElement(TemplateAboveHeader, null, aboveHeader);
15031
15445
  var contentTopElem = contentTop && React__default.createElement(TemplateContentTop, null, contentTop);
15032
15446
  var contentPrimaryElem = contentPrimary && React__default.createElement(TemplateContentPrimary$1, null, contentPrimary);
@@ -15044,7 +15458,7 @@ var TemplateAppContainer = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forward
15044
15458
  }, footer)));
15045
15459
  }));
15046
15460
 
15047
- var _excluded$2g = ["defaultChecked", "helperText", "id", "invalidText", "isChecked", "isDisabled", "isInvalid", "isRequired", "labelText", "name", "onChange", "size"];
15461
+ var _excluded$2h = ["defaultChecked", "helperText", "id", "invalidText", "isChecked", "isDisabled", "isInvalid", "isRequired", "labelText", "name", "onChange", "size"];
15048
15462
  var onChangeDefault = function onChangeDefault() {
15049
15463
  return;
15050
15464
  };
@@ -15070,7 +15484,7 @@ var Toggle$2 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function
15070
15484
  onChange = _props$onChange === void 0 ? onChangeDefault : _props$onChange,
15071
15485
  _props$size = props.size,
15072
15486
  size = _props$size === void 0 ? "default" : _props$size,
15073
- rest = _objectWithoutPropertiesLoose(props, _excluded$2g);
15487
+ rest = _objectWithoutPropertiesLoose(props, _excluded$2h);
15074
15488
  var styles = react.useMultiStyleConfig("Toggle", {
15075
15489
  isDisabled: isDisabled,
15076
15490
  size: size
@@ -15206,7 +15620,7 @@ function useNYPLTheme() {
15206
15620
  };
15207
15621
  }
15208
15622
 
15209
- var _excluded$2h = ["aspectRatio", "className", "descriptionText", "embedCode", "headingText", "helperText", "id", "iframeTitle", "showHelperInvalidText", "videoId", "videoType"];
15623
+ var _excluded$2i = ["aspectRatio", "className", "descriptionText", "embedCode", "headingText", "helperText", "id", "iframeTitle", "showHelperInvalidText", "videoId", "videoType"];
15210
15624
  var VideoPlayer$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (props, ref) {
15211
15625
  var aspectRatio = props.aspectRatio,
15212
15626
  className = props.className,
@@ -15220,7 +15634,7 @@ var VideoPlayer$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(fun
15220
15634
  showHelperInvalidText = _props$showHelperInva === void 0 ? true : _props$showHelperInva,
15221
15635
  videoId = props.videoId,
15222
15636
  videoType = props.videoType,
15223
- rest = _objectWithoutPropertiesLoose(props, _excluded$2h);
15637
+ rest = _objectWithoutPropertiesLoose(props, _excluded$2i);
15224
15638
  var iframeTitleFinal = videoType === "vimeo" ? iframeTitle || "Vimeo video player" : iframeTitle || "YouTube video player";
15225
15639
  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";
15226
15640
  var iFrameTitleEmbedCode = iframeTitle ? "" + iframeTitle : "Video player";
@@ -15420,6 +15834,7 @@ exports.CheckboxGroup = CheckboxGroup;
15420
15834
  exports.ColorCard = ColorCard;
15421
15835
  exports.DSProvider = DSProvider;
15422
15836
  exports.DatePicker = DatePicker;
15837
+ exports.FeedbackBox = FeedbackBox$1;
15423
15838
  exports.Fieldset = Fieldset;
15424
15839
  exports.Footer = Footer$1;
15425
15840
  exports.Form = Form;
@@ -15470,6 +15885,7 @@ exports.Toggle = Toggle$2;
15470
15885
  exports.Tooltip = Tooltip$1;
15471
15886
  exports.VideoPlayer = VideoPlayer$1;
15472
15887
  exports.useCarouselStyles = useCarouselStyles;
15888
+ exports.useFeedbackBox = useFeedbackBox;
15473
15889
  exports.useModal = useModal;
15474
15890
  exports.useNYPLBreakpoints = useNYPLBreakpoints;
15475
15891
  exports.useNYPLTheme = useNYPLTheme;