@simoncomputing/mui-bueno-v2 0.33.1 → 0.33.3
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 +28 -0
- package/dist/components/Form/Inputs/CitationField/CitationField.d.ts +7 -0
- package/dist/index.cjs.js +99 -99
- package/dist/index.es.js +7896 -7863
- package/dist/index.umd.js +99 -99
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,34 @@ 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.33.3] - 2026-07-06
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- `CitationField`
|
|
19
|
+
- Redo/Undo buttons no longer show by default. Use `redoUndo` prop to enable (note: they do not work perfectly due to clash with debounced formik value).
|
|
20
|
+
|
|
21
|
+
## [0.33.2] - 2026-07-02
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- `CitationField`
|
|
26
|
+
- enabled menu buttons (previously, only accessible via keyboard shortcut):
|
|
27
|
+
- bold
|
|
28
|
+
- italic
|
|
29
|
+
- underline
|
|
30
|
+
- ordered list
|
|
31
|
+
- unordered list
|
|
32
|
+
- redo (in footer)
|
|
33
|
+
- undo (in footer)
|
|
34
|
+
- removed keyboard shortcut access to:
|
|
35
|
+
- code
|
|
36
|
+
- code block
|
|
37
|
+
- heading
|
|
38
|
+
- block quote
|
|
39
|
+
- horizontal rule
|
|
40
|
+
- strikethrough
|
|
41
|
+
|
|
14
42
|
## [0.33.1] - 2026-06-24
|
|
15
43
|
|
|
16
44
|
### Changed
|
|
@@ -62,6 +62,13 @@ export type CitationFieldProps = BaseInputProps & BaseCitationManagerApiProps &
|
|
|
62
62
|
* "search" will be passed to `getCitationsPaginated` with the search input text
|
|
63
63
|
*/
|
|
64
64
|
canSearch?: boolean;
|
|
65
|
+
/**
|
|
66
|
+
* If true, shows Redo & Undo buttons at the bottom of the editor. Uses Mui TipTap's built-in functionality
|
|
67
|
+
* for redo/undo.
|
|
68
|
+
*
|
|
69
|
+
* WARNING: Does not work perfectly, due to conflicts with debounced formik value.
|
|
70
|
+
*/
|
|
71
|
+
redoUndo?: boolean;
|
|
65
72
|
};
|
|
66
73
|
/**
|
|
67
74
|
* Rich Text field -- uses MUI Tip Tap
|