ui-mathilde-web 0.5.3 → 0.6.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/ui-mathilde-web.d.ts +26 -0
- package/dist/ui-mathilde-web.js +240 -187
- package/dist/ui-mathilde-web.umd.cjs +32 -32
- package/package.json +1 -1
|
@@ -100,6 +100,32 @@ declare interface CheckboxProps {
|
|
|
100
100
|
onChange: (e: default_2.ChangeEvent<HTMLInputElement>) => void;
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
+
declare interface ChipColors {
|
|
104
|
+
backgroundColor?: string;
|
|
105
|
+
textColor?: string;
|
|
106
|
+
closeButtonBackgroundColor?: string;
|
|
107
|
+
closeButtonTextColor?: string;
|
|
108
|
+
borderRadius?: number;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
declare interface ChipItem {
|
|
112
|
+
id: string;
|
|
113
|
+
name: string;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
export declare const ChipList: default_2.FC<ChipListProps>;
|
|
117
|
+
|
|
118
|
+
declare interface ChipListProps {
|
|
119
|
+
items: ChipItem[];
|
|
120
|
+
title?: string;
|
|
121
|
+
onRemove: (id: string) => void;
|
|
122
|
+
colors?: ChipColors;
|
|
123
|
+
className?: string;
|
|
124
|
+
containerClassName?: string;
|
|
125
|
+
titleClassName?: string;
|
|
126
|
+
showTitle?: boolean;
|
|
127
|
+
}
|
|
128
|
+
|
|
103
129
|
declare interface Column {
|
|
104
130
|
header: string;
|
|
105
131
|
relation: string;
|