@devexpress/dx-grid-core
Advanced tools
Comparing version 1.1.0-beta.1 to 1.1.0-beta.2
/** | ||
* Bundle of @devexpress/dx-grid-core | ||
* Generated: 2018-02-22 | ||
* Version: 1.1.0-beta.1 | ||
* Generated: 2018-03-02 | ||
* Version: 1.1.0-beta.2 | ||
* License: https://js.devexpress.com/Licensing | ||
@@ -1026,3 +1026,3 @@ */ | ||
var getAvailableToSelect = function getAvailableToSelect(rows, getRowId, isGroupRow) { | ||
var rowsWithAvailableToSelect = function rowsWithAvailableToSelect(rows, getRowId, isGroupRow) { | ||
var dataRows = rows; | ||
@@ -1034,10 +1034,9 @@ if (isGroupRow) { | ||
} | ||
return dataRows.map(function (row) { | ||
return getRowId(row); | ||
}); | ||
return { rows: rows, availableToSelect: dataRows.map(function (row) { | ||
return getRowId(row); | ||
}) }; | ||
}; | ||
var someSelected = function someSelected(_ref) { | ||
var selection = _ref.selection, | ||
availableToSelect = _ref.availableToSelect; | ||
var someSelected = function someSelected(_ref, selection) { | ||
var availableToSelect = _ref.availableToSelect; | ||
@@ -1053,5 +1052,4 @@ var selectionSet = new Set(selection); | ||
var allSelected = function allSelected(_ref2) { | ||
var selection = _ref2.selection, | ||
availableToSelect = _ref2.availableToSelect; | ||
var allSelected = function allSelected(_ref2, selection) { | ||
var availableToSelect = _ref2.availableToSelect; | ||
@@ -1065,2 +1063,7 @@ var selectionSet = new Set(selection); | ||
var unwrapSelectedRows = function unwrapSelectedRows(_ref3) { | ||
var rows = _ref3.rows; | ||
return rows; | ||
}; | ||
var startEditRows = function startEditRows(prevEditingRowIds, _ref) { | ||
@@ -1816,3 +1819,3 @@ var rowIds = _ref.rowIds; | ||
export { getColumnExtension, getColumnExtensionValueGetter, getTableRowColumnsWithColSpan, getTableColumnGeometries, getTableTargetColumnIndex, getAnimations, filterActiveAnimations, evalAnimations, getGroupCellTargetIndex, getMessagesFormatter, rowIdGetter, cellValueGetter, changeColumnSorting, getColumnSortingDirection, getPersistentSortedColumns, calculateKeepOther, sortedRows, changeColumnFilter, getColumnFilterConfig, filteredRows, GROUP_KEY_SEPARATOR, changeColumnGrouping, toggleExpandedGroups, draftColumnGrouping, cancelColumnGroupingDraft, groupRowChecker, groupRowLevelKeyGetter, groupedRows, expandedGroupRows, customGroupedRows, customGroupingRowIdGetter, groupingPanelItems, setCurrentPage, setPageSize, paginatedRows, rowsWithPageHeaders, pageCount, rowCount, firstRowOnPage, lastRowOnPage, toggleSelection, getAvailableToSelect, someSelected, allSelected, startEditRows, stopEditRows, addRow, changeAddedRow, cancelAddedRows, changeRow, cancelChanges, deleteRows, cancelDeletedRows, changedRowsByIds, addedRowsByIds, createRowChangeGetter, getRowChange, TABLE_REORDERING_TYPE, changeColumnOrder, orderedColumns, tableHeaderRowsWithReordering, draftOrder, tableColumnsWithWidths, changeTableColumnWidth, draftTableColumnWidth, cancelTableColumnWidthDraft, TABLE_EDIT_COMMAND_TYPE, isHeadingEditCommandsTableCell, isEditCommandsTableCell, tableColumnsWithEditing, TABLE_ADDED_TYPE, TABLE_EDIT_TYPE, isEditTableCell, isAddedTableRow, isEditTableRow, tableRowsWithEditing, TABLE_FILTER_TYPE, isFilterTableCell, isFilterTableRow, tableHeaderRowsWithFilter, TABLE_GROUP_TYPE, isGroupTableCell, isGroupIndentTableCell, isGroupTableRow, tableColumnsWithGrouping, tableRowsWithGrouping, TABLE_HEADING_TYPE, isHeadingTableCell, isHeadingTableRow, tableRowsWithHeading, TABLE_DETAIL_TYPE, isDetailRowExpanded, isDetailToggleTableCell, isDetailTableRow, toggleDetailRowExpanded, tableRowsWithExpandedDetail, tableColumnsWithDetail, TABLE_SELECT_TYPE, isSelectTableCell, isSelectAllTableCell, tableColumnsWithSelection, TABLE_DATA_TYPE, TABLE_NODATA_TYPE, isNoDataTableRow, isDataTableCell, isHeaderStubTableCell, isDataTableRow, tableColumnsWithDataRows, tableRowsWithDataRows, visibleTableColumns, tableDataColumnsExist, columnChooserItems, toggleColumn }; | ||
export { getColumnExtension, getColumnExtensionValueGetter, getTableRowColumnsWithColSpan, getTableColumnGeometries, getTableTargetColumnIndex, getAnimations, filterActiveAnimations, evalAnimations, getGroupCellTargetIndex, getMessagesFormatter, rowIdGetter, cellValueGetter, changeColumnSorting, getColumnSortingDirection, getPersistentSortedColumns, calculateKeepOther, sortedRows, changeColumnFilter, getColumnFilterConfig, filteredRows, GROUP_KEY_SEPARATOR, changeColumnGrouping, toggleExpandedGroups, draftColumnGrouping, cancelColumnGroupingDraft, groupRowChecker, groupRowLevelKeyGetter, groupedRows, expandedGroupRows, customGroupedRows, customGroupingRowIdGetter, groupingPanelItems, setCurrentPage, setPageSize, paginatedRows, rowsWithPageHeaders, pageCount, rowCount, firstRowOnPage, lastRowOnPage, toggleSelection, rowsWithAvailableToSelect, someSelected, allSelected, unwrapSelectedRows, startEditRows, stopEditRows, addRow, changeAddedRow, cancelAddedRows, changeRow, cancelChanges, deleteRows, cancelDeletedRows, changedRowsByIds, addedRowsByIds, createRowChangeGetter, getRowChange, TABLE_REORDERING_TYPE, changeColumnOrder, orderedColumns, tableHeaderRowsWithReordering, draftOrder, tableColumnsWithWidths, changeTableColumnWidth, draftTableColumnWidth, cancelTableColumnWidthDraft, TABLE_EDIT_COMMAND_TYPE, isHeadingEditCommandsTableCell, isEditCommandsTableCell, tableColumnsWithEditing, TABLE_ADDED_TYPE, TABLE_EDIT_TYPE, isEditTableCell, isAddedTableRow, isEditTableRow, tableRowsWithEditing, TABLE_FILTER_TYPE, isFilterTableCell, isFilterTableRow, tableHeaderRowsWithFilter, TABLE_GROUP_TYPE, isGroupTableCell, isGroupIndentTableCell, isGroupTableRow, tableColumnsWithGrouping, tableRowsWithGrouping, TABLE_HEADING_TYPE, isHeadingTableCell, isHeadingTableRow, tableRowsWithHeading, TABLE_DETAIL_TYPE, isDetailRowExpanded, isDetailToggleTableCell, isDetailTableRow, toggleDetailRowExpanded, tableRowsWithExpandedDetail, tableColumnsWithDetail, TABLE_SELECT_TYPE, isSelectTableCell, isSelectAllTableCell, tableColumnsWithSelection, TABLE_DATA_TYPE, TABLE_NODATA_TYPE, isNoDataTableRow, isDataTableCell, isHeaderStubTableCell, isDataTableRow, tableColumnsWithDataRows, tableRowsWithDataRows, visibleTableColumns, tableDataColumnsExist, columnChooserItems, toggleColumn }; | ||
//# sourceMappingURL=dx-grid-core.es.js.map |
/** | ||
* Bundle of @devexpress/dx-grid-core | ||
* Generated: 2018-02-22 | ||
* Version: 1.1.0-beta.1 | ||
* Generated: 2018-03-02 | ||
* Version: 1.1.0-beta.2 | ||
* License: https://js.devexpress.com/Licensing | ||
@@ -1030,3 +1030,3 @@ */ | ||
var getAvailableToSelect = function getAvailableToSelect(rows, getRowId, isGroupRow) { | ||
var rowsWithAvailableToSelect = function rowsWithAvailableToSelect(rows, getRowId, isGroupRow) { | ||
var dataRows = rows; | ||
@@ -1038,10 +1038,9 @@ if (isGroupRow) { | ||
} | ||
return dataRows.map(function (row) { | ||
return getRowId(row); | ||
}); | ||
return { rows: rows, availableToSelect: dataRows.map(function (row) { | ||
return getRowId(row); | ||
}) }; | ||
}; | ||
var someSelected = function someSelected(_ref) { | ||
var selection = _ref.selection, | ||
availableToSelect = _ref.availableToSelect; | ||
var someSelected = function someSelected(_ref, selection) { | ||
var availableToSelect = _ref.availableToSelect; | ||
@@ -1057,5 +1056,4 @@ var selectionSet = new Set(selection); | ||
var allSelected = function allSelected(_ref2) { | ||
var selection = _ref2.selection, | ||
availableToSelect = _ref2.availableToSelect; | ||
var allSelected = function allSelected(_ref2, selection) { | ||
var availableToSelect = _ref2.availableToSelect; | ||
@@ -1069,2 +1067,7 @@ var selectionSet = new Set(selection); | ||
var unwrapSelectedRows = function unwrapSelectedRows(_ref3) { | ||
var rows = _ref3.rows; | ||
return rows; | ||
}; | ||
var startEditRows = function startEditRows(prevEditingRowIds, _ref) { | ||
@@ -1861,5 +1864,6 @@ var rowIds = _ref.rowIds; | ||
exports.toggleSelection = toggleSelection; | ||
exports.getAvailableToSelect = getAvailableToSelect; | ||
exports.rowsWithAvailableToSelect = rowsWithAvailableToSelect; | ||
exports.someSelected = someSelected; | ||
exports.allSelected = allSelected; | ||
exports.unwrapSelectedRows = unwrapSelectedRows; | ||
exports.startEditRows = startEditRows; | ||
@@ -1866,0 +1870,0 @@ exports.stopEditRows = stopEditRows; |
{ | ||
"name": "@devexpress/dx-grid-core", | ||
"version": "1.1.0-beta.1", | ||
"version": "1.1.0-beta.2", | ||
"description": "Core library for the DevExtreme Reactive Grid component", | ||
@@ -42,5 +42,5 @@ "author": { | ||
"devDependencies": { | ||
"@devexpress/dx-core": "1.1.0-beta.1", | ||
"@devexpress/dx-core": "1.1.0-beta.2", | ||
"babel-core": "^6.26.0", | ||
"babel-jest": "^22.2.2", | ||
"babel-jest": "^22.4.1", | ||
"babel-plugin-external-helpers": "^6.22.0", | ||
@@ -51,8 +51,8 @@ "babel-plugin-transform-object-rest-spread": "^6.26.0", | ||
"core-js": "^2.5.3", | ||
"eslint": "^4.17.0", | ||
"eslint": "^4.18.1", | ||
"eslint-config-airbnb-base": "^12.1.0", | ||
"eslint-plugin-filenames": "^1.2.0", | ||
"eslint-plugin-import": "^2.8.0", | ||
"eslint-plugin-jest": "^21.12.1", | ||
"jest": "^22.3.0", | ||
"eslint-plugin-import": "^2.9.0", | ||
"eslint-plugin-jest": "^21.12.2", | ||
"jest": "^22.4.2", | ||
"rollup": "0.50.0", | ||
@@ -63,4 +63,4 @@ "rollup-plugin-babel": "^3.0.3", | ||
"peerDependencies": { | ||
"@devexpress/dx-core": "1.0.0" | ||
"@devexpress/dx-core": "1.1.0-beta.1" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
308350
3079