react-bricks 3.0.0 → 3.0.1

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/react-bricks.d.ts CHANGED
@@ -25,7 +25,7 @@ interface TextProps {
25
25
  children: any;
26
26
  }) => JSX.Element;
27
27
  propName: string;
28
- multiline: boolean;
28
+ multiline?: boolean;
29
29
  }
30
30
  declare const Text: React.FC<TextProps>;
31
31
 
@@ -533,6 +533,7 @@ interface CompatibleRichTextProps {
533
533
  renderBlock: (props: RenderElementProps) => JSX.Element;
534
534
  placeholder: string;
535
535
  propName: string;
536
+ multiline?: boolean;
536
537
  allowedFeatures?: types.RichTextFeatures[];
537
538
  renderBold?: (props: RenderLeafProps) => JSX.Element;
538
539
  renderItalic?: (props: RenderLeafProps) => JSX.Element;