@cleen/ui 0.1.44 → 0.1.45
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/index.d.ts +7 -4
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1168,6 +1168,7 @@ interface InputProps extends ComponentProps<'input'> {
|
|
|
1168
1168
|
isFocusedBorder?: boolean;
|
|
1169
1169
|
maxLengthLabelThreshold?: number;
|
|
1170
1170
|
maxLengthLabel?: (remaining: number) => ReactNode;
|
|
1171
|
+
minLengthLabel?: (remaining: number) => ReactNode;
|
|
1171
1172
|
infoLabels?: InfoLabelsProps;
|
|
1172
1173
|
classNames?: {
|
|
1173
1174
|
container?: string;
|
|
@@ -1176,7 +1177,7 @@ interface InputProps extends ComponentProps<'input'> {
|
|
|
1176
1177
|
input?: string;
|
|
1177
1178
|
leftIconContainer?: string;
|
|
1178
1179
|
rightIconContainer?: string;
|
|
1179
|
-
|
|
1180
|
+
lengthLabel?: string;
|
|
1180
1181
|
inputOverlay?: string;
|
|
1181
1182
|
};
|
|
1182
1183
|
styles?: {
|
|
@@ -1186,7 +1187,7 @@ interface InputProps extends ComponentProps<'input'> {
|
|
|
1186
1187
|
input?: CSSProperties;
|
|
1187
1188
|
leftIconContainer?: CSSProperties;
|
|
1188
1189
|
rightIconContainer?: CSSProperties;
|
|
1189
|
-
|
|
1190
|
+
lengthLabel?: CSSProperties;
|
|
1190
1191
|
inputOverlay?: CSSProperties;
|
|
1191
1192
|
};
|
|
1192
1193
|
}
|
|
@@ -1246,6 +1247,7 @@ type TextAreaProps = Omit<ComponentProps<'textarea'>, 'onChange'> & {
|
|
|
1246
1247
|
onChange?: (value: string) => void;
|
|
1247
1248
|
maxLengthLabelThreshold?: number;
|
|
1248
1249
|
maxLengthLabel?: (remaining: number) => ReactNode;
|
|
1250
|
+
minLengthLabel?: (remaining: number) => ReactNode;
|
|
1249
1251
|
infoLabels?: InfoLabelsProps;
|
|
1250
1252
|
topRightElement?: ReactNode;
|
|
1251
1253
|
labelRightElement?: ReactNode;
|
|
@@ -1255,14 +1257,14 @@ type TextAreaProps = Omit<ComponentProps<'textarea'>, 'onChange'> & {
|
|
|
1255
1257
|
label?: string;
|
|
1256
1258
|
textareaContainer?: string;
|
|
1257
1259
|
textarea?: string;
|
|
1258
|
-
|
|
1260
|
+
lengthLabel?: string;
|
|
1259
1261
|
};
|
|
1260
1262
|
styles?: {
|
|
1261
1263
|
container?: CSSProperties;
|
|
1262
1264
|
label?: CSSProperties;
|
|
1263
1265
|
textareaContainer?: CSSProperties;
|
|
1264
1266
|
textarea?: CSSProperties;
|
|
1265
|
-
|
|
1267
|
+
lengthLabel?: CSSProperties;
|
|
1266
1268
|
};
|
|
1267
1269
|
};
|
|
1268
1270
|
/**
|
|
@@ -2473,6 +2475,7 @@ interface ProgressCircleProps extends ComponentProps<'div'> {
|
|
|
2473
2475
|
color?: string;
|
|
2474
2476
|
emptyColor?: string;
|
|
2475
2477
|
textColor?: string;
|
|
2478
|
+
textHidden?: boolean;
|
|
2476
2479
|
fontSize?: string | number;
|
|
2477
2480
|
classNames?: {
|
|
2478
2481
|
container?: string;
|