Skip to content

Commit

Permalink
Merge branch 'latest' into b30.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
seanlandsman committed Sep 25, 2023
1 parent f78984d commit c49d2be
Show file tree
Hide file tree
Showing 111 changed files with 1,160,655 additions and 52,791 deletions.
Expand Up @@ -19931,6 +19931,9 @@ class RowNode {
* - `false` if the node is not a full width cell
*/
isFullWidthCell() {
if (this.detail) {
return true;
}
const isFullWidthCellFunc = this.beans.gridOptionsService.getCallback('isFullWidthRow');
return isFullWidthCellFunc ? isFullWidthCellFunc({ rowNode: this }) : false;
}
Expand Down Expand Up @@ -23782,7 +23785,7 @@ let GridApi = class GridApi {
* Returns an object containing rules matching the selected rows in the SSRM.
*
* If `groupSelectsChildren=false` the returned object will be flat, and will conform to IServerSideSelectionState.
* If `groupSelectsChildren=true` the retuned object will be hierarchical, and will conform to IServerSideGroupSelectionState.
* If `groupSelectsChildren=true` the returned object will be hierarchical, and will conform to IServerSideGroupSelectionState.
*/
getServerSideSelectionState() {
if (Object(_utils_generic_mjs__WEBPACK_IMPORTED_MODULE_6__["missing"])(this.serverSideRowModel)) {
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Expand Up @@ -19920,6 +19920,9 @@ class RowNode {
* - `false` if the node is not a full width cell
*/
isFullWidthCell() {
if (this.detail) {
return true;
}
const isFullWidthCellFunc = this.beans.gridOptionsService.getCallback('isFullWidthRow');
return isFullWidthCellFunc ? isFullWidthCellFunc({ rowNode: this }) : false;
}
Expand Down Expand Up @@ -23771,7 +23774,7 @@ let GridApi = class GridApi {
* Returns an object containing rules matching the selected rows in the SSRM.
*
* If `groupSelectsChildren=false` the returned object will be flat, and will conform to IServerSideSelectionState.
* If `groupSelectsChildren=true` the retuned object will be hierarchical, and will conform to IServerSideGroupSelectionState.
* If `groupSelectsChildren=true` the returned object will be hierarchical, and will conform to IServerSideGroupSelectionState.
*/
getServerSideSelectionState() {
if (Object(_utils_generic_mjs__WEBPACK_IMPORTED_MODULE_6__["missing"])(this.serverSideRowModel)) {
Expand Down
Expand Up @@ -16823,6 +16823,9 @@ class RowNode {
* - `false` if the node is not a full width cell
*/
isFullWidthCell() {
if (this.detail) {
return true;
}
const isFullWidthCellFunc = this.beans.gridOptionsService.getCallback('isFullWidthRow');
return isFullWidthCellFunc ? isFullWidthCellFunc({ rowNode: this }) : false;
}
Expand Down Expand Up @@ -20229,7 +20232,7 @@ let GridApi = class GridApi {
* Returns an object containing rules matching the selected rows in the SSRM.
*
* If `groupSelectsChildren=false` the returned object will be flat, and will conform to IServerSideSelectionState.
* If `groupSelectsChildren=true` the retuned object will be hierarchical, and will conform to IServerSideGroupSelectionState.
* If `groupSelectsChildren=true` the returned object will be hierarchical, and will conform to IServerSideGroupSelectionState.
*/
getServerSideSelectionState() {
if (missing(this.serverSideRowModel)) {
Expand Down

Large diffs are not rendered by default.

Expand Up @@ -18264,6 +18264,9 @@ var RowNode = /** @class */ (function () {
* - `false` if the node is not a full width cell
*/
RowNode.prototype.isFullWidthCell = function () {
if (this.detail) {
return true;
}
var isFullWidthCellFunc = this.beans.gridOptionsService.getCallback('isFullWidthRow');
return isFullWidthCellFunc ? isFullWidthCellFunc({ rowNode: this }) : false;
};
Expand Down Expand Up @@ -22128,7 +22131,7 @@ var GridApi = /** @class */ (function () {
* Returns an object containing rules matching the selected rows in the SSRM.
*
* If `groupSelectsChildren=false` the returned object will be flat, and will conform to IServerSideSelectionState.
* If `groupSelectsChildren=true` the retuned object will be hierarchical, and will conform to IServerSideGroupSelectionState.
* If `groupSelectsChildren=true` the returned object will be hierarchical, and will conform to IServerSideGroupSelectionState.
*/
GridApi.prototype.getServerSideSelectionState = function () {
if (missing(this.serverSideRowModel)) {
Expand Down

Large diffs are not rendered by default.

Expand Up @@ -16823,6 +16823,9 @@ class RowNode {
* - `false` if the node is not a full width cell
*/
isFullWidthCell() {
if (this.detail) {
return true;
}
const isFullWidthCellFunc = this.beans.gridOptionsService.getCallback('isFullWidthRow');
return isFullWidthCellFunc ? isFullWidthCellFunc({ rowNode: this }) : false;
}
Expand Down Expand Up @@ -20229,7 +20232,7 @@ let GridApi = class GridApi {
* Returns an object containing rules matching the selected rows in the SSRM.
*
* If `groupSelectsChildren=false` the returned object will be flat, and will conform to IServerSideSelectionState.
* If `groupSelectsChildren=true` the retuned object will be hierarchical, and will conform to IServerSideGroupSelectionState.
* If `groupSelectsChildren=true` the returned object will be hierarchical, and will conform to IServerSideGroupSelectionState.
*/
getServerSideSelectionState() {
if (missing(this.serverSideRowModel)) {
Expand Down

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion grid-community-modules/all-modules/dist/ag-grid-community.js
Expand Up @@ -19941,6 +19941,9 @@ class RowNode {
* - `false` if the node is not a full width cell
*/
isFullWidthCell() {
if (this.detail) {
return true;
}
const isFullWidthCellFunc = this.beans.gridOptionsService.getCallback('isFullWidthRow');
return isFullWidthCellFunc ? isFullWidthCellFunc({ rowNode: this }) : false;
}
Expand Down Expand Up @@ -23792,7 +23795,7 @@ let GridApi = class GridApi {
* Returns an object containing rules matching the selected rows in the SSRM.
*
* If `groupSelectsChildren=false` the returned object will be flat, and will conform to IServerSideSelectionState.
* If `groupSelectsChildren=true` the retuned object will be hierarchical, and will conform to IServerSideGroupSelectionState.
* If `groupSelectsChildren=true` the returned object will be hierarchical, and will conform to IServerSideGroupSelectionState.
*/
getServerSideSelectionState() {
if (Object(_utils_generic_mjs__WEBPACK_IMPORTED_MODULE_6__["missing"])(this.serverSideRowModel)) {
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Expand Up @@ -19930,6 +19930,9 @@ class RowNode {
* - `false` if the node is not a full width cell
*/
isFullWidthCell() {
if (this.detail) {
return true;
}
const isFullWidthCellFunc = this.beans.gridOptionsService.getCallback('isFullWidthRow');
return isFullWidthCellFunc ? isFullWidthCellFunc({ rowNode: this }) : false;
}
Expand Down Expand Up @@ -23781,7 +23784,7 @@ let GridApi = class GridApi {
* Returns an object containing rules matching the selected rows in the SSRM.
*
* If `groupSelectsChildren=false` the returned object will be flat, and will conform to IServerSideSelectionState.
* If `groupSelectsChildren=true` the retuned object will be hierarchical, and will conform to IServerSideGroupSelectionState.
* If `groupSelectsChildren=true` the returned object will be hierarchical, and will conform to IServerSideGroupSelectionState.
*/
getServerSideSelectionState() {
if (Object(_utils_generic_mjs__WEBPACK_IMPORTED_MODULE_6__["missing"])(this.serverSideRowModel)) {
Expand Down
Expand Up @@ -16590,6 +16590,9 @@ class RowNode {
* - `false` if the node is not a full width cell
*/
isFullWidthCell() {
if (this.detail) {
return true;
}
const isFullWidthCellFunc = this.beans.gridOptionsService.getCallback('isFullWidthRow');
return isFullWidthCellFunc ? isFullWidthCellFunc({ rowNode: this }) : false;
}
Expand Down Expand Up @@ -19996,7 +19999,7 @@ let GridApi = class GridApi {
* Returns an object containing rules matching the selected rows in the SSRM.
*
* If `groupSelectsChildren=false` the returned object will be flat, and will conform to IServerSideSelectionState.
* If `groupSelectsChildren=true` the retuned object will be hierarchical, and will conform to IServerSideGroupSelectionState.
* If `groupSelectsChildren=true` the returned object will be hierarchical, and will conform to IServerSideGroupSelectionState.
*/
getServerSideSelectionState() {
if (missing(this.serverSideRowModel)) {
Expand Down

Large diffs are not rendered by default.

0 comments on commit c49d2be

Please sign in to comment.