@solace-health/ui 0.10.74 → 0.10.76

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/dist/index.d.cts CHANGED
@@ -196,6 +196,9 @@ declare const _default$6: {
196
196
  color?: string | undefined;
197
197
  }) => react_jsx_runtime.JSX.Element;
198
198
  Afternoon: () => react_jsx_runtime.JSX.Element;
199
+ Arrow: ({ color }: {
200
+ color?: string | undefined;
201
+ }) => react_jsx_runtime.JSX.Element;
199
202
  Attachment: ({ fill }: {
200
203
  fill?: string | undefined;
201
204
  }) => react_jsx_runtime.JSX.Element;
@@ -263,6 +266,9 @@ declare const _default$6: {
263
266
  DefaultFile: ({ fill }: {
264
267
  fill?: string | undefined;
265
268
  }) => react_jsx_runtime.JSX.Element;
269
+ Doctor: ({ color }: {
270
+ color?: string | undefined;
271
+ }) => react_jsx_runtime.JSX.Element;
266
272
  DownloadArrow: ({ fill }: {
267
273
  fill?: string | undefined;
268
274
  }) => react_jsx_runtime.JSX.Element;
@@ -390,6 +396,9 @@ declare const _default$6: {
390
396
  Plus: ({ color }: {
391
397
  color?: string | undefined;
392
398
  }) => react_jsx_runtime.JSX.Element;
399
+ Prescription: ({ color }: {
400
+ color?: string | undefined;
401
+ }) => react_jsx_runtime.JSX.Element;
393
402
  RatingStar: ({ filled }: {
394
403
  filled: boolean;
395
404
  }) => react_jsx_runtime.JSX.Element;
@@ -554,9 +563,11 @@ interface Step {
554
563
  }
555
564
 
556
565
  declare const _default$4: {
557
- Horizontal: ({ currentStep, steps, ...extraProps }: {
566
+ Horizontal: ({ currentStep, steps, icons, ...extraProps }: {
567
+ [extraProps: string]: unknown;
558
568
  currentStep: number;
559
569
  steps: string[];
570
+ icons?: JSX.Element[] | undefined;
560
571
  }) => react_jsx_runtime.JSX.Element;
561
572
  Vertical: ({ steps }: {
562
573
  steps: Step[];
@@ -703,7 +714,7 @@ declare const _default$3: {
703
714
  options: {
704
715
  label: string | JSX.Element;
705
716
  value: string;
706
- icon?: JSX.Element | undefined;
717
+ icon: "HandHeart" | "HandMoney" | "Hospital" | "Heart" | "Person";
707
718
  }[];
708
719
  className?: string | undefined;
709
720
  formOptions?: react_hook_form.RegisterOptions<FieldValues, string> | undefined;
@@ -773,6 +784,23 @@ declare const _default$3: {
773
784
  value: string;
774
785
  }[];
775
786
  }) => react_jsx_runtime.JSX.Element;
787
+ CheckboxCardGroup: ({ name, label, details, options, previewOnly, other, errorMessage, formOptions, ...inputProps }: {
788
+ [inputProps: string]: unknown;
789
+ name: string;
790
+ label?: string | react.ReactElement<any, string | react.JSXElementConstructor<any>> | undefined;
791
+ details?: string | undefined;
792
+ inline?: boolean | undefined;
793
+ previewOnly?: boolean | undefined;
794
+ errorMessage?: string | undefined;
795
+ formOptions?: react_hook_form.RegisterOptions<FieldValues, string> | undefined;
796
+ defaultValue?: string | undefined;
797
+ required?: boolean | undefined;
798
+ options: {
799
+ label: string;
800
+ value: string;
801
+ illustration: "Clock" | "Coffee" | "Medication" | "Notepad";
802
+ }[];
803
+ }) => react_jsx_runtime.JSX.Element;
776
804
  InputLabel: ({ label, isLabelBold, required, details, }: {
777
805
  label?: string | JSX.Element | null | undefined;
778
806
  isLabelBold?: boolean | undefined;
package/dist/index.d.ts CHANGED
@@ -196,6 +196,9 @@ declare const _default$6: {
196
196
  color?: string | undefined;
197
197
  }) => react_jsx_runtime.JSX.Element;
198
198
  Afternoon: () => react_jsx_runtime.JSX.Element;
199
+ Arrow: ({ color }: {
200
+ color?: string | undefined;
201
+ }) => react_jsx_runtime.JSX.Element;
199
202
  Attachment: ({ fill }: {
200
203
  fill?: string | undefined;
201
204
  }) => react_jsx_runtime.JSX.Element;
@@ -263,6 +266,9 @@ declare const _default$6: {
263
266
  DefaultFile: ({ fill }: {
264
267
  fill?: string | undefined;
265
268
  }) => react_jsx_runtime.JSX.Element;
269
+ Doctor: ({ color }: {
270
+ color?: string | undefined;
271
+ }) => react_jsx_runtime.JSX.Element;
266
272
  DownloadArrow: ({ fill }: {
267
273
  fill?: string | undefined;
268
274
  }) => react_jsx_runtime.JSX.Element;
@@ -390,6 +396,9 @@ declare const _default$6: {
390
396
  Plus: ({ color }: {
391
397
  color?: string | undefined;
392
398
  }) => react_jsx_runtime.JSX.Element;
399
+ Prescription: ({ color }: {
400
+ color?: string | undefined;
401
+ }) => react_jsx_runtime.JSX.Element;
393
402
  RatingStar: ({ filled }: {
394
403
  filled: boolean;
395
404
  }) => react_jsx_runtime.JSX.Element;
@@ -554,9 +563,11 @@ interface Step {
554
563
  }
555
564
 
556
565
  declare const _default$4: {
557
- Horizontal: ({ currentStep, steps, ...extraProps }: {
566
+ Horizontal: ({ currentStep, steps, icons, ...extraProps }: {
567
+ [extraProps: string]: unknown;
558
568
  currentStep: number;
559
569
  steps: string[];
570
+ icons?: JSX.Element[] | undefined;
560
571
  }) => react_jsx_runtime.JSX.Element;
561
572
  Vertical: ({ steps }: {
562
573
  steps: Step[];
@@ -703,7 +714,7 @@ declare const _default$3: {
703
714
  options: {
704
715
  label: string | JSX.Element;
705
716
  value: string;
706
- icon?: JSX.Element | undefined;
717
+ icon: "HandHeart" | "HandMoney" | "Hospital" | "Heart" | "Person";
707
718
  }[];
708
719
  className?: string | undefined;
709
720
  formOptions?: react_hook_form.RegisterOptions<FieldValues, string> | undefined;
@@ -773,6 +784,23 @@ declare const _default$3: {
773
784
  value: string;
774
785
  }[];
775
786
  }) => react_jsx_runtime.JSX.Element;
787
+ CheckboxCardGroup: ({ name, label, details, options, previewOnly, other, errorMessage, formOptions, ...inputProps }: {
788
+ [inputProps: string]: unknown;
789
+ name: string;
790
+ label?: string | react.ReactElement<any, string | react.JSXElementConstructor<any>> | undefined;
791
+ details?: string | undefined;
792
+ inline?: boolean | undefined;
793
+ previewOnly?: boolean | undefined;
794
+ errorMessage?: string | undefined;
795
+ formOptions?: react_hook_form.RegisterOptions<FieldValues, string> | undefined;
796
+ defaultValue?: string | undefined;
797
+ required?: boolean | undefined;
798
+ options: {
799
+ label: string;
800
+ value: string;
801
+ illustration: "Clock" | "Coffee" | "Medication" | "Notepad";
802
+ }[];
803
+ }) => react_jsx_runtime.JSX.Element;
776
804
  InputLabel: ({ label, isLabelBold, required, details, }: {
777
805
  label?: string | JSX.Element | null | undefined;
778
806
  isLabelBold?: boolean | undefined;