@nulogy/components 12.3.0 → 13.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,7 +6,7 @@ export declare const NotificationTypes: {
6
6
  readonly success: "success";
7
7
  readonly warning: "warning";
8
8
  };
9
- export type NotificationType = typeof NotificationTypes[keyof typeof NotificationTypes];
9
+ export type NotificationType = (typeof NotificationTypes)[keyof typeof NotificationTypes];
10
10
  export type AlertProps = FlexProps & {
11
11
  isCloseable?: boolean;
12
12
  closeAriaLabel?: string;
@@ -1,9 +1,9 @@
1
1
  import React from "react";
2
2
  import { ClearIndicatorProps, ContainerProps, ControlProps, DropdownIndicatorProps, InputProps, MenuProps, MultiValueProps } from "react-select";
3
3
  import { GroupBase } from "react-select";
4
- import type { OptionProps } from "react-windowed-select";
5
- import type { ComponentVariant } from "../NDSProvider/ComponentVariantContext";
4
+ import { OptionProps } from "react-select";
6
5
  import { IconName } from "@nulogy/icons";
6
+ import type { ComponentVariant } from "../NDSProvider/ComponentVariantContext";
7
7
  export declare const SelectControl: <Option, IsMulti extends boolean, Group extends GroupBase<Option>>({ iconLeft, isFocused, children, ...props }: ControlProps<Option, IsMulti, Group> & {
8
8
  iconLeft?: IconName | "loading";
9
9
  }) => React.JSX.Element;
@@ -2,8 +2,9 @@ import React, { ReactNode } from "react";
2
2
  type NextButtonProps = {
3
3
  disabled: boolean;
4
4
  onClick: React.MouseEventHandler<HTMLButtonElement>;
5
- label: ReactNode;
6
- ariaLabel: string;
5
+ label?: ReactNode;
6
+ ariaLabel?: string;
7
+ showIconOnly?: boolean;
7
8
  };
8
- declare const NextButton: ({ disabled, onClick, label, ariaLabel }: NextButtonProps) => React.JSX.Element;
9
+ declare const NextButton: ({ disabled, onClick, label, ariaLabel, showIconOnly }: NextButtonProps) => React.JSX.Element;
9
10
  export default NextButton;
@@ -2,9 +2,10 @@
2
2
  type PageNumberProps = {
3
3
  currentPage: boolean;
4
4
  };
5
- declare const PageNumber: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<Omit<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "disabled" | "currentPage"> & {
5
+ declare const PageNumber: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<Omit<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "disabled" | "currentPage" | "iconOnly"> & {
6
6
  disabled?: boolean;
7
7
  currentPage?: boolean;
8
+ iconOnly?: boolean;
8
9
  }, "ref"> & {
9
10
  ref?: import("react").Ref<HTMLButtonElement>;
10
11
  }, PageNumberProps>> & string;
@@ -1,13 +1,13 @@
1
1
  import React, { ReactNode, RefObject } from "react";
2
2
  import { FlexProps } from "../Flex/Flex";
3
- declare const SEPARATOR: "...";
4
- export declare const getPageItemsToDisplay: (totalPages: number, currentPage: number) => Array<typeof SEPARATOR | number>;
3
+ export declare const SEPARATOR: "...";
5
4
  interface PaginationProps extends FlexProps {
6
- currentPage: number;
7
- totalPages: number;
8
5
  onNext?: () => void;
9
6
  onPrevious?: () => void;
10
7
  onSelectPage?: (page: number) => void;
8
+ currentPage: number;
9
+ totalPages: number;
10
+ maxVisiblePages?: number;
11
11
  nextLabel?: ReactNode;
12
12
  nextAriaLabel?: string;
13
13
  previousLabel?: ReactNode;
@@ -15,5 +15,5 @@ interface PaginationProps extends FlexProps {
15
15
  scrollToTopAfterPagination?: boolean;
16
16
  scrollTargetRef?: RefObject<HTMLElement>;
17
17
  }
18
- declare function Pagination({ onNext, onPrevious, onSelectPage, currentPage, totalPages, nextAriaLabel, nextLabel, previousAriaLabel, previousLabel, scrollToTopAfterPagination, scrollTargetRef, "aria-label": ariaLabel, ...restProps }: PaginationProps): React.JSX.Element;
18
+ declare function Pagination({ onNext, onPrevious, onSelectPage, currentPage, totalPages, maxVisiblePages, nextAriaLabel, nextLabel, previousAriaLabel, previousLabel, scrollToTopAfterPagination, scrollTargetRef, "aria-label": ariaLabel, ...restProps }: PaginationProps): React.JSX.Element;
19
19
  export default Pagination;
@@ -22,4 +22,5 @@ export declare const WithLessThan5Pages: {
22
22
  name: string;
23
23
  };
24
24
  };
25
+ export declare const CustomMaxVisiblePages: () => React.JSX.Element;
25
26
  export declare function ScrollAfterPagination(): React.JSX.Element;
@@ -2,5 +2,6 @@
2
2
  declare const PaginationButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {
3
3
  disabled?: boolean;
4
4
  currentPage?: boolean;
5
+ iconOnly?: boolean;
5
6
  }>> & string;
6
7
  export default PaginationButton;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ type PaginationCountProps = {
3
+ currentPage: number;
4
+ totalPages: number;
5
+ };
6
+ declare const PaginationCount: ({ currentPage, totalPages }: PaginationCountProps) => React.JSX.Element;
7
+ export default PaginationCount;
@@ -2,8 +2,9 @@ import React, { ReactNode } from "react";
2
2
  type PreviousButtonProps = {
3
3
  disabled: boolean;
4
4
  onClick: React.MouseEventHandler<HTMLButtonElement>;
5
- label: ReactNode;
6
- ariaLabel: string;
5
+ label?: ReactNode;
6
+ ariaLabel?: string;
7
+ showIconOnly?: boolean;
7
8
  };
8
- declare const PreviousButton: ({ disabled, onClick, label, ariaLabel }: PreviousButtonProps) => React.JSX.Element;
9
+ declare const PreviousButton: ({ disabled, onClick, label, ariaLabel, showIconOnly }: PreviousButtonProps) => React.JSX.Element;
9
10
  export default PreviousButton;
@@ -0,0 +1,9 @@
1
+ import { SEPARATOR } from "./Pagination";
2
+ interface PaginationItemsToDisplay {
3
+ totalPages: number;
4
+ currentPage: number;
5
+ maxVisiblePages?: number;
6
+ }
7
+ type PagesToDisplay = (number | typeof SEPARATOR)[];
8
+ export declare function getPageItemsToDisplay({ totalPages, currentPage, maxVisiblePages, }: PaginationItemsToDisplay): PagesToDisplay;
9
+ export {};
@@ -0,0 +1,3 @@
1
+ import * as React from "react";
2
+ declare function MenuList(props: any): React.JSX.Element;
3
+ export default MenuList;
@@ -1,32 +1,31 @@
1
1
  import React, { ReactNode } from "react";
2
- import { GroupBase } from "react-windowed-select";
3
- import type { Props as SelectProps } from "react-select";
4
- import { ComponentVariant } from "../NDSProvider/ComponentVariantContext";
5
- interface WindowedSelectProps extends SelectProps {
6
- windowThreshold?: number;
7
- }
8
- interface NDSOptionType {
9
- label: string;
10
- value: unknown;
2
+ import Select from "react-select/base";
3
+ import { PropsValue } from "react-select";
4
+ import type { GroupBase, Props, StylesConfig } from "react-select";
5
+ import { StyledProps } from "../StyledProps";
6
+ export type NDSOptionValue = string | number | boolean | null;
7
+ export interface NDSOption {
8
+ label: ReactNode;
9
+ value: NDSOptionValue;
11
10
  }
12
- interface CustomProps<Option, IsMulti extends boolean, Group extends GroupBase<Option>> {
13
- autocomplete?: SelectProps<Option, IsMulti, Group>["isSearchable"];
11
+ interface CustomProps<Option extends NDSOption, IsMulti extends boolean, Group extends GroupBase<Option>> extends StyledProps {
12
+ autocomplete?: Props<Option, IsMulti, Group>["isSearchable"];
14
13
  labelText?: string;
15
14
  requirementText?: string;
16
15
  helpText?: ReactNode;
17
- disabled?: SelectProps<Option, IsMulti, Group>["isDisabled"];
16
+ disabled?: Props<Option, IsMulti, Group>["isDisabled"];
18
17
  errorMessage?: string;
19
18
  errorList?: string[];
20
- initialIsOpen?: SelectProps<Option, IsMulti, Group>["defaultMenuIsOpen"];
21
- multiselect?: SelectProps<Option, IsMulti, Group>["isMulti"];
19
+ initialIsOpen?: Props<Option, IsMulti, Group>["defaultMenuIsOpen"];
20
+ multiselect?: Props<Option, IsMulti, Group>["isMulti"];
22
21
  maxHeight?: string;
23
- variant?: ComponentVariant;
24
- error?: boolean;
25
- options: NDSOptionType[];
26
- onChange?: (newValue: unknown) => void;
27
- [key: string]: any;
22
+ defaultValue?: PropsValue<Option["value"]>;
23
+ value?: PropsValue<Option["value"]>;
24
+ options: readonly Option[];
25
+ onChange?: (newValue: PropsValue<Option["value"]>) => void;
26
+ windowThreshold?: number;
27
+ styles?: (selectStyles: StylesConfig<Option, IsMulti, Group>) => StylesConfig<Option, IsMulti, Group>;
28
28
  }
29
- export type NDSSelectProps<Option, IsMulti extends boolean, Group extends GroupBase<Option>> = Omit<WindowedSelectProps, "isSearchable" | "isDisabled" | "isMulti" | "defaultMenuIsOpen" | "defaultInputValue" | "options" | "onChange"> & CustomProps<Option, IsMulti, Group>;
30
- declare const ReactSelect: React.ForwardRefExoticComponent<Omit<Omit<WindowedSelectProps, "isDisabled" | "isMulti" | "isSearchable" | "onChange" | "options" | "defaultMenuIsOpen" | "defaultInputValue"> & CustomProps<unknown, boolean, GroupBase<unknown>>, "ref"> & React.RefAttributes<unknown>>;
31
- export declare const getOption: (options: NDSOptionType[], value: unknown) => unknown;
32
- export default ReactSelect;
29
+ export type NDSSelectProps<Option extends NDSOption = NDSOption, IsMulti extends boolean = boolean, Group extends GroupBase<Option> = GroupBase<Option>> = Omit<Props<Option, IsMulti, Group>, keyof CustomProps<Option, IsMulti, Group> | "isSearchable" | "isDisabled" | "defaultMenuIsOpen" | "isMulti" | "styles"> & CustomProps<Option, IsMulti, Group>;
30
+ declare const NDSSelect: <Option extends NDSOption = NDSOption, IsMulti extends boolean = false, Group extends GroupBase<Option> = GroupBase<Option>>(props: Omit<Props<Option, IsMulti, Group>, "isDisabled" | "isMulti" | "isSearchable" | "defaultMenuIsOpen" | keyof CustomProps<Option_1, IsMulti_1, Group_1>> & CustomProps<Option, IsMulti, Group> & React.RefAttributes<Select<Option, IsMulti, Group>>) => React.ReactElement;
31
+ export default NDSSelect;
@@ -4,6 +4,7 @@ declare const _default: {
4
4
  };
5
5
  export default _default;
6
6
  export declare const _Select: () => React.JSX.Element;
7
+ export declare const WithStyledProps: () => React.JSX.Element;
7
8
  export declare const WithABlankValue: {
8
9
  (): React.JSX.Element;
9
10
  story: {
@@ -102,12 +103,7 @@ export declare const WithCustomOptionComponent: {
102
103
  name: string;
103
104
  };
104
105
  };
105
- export declare const WithACustomSelectedOption: () => React.JSX.Element;
106
- export declare const UsingRefToControlFocus: {
107
- (): React.JSX.Element;
108
- story: {
109
- name: string;
110
- };
111
- };
106
+ export declare const UsingRefToControlFocus: () => React.JSX.Element;
112
107
  export declare const WithTopMenuPlacement: () => React.JSX.Element;
113
- export declare const WithCustomProps: () => React.JSX.Element;
108
+ export declare const WithCustomStyles: () => React.JSX.Element;
109
+ export declare const WithCustomOptionFields: () => React.JSX.Element;
@@ -0,0 +1,24 @@
1
+ import React from "react";
2
+ import { GroupBase } from "react-select";
3
+ import { SelectOptionProps } from "./SelectOption";
4
+ import { NDSOption } from "./Select";
5
+ export declare const errorList: string[];
6
+ export declare const options: NDSOption[];
7
+ export declare const partnerCompanyName: {
8
+ value: string;
9
+ label: string;
10
+ }[];
11
+ export declare const wrappingOptions: {
12
+ value: string;
13
+ label: string;
14
+ }[];
15
+ export declare const PCNList: {
16
+ value: string;
17
+ label: string;
18
+ }[];
19
+ export declare const getPhotos: () => Promise<any>;
20
+ export declare const CustomOption: ({ children, ...props }: SelectOptionProps<NDSOption, true, GroupBase<NDSOption>>) => React.JSX.Element;
21
+ export interface DescriptiveOption extends NDSOption {
22
+ description: string;
23
+ }
24
+ export declare const CustomFieldsOption: ({ ...props }: SelectOptionProps<DescriptiveOption, true, GroupBase<DescriptiveOption>>) => React.JSX.Element;
@@ -1,8 +1,10 @@
1
1
  import React from "react";
2
- export declare const SelectControl: (props: any) => React.JSX.Element;
3
- export declare const SelectMultiValue: (props: any) => React.JSX.Element;
4
- export declare const SelectClearIndicator: (props: any) => React.JSX.Element;
5
- export declare const SelectDropdownIndicator: (props: any) => React.JSX.Element;
6
- export declare const SelectMenu: (props: any) => React.JSX.Element;
7
- export declare const SelectContainer: (props: any) => React.JSX.Element;
8
- export declare const SelectInput: (props: any) => React.JSX.Element;
2
+ import { ClearIndicatorProps, ContainerProps, ControlProps, DropdownIndicatorProps, InputProps, MenuProps, MultiValueProps, GroupBase } from "react-select";
3
+ import { NDSOption } from "./Select";
4
+ export declare function SelectControl<Option = NDSOption, IsMulti extends boolean = boolean, Group extends GroupBase<Option> = GroupBase<Option>>(props: ControlProps<Option, IsMulti, Group>): React.JSX.Element;
5
+ export declare function SelectMultiValue<Option = NDSOption, IsMulti extends boolean = boolean, Group extends GroupBase<Option> = GroupBase<Option>>(props: MultiValueProps<Option, IsMulti, Group>): React.JSX.Element;
6
+ export declare function SelectClearIndicator<Option = NDSOption, IsMulti extends boolean = boolean, Group extends GroupBase<Option> = GroupBase<Option>>(props: ClearIndicatorProps<Option, IsMulti, Group>): React.JSX.Element;
7
+ export declare function SelectDropdownIndicator<Option = NDSOption, IsMulti extends boolean = boolean, Group extends GroupBase<Option> = GroupBase<Option>>(props: DropdownIndicatorProps<Option, IsMulti, Group>): React.JSX.Element;
8
+ export declare function SelectMenu<Option = NDSOption, IsMulti extends boolean = boolean, Group extends GroupBase<Option> = GroupBase<Option>>(props: MenuProps<Option, IsMulti, Group>): React.JSX.Element;
9
+ export declare function SelectContainer<Option = NDSOption, IsMulti extends boolean = boolean, Group extends GroupBase<Option> = GroupBase<Option>>(props: ContainerProps<Option, IsMulti, Group>): React.JSX.Element;
10
+ export declare function SelectInput<Option = NDSOption, IsMulti extends boolean = boolean, Group extends GroupBase<Option> = GroupBase<Option>>(props: InputProps<Option, IsMulti, Group>): React.JSX.Element;
@@ -1,14 +1,12 @@
1
1
  import React from "react";
2
- import { OptionProps } from "react-windowed-select";
3
- import { ComponentVariant } from "../NDSProvider/ComponentVariantContext";
4
- type SelectOptionProps = {
2
+ import { GroupBase, OptionProps } from "react-select";
3
+ import { NDSOption } from "./Select";
4
+ type StyledOptionProps = {
5
5
  isSelected: boolean;
6
6
  isFocused: boolean;
7
- variant: ComponentVariant;
8
7
  };
9
- export declare const StyledOption: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, SelectOptionProps>> & string;
10
- interface CustomOptionProps extends OptionProps {
11
- variant?: ComponentVariant;
8
+ export declare const StyledOption: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledOptionProps>> & string;
9
+ export interface SelectOptionProps<Option = NDSOption, IsMulti extends boolean = boolean, Group extends GroupBase<Option> = GroupBase<Option>> extends OptionProps<Option, IsMulti, Group> {
12
10
  }
13
- export declare function SelectOption(props: CustomOptionProps): React.JSX.Element;
11
+ export declare function SelectOption<Option extends NDSOption = NDSOption, IsMulti extends boolean = boolean, Group extends GroupBase<Option> = GroupBase<Option>>(props: SelectOptionProps<Option, IsMulti, Group>): React.JSX.Element;
14
12
  export {};
@@ -27,9 +27,14 @@ export declare function showIndicatorSeparator({ hasValue, isClearable, isMulti
27
27
  isClearable: any;
28
28
  isMulti: any;
29
29
  }): any;
30
- interface Args {
30
+ interface CustomStylesArgs {
31
31
  theme: DefaultNDSThemeType;
32
- [key: string]: any;
32
+ error: boolean;
33
+ maxHeight: string;
34
+ windowed: boolean;
35
+ variant: ComponentVariant;
36
+ hasIcon?: boolean;
37
+ hasDefaultOptions?: boolean;
33
38
  }
34
- declare const customStyles: <Option, IsMulti extends boolean, Group extends GroupBase<Option>>(args: Args) => StylesConfig<Option, IsMulti, Group>;
39
+ declare const customStyles: <Option, IsMulti extends boolean, Group extends GroupBase<Option>>(args: CustomStylesArgs) => StylesConfig<Option, IsMulti, Group>;
35
40
  export default customStyles;
@@ -1,3 +1,3 @@
1
- export { SelectOption } from "./SelectOption";
2
- export { default as Select } from "./Select";
1
+ export { SelectOption, type SelectOptionProps } from "./SelectOption";
2
+ export { default as Select, type NDSOption, type NDSOptionValue, type NDSSelectProps } from "./Select";
3
3
  export * from "./SelectComponents";
@@ -0,0 +1,20 @@
1
+ import { Options, PropsValue } from "react-select";
2
+ import { NDSOption, NDSOptionValue } from "./Select";
3
+ export declare function calcOptionsLength(options: any): any;
4
+ export declare function flattenGroupedChildren(children: any): any;
5
+ export declare function isFocused({ props: { isFocused } }: {
6
+ props: {
7
+ isFocused: any;
8
+ };
9
+ }): boolean;
10
+ export declare function getCurrentIndex(children: any): number;
11
+ export declare function createGetHeight({ groupHeadingStyles, noOptionsMsgStyles, optionStyles, loadingMsgStyles }: {
12
+ groupHeadingStyles: any;
13
+ noOptionsMsgStyles: any;
14
+ optionStyles: any;
15
+ loadingMsgStyles: any;
16
+ }): (child: any) => any;
17
+ export declare function checkOptionsAreValid(options: Options<NDSOption>): void;
18
+ export declare function getOption(options: Options<NDSOption>, value: PropsValue<NDSOptionValue>): any;
19
+ export declare function getReactSelectValue(options: Options<NDSOption>, input: PropsValue<NDSOptionValue>): any;
20
+ export declare function extractValue(options: Options<NDSOption> | NDSOption, isMulti: boolean): NDSOptionValue[] | NDSOptionValue;
@@ -9,7 +9,7 @@ export declare const StatusIndicatorValues: {
9
9
  readonly warning: "warning";
10
10
  readonly quiet: "quiet";
11
11
  };
12
- export type StatusIndicatorType = typeof StatusIndicatorValues[keyof typeof StatusIndicatorValues];
12
+ export type StatusIndicatorType = (typeof StatusIndicatorValues)[keyof typeof StatusIndicatorValues];
13
13
  interface Props extends SpaceProps, TypographyProps, FlexboxProps {
14
14
  type?: StatusIndicatorType;
15
15
  }
@@ -35,7 +35,7 @@ export { Overlay } from "./Overlay";
35
35
  export { Pagination } from "./Pagination";
36
36
  export { Radio, RadioGroup } from "./Radio";
37
37
  export { RangeContainer } from "./RangeContainer";
38
- export { Select, SelectClearIndicator, SelectContainer, SelectControl, SelectDropdownIndicator, SelectInput, SelectMenu, SelectMultiValue, SelectOption, } from "./Select";
38
+ export { Select, SelectClearIndicator, SelectContainer, SelectControl, SelectDropdownIndicator, SelectInput, SelectMenu, SelectMultiValue, SelectOption, type SelectOptionProps, type NDSOption, type NDSOptionValue, type NDSSelectProps, } from "./Select";
39
39
  export { SortingTable } from "./SortingTable";
40
40
  export { StatusIndicator, StatusIndicatorValues } from "./StatusIndicator";
41
41
  export type { StatusIndicatorType } from "./StatusIndicator";
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Creates a mock implementation of the `window.matchMedia` function.
3
+ * This is useful for changing the width of the viewport in tests without
4
+ * needing to manipulate the actual browser environment.
5
+ *
6
+ */
7
+ export declare const createMatchMedia: (width: number) => (query: string) => MediaQueryList;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nulogy/components",
3
- "version": "12.3.0",
3
+ "version": "13.1.0",
4
4
  "description": "Component library for the Nulogy Design System - http://nulogy.design",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -90,6 +90,7 @@
90
90
  "@storybook/theming": "^6.1.9",
91
91
  "@testing-library/jest-dom": "5.11.5",
92
92
  "@testing-library/react": "^12.1.5",
93
+ "@types/css-mediaquery": "^0.1.4",
93
94
  "@types/jest": "^29.5.1",
94
95
  "@types/node": "^14.0.14",
95
96
  "@types/react": "^17.0.39",
@@ -108,6 +109,7 @@
108
109
  "babel-preset-react": "6.24.1",
109
110
  "chromatic": "^6.0.6",
110
111
  "concurrently": "^5.2.0",
112
+ "css-mediaquery": "^0.1.2",
111
113
  "cypress": "^13.2.0",
112
114
  "cypress-enter-plugin": "^1.0.1",
113
115
  "cypress-plugin-tab": "^1.0.1",
@@ -123,6 +125,7 @@
123
125
  "jscodeshift": "^0.11.0",
124
126
  "mockdate": "^3.0.2",
125
127
  "plop": "^2.4.0",
128
+ "prettier": "^3.4.2",
126
129
  "react": "17.0.2",
127
130
  "react-color": "^2.18.1",
128
131
  "react-dom": "17.0.2",
@@ -151,6 +154,7 @@
151
154
  "@styled-system/prop-types": "^5.1.4",
152
155
  "@styled-system/theme-get": "^5.1.2",
153
156
  "@types/react-router-dom": "5.3.0",
157
+ "@types/react-window": "^1.8.8",
154
158
  "@types/styled-system": "5.1.22",
155
159
  "body-scroll-lock": "^3.1.5",
156
160
  "core-js": "3",
@@ -169,7 +173,7 @@
169
173
  "react-popper-2": "npm:react-popper@2.2.4",
170
174
  "react-resize-detector": "^9.1.0",
171
175
  "react-select": "^5.8.0",
172
- "react-windowed-select": "^5.2.0",
176
+ "react-window": "^1.8.11",
173
177
  "smoothscroll-polyfill": "^0.4.4",
174
178
  "styled-system": "^5.1.4",
175
179
  "stylis": "^4.0.0"