@sumaris-net/ngx-components 18.3.20 → 18.3.22
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 +6 -0
- package/esm2022/src/app/core/table/async-table.class.mjs +31 -5
- package/esm2022/src/app/core/table/table.class.mjs +23 -12
- package/esm2022/src/app/shared/directives/throttled-click.directive.mjs +5 -4
- package/fesm2022/sumaris-net.ngx-components.mjs +56 -18
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/table/async-table.class.d.ts +4 -1
- package/src/app/core/table/table.class.d.ts +3 -1
- package/src/app/shared/directives/throttled-click.directive.d.ts +1 -0
- package/src/app/shared/inputs.d.ts +1 -1
- package/src/assets/manifest.json +1 -1
package/doc/changelog.md
CHANGED
|
@@ -1060,3 +1060,9 @@ enh: Environment: add useHash property to configure Angular router to use hash U
|
|
|
1060
1060
|
|
|
1061
1061
|
# 12.3.20
|
|
1062
1062
|
- enh(directive) Add new directive to avoid prevent double click: Simply replace `(click)=...` by `(throttledClick)=...`
|
|
1063
|
+
|
|
1064
|
+
# 12.3.21
|
|
1065
|
+
- fix(table) Add a `@Input() openRowThrottleTime = 800` to prevent double click to open a row (see issue sumaris-app#864)
|
|
1066
|
+
|
|
1067
|
+
# 12.3.22
|
|
1068
|
+
- fix(async-table) Add a `@Input() openRowThrottleTime = 800` to prevent double click to open a row
|