@bytebrand/fe-ui-core 4.1.148 → 4.1.149
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/package.json +1 -1
- package/source/components/_common/IconSVG/SVG/flags/AT.tsx +6 -5
- package/source/components/_common/IconSVG/SVG/flags/BE.tsx +7 -6
- package/source/components/_common/IconSVG/SVG/flags/BG.tsx +14 -7
- package/source/components/_common/IconSVG/SVG/flags/CH.tsx +9 -5
- package/source/components/_common/IconSVG/SVG/flags/CZ.tsx +5 -7
- package/source/components/_common/IconSVG/SVG/flags/DE.tsx +5 -6
- package/source/components/_common/IconSVG/SVG/flags/DK.tsx +5 -3
- package/source/components/_common/IconSVG/SVG/flags/ES.tsx +2572 -561
- package/source/components/_common/IconSVG/SVG/flags/FI.tsx +5 -6
- package/source/components/_common/IconSVG/SVG/flags/FR.tsx +7 -6
- package/source/components/_common/IconSVG/SVG/flags/GB.tsx +13 -21
- package/source/components/_common/IconSVG/SVG/flags/HR.tsx +102 -100
- package/source/components/_common/IconSVG/SVG/flags/HU.tsx +7 -6
- package/source/components/_common/IconSVG/SVG/flags/IT.tsx +7 -6
- package/source/components/_common/IconSVG/SVG/flags/LI.tsx +60 -61
- package/source/components/_common/IconSVG/SVG/flags/LU.tsx +5 -6
- package/source/components/_common/IconSVG/SVG/flags/NL.tsx +5 -6
- package/source/components/_common/IconSVG/SVG/flags/NO.tsx +7 -8
- package/source/components/_common/IconSVG/SVG/flags/PL.tsx +6 -5
- package/source/components/_common/IconSVG/SVG/flags/RO.tsx +7 -6
- package/source/components/_common/IconSVG/SVG/flags/RU.tsx +7 -6
- package/source/components/_common/IconSVG/SVG/flags/SE.tsx +11 -3
- package/source/components/_common/IconSVG/SVG/flags/SI.tsx +35 -48
- package/source/components/_common/IconSVG/SVG/flags/SK.tsx +9 -15
- package/source/components/_common/IconSVG/SVG/flags/UA.tsx +9 -7
- package/source/framework/utils/CommonUtils.ts +1 -0
package/package.json
CHANGED
|
@@ -4,13 +4,14 @@ import * as React from "react";
|
|
|
4
4
|
const AT = (props: any) => (
|
|
5
5
|
<svg
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
id="flag-icons-at"
|
|
8
|
+
viewBox="0 0 640 480"
|
|
9
9
|
{...props}
|
|
10
|
-
viewBox="0 0 900 600"
|
|
11
10
|
>
|
|
12
|
-
<
|
|
13
|
-
|
|
11
|
+
<g fill-rule="evenodd">
|
|
12
|
+
<path fill="#fff" d="M640 480H0V0h640z" />
|
|
13
|
+
<path fill="#c8102e" d="M640 480H0V320h640zm0-319.9H0V.1h640z" />
|
|
14
|
+
</g>
|
|
14
15
|
</svg>
|
|
15
16
|
);
|
|
16
17
|
|
|
@@ -4,14 +4,15 @@ import * as React from "react";
|
|
|
4
4
|
const BE = (props: any) => (
|
|
5
5
|
<svg
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
id="flag-icons-be"
|
|
8
|
+
viewBox="0 0 640 480"
|
|
9
9
|
{...props}
|
|
10
|
-
viewBox="0 0 900 600"
|
|
11
10
|
>
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
<g fill-rule="evenodd" stroke-width="1pt">
|
|
12
|
+
<path d="M0 0h213.3v480H0z" />
|
|
13
|
+
<path fill="#ffd90c" d="M213.3 0h213.4v480H213.3z" />
|
|
14
|
+
<path fill="#f31830" d="M426.7 0H640v480H426.7z" />
|
|
15
|
+
</g>
|
|
15
16
|
</svg>
|
|
16
17
|
);
|
|
17
18
|
|
|
@@ -1,12 +1,19 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
|
-
import * as React from
|
|
2
|
+
import * as React from "react";
|
|
3
3
|
|
|
4
|
-
const BG = (
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
const BG = (props: any) => (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
id="flag-icons-bg"
|
|
8
|
+
viewBox="0 0 640 480"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<g fill-rule="evenodd" stroke-width="1pt">
|
|
12
|
+
<path fill="#d62612" d="M0 320h640v160H0z" />
|
|
13
|
+
<path fill="#fff" d="M0 0h640v160H0z" />
|
|
14
|
+
<path fill="#00966e" d="M0 160h640v160H0z" />
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
10
17
|
);
|
|
11
18
|
|
|
12
19
|
export default BG;
|
|
@@ -3,14 +3,18 @@ import * as React from "react";
|
|
|
3
3
|
|
|
4
4
|
const CH = (props: any) => (
|
|
5
5
|
<svg
|
|
6
|
-
width="512"
|
|
7
|
-
height="512"
|
|
8
|
-
viewBox="0 0 32 32"
|
|
9
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
id="flag-icons-ch"
|
|
8
|
+
viewBox="0 0 640 480"
|
|
10
9
|
{...props}
|
|
11
10
|
>
|
|
12
|
-
<
|
|
13
|
-
|
|
11
|
+
<g fill-rule="evenodd" stroke-width="1pt">
|
|
12
|
+
<path fill="red" d="M0 0h640v480H0z" />
|
|
13
|
+
<g fill="#fff">
|
|
14
|
+
<path d="M170 195h300v90H170z" />
|
|
15
|
+
<path d="M275 90h90v300h-90z" />
|
|
16
|
+
</g>
|
|
17
|
+
</g>
|
|
14
18
|
</svg>
|
|
15
19
|
);
|
|
16
20
|
|
|
@@ -3,16 +3,14 @@ import * as React from "react";
|
|
|
3
3
|
|
|
4
4
|
const CZ = (props: any) => (
|
|
5
5
|
<svg
|
|
6
|
-
version="1.0"
|
|
7
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
viewBox="0 0 900 600"
|
|
7
|
+
id="flag-icons-cz"
|
|
8
|
+
viewBox="0 0 640 480"
|
|
11
9
|
{...props}
|
|
12
10
|
>
|
|
13
|
-
<path fill="#
|
|
14
|
-
<path fill="#
|
|
15
|
-
<path d="
|
|
11
|
+
<path fill="#fff" d="M0 0h640v240H0z" />
|
|
12
|
+
<path fill="#d7141a" d="M0 240h640v240H0z" />
|
|
13
|
+
<path fill="#11457e" d="M360 240 0 0v480z" />
|
|
16
14
|
</svg>
|
|
17
15
|
);
|
|
18
16
|
|
|
@@ -4,14 +4,13 @@ import * as React from "react";
|
|
|
4
4
|
const DE = (props: any) => (
|
|
5
5
|
<svg
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
viewBox="0 0 5 3"
|
|
7
|
+
id="flag-icons-de"
|
|
8
|
+
viewBox="0 0 640 480"
|
|
10
9
|
{...props}
|
|
11
10
|
>
|
|
12
|
-
<path d="M0
|
|
13
|
-
<path
|
|
14
|
-
<path fill="#
|
|
11
|
+
<path fill="#ffce00" d="M0 320h640v160H0z" />
|
|
12
|
+
<path d="M0 0h640v160H0z" />
|
|
13
|
+
<path fill="#d00" d="M0 160h640v160H0z" />
|
|
15
14
|
</svg>
|
|
16
15
|
);
|
|
17
16
|
|
|
@@ -4,11 +4,13 @@ import * as React from "react";
|
|
|
4
4
|
const DK = (props: any) => (
|
|
5
5
|
<svg
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
-
|
|
7
|
+
id="flag-icons-dk"
|
|
8
|
+
viewBox="0 0 640 480"
|
|
8
9
|
{...props}
|
|
9
10
|
>
|
|
10
|
-
<path fill="#
|
|
11
|
-
<path fill="#fff" d="
|
|
11
|
+
<path fill="#c8102e" d="M0 0h640.1v480H0z" />
|
|
12
|
+
<path fill="#fff" d="M205.7 0h68.6v480h-68.6z" />
|
|
13
|
+
<path fill="#fff" d="M0 205.7h640.1v68.6H0z" />
|
|
12
14
|
</svg>
|
|
13
15
|
);
|
|
14
16
|
|