@luscii-healthtech/web-ui 2.7.0 → 2.7.1

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.7.0",
2
+ "version": "2.7.1",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -68,6 +68,7 @@ export const ListItem = ({
68
68
  {!loadIconError && icon && typeof icon === "string" && (
69
69
  <img
70
70
  src={icon}
71
+ data-chromatic="ignore"
71
72
  alt="list-item-icon"
72
73
  className="w-6 h-6 text-sm"
73
74
  onLoad={onListItemIconLoad}
@@ -33,6 +33,7 @@ export function LoadingIndicator({
33
33
  <div {...restProps} className={containerClassName}>
34
34
  <img
35
35
  src={asSpinner ? spinnerToRender : loadingImage}
36
+ data-chromatic="ignore"
36
37
  className={classNames("text-gray-600 fill-current stroke-current", {
37
38
  "h-4 w-4": asSpinner,
38
39
  "h-12 w-12": !asSpinner,
@@ -8,6 +8,7 @@ import "./RadioV2.css";
8
8
  export interface RadioProps
9
9
  extends React.InputHTMLAttributes<HTMLInputElement> {
10
10
  name: string;
11
+ // value field is used by react-hook-form as the value returned
11
12
  value: string | number;
12
13
  // text shown to the user to explain the option
13
14
  text?: string;
@@ -15,7 +16,6 @@ export interface RadioProps
15
16
  info?: string;
16
17
  isError?: boolean;
17
18
  innerRef?: React.Ref<HTMLInputElement>;
18
- // value field is used by react-hook-form as the value returned
19
19
  }
20
20
 
21
21
  function RadioInner({