@oliasoft-open-source/react-ui-library 5.7.0-beta-14 → 5.7.0-beta-15
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 +4 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8332,7 +8332,7 @@ var sectionMap = Object.fromEntries([
|
|
|
8332
8332
|
},
|
|
8333
8333
|
{
|
|
8334
8334
|
sectionKey: "appearance",
|
|
8335
|
-
sectionLabel: "General
|
|
8335
|
+
sectionLabel: "General"
|
|
8336
8336
|
},
|
|
8337
8337
|
{
|
|
8338
8338
|
sectionKey: "generalUnitPrecision",
|
|
@@ -8360,7 +8360,7 @@ var sectionMap = Object.fromEntries([
|
|
|
8360
8360
|
},
|
|
8361
8361
|
{
|
|
8362
8362
|
sectionKey: "wear",
|
|
8363
|
-
sectionLabel: "Drilling Mechanics
|
|
8363
|
+
sectionLabel: "Drilling Mechanics"
|
|
8364
8364
|
},
|
|
8365
8365
|
{
|
|
8366
8366
|
sectionKey: "tempsim",
|
|
@@ -8426,11 +8426,9 @@ const getSectionName = (e) => {
|
|
|
8426
8426
|
{ value: "" }
|
|
8427
8427
|
] }],
|
|
8428
8428
|
rows: e.map((e) => {
|
|
8429
|
-
let { deltaFormat: t, path: n } = e, r = getSectionName(n);
|
|
8430
|
-
console.log(n, r);
|
|
8431
|
-
let { type: i, before: a, after: o } = defaultMessage(t), s = n.length > 0 ? n[n.length - 1] : "";
|
|
8429
|
+
let { deltaFormat: t, path: n } = e, r = getSectionName(n), { type: i, before: a, after: o } = defaultMessage(t);
|
|
8432
8430
|
return { cells: [
|
|
8433
|
-
{ value:
|
|
8431
|
+
{ value: i },
|
|
8434
8432
|
{ value: a },
|
|
8435
8433
|
{ value: o },
|
|
8436
8434
|
{ value: r }
|
package/package.json
CHANGED