@wavy/react-ui 0.0.53 → 0.0.55
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/main.d.ts +5 -2
- package/dist/main.js +5 -5
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -1653,6 +1653,7 @@ interface TextFieldProps extends AdditionalElements {
|
|
|
1653
1653
|
borderColor?: BasicDivProps["borderColor"];
|
|
1654
1654
|
backgroundColor?: BasicColor$1;
|
|
1655
1655
|
color?: BasicColor$1;
|
|
1656
|
+
style?: BasicStyleProps["style"];
|
|
1656
1657
|
/**@default "primary" */
|
|
1657
1658
|
focusColor?: BasicColor$1;
|
|
1658
1659
|
/**
|
|
@@ -1676,6 +1677,7 @@ interface TextFieldProps extends AdditionalElements {
|
|
|
1676
1677
|
required?: boolean;
|
|
1677
1678
|
/**@default Infinity */
|
|
1678
1679
|
maxChars?: number;
|
|
1680
|
+
disableTransition?: boolean;
|
|
1679
1681
|
showCharCounter?: boolean;
|
|
1680
1682
|
helperText?: string;
|
|
1681
1683
|
indent?: ElementDim | Partial<Record<"left" | "right", ElementDim>>;
|
|
@@ -2896,8 +2898,8 @@ type DateType = number | Date | (string & {});
|
|
|
2896
2898
|
interface CalendarProps {
|
|
2897
2899
|
/**@default "Jan 1, 1920"*/
|
|
2898
2900
|
minDate?: DateType | "today";
|
|
2899
|
-
/**@default "
|
|
2900
|
-
maxDate?: DateType | "today" | "end-of-year";
|
|
2901
|
+
/**@default "none" */
|
|
2902
|
+
maxDate?: DateType | "today" | "end-of-year" | "none";
|
|
2901
2903
|
/**@default "after" */
|
|
2902
2904
|
navLayout?: "after" | "around";
|
|
2903
2905
|
formId?: string;
|
|
@@ -3362,6 +3364,7 @@ declare function useStore<T extends NonFunction<any>>(options: {
|
|
|
3362
3364
|
*/
|
|
3363
3365
|
onValidationFail?: (value: T) => void;
|
|
3364
3366
|
onChange?: (currentValue: T, previousValue: T) => void;
|
|
3367
|
+
onDelete?: (deletedValue: T, previousValue: T) => void;
|
|
3365
3368
|
/** Transform the updated value before the onChange method is called*/
|
|
3366
3369
|
transform?: (value: T) => T;
|
|
3367
3370
|
}): {
|