-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract from akeneo/pim-community-dev@d2598d0
With commits: :ladder: :package: Upgrade to React 17 (#20018) :ladder: :package: Upgrade to React 17 (#20018)
- Loading branch information
akeneo
committed
Jul 19, 2023
1 parent
772cad4
commit f9a5a1e
Showing
204 changed files
with
418 additions
and
237 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import React from 'react'; | ||
import { IconProps } from './IconProps'; | ||
declare const ActivityIcon: ({ title, size, color, ...props }: IconProps) => JSX.Element; | ||
declare const ActivityIcon: ({ title, size, color, ...props }: IconProps) => React.JSX.Element; | ||
export { ActivityIcon }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import React from 'react'; | ||
import { IconProps } from './IconProps'; | ||
declare const AddAttributeIcon: ({ title, size, color, ...props }: IconProps) => JSX.Element; | ||
declare const AddAttributeIcon: ({ title, size, color, ...props }: IconProps) => React.JSX.Element; | ||
export { AddAttributeIcon }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import React from 'react'; | ||
import { IconProps } from './IconProps'; | ||
declare const AkeneoIcon: ({ title, size, color, ...props }: IconProps) => JSX.Element; | ||
declare const AkeneoIcon: ({ title, size, color, ...props }: IconProps) => React.JSX.Element; | ||
export { AkeneoIcon }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import React from 'react'; | ||
import { IconProps } from './IconProps'; | ||
declare const ArrowDownIcon: ({ title, size, color, ...props }: IconProps) => JSX.Element; | ||
declare const ArrowDownIcon: ({ title, size, color, ...props }: IconProps) => React.JSX.Element; | ||
export { ArrowDownIcon }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import React from 'react'; | ||
import { IconProps } from './IconProps'; | ||
declare const ArrowIcon: ({ title, size, color, ...props }: IconProps) => JSX.Element; | ||
declare const ArrowIcon: ({ title, size, color, ...props }: IconProps) => React.JSX.Element; | ||
export { ArrowIcon }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import React from 'react'; | ||
import { IconProps } from './IconProps'; | ||
declare const ArrowLeftIcon: ({ title, size, color, ...props }: IconProps) => JSX.Element; | ||
declare const ArrowLeftIcon: ({ title, size, color, ...props }: IconProps) => React.JSX.Element; | ||
export { ArrowLeftIcon }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import React from 'react'; | ||
import { IconProps } from './IconProps'; | ||
declare const ArrowRightIcon: ({ title, size, color, ...props }: IconProps) => JSX.Element; | ||
declare const ArrowRightIcon: ({ title, size, color, ...props }: IconProps) => React.JSX.Element; | ||
export { ArrowRightIcon }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
import React from 'react'; | ||
import { IconProps } from './IconProps'; | ||
export declare const ArrowSimpleUpIcon: ({ title, size, color, ...props }: IconProps) => JSX.Element; | ||
export declare const ArrowSimpleUpIcon: ({ title, size, color, ...props }: IconProps) => React.JSX.Element; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import React from 'react'; | ||
import { IconProps } from './IconProps'; | ||
declare const ArrowUpIcon: ({ title, size, color, ...props }: IconProps) => JSX.Element; | ||
declare const ArrowUpIcon: ({ title, size, color, ...props }: IconProps) => React.JSX.Element; | ||
export { ArrowUpIcon }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import React from 'react'; | ||
import { IconProps } from './IconProps'; | ||
declare const AssetCollectionIcon: ({ title, size, color, ...props }: IconProps) => JSX.Element; | ||
declare const AssetCollectionIcon: ({ title, size, color, ...props }: IconProps) => React.JSX.Element; | ||
export { AssetCollectionIcon }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import React from 'react'; | ||
import { IconProps } from './IconProps'; | ||
declare const AssetsIcon: ({ title, size, color, ...props }: IconProps) => JSX.Element; | ||
declare const AssetsIcon: ({ title, size, color, ...props }: IconProps) => React.JSX.Element; | ||
export { AssetsIcon }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import React from 'react'; | ||
import { IconProps } from './IconProps'; | ||
declare const AssociateIcon: ({ title, size, color, ...props }: IconProps) => JSX.Element; | ||
declare const AssociateIcon: ({ title, size, color, ...props }: IconProps) => React.JSX.Element; | ||
export { AssociateIcon }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import React from 'react'; | ||
import { IconProps } from './IconProps'; | ||
declare const AttributeBooleanIcon: ({ title, size, color, ...props }: IconProps) => JSX.Element; | ||
declare const AttributeBooleanIcon: ({ title, size, color, ...props }: IconProps) => React.JSX.Element; | ||
export { AttributeBooleanIcon }; |
Oops, something went wrong.