@mirantes-micro/foundation-design-system 1.2.330 → 1.2.332

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +6 -1
  2. package/dist/index.js +226 -226
  3. package/package.json +209 -209
package/dist/index.d.ts CHANGED
@@ -2044,7 +2044,12 @@ declare function PostTriggerModal(props: any): React__default.JSX.Element | null
2044
2044
 
2045
2045
  declare function PostBackgroundManager(): React__default.JSX.Element;
2046
2046
 
2047
- declare function PostTrigger({ community, type: initialType, restrictProfileSelection, optimisticUpdateType, onClickAction, }: {
2047
+ declare function PostTrigger({ community, type: initialType, restrictProfileSelection, optimisticUpdateType, onClickAction, typeRender }: {
2048
+ typeRender?: {
2049
+ render?: "input" | "button";
2050
+ buttonClassName?: string;
2051
+ buttonText?: string;
2052
+ };
2048
2053
  type?: "page" | "user" | "community";
2049
2054
  restrictProfileSelection?: boolean;
2050
2055
  optimisticUpdateType: "profile" | "pages" | "community" | "feed";