@mindly/ui-components 3.34.3 → 3.34.4
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/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/Inputs/CheckboxList/CheckboxList.d.ts +1 -0
- package/dist/cjs/types/lib/Inputs/CustomSelect/CustomSelect.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/Inputs/CheckboxList/CheckboxList.d.ts +1 -0
- package/dist/esm/types/lib/Inputs/CustomSelect/CustomSelect.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -5,5 +5,6 @@ declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponen
|
|
|
5
5
|
label: string | number;
|
|
6
6
|
}[];
|
|
7
7
|
isError?: boolean | undefined;
|
|
8
|
+
selectedBy?: "label" | "id" | undefined;
|
|
8
9
|
} & React.SelectHTMLAttributes<HTMLSelectElement> & React.RefAttributes<HTMLSelectElement>>>;
|
|
9
10
|
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -916,6 +916,7 @@ declare const _default$4: React.MemoExoticComponent<React.ForwardRefExoticCompon
|
|
|
916
916
|
label: string | number;
|
|
917
917
|
}[];
|
|
918
918
|
isError?: boolean | undefined;
|
|
919
|
+
selectedBy?: "label" | "id" | undefined;
|
|
919
920
|
} & React.SelectHTMLAttributes<HTMLSelectElement> & React.RefAttributes<HTMLSelectElement>>>;
|
|
920
921
|
|
|
921
922
|
declare type PossibleButtonTypes = 'primary' | 'secondary';
|
|
@@ -964,6 +965,7 @@ declare type CheckboxListProps = {
|
|
|
964
965
|
moreLabel?: string;
|
|
965
966
|
title?: string;
|
|
966
967
|
className?: string;
|
|
968
|
+
selectedBy?: 'id' | 'label';
|
|
967
969
|
};
|
|
968
970
|
declare const _default$2: React.NamedExoticComponent<CheckboxListProps>;
|
|
969
971
|
|