Skip to content

Releases: niuware/mui-rte

Fix onChange property trigger

23 Jun 07:59
6c4326d
Compare
Choose a tag to compare
  • Now the onChange property callback is triggered when the MUIRichTextEditor's state changes. (#146)

Update Link component

19 Jun 02:09
95cc645
Compare
Choose a tag to compare
  • Use material-ui's Link component for links in the editor (#147)
    ⚠️ The default style for links have been changed. For using the previous style a custom theme should be used setting text-decoration: "underline" and color: "inherit" properties.

Fix read only rendering

19 Jun 01:33
d46ad6c
Compare
Choose a tag to compare
  • Fix a bug that prevent custom styles rendering correctly when read only was set along with a default value (#140 #149)

Update package dependencies

18 Jun 01:49
91c712c
Compare
Choose a tag to compare
  • Updated required package dependencies

Fix UI bugs

17 Jun 07:55
20603e3
Compare
Choose a tag to compare
  • Fix a bug that move the cursor to the end when the readOnly mode was set along with a defaultValue. (#142)
  • Fix a bug that did not connected the exposed anchorLink class name with the Link component. (#135)

Fix bugs

16 Jun 09:36
8f21c49
Compare
Choose a tag to compare
  • Fix list controls swapped behavior. (#139)
    ⚠️ This may swap lists on saved documents using previous versions.
  • Fix a bug that prevent custom styles rendering correctly when setting a default value. (#140)

Fix TSelectionInfo type

09 Jun 05:08
11e6a0c
Compare
Choose a tag to compare
  • Fix entityType property type of TSelectionInfo type in utils #133

Fix popover behavior

09 Jun 02:47
ae7deba
Compare
Choose a tag to compare
  • Fix assignment issue #133
  • Fix focus when a popover is dismissed without adding a value.

Add onFocus and onBlur props

01 Jun 02:47
fafa072
Compare
Choose a tag to compare
  • Added onFocus property for MUIRichTextEditor (PR #123 mentioned in #98)
  • Added onBlur property for MUIRichTextEditor. (PR #123 mentioned in #98)

Add handleDroppedFiles property

25 May 10:22
ab0c188
Compare
Choose a tag to compare
  • Added handleDroppedFiles draft-js property on MUIRichTextEditor's draftEditorProps prop.
  • Exported TMUIRichTextEditor props type. #119
  • Updated async image upload example with a drop file into editor scenario.