@simoncomputing/mui-bueno-v2 0.25.10 → 0.25.11

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,18 @@ 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.25.11] - 2026-02-18
15
+
16
+ ### Changed
17
+
18
+ - `DiffProvider`
19
+ - Added `ReadOnlyProvider` wrapper internally so if `showDiff` is false, it will default to `readOnly` instead of an editable form
20
+
21
+ ### Fixed
22
+
23
+ - `DiffTable`
24
+ - Fixed Added/Deleted rows were displaying diff notation in the expanded sections
25
+
14
26
  ## [0.25.10] - 2026-02-18
15
27
 
16
28
  ### Added
@@ -1,6 +1,7 @@
1
1
  type DiffContextValue = {
2
2
  /**
3
3
  * Used by fields to determine whether to render as a read-only diff or not
4
+ * If false, renders as read-only
4
5
  */
5
6
  showDiff: boolean;
6
7
  /**
@@ -1,6 +1,6 @@
1
+ import { ReactNode } from 'react';
1
2
  import { TableProps } from '../Table';
2
3
  import { DiffTableConfig } from '../../../@types';
3
- import { ReactNode } from 'react';
4
4
  export type ChangeType = 'added' | 'deleted' | 'modified';
5
5
  export type DiffObj<T> = T & {
6
6
  changeType: ChangeType;