@wavemaker/app-ng-runtime 12.0.0-next.141179 → 12.0.0-next.141186
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.
- app-ng-runtime/components/data/table/bundles/index.umd.js +5 -1
- app-ng-runtime/components/data/table/esm2022/table.component.mjs +5 -2
- app-ng-runtime/components/data/table/esm2022/table.props.mjs +2 -1
- app-ng-runtime/components/data/table/fesm2022/index.mjs +5 -1
- app-ng-runtime/components/data/table/fesm2022/index.mjs.map +1 -1
- app-ng-runtime/components/data/table/table.component.d.ts +2 -0
- app-ng-runtime/components/input/default/bundles/index.umd.js +3 -3
- app-ng-runtime/components/input/default/esm2022/number/number.component.mjs +4 -4
- app-ng-runtime/components/input/default/fesm2022/index.mjs +3 -3
- app-ng-runtime/components/input/default/fesm2022/index.mjs.map +1 -1
- app-ng-runtime/components/navigation/popover/bundles/index.umd.js +20 -4
- app-ng-runtime/components/navigation/popover/esm2022/popover.component.mjs +22 -6
- app-ng-runtime/components/navigation/popover/fesm2022/index.mjs +20 -4
- app-ng-runtime/components/navigation/popover/fesm2022/index.mjs.map +1 -1
- app-ng-runtime/components/navigation/popover/popover.component.d.ts +4 -3
- app-ng-runtime/package.json +1 -1
- app-ng-runtime/scripts/datatable/datatable.js +23 -26
|
@@ -63,6 +63,7 @@
|
|
|
63
63
|
['insertmessage', { value: 'Record added successfully', ...i4.PROP_STRING }],
|
|
64
64
|
['isdynamictable', i4.PROP_BOOLEAN], // internal property to determine dynamic table
|
|
65
65
|
['isrowexpansionenabled', i4.PROP_BOOLEAN],
|
|
66
|
+
['isrowselectable', { value: false, ...i4.PROP_BOOLEAN }],
|
|
66
67
|
['loadingdatamsg', { value: 'Loading...', ...i4.PROP_STRING }],
|
|
67
68
|
['loadingicon', { value: 'fa fa-circle-o-notch fa-spin', ...i4.PROP_STRING }],
|
|
68
69
|
['maxsize', { value: 5, ...i4.PROP_NUMBER }],
|
|
@@ -394,6 +395,7 @@
|
|
|
394
395
|
},
|
|
395
396
|
filtermode: '',
|
|
396
397
|
filteronkeypress: false,
|
|
398
|
+
isrowselectable: false,
|
|
397
399
|
searchLabel: '',
|
|
398
400
|
rowActions: [],
|
|
399
401
|
headerConfig: [],
|
|
@@ -1092,7 +1094,8 @@
|
|
|
1092
1094
|
showheader: 'showHeader',
|
|
1093
1095
|
enablecolumnselection: 'enableColumnSelection',
|
|
1094
1096
|
shownewrow: 'showNewRow',
|
|
1095
|
-
gridfirstrowselect: 'selectFirstRow'
|
|
1097
|
+
gridfirstrowselect: 'selectFirstRow',
|
|
1098
|
+
isrowselectable: 'isrowselectable'
|
|
1096
1099
|
};
|
|
1097
1100
|
if (this._liveTableParent) {
|
|
1098
1101
|
this.isPartOfLiveGrid = true;
|
|
@@ -1118,6 +1121,7 @@
|
|
|
1118
1121
|
this.gridOptions.formPosition = this.formposition;
|
|
1119
1122
|
this.gridOptions.filtermode = this.filtermode;
|
|
1120
1123
|
this.gridOptions.filteronkeypress = this.filteronkeypress;
|
|
1124
|
+
this.gridOptions.isrowselectable = this.isrowselectable;
|
|
1121
1125
|
this.gridOptions.searchLabel = this.searchlabel;
|
|
1122
1126
|
this.gridOptions.isMobile = i2.isMobile();
|
|
1123
1127
|
this.gridOptions.name = this.name;
|