@bytebrand/fe-ui-core 4.1.84 → 4.1.86

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bytebrand/fe-ui-core",
3
- "version": "4.1.84",
3
+ "version": "4.1.86",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -291,6 +291,11 @@ import PhoneGrey from './SVG/common/PhoneGrey';
291
291
  import UserGrey from './SVG/common/UserGrey';
292
292
  import MenuGrey from './SVG/common/MenuGrey';
293
293
  import CloseGrey from './SVG/common/CloseGrey';
294
+
295
+ // dashboard
296
+ import CallbackDashboard from './SVG/common/CallbackDashboard';
297
+ import ProfileDashboard from './SVG/common/ProfileDashboard';
298
+ import AddressDasboard from './SVG/common/AddressDashboard';
294
299
  interface IComponentsProp {
295
300
  [key: string]: (props: any) => React.ReactNode;
296
301
  }
@@ -673,7 +678,12 @@ const components: IComponentsProp = {
673
678
  phoneGrey: PhoneGrey,
674
679
  userGrey: UserGrey,
675
680
  menuGrey: MenuGrey,
676
- closeGrey: CloseGrey
681
+ closeGrey: CloseGrey,
682
+
683
+ // dashboard
684
+ callbackDashboard: CallbackDashboard,
685
+ profileDashboard: ProfileDashboard,
686
+ addressDasboard: AddressDasboard
677
687
  };
678
688
 
679
689
  export default components;
@@ -0,0 +1,29 @@
1
+ /* tslint:disable */
2
+ import React from 'react';
3
+
4
+ const AddressDashboard = (
5
+ props: any
6
+ ) => {
7
+ return (
8
+ <svg
9
+ width="40"
10
+ height="40"
11
+ viewBox="0 0 40 40"
12
+ fill="none"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ {...props}
15
+ >
16
+ <rect width="40" height="40" rx="8" fill="#FDB528"/>
17
+ <rect width="40" height="40" rx="8" fill="white" fillOpacity="0.88"/>
18
+ <mask id="mask0_5313_18047" maskUnits="userSpaceOnUse" x="8" y="8" width="24" height="24">
19
+ <rect x="8" y="8" width="24" height="24" fill="#D9D9D9"/>
20
+ </mask>
21
+ <g mask="url(#mask0_5313_18047)">
22
+ <path d="M20 24.475C21.65 23.1417 22.896 21.8583 23.738 20.625C24.5793 19.3917 25 18.2333 25 17.15C25 16.2167 24.8293 15.4207 24.488 14.762C24.146 14.104 23.725 13.5707 23.225 13.162C22.725 12.754 22.1833 12.4583 21.6 12.275C21.0167 12.0917 20.4833 12 20 12C19.5167 12 18.9833 12.0917 18.4 12.275C17.8167 12.4583 17.275 12.754 16.775 13.162C16.275 13.5707 15.8543 14.104 15.513 14.762C15.171 15.4207 15 16.2167 15 17.15C15 18.2333 15.4207 19.3917 16.262 20.625C17.104 21.8583 18.35 23.1417 20 24.475ZM20 27C17.65 25.2667 15.8957 23.5833 14.737 21.95C13.579 20.3167 13 18.7167 13 17.15C13 15.9667 13.2127 14.929 13.638 14.037C14.0627 13.1457 14.6083 12.4 15.275 11.8C15.9417 11.2 16.6917 10.75 17.525 10.45C18.3583 10.15 19.1833 10 20 10C20.8167 10 21.6417 10.15 22.475 10.45C23.3083 10.75 24.0583 11.2 24.725 11.8C25.3917 12.4 25.9377 13.1457 26.363 14.037C26.7877 14.929 27 15.9667 27 17.15C27 18.7167 26.4207 20.3167 25.262 21.95C24.104 23.5833 22.35 25.2667 20 27ZM20 19C20.55 19 21.021 18.804 21.413 18.412C21.8043 18.0207 22 17.55 22 17C22 16.45 21.8043 15.979 21.413 15.587C21.021 15.1957 20.55 15 20 15C19.45 15 18.9793 15.1957 18.588 15.587C18.196 15.979 18 16.45 18 17C18 17.55 18.196 18.0207 18.588 18.412C18.9793 18.804 19.45 19 20 19ZM13 30V28H27V30H13Z" fill="#FCCD04"/>
23
+ </g>
24
+ </svg>
25
+ )
26
+ }
27
+
28
+ export default AddressDashboard;
29
+ /* tslint:enable */
@@ -0,0 +1,29 @@
1
+ /* tslint:disable */
2
+ import React from 'react';
3
+
4
+ const AddressDashboard = (
5
+ props: any
6
+ ) => {
7
+ return (
8
+ <svg
9
+ width="40"
10
+ height="40"
11
+ viewBox="0 0 40 40"
12
+ fill="none"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ {...props}
15
+ >
16
+ <rect width="40" height="40" rx="8" fill="#FDB528"/>
17
+ <rect width="40" height="40" rx="8" fill="white" fillOpacity="0.88"/>
18
+ <mask id="mask0_5313_18047" maskUnits="userSpaceOnUse" x="8" y="8" width="24" height="24">
19
+ <rect x="8" y="8" width="24" height="24" fill="#D9D9D9"/>
20
+ </mask>
21
+ <g mask="url(#mask0_5313_18047)">
22
+ <path d="M20 24.475C21.65 23.1417 22.896 21.8583 23.738 20.625C24.5793 19.3917 25 18.2333 25 17.15C25 16.2167 24.8293 15.4207 24.488 14.762C24.146 14.104 23.725 13.5707 23.225 13.162C22.725 12.754 22.1833 12.4583 21.6 12.275C21.0167 12.0917 20.4833 12 20 12C19.5167 12 18.9833 12.0917 18.4 12.275C17.8167 12.4583 17.275 12.754 16.775 13.162C16.275 13.5707 15.8543 14.104 15.513 14.762C15.171 15.4207 15 16.2167 15 17.15C15 18.2333 15.4207 19.3917 16.262 20.625C17.104 21.8583 18.35 23.1417 20 24.475ZM20 27C17.65 25.2667 15.8957 23.5833 14.737 21.95C13.579 20.3167 13 18.7167 13 17.15C13 15.9667 13.2127 14.929 13.638 14.037C14.0627 13.1457 14.6083 12.4 15.275 11.8C15.9417 11.2 16.6917 10.75 17.525 10.45C18.3583 10.15 19.1833 10 20 10C20.8167 10 21.6417 10.15 22.475 10.45C23.3083 10.75 24.0583 11.2 24.725 11.8C25.3917 12.4 25.9377 13.1457 26.363 14.037C26.7877 14.929 27 15.9667 27 17.15C27 18.7167 26.4207 20.3167 25.262 21.95C24.104 23.5833 22.35 25.2667 20 27ZM20 19C20.55 19 21.021 18.804 21.413 18.412C21.8043 18.0207 22 17.55 22 17C22 16.45 21.8043 15.979 21.413 15.587C21.021 15.1957 20.55 15 20 15C19.45 15 18.9793 15.1957 18.588 15.587C18.196 15.979 18 16.45 18 17C18 17.55 18.196 18.0207 18.588 18.412C18.9793 18.804 19.45 19 20 19ZM13 30V28H27V30H13Z" fill="#FCCD04"/>
23
+ </g>
24
+ </svg>
25
+ )
26
+ }
27
+
28
+ export default AddressDashboard;
29
+ /* tslint:enable */
@@ -0,0 +1,24 @@
1
+ /* tslint:disable */
2
+ import React from 'react';
3
+
4
+ const ProfileDashboard = (
5
+ props: any
6
+ ) => {
7
+ return (
8
+ <svg
9
+ width="40"
10
+ height="40"
11
+ viewBox="0 0 40 40"
12
+ fill="none"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ {...props}
15
+ >
16
+ <rect width="40" height="40" rx="8" fill="#666CFF"/>
17
+ <rect width="40" height="40" rx="8" fill="white" fillOpacity="0.88"/>
18
+ <path d="M20 13.9C21.16 13.9 22.1 14.84 22.1 16C22.1 17.16 21.16 18.1 20 18.1C18.84 18.1 17.9 17.16 17.9 16C17.9 14.84 18.84 13.9 20 13.9ZM20 22.9C22.97 22.9 26.1 24.36 26.1 25V26.1H13.9V25C13.9 24.36 17.03 22.9 20 22.9ZM20 12C17.79 12 16 13.79 16 16C16 18.21 17.79 20 20 20C22.21 20 24 18.21 24 16C24 13.79 22.21 12 20 12ZM20 21C17.33 21 12 22.34 12 25V28H28V25C28 22.34 22.67 21 20 21Z" fill="#005CCB"/>
19
+ </svg>
20
+ )
21
+ }
22
+
23
+ export default ProfileDashboard;
24
+ /* tslint:enable */
@@ -6,5 +6,7 @@ $priceReviewColors = {
6
6
  increasedPrice: rgba(237, 157, 55, 1)
7
7
  fairPrice: rgba(173, 208, 66, 1)
8
8
  goodPrice: rgba(102, 212, 102, 1)
9
- topPrice: rgba(0, 184, 0, 1)
9
+ topPrice: rgba(31, 193, 31, 1)
10
10
  }
11
+
12
+