@simoncomputing/mui-bueno-v2 0.36.1 → 0.36.2
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/CitationField/CitationManager/CitationBubbleMenu.d.ts +1 -1
- package/dist/components/Form/Inputs/CitationField/CitationManager/SelectableCitationManager.d.ts +2 -0
- package/dist/index.cjs.js +124 -124
- package/dist/index.es.js +14581 -13877
- package/dist/index.umd.js +127 -127
- package/package.json +3 -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.36.2] - 2026-08-25
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- `CitationField`, `SelectableCitationManager`
|
|
19
|
+
- Prevent refetch when checking/unchecking citations (lazy load)
|
|
20
|
+
|
|
14
21
|
## [0.36.1] - 2026-08-25
|
|
15
22
|
|
|
16
23
|
### Fixed
|
|
@@ -23,4 +23,4 @@ export type CitationBubbleMenuProps = Partial<Omit<ControlledBubbleMenuProps, 'o
|
|
|
23
23
|
* update, which will happen if it's a child of the component using
|
|
24
24
|
* `useEditor`).
|
|
25
25
|
*/
|
|
26
|
-
export default function CitationBubbleMenuTipTap({ getCitationsPaginated, getSelectedCitationsPaginated, onCreateCitation, onUpdateCitation, onDeleteCitation, getCitationById, onDownloadAttachment, onPreviewAttachment, canLaunchUrl, readOnly, canSearch, ...controlledBubbleMenuProps }: CitationBubbleMenuProps): import("react/jsx-runtime").JSX.Element | null;
|
|
26
|
+
export default function CitationBubbleMenuTipTap({ getCitationsPaginated, getSelectedCitationsPaginated, onCreateCitation, onUpdateCitation, onDeleteCitation, getCitationById, onDownloadAttachment, onPreviewAttachment, canLaunchUrl, readOnly, canSearch, debugMode, ...controlledBubbleMenuProps }: CitationBubbleMenuProps): import("react/jsx-runtime").JSX.Element | null;
|
package/dist/components/Form/Inputs/CitationField/CitationManager/SelectableCitationManager.d.ts
CHANGED
|
@@ -10,6 +10,8 @@ export type SelectableCitationManagerProps = Omit<BaseCitationManagerProps, 'ren
|
|
|
10
10
|
* SelectableCitationManager is a condensed table that handles creating, updating, deleting and selecting citations.
|
|
11
11
|
*
|
|
12
12
|
* It's intended to be used in a pop-up/modal.
|
|
13
|
+
*
|
|
14
|
+
* REQUIREMENT: @tanstack/react-query
|
|
13
15
|
*/
|
|
14
16
|
export declare function SelectableCitationManager({ getSelectedCitationsPaginated, getCitationsPaginated, readOnly, initialSelectedIds, ...rest }: SelectableCitationManagerProps): import("react/jsx-runtime").JSX.Element;
|
|
15
17
|
export default SelectableCitationManager;
|