@absreim/react-bootstrap-data-grid 1.3.0 → 1.4.1
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/ColHeaderCell.d.ts +2 -1
- package/ColHeaderCell.js +6 -6
- package/Grid.d.ts +8 -10
- package/Grid.js +42 -40
- package/ToggleButton.d.ts +1 -0
- package/ToggleButton.js +5 -3
- package/editing/EditControlsCell.d.ts +5 -0
- package/editing/EditControlsCell.js +15 -2
- package/editing/EditableRow.d.ts +8 -1
- package/editing/EditableRow.js +4 -3
- package/editing/types.d.ts +14 -0
- package/editing/types.js +1 -0
- package/filtering/DateFilterRow.d.ts +8 -2
- package/filtering/DateFilterRow.js +6 -5
- package/filtering/FilterOptionsTable.d.ts +4 -1
- package/filtering/FilterOptionsTable.js +26 -7
- package/filtering/FilterRow.d.ts +19 -0
- package/filtering/FilterRow.js +18 -0
- package/filtering/NumberFilterRow.d.ts +7 -2
- package/filtering/NumberFilterRow.js +7 -6
- package/filtering/StringFilterRow.d.ts +8 -3
- package/filtering/StringFilterRow.js +7 -6
- package/filtering/types.d.ts +52 -1
- package/filtering/types.js +30 -1
- package/filtering/useFormStateFromTableFilterState.d.ts +1 -2
- package/index.d.ts +7 -1
- package/index.js +7 -1
- package/package.json +4 -3
- package/pagination/PageSelector.d.ts +2 -2
- package/pagination/Pagination.d.ts +3 -1
- package/pagination/Pagination.js +2 -2
- package/pagination/types.d.ts +12 -0
- package/pagination/types.js +1 -0
- package/pipeline/useCurrentPageRows.d.ts +4 -0
- package/pipeline/useCurrentPageRows.js +14 -0
- package/{hooks → pipeline}/useEditableFromFilterState.d.ts +1 -1
- package/{hooks → pipeline}/useFilter.d.ts +2 -1
- package/{hooks → pipeline}/useFilterStateFromEditable.d.ts +2 -1
- package/{hooks → pipeline}/useSortedRows.d.ts +2 -1
- package/selection/SelectAllHeaderCell.d.ts +2 -1
- package/selection/SelectAllHeaderCell.js +7 -6
- package/selection/SelectionInput.d.ts +1 -0
- package/selection/SelectionInput.js +3 -2
- package/selection/types.d.ts +16 -0
- package/selection/types.js +4 -0
- package/sorting/types.d.ts +13 -0
- package/sorting/types.js +1 -0
- package/styling/styleModelUnwrappers.d.ts +4 -0
- package/styling/styleModelUnwrappers.js +57 -0
- package/styling/types.d.ts +44 -0
- package/styling/types.js +1 -0
- package/types.d.ts +1 -95
- package/types.js +1 -30
- /package/{hooks → pipeline}/useAugmentedRows.d.ts +0 -0
- /package/{hooks → pipeline}/useAugmentedRows.js +0 -0
- /package/{hooks → pipeline}/useDisplayRows.d.ts +0 -0
- /package/{hooks → pipeline}/useDisplayRows.js +0 -0
- /package/{hooks → pipeline}/useEditableFromFilterState.js +0 -0
- /package/{hooks → pipeline}/useFilter.js +0 -0
- /package/{hooks → pipeline}/useFilterStateFromEditable.js +0 -0
- /package/{hooks → pipeline}/useSortedRows.js +0 -0
- /package/{icons → selection}/deselectAll.d.ts +0 -0
- /package/{icons → selection}/deselectAll.js +0 -0
- /package/{icons → selection}/selectAll.d.ts +0 -0
- /package/{icons → selection}/selectAll.js +0 -0
- /package/{icons → sorting}/arrowPlaceholder.d.ts +0 -0
- /package/{icons → sorting}/arrowPlaceholder.js +0 -0
- /package/{icons → sorting}/downArrow.d.ts +0 -0
- /package/{icons → sorting}/downArrow.js +0 -0
- /package/{icons → sorting}/upArrow.d.ts +0 -0
- /package/{icons → sorting}/upArrow.js +0 -0
- /package/{hooks → util}/useControlledHover.d.ts +0 -0
- /package/{hooks → util}/useControlledHover.js +0 -0
package/types.js
CHANGED
|
@@ -1,30 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
"contains",
|
|
3
|
-
"startsWith",
|
|
4
|
-
"endsWith",
|
|
5
|
-
];
|
|
6
|
-
export var stringFilterSchemeNames = {
|
|
7
|
-
contains: "Contains",
|
|
8
|
-
startsWith: "Starts With",
|
|
9
|
-
endsWith: "Ends With",
|
|
10
|
-
};
|
|
11
|
-
export var numberFilterSchemes = [
|
|
12
|
-
"equals",
|
|
13
|
-
"greaterThan",
|
|
14
|
-
"lessThan",
|
|
15
|
-
"greaterOrEqual",
|
|
16
|
-
"lessOrEqual",
|
|
17
|
-
];
|
|
18
|
-
export var numberFilterSchemeNames = {
|
|
19
|
-
equals: "=",
|
|
20
|
-
greaterThan: ">",
|
|
21
|
-
lessThan: "<",
|
|
22
|
-
greaterOrEqual: ">=",
|
|
23
|
-
lessOrEqual: "<=",
|
|
24
|
-
};
|
|
25
|
-
export var dateFilterSchemes = ["startFrom", "endAt", "between"];
|
|
26
|
-
export var dateFilterSchemeNames = {
|
|
27
|
-
startFrom: "Start Form",
|
|
28
|
-
endAt: "End At",
|
|
29
|
-
between: "Between",
|
|
30
|
-
};
|
|
1
|
+
export {};
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|