dhre-ui-kit 0.0.126 → 0.0.127

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
@@ -1029,6 +1029,7 @@ interface AppointmentCardProps {
1029
1029
  requestId: string;
1030
1030
  location: string;
1031
1031
  onPress: () => void;
1032
+ onHeaderPress: () => void;
1032
1033
  }
1033
1034
 
1034
1035
  declare const _default$1: (props: AppointmentCardProps) => React$1.JSX.Element;
package/lib/index.js CHANGED
@@ -4168,7 +4168,8 @@ const AppointmentCard = ({
4168
4168
  appointmentId,
4169
4169
  requestId,
4170
4170
  location,
4171
- onPress
4171
+ onPress,
4172
+ onHeaderPress
4172
4173
  }) => {
4173
4174
  const { theme } = useTheme();
4174
4175
  return /* @__PURE__ */ React__default["default"].createElement(
@@ -4177,6 +4178,7 @@ const AppointmentCard = ({
4177
4178
  title,
4178
4179
  isOpen,
4179
4180
  onToggle,
4181
+ onHeaderPress,
4180
4182
  containerStyle: {
4181
4183
  ...styles$1.accordionStyle,
4182
4184
  backgroundColor: theme.SURFACE_SECONDARY,