dhre-ui-kit 0.0.128 → 0.0.129

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/lib/index.d.ts CHANGED
@@ -1025,7 +1025,7 @@ interface AppointmentCardProps {
1025
1025
  title: string;
1026
1026
  headerTitle: string;
1027
1027
  headerSubtitle: string;
1028
- appointmentId: string;
1028
+ appointmentId: number;
1029
1029
  requestId: string;
1030
1030
  location: string;
1031
1031
  onPress: () => void;
package/lib/index.js CHANGED
@@ -4228,7 +4228,7 @@ const AppointmentCard = ({
4228
4228
  ), /* @__PURE__ */ React__default["default"].createElement(
4229
4229
  CustomTypography,
4230
4230
  {
4231
- text: appointmentId,
4231
+ text: appointmentId?.toString(),
4232
4232
  variant: FontStyle.L1_REGULAR,
4233
4233
  style: { color: theme.CONTENT_PRIMARY }
4234
4234
  }