@mindly/ui-components 3.35.3 → 3.36.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/dist/cjs/index.js +58 -58
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/deprecated/SpecialistStatisticsCard/SpecialistStatisticsCard.style.d.ts +5 -0
- package/dist/cjs/types/lib/Inputs/CheckboxList/CheckboxList.d.ts +2 -3
- package/dist/esm/index.js +58 -58
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/deprecated/SpecialistStatisticsCard/SpecialistStatisticsCard.style.d.ts +5 -0
- package/dist/esm/types/lib/Inputs/CheckboxList/CheckboxList.d.ts +2 -3
- package/dist/index.d.ts +2 -3
- package/package.json +1 -1
package/dist/cjs/types/deprecated/SpecialistStatisticsCard/SpecialistStatisticsCard.style.d.ts
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export declare const StyleSpecialistStatisticsContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
|
+
export declare const StyledContainerItem: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
|
+
export declare const StyledShieldIcon: any;
|
|
4
|
+
export declare const StyledPeopleIcon: any;
|
|
5
|
+
export declare const StyledStatsChartIcon: any;
|
|
@@ -12,10 +12,9 @@ export declare type CheckboxListCategory = {
|
|
|
12
12
|
};
|
|
13
13
|
declare type CheckboxListProps = {
|
|
14
14
|
type: CheckboxTypes;
|
|
15
|
-
items:
|
|
16
|
-
allItems?: CheckboxListCategory[];
|
|
15
|
+
items: CheckboxListCategory[];
|
|
17
16
|
selected?: ReactText[];
|
|
18
|
-
onChange?: (
|
|
17
|
+
onChange?: (selected: ReactText[]) => void;
|
|
19
18
|
name: string;
|
|
20
19
|
moreLabel?: string;
|
|
21
20
|
title?: string;
|