@wavy/react-ui 0.0.58 → 0.0.60

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
@@ -2913,6 +2913,8 @@ interface CalendarProps extends BasicDivProps {
2913
2913
  /**@default "sm" */
2914
2914
  datePadding?: keyof typeof CssSpacing | (string & {});
2915
2915
  dateCorners?: keyof typeof CssShapes | (string & {});
2916
+ monthFontSize?: BasicSpanProps["fontSize"] | "match-year";
2917
+ yearFontSize?: BasicSpanProps["fontSize"] | "match-month";
2916
2918
  /**@default "sm" */
2917
2919
  dateGap?: CalendarProps["datePadding"];
2918
2920
  }
@@ -3083,6 +3085,13 @@ interface PictureUploaderProps {
3083
3085
  columnGap?: BasicDivProps["gap"];
3084
3086
  rowGap?: BasicDivProps["gap"];
3085
3087
  slotProps?: Partial<{
3088
+ uploadButton: {
3089
+ /**@default "sm" */
3090
+ size?: BasicButtonProps["size"];
3091
+ };
3092
+ avatar: Partial<{
3093
+ style: BasicDivProps["style"];
3094
+ }>;
3086
3095
  label: Partial<{
3087
3096
  fontSize: BasicDivProps["fontSize"];
3088
3097
  fontWeight: BasicDivProps["fontWeight"];