@simoncomputing/mui-bueno-v2 0.21.0 → 0.21.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/CHANGELOG.md +7 -0
- package/dist/components/Form/Inputs/RichTextField/RichTextField.d.ts +4 -0
- package/dist/index.cjs.js +60 -60
- package/dist/index.es.js +1521 -1520
- package/dist/index.umd.js +59 -59
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
11
11
|
- Minor increment --> singlular/minor changes. Minimal breaking changes.
|
|
12
12
|
- Patch increment --> singlular/minor changes. Zero breaking changes.
|
|
13
13
|
|
|
14
|
+
## [0.21.1] - 2025-12-18
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- `CitationField`
|
|
19
|
+
- Editor will now update formik value periodically, rather than just waiting until the field blurs, to allow for autosaving
|
|
20
|
+
|
|
14
21
|
## [0.21.0] - 2025-12-18
|
|
15
22
|
|
|
16
23
|
### Changed
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { TypographyProps } from '@mui/material';
|
|
2
2
|
import { ImageNodeAttributes } from 'mui-tiptap';
|
|
3
|
+
/**
|
|
4
|
+
* TODO: update syncing of formik value to be more often (not just on blur) using debounced solution from CitationField,
|
|
5
|
+
* in order to support this field being autosave-able.
|
|
6
|
+
*/
|
|
3
7
|
export type RichTextEditorProps = {
|
|
4
8
|
/**
|
|
5
9
|
* Name and ID of the component. Must match a key from initialValues in Formik.
|