@nulogy/components 12.2.1 → 13.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +1345 -208
- package/dist/main.module.js +1343 -206
- package/dist/src/Alert/Alert.d.ts +1 -1
- package/dist/src/AsyncSelect/AsyncSelect.d.ts +2 -0
- package/dist/src/AsyncSelect/AsyncSelect.story.d.ts +3 -12
- package/dist/src/AsyncSelect/AsyncSelectComponents.d.ts +5 -2
- package/dist/src/Icon/Icon.d.ts +2 -1
- package/dist/src/Select/MenuList.d.ts +3 -0
- package/dist/src/Select/Select.d.ts +22 -23
- package/dist/src/Select/Select.story.d.ts +4 -8
- package/dist/src/Select/Select.story.fixture.d.ts +24 -0
- package/dist/src/Select/SelectComponents.d.ts +9 -7
- package/dist/src/Select/SelectOption.d.ts +6 -8
- package/dist/src/Select/customReactSelectStyles.d.ts +8 -3
- package/dist/src/Select/index.d.ts +2 -2
- package/dist/src/Select/lib.d.ts +20 -0
- package/dist/src/StatusIndicator/StatusIndicator.d.ts +1 -1
- package/dist/src/index.d.ts +1 -1
- package/package.json +4 -2
|
@@ -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,4 +1,5 @@
|
|
|
1
1
|
import React, { ReactNode } from "react";
|
|
2
|
+
import { IconName } from "@nulogy/icons";
|
|
2
3
|
import Select from "react-select/base";
|
|
3
4
|
import { AsyncProps } from "react-select/async";
|
|
4
5
|
import { GroupBase } from "react-select";
|
|
@@ -16,6 +17,7 @@ type AsyncCustomProps<Option, IsMulti extends boolean, Group extends GroupBase<O
|
|
|
16
17
|
multiselect?: AsyncProps<Option, IsMulti, Group>["isMulti"];
|
|
17
18
|
maxHeight?: string;
|
|
18
19
|
defaultValue?: AsyncProps<Option, IsMulti, Group>["defaultInputValue"];
|
|
20
|
+
iconLeft?: IconName | "loading";
|
|
19
21
|
};
|
|
20
22
|
export type AsyncSelectProps<Option, IsMulti extends boolean, Group extends GroupBase<Option>> = Omit<AsyncProps<Option, IsMulti, Group>, "isSearchable" | "isDisabled" | "isMulti" | "defaultMenuIsOpen" | "defaultInputValue"> & AsyncCustomProps<Option, IsMulti, Group>;
|
|
21
23
|
declare const AsyncSelect: React.ForwardRefExoticComponent<Omit<AsyncProps<unknown, boolean, GroupBase<unknown>>, "isDisabled" | "isMulti" | "isSearchable" | "defaultMenuIsOpen" | "defaultInputValue"> & AsyncCustomProps<unknown, boolean, GroupBase<unknown>> & React.RefAttributes<Select<unknown, boolean, GroupBase<unknown>>>>;
|
|
@@ -3,12 +3,7 @@ declare const _default: {
|
|
|
3
3
|
title: string;
|
|
4
4
|
};
|
|
5
5
|
export default _default;
|
|
6
|
-
export declare const Default:
|
|
7
|
-
(): React.JSX.Element;
|
|
8
|
-
story: {
|
|
9
|
-
name: string;
|
|
10
|
-
};
|
|
11
|
-
};
|
|
6
|
+
export declare const Default: () => React.JSX.Element;
|
|
12
7
|
export declare const WithDefaultOptions: {
|
|
13
8
|
(): React.JSX.Element;
|
|
14
9
|
story: {
|
|
@@ -29,9 +24,5 @@ export declare const UsingRefToControlFocus: {
|
|
|
29
24
|
name: string;
|
|
30
25
|
};
|
|
31
26
|
};
|
|
32
|
-
export declare const Controlled:
|
|
33
|
-
|
|
34
|
-
story: {
|
|
35
|
-
name: string;
|
|
36
|
-
};
|
|
37
|
-
};
|
|
27
|
+
export declare const Controlled: () => React.JSX.Element;
|
|
28
|
+
export declare const WithIcon: () => React.JSX.Element;
|
|
@@ -1,9 +1,12 @@
|
|
|
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
|
|
4
|
+
import { OptionProps } from "react-select";
|
|
5
|
+
import { IconName } from "@nulogy/icons";
|
|
5
6
|
import type { ComponentVariant } from "../NDSProvider/ComponentVariantContext";
|
|
6
|
-
export declare const SelectControl: <Option, IsMulti extends boolean, Group extends GroupBase<Option>>(props: ControlProps<Option, IsMulti, Group>
|
|
7
|
+
export declare const SelectControl: <Option, IsMulti extends boolean, Group extends GroupBase<Option>>({ iconLeft, isFocused, children, ...props }: ControlProps<Option, IsMulti, Group> & {
|
|
8
|
+
iconLeft?: IconName | "loading";
|
|
9
|
+
}) => React.JSX.Element;
|
|
7
10
|
export declare const SelectMultiValue: <Option, IsMulti extends boolean, Group extends GroupBase<Option>>(props: MultiValueProps<Option, IsMulti, Group>) => React.JSX.Element;
|
|
8
11
|
export declare const SelectClearIndicator: <Option, IsMulti extends boolean, Group extends GroupBase<Option>>(props: ClearIndicatorProps<Option, IsMulti, Group>) => React.JSX.Element;
|
|
9
12
|
export declare const SelectDropdownIndicator: <Option, IsMulti extends boolean, Group extends GroupBase<Option>>(props: DropdownIndicatorProps<Option, IsMulti, Group>) => React.JSX.Element;
|
package/dist/src/Icon/Icon.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import { SpaceProps } from "styled-system";
|
|
2
|
+
import { PositionProps, SpaceProps } from "styled-system";
|
|
3
3
|
import { IconName } from "@nulogy/icons";
|
|
4
4
|
interface IconProps extends SpaceProps {
|
|
5
5
|
icon: IconName | "loading";
|
|
@@ -12,4 +12,5 @@ interface IconProps extends SpaceProps {
|
|
|
12
12
|
}
|
|
13
13
|
declare const Icon: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<IconProps & React.RefAttributes<SVGSVGElement>, IconProps>> & string & Omit<React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>, keyof React.Component<any, {}, any>>;
|
|
14
14
|
export declare function InlineIcon(props: IconProps): React.JSX.Element;
|
|
15
|
+
export declare const InputIcon: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components").FastOmit<IconProps & React.RefAttributes<SVGSVGElement>, keyof IconProps> & IconProps, PositionProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>>>> & string;
|
|
15
16
|
export default Icon;
|
|
@@ -1,32 +1,31 @@
|
|
|
1
1
|
import React, { ReactNode } from "react";
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
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?:
|
|
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?:
|
|
16
|
+
disabled?: Props<Option, IsMulti, Group>["isDisabled"];
|
|
18
17
|
errorMessage?: string;
|
|
19
18
|
errorList?: string[];
|
|
20
|
-
initialIsOpen?:
|
|
21
|
-
multiselect?:
|
|
19
|
+
initialIsOpen?: Props<Option, IsMulti, Group>["defaultMenuIsOpen"];
|
|
20
|
+
multiselect?: Props<Option, IsMulti, Group>["isMulti"];
|
|
22
21
|
maxHeight?: string;
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
options:
|
|
26
|
-
onChange?: (newValue:
|
|
27
|
-
|
|
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<
|
|
30
|
-
declare const
|
|
31
|
-
export
|
|
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
|
|
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
|
|
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
|
-
|
|
3
|
-
|
|
4
|
-
export declare
|
|
5
|
-
export declare
|
|
6
|
-
export declare
|
|
7
|
-
export declare
|
|
8
|
-
export declare
|
|
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-
|
|
3
|
-
import {
|
|
4
|
-
type
|
|
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>,
|
|
10
|
-
interface
|
|
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:
|
|
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
|
|
30
|
+
interface CustomStylesArgs {
|
|
31
31
|
theme: DefaultNDSThemeType;
|
|
32
|
-
|
|
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:
|
|
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
|
}
|
package/dist/src/index.d.ts
CHANGED
|
@@ -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";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nulogy/components",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.0.0",
|
|
4
4
|
"description": "Component library for the Nulogy Design System - http://nulogy.design",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
@@ -123,6 +123,7 @@
|
|
|
123
123
|
"jscodeshift": "^0.11.0",
|
|
124
124
|
"mockdate": "^3.0.2",
|
|
125
125
|
"plop": "^2.4.0",
|
|
126
|
+
"prettier": "^3.4.2",
|
|
126
127
|
"react": "17.0.2",
|
|
127
128
|
"react-color": "^2.18.1",
|
|
128
129
|
"react-dom": "17.0.2",
|
|
@@ -151,6 +152,7 @@
|
|
|
151
152
|
"@styled-system/prop-types": "^5.1.4",
|
|
152
153
|
"@styled-system/theme-get": "^5.1.2",
|
|
153
154
|
"@types/react-router-dom": "5.3.0",
|
|
155
|
+
"@types/react-window": "^1.8.8",
|
|
154
156
|
"@types/styled-system": "5.1.22",
|
|
155
157
|
"body-scroll-lock": "^3.1.5",
|
|
156
158
|
"core-js": "3",
|
|
@@ -169,7 +171,7 @@
|
|
|
169
171
|
"react-popper-2": "npm:react-popper@2.2.4",
|
|
170
172
|
"react-resize-detector": "^9.1.0",
|
|
171
173
|
"react-select": "^5.8.0",
|
|
172
|
-
"react-
|
|
174
|
+
"react-window": "^1.8.11",
|
|
173
175
|
"smoothscroll-polyfill": "^0.4.4",
|
|
174
176
|
"styled-system": "^5.1.4",
|
|
175
177
|
"stylis": "^4.0.0"
|