@oliasoft-open-source/react-ui-library 5.17.0-beta-9 → 5.17.0-beta-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/dist/index.js +8 -12
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8992,18 +8992,14 @@ const ChangesOverview = ({ sectionNames: e, userName: t, diffs: n }) => /* @__PU
|
|
|
8992
8992
|
headers: [{ cells: [{ value: "Changes" }] }],
|
|
8993
8993
|
rows: n.map((n) => {
|
|
8994
8994
|
let { deltaFormat: r, path: i } = n, a = getSectionName(e, i), { type: o, before: s, after: c } = defaultMessage(r);
|
|
8995
|
-
return { cells: [
|
|
8996
|
-
|
|
8997
|
-
|
|
8998
|
-
|
|
8999
|
-
|
|
9000
|
-
|
|
9001
|
-
|
|
9002
|
-
|
|
9003
|
-
}) },
|
|
9004
|
-
{ value: s },
|
|
9005
|
-
{ value: c }
|
|
9006
|
-
] };
|
|
8995
|
+
return { cells: [{ value: buildChangeSentence({
|
|
8996
|
+
userName: t,
|
|
8997
|
+
type: o,
|
|
8998
|
+
property: findReasonableProperty(i),
|
|
8999
|
+
before: s,
|
|
9000
|
+
after: c,
|
|
9001
|
+
sectionName: a
|
|
9002
|
+
}) }] };
|
|
9007
9003
|
})
|
|
9008
9004
|
} }), viewTypes = Object.freeze({
|
|
9009
9005
|
summary: {
|
package/package.json
CHANGED