@veeqo/ui 6.0.0-beta.7 → 6.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/README.md +4 -3
- package/dist/components/Accordion/Accordion.d.ts +2 -11
- package/dist/components/Accordion/styled.d.ts +12 -1
- package/dist/components/Accordion/types.d.ts +15 -0
- package/dist/components/ActionMenu/ActionMenu.d.ts +16 -0
- package/dist/components/ActionMenu/index.d.ts +1 -0
- package/dist/components/ActionMenu/styled.d.ts +3 -0
- package/dist/components/Alert/Alert.d.ts +3 -0
- package/dist/components/Alert/constants.d.ts +6 -0
- package/dist/components/Alert/index.d.ts +1 -0
- package/dist/components/Alert/styled.d.ts +4 -0
- package/dist/components/Alert/types.d.ts +20 -0
- package/dist/components/Anchor/Anchor.d.ts +6 -7
- package/dist/components/AnimatedDropdown/AnimatedDropdown.d.ts +1 -1
- package/dist/components/AnimatedDropdown/components/BasicDropdown.d.ts +6 -0
- package/dist/components/AnimatedDropdown/components/styled.d.ts +1 -14
- package/dist/components/AnimatedDropdown/styled.d.ts +9 -1
- package/dist/components/AnimatedDropdown/types.d.ts +6 -8
- package/dist/components/Choice/Choice.d.ts +5 -1
- package/dist/components/Choice/components/styled.d.ts +0 -1
- package/dist/components/DataTable/DataTable.d.ts +1 -1
- package/dist/components/DataTable/components/ColumnDivider.d.ts +11 -0
- package/dist/components/DataTable/hooks/useColumnWidths.d.ts +10 -0
- package/dist/components/DataTable/hooks/useColumns.d.ts +54 -4
- package/dist/components/DataTable/renderers/renderHeader.d.ts +6 -2
- package/dist/components/DataTable/types.d.ts +12 -0
- package/dist/components/DataTable/utils/customEventEmitter.d.ts +1 -0
- package/dist/components/DateRangeInput/DateRangeInput.d.ts +21 -0
- package/dist/components/DateRangeInput/index.d.ts +2 -0
- package/dist/components/DateRangeInput/styled.d.ts +4 -0
- package/dist/components/DateRangePicker/DateRangePicker.d.ts +3 -0
- package/dist/components/DateRangePicker/DateRangePicker.test.d.ts +1 -0
- package/dist/components/DateRangePicker/components/ComparePreviousPeriod.d.ts +8 -0
- package/dist/components/DateRangePicker/components/ComparePreviousPeriod.test.d.ts +1 -0
- package/dist/components/DateRangePicker/components/Divider.d.ts +1 -0
- package/dist/components/DateRangePicker/components/constants.d.ts +4 -0
- package/dist/components/DateRangePicker/constants.d.ts +25 -0
- package/dist/components/DateRangePicker/index.d.ts +3 -0
- package/dist/components/DateRangePicker/types.d.ts +37 -0
- package/dist/components/DateRangePicker/utils.d.ts +6 -0
- package/dist/components/DateRangePicker/utils.test.d.ts +1 -0
- package/dist/components/DimensionsInput/styled.d.ts +1 -1
- package/dist/components/Dropdown/Dropdown.d.ts +3 -0
- package/dist/components/Dropdown/Dropdown.test.d.ts +1 -0
- package/dist/components/Dropdown/DropdownPopover.d.ts +3 -0
- package/dist/components/Dropdown/index.d.ts +1 -0
- package/dist/components/Dropdown/styled.d.ts +11 -0
- package/dist/components/Dropdown/types.d.ts +16 -0
- package/dist/components/FilterTag/FilterTag.d.ts +1 -1
- package/dist/components/FilterTag/styled.d.ts +4 -2
- package/dist/components/FilterTag/types.d.ts +3 -0
- package/dist/components/Modal/types.d.ts +3 -3
- package/dist/components/Pagination/styled.d.ts +1 -1
- package/dist/components/Popover/Popover.d.ts +1 -1
- package/dist/components/Popover/hooks/useHandleFocus.d.ts +2 -2
- package/dist/components/Popover/hooks/useUpdateAriaAnchor.d.ts +1 -2
- package/dist/components/Popover/types.d.ts +6 -6
- package/dist/components/PriceInput/styled.d.ts +1 -1
- package/dist/components/Radio/Radio.d.ts +3 -1
- package/dist/components/RangeCalendar/RangeCalendar.d.ts +10 -0
- package/dist/components/RangeCalendar/RangeCalendar.test.d.ts +1 -0
- package/dist/components/RangeCalendar/components/CalendarGrid.d.ts +3 -0
- package/dist/components/RangeCalendar/components/StyledRangeCalendar/StyledRangeCalendar.d.ts +2 -0
- package/dist/components/RangeCalendar/components/StyledRangeCalendar/buttonStyles.d.ts +1 -0
- package/dist/components/RangeCalendar/components/StyledRangeCalendar/calendarCellStyles.d.ts +1 -0
- package/dist/components/RangeCalendar/components/StyledRangeCalendar/headerStyles.d.ts +1 -0
- package/dist/components/RangeCalendar/components/StyledRangeCalendar/index.d.ts +1 -0
- package/dist/components/RangeCalendar/components/utils.d.ts +2 -0
- package/dist/components/RangeCalendar/index.d.ts +1 -0
- package/dist/components/ScreenReaderOnly/ScreenReaderOnly.d.ts +20 -0
- package/dist/components/ScreenReaderOnly/ScreenReaderOnly.test.d.ts +2 -0
- package/dist/components/ScreenReaderOnly/index.d.ts +1 -0
- package/dist/components/Search/Search.d.ts +2 -27
- package/dist/components/Search/styled.d.ts +1 -1
- package/dist/components/Select/Select.d.ts +3 -3
- package/dist/components/Skeleton/Skeleton.d.ts +7 -0
- package/dist/components/Skeleton/Skeleton.test.d.ts +1 -0
- package/dist/components/Skeleton/index.d.ts +1 -0
- package/dist/components/TextField/TextField.d.ts +1 -1
- package/dist/components/TextField/index.d.ts +1 -1
- package/dist/components/TextField/types.d.ts +1 -1
- package/dist/components/Toggle/Toggle.d.ts +1 -1
- package/dist/components/Toggle/styled.d.ts +1 -1
- package/dist/components/Toggle/types.d.ts +2 -1
- package/dist/components/UploadFile/components/UploadedFile/UploadedFile.d.ts +2 -1
- package/dist/components/ViewTab/ViewTab.d.ts +13 -2
- package/dist/components/ViewTab/types.d.ts +3 -5
- package/dist/components/WeightInput/styled.d.ts +1 -1
- package/dist/components/index.d.ts +8 -3
- package/dist/hoc/withLabels/withLabels.d.ts +1 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/useDropdown.d.ts +5 -1
- package/dist/hooks/useId.d.ts +4 -0
- package/dist/hooks/useId.test.d.ts +1 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/tempIcons/RecommendIcon.d.ts +2 -0
- package/dist/tempIcons/WarningIcon.d.ts +2 -0
- package/dist/theme/index.d.ts +1 -312
- package/dist/theme/modules/text.d.ts +10 -311
- package/dist/utils/blockInvalidCharacters.d.ts +1 -0
- package/dist/utils/generateId.d.ts +1 -1
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/invalidCharactersNumeric.d.ts +1 -0
- package/dist/utils/isExternalLink.d.ts +9 -0
- package/dist/utils/isExternalLink.test.d.ts +1 -0
- package/package.json +16 -14
- package/dist/components/ActionList/ActionList.d.ts +0 -3
- package/dist/components/ActionList/index.d.ts +0 -1
- package/dist/components/ActionList/styled.d.ts +0 -36
- package/dist/components/ActionList/types.d.ts +0 -19
- package/dist/components/AnimatedDropdown/components/Dropdown.d.ts +0 -3
- package/dist/components/PageHeader/PageHeader.d.ts +0 -29
- package/dist/components/PageHeader/index.d.ts +0 -1
- package/dist/components/PageHeader/styled.d.ts +0 -23
- package/dist/components/PaginationRange/Items/Item/Item.d.ts +0 -3
- package/dist/components/PaginationRange/Items/Item/index.d.ts +0 -1
- package/dist/components/PaginationRange/Items/Item/styled.d.ts +0 -5
- package/dist/components/PaginationRange/Items/Item/types.d.ts +0 -5
- package/dist/components/PaginationRange/Items/Items.d.ts +0 -7
- package/dist/components/PaginationRange/Items/index.d.ts +0 -1
- package/dist/components/PaginationRange/PaginationRange.d.ts +0 -3
- package/dist/components/PaginationRange/index.d.ts +0 -1
- package/dist/components/PaginationRange/styled.d.ts +0 -2
- package/dist/components/PaginationRange/types.d.ts +0 -15
- /package/dist/components/{ActionList/ActionList.test.d.ts → ActionMenu/ActionMenu.test.d.ts} +0 -0
- /package/dist/components/{AnimatedDropdown/components/Dropdown.test.d.ts → Alert/Alert.test.d.ts} +0 -0
- /package/dist/components/{PageHeader/PageHeader.test.d.ts → AnimatedDropdown/components/BasicDropdown.test.d.ts} +0 -0
- /package/dist/components/{PaginationRange/PaginationRange.test.d.ts → DateRangeInput/DateRangeInput.test.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veeqo/ui",
|
|
3
|
-
"version": "6.0.0
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "New optimised component library for Veeqo.",
|
|
5
5
|
"author": "Robert Wealthall",
|
|
6
6
|
"license": "ISC",
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
"storybook": "storybook dev -p 6006",
|
|
16
16
|
"storybook:build": "storybook build --quiet -c .storybook -o ./public",
|
|
17
17
|
"playroom:start": "playroom start",
|
|
18
|
-
"playroom:build": "playroom build",
|
|
19
18
|
"rimraf": "./node_modules/rimraf/bin.js",
|
|
20
19
|
"build": "rimraf dist && rollup -c",
|
|
21
20
|
"test": "jest",
|
|
@@ -44,14 +43,15 @@
|
|
|
44
43
|
"@rollup/plugin-node-resolve": "^15.2.1",
|
|
45
44
|
"@rollup/plugin-terser": "^0.4.3",
|
|
46
45
|
"@rollup/plugin-typescript": "^11.1.3",
|
|
47
|
-
"@storybook/addon-
|
|
48
|
-
"@storybook/addon-
|
|
49
|
-
"@storybook/addon-
|
|
50
|
-
"@storybook/addon-
|
|
51
|
-
"@storybook/addon-
|
|
52
|
-
"@storybook/
|
|
53
|
-
"@storybook/
|
|
54
|
-
"@storybook/react
|
|
46
|
+
"@storybook/addon-actions": "^8.1.6",
|
|
47
|
+
"@storybook/addon-essentials": "^8.2.4",
|
|
48
|
+
"@storybook/addon-interactions": "^8.2.4",
|
|
49
|
+
"@storybook/addon-links": "^8.2.4",
|
|
50
|
+
"@storybook/addon-mdx-gfm": "^8.2.4",
|
|
51
|
+
"@storybook/addon-onboarding": "^8.2.4",
|
|
52
|
+
"@storybook/blocks": "^8.2.4",
|
|
53
|
+
"@storybook/react": "^8.2.4",
|
|
54
|
+
"@storybook/react-vite": "^8.2.4",
|
|
55
55
|
"@storybook/testing-library": "^0.2.2",
|
|
56
56
|
"@testing-library/dom": "^8.11.3",
|
|
57
57
|
"@testing-library/jest-dom": "^5.12.0",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"eslint-plugin-prettier": "^5.0.0",
|
|
79
79
|
"eslint-plugin-react": "^7.32.2",
|
|
80
80
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
81
|
-
"eslint-plugin-storybook": "^0.
|
|
81
|
+
"eslint-plugin-storybook": "^0.8.0",
|
|
82
82
|
"framer-motion": "^6.5.1",
|
|
83
83
|
"jest": "~29.0.3",
|
|
84
84
|
"jest-axe": "~6.0.0",
|
|
@@ -99,8 +99,7 @@
|
|
|
99
99
|
"rollup": "^3.29.2",
|
|
100
100
|
"rollup-plugin-dts": "^6.0.2",
|
|
101
101
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
102
|
-
"storybook": "^
|
|
103
|
-
"storybook-addon-playroom": "^4.0.0",
|
|
102
|
+
"storybook": "^8.2.4",
|
|
104
103
|
"style-loader": "^2.0.0",
|
|
105
104
|
"styled-components": "^5.1.1",
|
|
106
105
|
"ts-jest": "^29.1.1",
|
|
@@ -119,7 +118,10 @@
|
|
|
119
118
|
"react-transition-group": "^4.3.0",
|
|
120
119
|
"react-use": "^15.3.8",
|
|
121
120
|
"resize-observer-polyfill": "^1.5.1",
|
|
122
|
-
"styled-components": "^5.1.1"
|
|
121
|
+
"styled-components": "^5.1.1",
|
|
122
|
+
"@internationalized/date": "^3.5.4",
|
|
123
|
+
"react-aria-components": "^1.2.1",
|
|
124
|
+
"uid": "^2.0.2"
|
|
123
125
|
},
|
|
124
126
|
"overrides": {
|
|
125
127
|
"react-scrolllock-configurable": {
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { ActionList } from './ActionList';
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
export declare const ListCard: import("styled-components").StyledComponent<"div", any, import("../Card/styled").SurfaceProps, never>;
|
|
3
|
-
export declare const Section: import("styled-components").StyledComponent<"section", any, {}, never>;
|
|
4
|
-
export declare const SectionHeading: import("styled-components").StyledComponent<"span", any, ({} & import("../Text/types").TextProps) & {
|
|
5
|
-
variant: string;
|
|
6
|
-
}, "variant">;
|
|
7
|
-
export declare const Item: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
8
|
-
children?: import("react").ReactNode;
|
|
9
|
-
variant?: import("../Button/types").ButtonVariant | undefined;
|
|
10
|
-
size?: "base" | "sm" | undefined;
|
|
11
|
-
icon?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
|
12
|
-
dropdown?: boolean | undefined;
|
|
13
|
-
loading?: boolean | undefined;
|
|
14
|
-
} & import("react").RefAttributes<HTMLButtonElement>>, any, {
|
|
15
|
-
variant: "unstyled";
|
|
16
|
-
}, "variant">;
|
|
17
|
-
export declare const ActionItem: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
18
|
-
children?: import("react").ReactNode;
|
|
19
|
-
variant?: import("../Button/types").ButtonVariant | undefined;
|
|
20
|
-
size?: "base" | "sm" | undefined;
|
|
21
|
-
icon?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
|
22
|
-
dropdown?: boolean | undefined;
|
|
23
|
-
loading?: boolean | undefined;
|
|
24
|
-
} & import("react").RefAttributes<HTMLButtonElement>>, any, {
|
|
25
|
-
variant: "unstyled";
|
|
26
|
-
}, "variant">;
|
|
27
|
-
export declare const LinkItem: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
28
|
-
children?: import("react").ReactNode;
|
|
29
|
-
variant?: import("../Button/types").ButtonVariant | undefined;
|
|
30
|
-
size?: "base" | "sm" | undefined;
|
|
31
|
-
icon?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
|
32
|
-
dropdown?: boolean | undefined;
|
|
33
|
-
loading?: boolean | undefined;
|
|
34
|
-
} & import("react").RefAttributes<HTMLButtonElement>>, any, {
|
|
35
|
-
variant: "unstyled";
|
|
36
|
-
}, "variant">;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { ReactElement } from 'react';
|
|
2
|
-
import { ButtonVariant } from '../Button/types';
|
|
3
|
-
export type ActionListItem = {
|
|
4
|
-
title: string;
|
|
5
|
-
icon?: ReactElement;
|
|
6
|
-
variant?: 'item' | 'action' | 'link';
|
|
7
|
-
onClick: () => void;
|
|
8
|
-
};
|
|
9
|
-
export type ActionListSection = {
|
|
10
|
-
title?: string;
|
|
11
|
-
items: ActionListItem[];
|
|
12
|
-
};
|
|
13
|
-
export interface ActionListProps {
|
|
14
|
-
title: string;
|
|
15
|
-
items?: ActionListItem[];
|
|
16
|
-
sections?: ActionListSection[];
|
|
17
|
-
buttonVariant?: ButtonVariant;
|
|
18
|
-
buttonSize?: 'sm' | 'base';
|
|
19
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import React, { ReactElement, ReactNode } from 'react';
|
|
2
|
-
import { ActionListSection } from '../ActionList/types';
|
|
3
|
-
import { ButtonVariant } from '../Button/types';
|
|
4
|
-
import { ShadowPropType } from './styled';
|
|
5
|
-
type QuickAction = {
|
|
6
|
-
title: string;
|
|
7
|
-
icon: ReactElement;
|
|
8
|
-
variant: ButtonVariant;
|
|
9
|
-
onClick: () => void;
|
|
10
|
-
};
|
|
11
|
-
type BackAction = {
|
|
12
|
-
title: string;
|
|
13
|
-
onClick: () => void;
|
|
14
|
-
};
|
|
15
|
-
export type PageHeaderProps = {
|
|
16
|
-
title: string;
|
|
17
|
-
subtitle?: string;
|
|
18
|
-
imageSrc?: string;
|
|
19
|
-
actions?: ActionListSection[];
|
|
20
|
-
quickActions?: QuickAction[];
|
|
21
|
-
backAction?: BackAction;
|
|
22
|
-
Accessory?: ReactNode;
|
|
23
|
-
shadow?: ShadowPropType;
|
|
24
|
-
onClickPrevious?: () => void;
|
|
25
|
-
onClickNext?: () => void;
|
|
26
|
-
onClickToggleSidebar?: () => void;
|
|
27
|
-
};
|
|
28
|
-
export declare const PageHeader: ({ title, subtitle, imageSrc, actions, quickActions, backAction, Accessory, shadow, onClickPrevious, onClickNext, onClickToggleSidebar, }: PageHeaderProps) => React.JSX.Element;
|
|
29
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { PageHeader } from './PageHeader';
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare const shadows: typeof import("../../theme/modules/shadows").Shadows;
|
|
3
|
-
export type ShadowPropType = keyof typeof shadows | 'none';
|
|
4
|
-
interface HeaderProps {
|
|
5
|
-
shadow: ShadowPropType;
|
|
6
|
-
}
|
|
7
|
-
export declare const Header: import("styled-components").StyledComponent<"header", any, HeaderProps, never>;
|
|
8
|
-
export declare const Title: import("styled-components").StyledComponent<"h1", any, {}, never>;
|
|
9
|
-
export declare const Subtitle: import("styled-components").StyledComponent<"p", any, {}, never>;
|
|
10
|
-
export declare const Image: import("styled-components").StyledComponent<"img", any, {}, never>;
|
|
11
|
-
export declare const ActionsContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
12
|
-
export declare const SidebarToggleButton: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
13
|
-
children?: import("react").ReactNode;
|
|
14
|
-
variant?: import("../Button/types").ButtonVariant | undefined;
|
|
15
|
-
size?: "base" | "sm" | undefined;
|
|
16
|
-
icon?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
|
17
|
-
dropdown?: boolean | undefined;
|
|
18
|
-
loading?: boolean | undefined;
|
|
19
|
-
} & import("react").RefAttributes<HTMLButtonElement>>, any, {
|
|
20
|
-
variant: "unstyled";
|
|
21
|
-
}, "variant">;
|
|
22
|
-
export declare const ColumnGrid: import("styled-components").StyledComponent<"div", any, any, never>;
|
|
23
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { Item } from './Item';
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
declare const ItemButton: import("styled-components").StyledComponent<"div", any, {
|
|
2
|
-
as: string;
|
|
3
|
-
}, "as">;
|
|
4
|
-
declare const StyledText: import("styled-components").StyledComponent<"span", any, {} & import("../../../Text/types").TextProps, never>;
|
|
5
|
-
export { StyledText as Text, ItemButton };
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { PaginationListItemProps } from './Item/types';
|
|
3
|
-
import { PaginationRangeProps } from '../types';
|
|
4
|
-
export type PaginationRangeItemsOwnProps = Pick<PaginationRangeProps, 'paginationRange'>;
|
|
5
|
-
export type PaginationListItemOwnProps = Pick<PaginationListItemProps, 'handleRangeListChange'>;
|
|
6
|
-
export type PaginationRangeItemsProps = PaginationRangeItemsOwnProps & PaginationListItemOwnProps;
|
|
7
|
-
export declare const Items: (props: PaginationRangeItemsProps) => React.JSX.Element;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { Items } from './Items';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { PaginationRange } from './PaginationRange';
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export interface PaginationRangeOption {
|
|
2
|
-
label: string;
|
|
3
|
-
value: number;
|
|
4
|
-
}
|
|
5
|
-
export interface PaginationRangeProps {
|
|
6
|
-
className?: string;
|
|
7
|
-
dropdownValue?: PaginationRangeOption;
|
|
8
|
-
paginationRange?: PaginationRangeOption[];
|
|
9
|
-
reversedDropdown?: boolean;
|
|
10
|
-
onPaginationRangeChange: (currentItem: PaginationRangeOption) => void;
|
|
11
|
-
}
|
|
12
|
-
export interface PaginationRangeState {
|
|
13
|
-
dropdownValue: PaginationRangeOption;
|
|
14
|
-
shouldShowDropdown: boolean;
|
|
15
|
-
}
|
/package/dist/components/{ActionList/ActionList.test.d.ts → ActionMenu/ActionMenu.test.d.ts}
RENAMED
|
File without changes
|
/package/dist/components/{AnimatedDropdown/components/Dropdown.test.d.ts → Alert/Alert.test.d.ts}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|