@mindly/ui-components 3.46.0 → 3.46.2
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 +4 -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 +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
|
@@ -20,6 +20,10 @@ declare type CheckboxListProps = {
|
|
|
20
20
|
title?: string;
|
|
21
21
|
className?: string;
|
|
22
22
|
selectedBy?: 'id' | 'label';
|
|
23
|
+
translation: {
|
|
24
|
+
mostUsedText: string;
|
|
25
|
+
buttonText: string;
|
|
26
|
+
};
|
|
23
27
|
};
|
|
24
28
|
declare const _default: React.NamedExoticComponent<CheckboxListProps>;
|
|
25
29
|
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -1089,6 +1089,10 @@ declare type CheckboxListProps = {
|
|
|
1089
1089
|
title?: string;
|
|
1090
1090
|
className?: string;
|
|
1091
1091
|
selectedBy?: 'id' | 'label';
|
|
1092
|
+
translation: {
|
|
1093
|
+
mostUsedText: string;
|
|
1094
|
+
buttonText: string;
|
|
1095
|
+
};
|
|
1092
1096
|
};
|
|
1093
1097
|
declare const _default$3: React.NamedExoticComponent<CheckboxListProps>;
|
|
1094
1098
|
|