@solace-health/ui 0.10.113 → 0.10.115

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
@@ -244,7 +244,7 @@ declare const _default$6: {
244
244
  size?: number | undefined;
245
245
  }) => react_jsx_runtime.JSX.Element;
246
246
  CalendarClock: ({ active, color, }: {
247
- active: boolean;
247
+ active?: boolean | undefined;
248
248
  color: string;
249
249
  }) => react_jsx_runtime.JSX.Element;
250
250
  PersonCircle: ({ size, color }: {
@@ -335,7 +335,7 @@ declare const _default$6: {
335
335
  color?: string | undefined;
336
336
  }) => react_jsx_runtime.JSX.Element;
337
337
  FramedPainting: ({ active, color, }: {
338
- active: boolean;
338
+ active?: boolean | undefined;
339
339
  color: string;
340
340
  }) => react_jsx_runtime.JSX.Element;
341
341
  Hamburger: ({ color }: {
@@ -378,7 +378,7 @@ declare const _default$6: {
378
378
  Language: () => react_jsx_runtime.JSX.Element;
379
379
  LightBulb: ({ isFilled, size }: {
380
380
  isFilled?: boolean | undefined;
381
- size?: string | undefined;
381
+ size?: number | undefined;
382
382
  }) => react_jsx_runtime.JSX.Element;
383
383
  LocationPin: ({ className, color, size, }: {
384
384
  className?: string | undefined;
@@ -412,7 +412,7 @@ declare const _default$6: {
412
412
  size?: number | undefined;
413
413
  }) => react_jsx_runtime.JSX.Element;
414
414
  Permissions: ({ size, color, }: {
415
- size?: string | undefined;
415
+ size?: number | undefined;
416
416
  color?: string | undefined;
417
417
  }) => react_jsx_runtime.JSX.Element;
418
418
  Person: () => react_jsx_runtime.JSX.Element;
@@ -428,7 +428,7 @@ declare const _default$6: {
428
428
  color?: string | undefined;
429
429
  }) => react_jsx_runtime.JSX.Element;
430
430
  RatingStar: ({ filled }: {
431
- filled: boolean;
431
+ filled?: boolean | undefined;
432
432
  }) => react_jsx_runtime.JSX.Element;
433
433
  ReceptionBell: ({ active, color }: {
434
434
  active?: boolean | undefined;
@@ -451,6 +451,10 @@ declare const _default$6: {
451
451
  Send: ({ color }: {
452
452
  color?: string | undefined;
453
453
  }) => JSX.Element;
454
+ Shield: ({ color, size }: {
455
+ color?: string | undefined;
456
+ size?: number | undefined;
457
+ }) => react_jsx_runtime.JSX.Element;
454
458
  Signature: ({ color }: {
455
459
  color?: string | undefined;
456
460
  }) => react_jsx_runtime.JSX.Element;
@@ -478,7 +482,7 @@ declare const _default$6: {
478
482
  color?: string | undefined;
479
483
  }) => JSX.Element;
480
484
  Video: ({ size, color, }: {
481
- size?: string | undefined;
485
+ size?: number | undefined;
482
486
  color?: string | undefined;
483
487
  }) => react_jsx_runtime.JSX.Element;
484
488
  };
@@ -855,7 +859,7 @@ declare const _default$3: {
855
859
  label?: string | JSX.Element | null | undefined;
856
860
  isLabelBold?: boolean | undefined;
857
861
  required?: boolean | undefined;
858
- details?: string | null | undefined;
862
+ details?: string | JSX.Element | null | undefined;
859
863
  helpContent?: string | JSX.Element | undefined;
860
864
  helpLabel?: string | JSX.Element | undefined;
861
865
  }) => react_jsx_runtime.JSX.Element | null;
@@ -1075,7 +1079,7 @@ declare const _default$3: {
1075
1079
  disabled?: boolean | undefined;
1076
1080
  loading?: boolean | undefined;
1077
1081
  }) => react_jsx_runtime.JSX.Element;
1078
- FileUpload: ({ label, name, disabled, description, isLabelBold, formOptions, onChange, onRemove, onDownload, defaultValue, containerStyle, errorMessage, action, headers, uploadData, defaultFileList, ...rest }: {
1082
+ FileUpload: ({ label, name, disabled, description, isLabelBold, formOptions, onChange, onRemove, onDownload, onDrop, defaultValue, containerStyle, errorMessage, action, headers, uploadData, defaultFileList, ...rest }: {
1079
1083
  label?: string | JSX.Element | undefined;
1080
1084
  name: string;
1081
1085
  formOptions?: react_hook_form.RegisterOptions<FieldValues, string> | undefined;
@@ -1085,11 +1089,11 @@ declare const _default$3: {
1085
1089
  containerStyle?: react.CSSProperties | undefined;
1086
1090
  errorMessage?: string | undefined;
1087
1091
  defaultValue?: string | undefined;
1088
- action: string;
1092
+ action?: string | undefined;
1089
1093
  headers?: antd_es_upload_interface.HttpRequestHeader | undefined;
1090
1094
  uploadData?: Record<string, unknown> | undefined;
1091
- defaultFileList?: antd.UploadFile<any>[] | undefined;
1092
- } & antd.UploadProps<any>) => react_jsx_runtime.JSX.Element;
1095
+ defaultFileList?: antd.UploadFile<unknown>[] | undefined;
1096
+ } & Pick<antd.UploadProps<any>, "onChange" | "onDrop" | "onRemove" | "onDownload">) => react_jsx_runtime.JSX.Element;
1093
1097
  Tree: ({ name, ...rest }: {
1094
1098
  name: string;
1095
1099
  } & TreeProps) => react_jsx_runtime.JSX.Element;
package/dist/index.d.ts CHANGED
@@ -244,7 +244,7 @@ declare const _default$6: {
244
244
  size?: number | undefined;
245
245
  }) => react_jsx_runtime.JSX.Element;
246
246
  CalendarClock: ({ active, color, }: {
247
- active: boolean;
247
+ active?: boolean | undefined;
248
248
  color: string;
249
249
  }) => react_jsx_runtime.JSX.Element;
250
250
  PersonCircle: ({ size, color }: {
@@ -335,7 +335,7 @@ declare const _default$6: {
335
335
  color?: string | undefined;
336
336
  }) => react_jsx_runtime.JSX.Element;
337
337
  FramedPainting: ({ active, color, }: {
338
- active: boolean;
338
+ active?: boolean | undefined;
339
339
  color: string;
340
340
  }) => react_jsx_runtime.JSX.Element;
341
341
  Hamburger: ({ color }: {
@@ -378,7 +378,7 @@ declare const _default$6: {
378
378
  Language: () => react_jsx_runtime.JSX.Element;
379
379
  LightBulb: ({ isFilled, size }: {
380
380
  isFilled?: boolean | undefined;
381
- size?: string | undefined;
381
+ size?: number | undefined;
382
382
  }) => react_jsx_runtime.JSX.Element;
383
383
  LocationPin: ({ className, color, size, }: {
384
384
  className?: string | undefined;
@@ -412,7 +412,7 @@ declare const _default$6: {
412
412
  size?: number | undefined;
413
413
  }) => react_jsx_runtime.JSX.Element;
414
414
  Permissions: ({ size, color, }: {
415
- size?: string | undefined;
415
+ size?: number | undefined;
416
416
  color?: string | undefined;
417
417
  }) => react_jsx_runtime.JSX.Element;
418
418
  Person: () => react_jsx_runtime.JSX.Element;
@@ -428,7 +428,7 @@ declare const _default$6: {
428
428
  color?: string | undefined;
429
429
  }) => react_jsx_runtime.JSX.Element;
430
430
  RatingStar: ({ filled }: {
431
- filled: boolean;
431
+ filled?: boolean | undefined;
432
432
  }) => react_jsx_runtime.JSX.Element;
433
433
  ReceptionBell: ({ active, color }: {
434
434
  active?: boolean | undefined;
@@ -451,6 +451,10 @@ declare const _default$6: {
451
451
  Send: ({ color }: {
452
452
  color?: string | undefined;
453
453
  }) => JSX.Element;
454
+ Shield: ({ color, size }: {
455
+ color?: string | undefined;
456
+ size?: number | undefined;
457
+ }) => react_jsx_runtime.JSX.Element;
454
458
  Signature: ({ color }: {
455
459
  color?: string | undefined;
456
460
  }) => react_jsx_runtime.JSX.Element;
@@ -478,7 +482,7 @@ declare const _default$6: {
478
482
  color?: string | undefined;
479
483
  }) => JSX.Element;
480
484
  Video: ({ size, color, }: {
481
- size?: string | undefined;
485
+ size?: number | undefined;
482
486
  color?: string | undefined;
483
487
  }) => react_jsx_runtime.JSX.Element;
484
488
  };
@@ -855,7 +859,7 @@ declare const _default$3: {
855
859
  label?: string | JSX.Element | null | undefined;
856
860
  isLabelBold?: boolean | undefined;
857
861
  required?: boolean | undefined;
858
- details?: string | null | undefined;
862
+ details?: string | JSX.Element | null | undefined;
859
863
  helpContent?: string | JSX.Element | undefined;
860
864
  helpLabel?: string | JSX.Element | undefined;
861
865
  }) => react_jsx_runtime.JSX.Element | null;
@@ -1075,7 +1079,7 @@ declare const _default$3: {
1075
1079
  disabled?: boolean | undefined;
1076
1080
  loading?: boolean | undefined;
1077
1081
  }) => react_jsx_runtime.JSX.Element;
1078
- FileUpload: ({ label, name, disabled, description, isLabelBold, formOptions, onChange, onRemove, onDownload, defaultValue, containerStyle, errorMessage, action, headers, uploadData, defaultFileList, ...rest }: {
1082
+ FileUpload: ({ label, name, disabled, description, isLabelBold, formOptions, onChange, onRemove, onDownload, onDrop, defaultValue, containerStyle, errorMessage, action, headers, uploadData, defaultFileList, ...rest }: {
1079
1083
  label?: string | JSX.Element | undefined;
1080
1084
  name: string;
1081
1085
  formOptions?: react_hook_form.RegisterOptions<FieldValues, string> | undefined;
@@ -1085,11 +1089,11 @@ declare const _default$3: {
1085
1089
  containerStyle?: react.CSSProperties | undefined;
1086
1090
  errorMessage?: string | undefined;
1087
1091
  defaultValue?: string | undefined;
1088
- action: string;
1092
+ action?: string | undefined;
1089
1093
  headers?: antd_es_upload_interface.HttpRequestHeader | undefined;
1090
1094
  uploadData?: Record<string, unknown> | undefined;
1091
- defaultFileList?: antd.UploadFile<any>[] | undefined;
1092
- } & antd.UploadProps<any>) => react_jsx_runtime.JSX.Element;
1095
+ defaultFileList?: antd.UploadFile<unknown>[] | undefined;
1096
+ } & Pick<antd.UploadProps<any>, "onChange" | "onDrop" | "onRemove" | "onDownload">) => react_jsx_runtime.JSX.Element;
1093
1097
  Tree: ({ name, ...rest }: {
1094
1098
  name: string;
1095
1099
  } & TreeProps) => react_jsx_runtime.JSX.Element;