@simoncomputing/mui-bueno-v2 0.25.5 → 0.25.7
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,20 @@ 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.7] - 2026-02-17
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- `DiffTable`
|
|
19
|
+
- Fixed `getCurrentValue` always returning undefined in the `renderExpand` section.
|
|
20
|
+
|
|
21
|
+
## [0.25.6] - 2026-02-13
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- `DiffCitationTable`
|
|
26
|
+
- Fixed circular JSON structure error caused by 0.25.4 change. Implemented `isEqual` to <b>URL/File Name</b> column and applied `ignoreDiff` to <b>Type</b> column
|
|
27
|
+
|
|
14
28
|
## [0.25.5] - 2026-02-13
|
|
15
29
|
|
|
16
30
|
### Added
|
|
@@ -78,8 +78,10 @@ export declare const baseCitationTableColumns: (palette: Palette, condenseTable?
|
|
|
78
78
|
key: string;
|
|
79
79
|
label: string;
|
|
80
80
|
render: (fileName: string | undefined, citation: Citation) => import("react/jsx-runtime").JSX.Element;
|
|
81
|
+
ignoreDiff: boolean;
|
|
81
82
|
tableCellSx?: undefined;
|
|
82
83
|
hideCol?: undefined;
|
|
84
|
+
isEqual?: undefined;
|
|
83
85
|
} | {
|
|
84
86
|
fieldName: string;
|
|
85
87
|
tableCellSx: {
|
|
@@ -88,13 +90,17 @@ export declare const baseCitationTableColumns: (palette: Palette, condenseTable?
|
|
|
88
90
|
render: (title: string) => string;
|
|
89
91
|
key?: undefined;
|
|
90
92
|
label?: undefined;
|
|
93
|
+
ignoreDiff?: undefined;
|
|
91
94
|
hideCol?: undefined;
|
|
95
|
+
isEqual?: undefined;
|
|
92
96
|
} | {
|
|
93
97
|
fieldName: string;
|
|
94
98
|
key: string;
|
|
95
99
|
label: string;
|
|
96
100
|
hideCol: boolean;
|
|
97
101
|
render: (fileName: string, citation: Citation) => import("react/jsx-runtime").JSX.Element;
|
|
102
|
+
isEqual: (citation1: Citation, citation2: Citation) => boolean;
|
|
103
|
+
ignoreDiff?: undefined;
|
|
98
104
|
tableCellSx?: undefined;
|
|
99
105
|
} | {
|
|
100
106
|
fieldName: string;
|
|
@@ -102,12 +108,16 @@ export declare const baseCitationTableColumns: (palette: Palette, condenseTable?
|
|
|
102
108
|
key?: undefined;
|
|
103
109
|
label?: undefined;
|
|
104
110
|
render?: undefined;
|
|
111
|
+
ignoreDiff?: undefined;
|
|
105
112
|
tableCellSx?: undefined;
|
|
113
|
+
isEqual?: undefined;
|
|
106
114
|
} | {
|
|
107
115
|
fieldName: string;
|
|
108
116
|
hideCol: boolean;
|
|
109
117
|
render: (accessedAt: string, citation: Citation) => string | undefined;
|
|
110
118
|
key?: undefined;
|
|
111
119
|
label?: undefined;
|
|
120
|
+
ignoreDiff?: undefined;
|
|
112
121
|
tableCellSx?: undefined;
|
|
122
|
+
isEqual?: undefined;
|
|
113
123
|
})[];
|