@bytebrand/fe-ui-core 4.1.222 → 4.1.224

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.222",
3
+ "version": "4.1.224",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -56,5 +56,5 @@
56
56
  position: relative
57
57
  // top: 3px
58
58
  left: 5px
59
- fill: $skyBlue
59
+ // fill: $skyBlue
60
60
  font-size: 16px
@@ -86,7 +86,7 @@ const StateWidget = (props: IStateWidgetProps) => {
86
86
  {t(`cbd:${option}`)}
87
87
  </span>
88
88
  <span className={styles.labelSub}>&nbsp;(<FormattedNumber numbersAfterDot={0} value={agg} />)</span>
89
- {index === 0 && <IconSVG className={styles.infoIcon} name={'info'} customDimensions />}
89
+ {index === 0 && <IconSVG className={styles.infoIcon} name={'infoIcon'} customDimensions />}
90
90
  </div>
91
91
  );
92
92
  };
@@ -63,7 +63,7 @@ export const handleMaxDate = (): string => {
63
63
  const month = String(new Date().getMonth() + 1).padStart(2, '0');
64
64
  const year = new Date().getFullYear() - 18;
65
65
 
66
- return `${month}/${day + 1}/${year}`;
66
+ return `${month}/${day}/${year}`;
67
67
  };
68
68
 
69
69
  export const handleMaxDateForPicker = (): string => {