@sd-angular/core 1.3.180 → 1.3.181
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/bundles/sd-angular-core-table.umd.js +2 -2
- package/bundles/sd-angular-core-table.umd.js.map +1 -1
- package/bundles/sd-angular-core-table.umd.min.js +1 -1
- package/bundles/sd-angular-core-table.umd.min.js.map +1 -1
- package/esm2015/table/src/lib/pipes/selection-visible.pipe.js +3 -3
- package/fesm2015/sd-angular-core-table.js +2 -2
- package/fesm2015/sd-angular-core-table.js.map +1 -1
- package/package.json +1 -1
- package/{sd-angular-core-1.3.180.tgz → sd-angular-core-1.3.181.tgz} +0 -0
|
@@ -3348,7 +3348,7 @@
|
|
|
3348
3348
|
hasGroup = true;
|
|
3349
3349
|
}
|
|
3350
3350
|
if (typeof (hidden) === 'function') {
|
|
3351
|
-
if (!hidden(rowData)) {
|
|
3351
|
+
if (!hidden(rowData.data)) {
|
|
3352
3352
|
flag = true;
|
|
3353
3353
|
rowData.meta.selector.actions.push(key);
|
|
3354
3354
|
if (isGrouped) {
|
|
@@ -3383,7 +3383,7 @@
|
|
|
3383
3383
|
var hidden = action.hidden, isGrouped = action.isGrouped;
|
|
3384
3384
|
var key = hash__default['default'](action);
|
|
3385
3385
|
if (typeof (hidden) === 'function') {
|
|
3386
|
-
if (!hidden(rowData)) {
|
|
3386
|
+
if (!hidden(rowData.data)) {
|
|
3387
3387
|
rowData.meta.selector.actions.push(key);
|
|
3388
3388
|
if (isGrouped) {
|
|
3389
3389
|
groupedActions.push(key);
|