@dhasdk/simple-ui 1.0.59 → 1.0.60

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/CheckBox.d.ts CHANGED
@@ -5,6 +5,8 @@ export interface CheckBoxGroupProps {
5
5
  bridgeParent?: boolean;
6
6
  className?: string;
7
7
  classNameSvg?: string;
8
+ classNameSvgLine?: string;
9
+ classNameIcon?: string;
8
10
  classNameInput?: string;
9
11
  classNameLabel?: string;
10
12
  fill?: boolean;
@@ -26,6 +28,8 @@ export interface CheckBoxProps extends Omit<InputHTMLAttributes<HTMLInputElement
26
28
  marker?: boolean;
27
29
  level?: number;
28
30
  classNameSvg?: string;
31
+ classNameSvgLine?: string;
32
+ classNameIcon?: string;
29
33
  classNameInput?: string;
30
34
  classNameLabel?: string;
31
35
  iconType?: IconType[];
@@ -39,6 +43,6 @@ export interface CheckBoxProps extends Omit<InputHTMLAttributes<HTMLInputElement
39
43
  testDataId?: string;
40
44
  customIcons?: CustomIconSrcMap;
41
45
  }
42
- export declare function CheckBoxGroup({ children, bridgeParent, fill, testDataId, icon, marker, showBranch, onChange, classNameLabel, classNameSvg, classNameInput, className, customIcons }: CheckBoxGroupProps): import("react/jsx-runtime").JSX.Element;
46
+ export declare function CheckBoxGroup({ children, bridgeParent, fill, testDataId, icon, marker, showBranch, onChange, classNameLabel, classNameSvgLine, classNameIcon, classNameSvg, classNameInput, className, customIcons }: CheckBoxGroupProps): import("react/jsx-runtime").JSX.Element;
43
47
  export declare const CheckBox: React.ForwardRefExoticComponent<CheckBoxProps & React.RefAttributes<HTMLInputElement>>;
44
48
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhasdk/simple-ui",
3
- "version": "1.0.59",
3
+ "version": "1.0.60",
4
4
  "license": "MIT",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",