@simoncomputing/mui-bueno-v2 0.34.2 → 0.35.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 CHANGED
@@ -11,6 +11,21 @@ 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.35.1] - 2026-07-20
15
+
16
+ ### Fixed
17
+
18
+ - `CitationField`
19
+ - Fixed citation titles not truncating in diff mode
20
+ - (Diff mode) Fixed diff marking issues
21
+
22
+ ## [0.35.0] - 2026-07-07
23
+
24
+ ### Added
25
+
26
+ - `Blockquote`
27
+ - New component for quoted text
28
+
14
29
  ## [0.34.2] - 2026-07-07
15
30
 
16
31
  ### Fixed
@@ -0,0 +1,8 @@
1
+ export type BlockquoteProps = {
2
+ indent?: boolean;
3
+ text?: string;
4
+ };
5
+ /**
6
+ * Blockquote component for quoting text
7
+ */
8
+ export declare const Blockquote: (props: BlockquoteProps) => import("react/jsx-runtime").JSX.Element | null;
@@ -0,0 +1 @@
1
+ export declare const truncateTitle: (title: string | undefined, maxLength?: number) => string;