@bytebrand/fe-ui-core 4.1.141 → 4.1.142

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.
Files changed (27) hide show
  1. package/package.json +1 -1
  2. package/source/components/_common/IconSVG/IconSVGConfig.tsx +55 -1
  3. package/source/components/_common/IconSVG/SVG/flags/AT.tsx +18 -0
  4. package/source/components/_common/IconSVG/SVG/flags/BE.tsx +19 -0
  5. package/source/components/_common/IconSVG/SVG/flags/BG.tsx +13 -0
  6. package/source/components/_common/IconSVG/SVG/flags/CH.tsx +18 -0
  7. package/source/components/_common/IconSVG/SVG/flags/CZ.tsx +20 -0
  8. package/source/components/_common/IconSVG/SVG/flags/DE.tsx +19 -0
  9. package/source/components/_common/IconSVG/SVG/flags/DK.tsx +16 -0
  10. package/source/components/_common/IconSVG/SVG/flags/ES.tsx +574 -0
  11. package/source/components/_common/IconSVG/SVG/flags/FI.tsx +19 -0
  12. package/source/components/_common/IconSVG/SVG/flags/FR.tsx +19 -0
  13. package/source/components/_common/IconSVG/SVG/flags/GB.tsx +34 -0
  14. package/source/components/_common/IconSVG/SVG/flags/HR.tsx +133 -0
  15. package/source/components/_common/IconSVG/SVG/flags/HU.tsx +19 -0
  16. package/source/components/_common/IconSVG/SVG/flags/IT.tsx +19 -0
  17. package/source/components/_common/IconSVG/SVG/flags/LI.tsx +107 -0
  18. package/source/components/_common/IconSVG/SVG/flags/LU.tsx +19 -0
  19. package/source/components/_common/IconSVG/SVG/flags/NL.tsx +19 -0
  20. package/source/components/_common/IconSVG/SVG/flags/NO.tsx +21 -0
  21. package/source/components/_common/IconSVG/SVG/flags/PL.tsx +18 -0
  22. package/source/components/_common/IconSVG/SVG/flags/RO.tsx +19 -0
  23. package/source/components/_common/IconSVG/SVG/flags/RU.tsx +19 -0
  24. package/source/components/_common/IconSVG/SVG/flags/SE.tsx +12 -0
  25. package/source/components/_common/IconSVG/SVG/flags/SI.tsx +67 -0
  26. package/source/components/_common/IconSVG/SVG/flags/SK.tsx +41 -0
  27. package/source/components/_common/IconSVG/SVG/flags/UA.tsx +17 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bytebrand/fe-ui-core",
3
- "version": "4.1.141",
3
+ "version": "4.1.142",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -307,6 +307,33 @@ import HandingOverDashboard from './SVG/common/HandingOverDashboard';
307
307
  import PickupDashboard from './SVG/common/PickupDashboard';
308
308
  import DashboardQuestionMark from './SVG/common/DashboardQuestionMark';
309
309
 
310
+ // flags
311
+ import UA from './SVG/flags/UA';
312
+ import CH from './SVG/flags/CH';
313
+ import AT from './SVG/flags/AT';
314
+ import BE from './SVG/flags/BE';
315
+ import BG from './SVG/flags/BG';
316
+ import HR from './SVG/flags/HR';
317
+ import CZ from './SVG/flags/CZ';
318
+ import DK from './SVG/flags/DK';
319
+ import FI from './SVG/flags/FI';
320
+ import FR from './SVG/flags/FR';
321
+ import DE from './SVG/flags/DE';
322
+ import GB from './SVG/flags/GB';
323
+ import HU from './SVG/flags/HU';
324
+ import IT from './SVG/flags/IT';
325
+ import LI from './SVG/flags/LI';
326
+ import LU from './SVG/flags/LU';
327
+ import NL from './SVG/flags/NL';
328
+ import NO from './SVG/flags/NO';
329
+ import PL from './SVG/flags/PL';
330
+ import RO from './SVG/flags/RO';
331
+ import SK from './SVG/flags/SK';
332
+ import SI from './SVG/flags/SI';
333
+ import ES from './SVG/flags/ES';
334
+ import SE from './SVG/flags/SE';
335
+ import RU from './SVG/flags/RU';
336
+
310
337
  interface IComponentsProp {
311
338
  [key: string]: (props: any) => React.ReactNode;
312
339
  }
@@ -704,7 +731,34 @@ const components: IComponentsProp = {
704
731
  deliveryDashboard: DeliveryDashboard,
705
732
  handingOverDashboard: HandingOverDashboard,
706
733
  pickupDashboard: PickupDashboard,
707
- dashboardQuestionMark: DashboardQuestionMark
734
+ dashboardQuestionMark: DashboardQuestionMark,
735
+
736
+ // flags
737
+ ua:UA,
738
+ ch:CH,
739
+ at:AT,
740
+ be:BE,
741
+ bg:BG,
742
+ hr:HR,
743
+ cz:CZ,
744
+ dk:DK,
745
+ fi:FI,
746
+ fr:FR,
747
+ de:DE,
748
+ gb:GB,
749
+ hu:HU,
750
+ it:IT,
751
+ li:LI,
752
+ lu:LU,
753
+ nl:NL,
754
+ no:NO,
755
+ pl:PL,
756
+ ro:RO,
757
+ sk:SK,
758
+ si:SI,
759
+ es:ES,
760
+ se:SE,
761
+ ru:RU
708
762
  };
709
763
 
710
764
  export default components;
@@ -0,0 +1,18 @@
1
+ /* tslint:disable */
2
+ import * as React from "react";
3
+
4
+ const AT = (props: any) => (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ width="900"
8
+ height="600"
9
+ {...props}
10
+ viewBox="0 0 900 600"
11
+ >
12
+ <path fill="#ed2939" d="M0 0h900v600H0z" />
13
+ <path fill="#fff" d="M0 200h900v200H0z" />
14
+ </svg>
15
+ );
16
+
17
+ export default AT;
18
+ /* tslint:enable */
@@ -0,0 +1,19 @@
1
+ /* tslint:disable */
2
+ import * as React from "react";
3
+
4
+ const BE = (props: any) => (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ width="900"
8
+ height="780"
9
+ {...props}
10
+ viewBox="0 0 900 600"
11
+ >
12
+ <path fill="#ed2939" d="M0 0h900v780H0z" />
13
+ <path fill="#fae042" d="M0 0h600v780H0z" />
14
+ <path d="M0 0h300v780H0z" />
15
+ </svg>
16
+ );
17
+
18
+ export default BE;
19
+ /* tslint:enable */
@@ -0,0 +1,13 @@
1
+ /* tslint:disable */
2
+ import * as React from 'react';
3
+
4
+ const BG = (
5
+ props: any
6
+ ) => (
7
+ <svg xmlns="http://www.w3.org/2000/svg" width="1000" height="600" viewBox="0 0 5 3" {...props}>
8
+ <path fill="#fff" d="M0 0h5v3H0z"/><path fill="#00966E" d="M0 1h5v2H0z"/><path fill="#D62612" d="M0 2h5v1H0z"/>
9
+ </svg>
10
+ );
11
+
12
+ export default BG;
13
+ /* tslint:enable */
@@ -0,0 +1,18 @@
1
+ /* tslint:disable */
2
+ import * as React from "react";
3
+
4
+ const CH = (props: any) => (
5
+ <svg
6
+ width="512"
7
+ height="512"
8
+ viewBox="0 0 32 32"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ {...props}
11
+ >
12
+ <path d="M0 0h32v32H0z" fill="red" />
13
+ <path d="M13 6h6v7h7v6h-7v7h-6v-7H6v-6h7z" fill="#fff" />
14
+ </svg>
15
+ );
16
+
17
+ export default CH;
18
+ /* tslint:enable */
@@ -0,0 +1,20 @@
1
+ /* tslint:disable */
2
+ import * as React from "react";
3
+
4
+ const CZ = (props: any) => (
5
+ <svg
6
+ version="1.0"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ width="900"
9
+ height="600"
10
+ viewBox="0 0 900 600"
11
+ {...props}
12
+ >
13
+ <path fill="#d7141a" d="M0 0h900v600H0z" />
14
+ <path fill="#fff" d="M0 0h900v300H0z" />
15
+ <path d="M450 300L0 0v600z" fill="#11457e" />
16
+ </svg>
17
+ );
18
+
19
+ export default CZ;
20
+ /* tslint:enable */
@@ -0,0 +1,19 @@
1
+ /* tslint:disable */
2
+ import * as React from "react";
3
+
4
+ const DE = (props: any) => (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ width="1000"
8
+ height="600"
9
+ viewBox="0 0 5 3"
10
+ {...props}
11
+ >
12
+ <path d="M0 0h5v3H0z" />
13
+ <path fill="#D00" d="M0 1h5v2H0z" />
14
+ <path fill="#FFCE00" d="M0 2h5v1H0z" />
15
+ </svg>
16
+ );
17
+
18
+ export default DE;
19
+ /* tslint:enable */
@@ -0,0 +1,16 @@
1
+ /* tslint:disable */
2
+ import * as React from "react";
3
+
4
+ const DK = (props: any) => (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ viewBox="0 0 37 28"
8
+ {...props}
9
+ >
10
+ <path fill="#c60c30" d="M0 0h37v28H0z" />
11
+ <path fill="#fff" d="M0 12h12V0h4v12h21v4H16v12h-4V16H0z" />
12
+ </svg>
13
+ );
14
+
15
+ export default DK;
16
+ /* tslint:enable */