@wavy/react-ui 0.0.54 → 0.0.56

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 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 "end-of-year" */
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;
@@ -3382,7 +3384,7 @@ declare function useStore<T extends NonFunction<any>>(options: {
3382
3384
  skipTransform: boolean;
3383
3385
  }>) => void;
3384
3386
  read: () => T;
3385
- /** Completely removes all the stored data (including persisted data) */
3387
+ /** Reverts the store to it's defaultValue and deletes any persisted data. */
3386
3388
  delete: () => void;
3387
3389
  };
3388
3390