@stenajs-webui/grid 20.6.10 → 20.7.0
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/dist/config/TableConfig.d.ts +2 -2
- package/dist/features/grid-cell/hooks/UseEditableCell.d.ts +3 -3
- package/dist/features/grid-cell/hooks/UseGridCell.d.ts +1 -1
- package/dist/features/grid-cell/hooks/UseGridNavigation.d.ts +4 -4
- package/dist/features/standard-table/components/StandardTable.d.ts +2 -2
- package/dist/features/standard-table/components/StandardTableCell.d.ts +2 -2
- package/dist/features/standard-table/components/StandardTableContent.d.ts +2 -2
- package/dist/features/standard-table/components/StandardTableRow.d.ts +2 -2
- package/dist/features/standard-table/components/StandardTableRowList.d.ts +2 -2
- package/dist/features/standard-table/config/StandardTableColumnConfig.d.ts +8 -8
- package/dist/features/standard-table/config/StandardTableConfig.d.ts +2 -2
- package/dist/features/standard-table/context/GroupConfigsAndIdsForRowsContext.d.ts +1 -1
- package/dist/features/standard-table/features/checkboxes/UseTableHeadCheckbox.d.ts +1 -1
- package/dist/features/standard-table/features/column-groups/ColumnGroupFactory.d.ts +1 -1
- package/dist/features/standard-table/features/column-index-per-column-id/ColumnIndexCalculator.d.ts +1 -1
- package/dist/features/standard-table/features/expand-collapse/UseTableHeadExpandCollapse.d.ts +1 -1
- package/dist/features/standard-table/features/sorting/MultitypeComparator.d.ts +1 -1
- package/dist/features/standard-table/features/sticky-columns/StickyColumnGroupOffsetCalculator.d.ts +5 -5
- package/dist/features/standard-table/features/sticky-columns/StickyColumnGroupValidator.d.ts +3 -3
- package/dist/features/standard-table/features/sticky-columns/StickyPropsPerColumnCalculator.d.ts +2 -2
- package/dist/features/standard-table/features/sticky-columns/types.d.ts +2 -2
- package/dist/features/standard-table/features/summary-row/SummaryCellColSpanCalculator.d.ts +3 -3
- package/dist/features/standard-table/features/summary-row/components/StandardTableSummaryRow.d.ts +2 -2
- package/dist/features/standard-table/features/summary-row/components/SummaryRowSwitcher.d.ts +2 -2
- package/dist/features/standard-table/helpers/cell-renderers/editable-text-cell/EditableTextCellWithStatus.d.ts +1 -1
- package/dist/features/standard-table/redux/ReducerIdFactory.d.ts +1 -1
- package/dist/features/standard-table/redux/StandardTableReducer.d.ts +2 -2
- package/dist/features/standard-table/types/StandardTableEvents.d.ts +2 -2
- package/dist/features/standard-table/util/ActionsFactory.d.ts +1 -1
- package/dist/features/standard-table/util/FilterItemsOnEnabledCheckboxes.d.ts +2 -2
- package/dist/features/table-ui/components/table/SortOrderIcon.d.ts +2 -2
- package/dist/index.es.js +184 -195
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/util/DirectionCalculator.d.ts +2 -2
- package/package.json +9 -9
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type MoveDirection = "right" | "left" | "down" | "up";
|
|
2
2
|
export interface CellIndices {
|
|
3
3
|
rowIndex: number;
|
|
4
4
|
colIndex: number;
|
|
5
5
|
}
|
|
6
|
-
export
|
|
6
|
+
export type TableEdgeMoveMode = "clamped" | "wrapped" | "unlimited";
|
|
7
7
|
export declare const getNextPositionWrappedOrClamped: (rowIndex: number, colIndex: number, numRows: number, numCols: number, direction: MoveDirection, edgeMode?: TableEdgeMoveMode) => CellIndices;
|
|
8
8
|
export declare const getNextPosition: (rowIndex: number, colIndex: number, direction: MoveDirection) => CellIndices;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stenajs-webui/grid",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.7.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "",
|
|
6
6
|
"author": "mattias800",
|
|
@@ -33,13 +33,13 @@
|
|
|
33
33
|
"deploy": "gh-pages -d example/build"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@stenajs-webui/core": "20.
|
|
37
|
-
"@stenajs-webui/elements": "20.
|
|
38
|
-
"@stenajs-webui/forms": "20.
|
|
39
|
-
"@stenajs-webui/panels": "20.
|
|
40
|
-
"@stenajs-webui/redux": "20.
|
|
41
|
-
"@stenajs-webui/theme": "20.
|
|
42
|
-
"@stenajs-webui/tooltip": "20.
|
|
36
|
+
"@stenajs-webui/core": "20.7.0",
|
|
37
|
+
"@stenajs-webui/elements": "20.7.0",
|
|
38
|
+
"@stenajs-webui/forms": "20.7.0",
|
|
39
|
+
"@stenajs-webui/panels": "20.7.0",
|
|
40
|
+
"@stenajs-webui/redux": "20.7.0",
|
|
41
|
+
"@stenajs-webui/theme": "20.7.0",
|
|
42
|
+
"@stenajs-webui/tooltip": "20.7.0",
|
|
43
43
|
"classnames": "^2.3.1",
|
|
44
44
|
"lodash-es": "^4.17.21"
|
|
45
45
|
},
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"files": [
|
|
80
80
|
"dist"
|
|
81
81
|
],
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "8dc9fe226a0ae212caa675f867b9d9bce3bbb7e6"
|
|
83
83
|
}
|