@sumaris-net/ngx-components 18.8.21 → 18.8.23
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/doc/changelog.md +9 -0
- package/esm2022/src/app/core/table/async-table.class.mjs +9 -5
- package/esm2022/src/app/core/table/table.class.mjs +9 -5
- package/esm2022/src/app/shared/functions.mjs +7 -2
- package/fesm2022/sumaris-net.ngx-components.mjs +20 -7
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/shared/inputs.d.ts +1 -1
- package/src/assets/manifest.json +1 -1
package/doc/changelog.md
CHANGED
|
@@ -1340,3 +1340,12 @@ enh: Environment: add useHash property to configure Angular router to use hash U
|
|
|
1340
1340
|
- fix(pipes) Fix `mapGet` pipe to return `undefined` (or `defaultValue`) instead of `null`, when no input value, or no key.
|
|
1341
1341
|
This is important, to have same behavior as `propertyGet` pipey
|
|
1342
1342
|
- enh(functions) Add `numberOrNilAttribute` that allow `undefined|null` input (without convert into `NaN`)
|
|
1343
|
+
|
|
1344
|
+
# 18.8.21
|
|
1345
|
+
- fix(functions) Fix `underscoreToChangeCase()`
|
|
1346
|
+
- e.g. `underscoreToChangeCase('my_property')` => `myProperty` instead of `my,Property`
|
|
1347
|
+
- Add unit test, to have same behavior as the Java implementation (SUMARiS Pod)
|
|
1348
|
+
|
|
1349
|
+
# 18.8.23
|
|
1350
|
+
- fix(table, async-table) Fix duplicateRows() to allow `skipProperties` on complex paths
|
|
1351
|
+
- fix(table, async-table) Fix duplicateRows() to use deep clone (using `row.cloneData()` instead of `{...row.currentData}`)
|