@simoncomputing/mui-bueno-v2 0.26.1 → 0.26.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/Poppers/ParseCitationPopper/ParseCitationPopper.d.ts +12 -0
- package/dist/components/Form/Inputs/DateField/utils.d.ts +7 -0
- package/dist/index.cjs.js +112 -112
- package/dist/index.es.js +11660 -11543
- package/dist/index.umd.js +112 -112
- 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.26.2] - 2026-03-23
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- `CitationManager`, `SelectableCitationManager`, `CitationField`
|
|
19
|
+
- Ability to prefill citation from by parsing pre-formatted citations
|
|
20
|
+
|
|
14
21
|
## [0.26.1] - 2026-03-16
|
|
15
22
|
|
|
16
23
|
### Added
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { UnsavedUrlCitation } from '../../../../../../../@types';
|
|
2
|
+
type Props = {
|
|
3
|
+
open: boolean;
|
|
4
|
+
anchorEl: HTMLButtonElement | null;
|
|
5
|
+
onGenerateCitation: (citation: UnsavedUrlCitation) => void;
|
|
6
|
+
onClose: () => void;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* Popper to ask the user to confirm if they want to delete the citation.
|
|
10
|
+
*/
|
|
11
|
+
declare const ParseCitationPopper: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export default ParseCitationPopper;
|