@lets-events/react 12.8.5 → 12.8.6

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.
@@ -1,6 +1,6 @@
1
1
 
2
2
 
3
- > @lets-events/react@12.8.5 build
3
+ > @lets-events/react@12.8.6 build
4
4
  > tsup src/index.tsx --format esm,cjs --dts --external react
5
5
 
6
6
  CLI Building entry: src/index.tsx
@@ -10,12 +10,12 @@
10
10
  CLI Target: es6
11
11
  ESM Build start
12
12
  CJS Build start
13
- CJS dist/index.js 413.65 KB
14
- CJS ⚡️ Build success in 336ms
15
- ESM dist/index.mjs 398.23 KB
16
- ESM ⚡️ Build success in 337ms
13
+ ESM dist/index.mjs 398.26 KB
14
+ ESM ⚡️ Build success in 334ms
15
+ CJS dist/index.js 413.69 KB
16
+ CJS ⚡️ Build success in 335ms
17
17
  DTS Build start
18
- DTS ⚡️ Build success in 6837ms
18
+ DTS ⚡️ Build success in 7365ms
19
19
  DTS dist/index.d.mts 404.21 KB
20
20
  DTS dist/index.d.ts 404.21 KB
21
21
  ⠙
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @lets-events/react
2
2
 
3
+ ## 12.8.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Calendar and timer icon color
8
+
3
9
  ## 12.8.5
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -8194,7 +8194,7 @@ function Calendar(_a) {
8194
8194
  inputMode: "numeric",
8195
8195
  textAlign: "right",
8196
8196
  color: hasError ? "error" : "default",
8197
- children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(TextFieldSlot, { children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Icon_default, { name: "calendar", size: "xl" }) })
8197
+ children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(TextFieldSlot, { children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Icon_default, { name: "calendar", size: "xl", color: "#4C4F54" }) })
8198
8198
  }
8199
8199
  )
8200
8200
  }
@@ -8740,7 +8740,7 @@ function TimePicker({
8740
8740
  typography: "labelSmall",
8741
8741
  fontWeight: "regular",
8742
8742
  color: hasError ? "error" : "default",
8743
- children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(TextFieldSlot, { children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(Icon_default, { name: "clock", size: "xl" }) })
8743
+ children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(TextFieldSlot, { children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(Icon_default, { name: "clock", size: "xl", color: "#4C4F54" }) })
8744
8744
  }
8745
8745
  )
8746
8746
  }
package/dist/index.mjs CHANGED
@@ -8078,7 +8078,7 @@ function Calendar(_a) {
8078
8078
  inputMode: "numeric",
8079
8079
  textAlign: "right",
8080
8080
  color: hasError ? "error" : "default",
8081
- children: /* @__PURE__ */ jsx15(TextFieldSlot, { children: /* @__PURE__ */ jsx15(Icon_default, { name: "calendar", size: "xl" }) })
8081
+ children: /* @__PURE__ */ jsx15(TextFieldSlot, { children: /* @__PURE__ */ jsx15(Icon_default, { name: "calendar", size: "xl", color: "#4C4F54" }) })
8082
8082
  }
8083
8083
  )
8084
8084
  }
@@ -8624,7 +8624,7 @@ function TimePicker({
8624
8624
  typography: "labelSmall",
8625
8625
  fontWeight: "regular",
8626
8626
  color: hasError ? "error" : "default",
8627
- children: /* @__PURE__ */ jsx18(TextFieldSlot, { children: /* @__PURE__ */ jsx18(Icon_default, { name: "clock", size: "xl" }) })
8627
+ children: /* @__PURE__ */ jsx18(TextFieldSlot, { children: /* @__PURE__ */ jsx18(Icon_default, { name: "clock", size: "xl", color: "#4C4F54" }) })
8628
8628
  }
8629
8629
  )
8630
8630
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lets-events/react",
3
- "version": "12.8.5",
3
+ "version": "12.8.6",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -119,7 +119,7 @@ export function Calendar({
119
119
  color={hasError ? "error" : "default"}
120
120
  >
121
121
  <TextFieldSlot>
122
- <Icon name="calendar" size={"xl"} />
122
+ <Icon name="calendar" size={"xl"} color="#4C4F54" />
123
123
  </TextFieldSlot>
124
124
  </TextField>
125
125
  </CalendarButtonStyled>
@@ -222,7 +222,7 @@ export function TimePicker({
222
222
  color={hasError ? "error" : "default"}
223
223
  >
224
224
  <TextFieldSlot>
225
- <Icon name="clock" size="xl" />
225
+ <Icon name="clock" size="xl" color="#4C4F54" />
226
226
  </TextFieldSlot>
227
227
  </TextField>
228
228
  </TimePickerButtonStyled>