@oliasoft-open-source/react-ui-library 5.8.9-beta-1 → 5.8.9

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -8424,15 +8424,13 @@ const countDeltas = (e) => (Array.isArray(e) ? e : e ? [e] : []).reduce((e, t) =
8424
8424
  moved: 0,
8425
8425
  text: 0
8426
8426
  }), getSectionName = (e, t) => {
8427
- let n = Object.fromEntries(e.map((e) => [e.sectionKey, e.sectionLabel]));
8427
+ let n = Object.fromEntries((e || []).map((e) => [e.sectionKey, e.sectionLabel]));
8428
8428
  for (let e = t.length - 1; e >= 0; e--) {
8429
8429
  let r = t[e], i = n[r];
8430
8430
  if (i) return i;
8431
8431
  }
8432
8432
  return "";
8433
- };
8434
- var toText = (e) => isObject(e) ? "Multiple property changes" : String(e);
8435
- const defaultMessage = (e) => {
8433
+ }, toText = (e) => e && typeof e == "object" && !Array.isArray(e) ? Object.keys(e).length === 0 ? "" : "Multiple changes..." : String(e), defaultMessage = (e) => {
8436
8434
  switch (e.length) {
8437
8435
  case 1: {
8438
8436
  let [t] = e;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oliasoft-open-source/react-ui-library",
3
- "version": "5.8.9-beta-1",
3
+ "version": "5.8.9",
4
4
  "description": "Reusable UI components for React projects",
5
5
  "homepage": "https://oliasoft-open-source.gitlab.io/react-ui-library",
6
6
  "bugs": {