@stenajs-webui/grid 17.5.0 → 17.8.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/CHANGELOG.md +38 -0
- package/dist/components/GridHooksTable.d.ts +26 -26
- package/dist/config/TableConfig.d.ts +11 -11
- package/dist/features/grid-cell/hooks/UseEditableCell.d.ts +59 -59
- package/dist/features/grid-cell/hooks/UseGridCell.d.ts +64 -64
- package/dist/features/grid-cell/hooks/UseGridNavigation.d.ts +82 -82
- package/dist/features/grid-cell/hooks/UseGridNavigationOptionsFromContext.d.ts +2 -2
- package/dist/features/grid-cell/hooks/UseRevertableValue.d.ts +9 -9
- package/dist/features/{standard-table/features/sorting/__tests__/MultitypeComparator.test.d.ts → grid-cell/hooks/__tests__/TextInput.test.d.ts} +1 -1
- package/dist/features/standard-table/components/ColGroups.d.ts +5 -5
- package/dist/features/standard-table/components/StandardTable.d.ts +82 -82
- package/dist/features/standard-table/components/StandardTableCell.d.ts +11 -11
- package/dist/features/standard-table/components/StandardTableCellUi.d.ts +17 -17
- package/dist/features/standard-table/components/StandardTableContent.d.ts +7 -7
- package/dist/features/standard-table/components/StandardTableHeadItem.d.ts +9 -9
- package/dist/features/standard-table/components/StandardTableHeadRow.d.ts +7 -7
- package/dist/features/standard-table/components/StandardTableRow.d.ts +12 -12
- package/dist/features/standard-table/components/StandardTableRowExpansion.d.ts +6 -6
- package/dist/features/standard-table/components/StandardTableRowList.d.ts +10 -10
- package/dist/features/standard-table/components/TextCell.d.ts +6 -6
- package/dist/features/standard-table/components/TrWithHoverBackground.d.ts +11 -11
- package/dist/features/standard-table/config/StandardTableColumnConfig.d.ts +154 -154
- package/dist/features/standard-table/config/StandardTableColumnGroupConfig.d.ts +11 -11
- package/dist/features/standard-table/config/StandardTableConfig.d.ts +152 -152
- package/dist/features/standard-table/config/StandardTableInfiniteConfig.d.ts +2 -2
- package/dist/features/standard-table/context/GroupConfigsAndIdsForRowsContext.d.ts +5 -5
- package/dist/features/standard-table/context/OnKeyDownContext.d.ts +4 -4
- package/dist/features/standard-table/context/StandardTableColumnOrderContext.d.ts +4 -4
- package/dist/features/standard-table/context/StandardTableStateContext.d.ts +21 -21
- package/dist/features/standard-table/context/StandardTableVariantContext.d.ts +4 -4
- package/dist/features/standard-table/context/StickyPropsPerColumnContext.d.ts +4 -4
- package/dist/features/standard-table/context/TotalNumColumnsContext.d.ts +3 -3
- package/dist/features/standard-table/features/checkboxes/StandardTableRowCheckbox.d.ts +13 -13
- package/dist/features/standard-table/features/checkboxes/UseRowCheckbox.d.ts +5 -5
- package/dist/features/standard-table/features/checkboxes/UseTableHeadCheckbox.d.ts +5 -5
- package/dist/features/standard-table/features/column-groups/ColumnGroupFactory.d.ts +7 -7
- package/dist/features/standard-table/features/column-groups/ColumnGroupRow.d.ts +6 -6
- package/dist/features/standard-table/features/column-groups/ColumnInGroup.d.ts +12 -12
- package/dist/features/standard-table/features/column-groups/StickyHeaderPropsFactory.d.ts +2 -2
- package/dist/features/standard-table/features/column-index-per-column-id/ColumnIndexCalculator.d.ts +7 -7
- package/dist/features/standard-table/features/column-index-per-column-id/ColumnIndexPerColumnIdContext.d.ts +4 -4
- package/dist/features/standard-table/features/expand-collapse/StandardTableRowExpandButton.d.ts +9 -9
- package/dist/features/standard-table/features/expand-collapse/UseExpandCollapseActions.d.ts +4 -4
- package/dist/features/standard-table/features/expand-collapse/UseTableHeadExpandCollapse.d.ts +4 -4
- package/dist/features/standard-table/features/sorting/MultitypeComparator.d.ts +3 -3
- package/dist/features/standard-table/features/sorting/UseTableSortHeader.d.ts +9 -9
- package/dist/features/standard-table/features/sticky-columns/StickyColumnGroupOffsetCalculator.d.ts +10 -10
- package/dist/features/standard-table/features/sticky-columns/StickyColumnGroupValidator.d.ts +4 -4
- package/dist/features/standard-table/features/sticky-columns/StickyPropsPerColumnCalculator.d.ts +5 -5
- package/dist/features/standard-table/features/sticky-columns/types.d.ts +11 -11
- package/dist/features/standard-table/features/summary-row/SummaryCellColSpanCalculator.d.ts +7 -7
- package/dist/features/standard-table/features/summary-row/SummaryRowVisibilityCalculator.d.ts +3 -3
- package/dist/features/standard-table/features/summary-row/components/StandardTableSummaryRow.d.ts +6 -6
- package/dist/features/standard-table/features/summary-row/components/SummaryCell.d.ts +10 -10
- package/dist/features/standard-table/features/summary-row/components/SummaryRowSwitcher.d.ts +6 -6
- package/dist/features/standard-table/helpers/cell-renderers/editable-text-cell/EditableTextCell.d.ts +2 -2
- package/dist/features/standard-table/helpers/cell-renderers/editable-text-cell/EditableTextCellWithStatus.d.ts +3 -3
- package/dist/features/standard-table/hooks/UseCellBackground.d.ts +3 -3
- package/dist/features/standard-table/hooks/UseColumnConfigById.d.ts +4 -4
- package/dist/features/standard-table/hooks/UseColumnValueResolver.d.ts +1 -1
- package/dist/features/standard-table/hooks/UseLocalStateTableContext.d.ts +5 -5
- package/dist/features/standard-table/hooks/UseStandardTableConfig.d.ts +7 -7
- package/dist/features/standard-table/redux/ReducerIdFactory.d.ts +3 -3
- package/dist/features/standard-table/redux/StandardTableActionsAndSelectors.d.ts +19 -19
- package/dist/features/standard-table/redux/StandardTableReducer.d.ts +15 -15
- package/dist/features/standard-table/stories/StandardTableStoryHelper.d.ts +18 -18
- package/dist/features/standard-table/types/StandardTableOnKeyDown.d.ts +3 -3
- package/dist/features/standard-table/util/ActionsFactory.d.ts +14 -14
- package/dist/features/standard-table/util/CellBorderCalculator.d.ts +2 -2
- package/dist/features/standard-table/util/ColumnCounter.d.ts +2 -2
- package/dist/features/standard-table/util/FilterItemsOnEnabledCheckboxes.d.ts +2 -2
- package/dist/features/standard-table/util/IdListPartial.d.ts +1 -1
- package/dist/features/standard-table/util/LabelFormatter.d.ts +2 -2
- package/dist/features/table-ui/components/CrudStatusIndicator.d.ts +8 -8
- package/dist/features/table-ui/components/ModifiedField.d.ts +11 -11
- package/dist/features/table-ui/components/cells/EditableTextCellWithCrudAndModified.d.ts +19 -19
- package/dist/features/table-ui/components/table/SmallTableCell.d.ts +6 -6
- package/dist/features/table-ui/components/table/SmallTableHead.d.ts +6 -6
- package/dist/features/table-ui/components/table/SortOrderIcon.d.ts +11 -11
- package/dist/features/table-ui/components/table/TableCell.d.ts +5 -5
- package/dist/features/table-ui/components/table/TableColumnGroupHead.d.ts +10 -10
- package/dist/features/table-ui/components/table/TableHeadItem.d.ts +16 -16
- package/dist/features/table-ui/components/table/TableHeadRow.d.ts +7 -7
- package/dist/features/table-ui/components/table/TableRow.d.ts +7 -7
- package/dist/features/table-ui/hooks/UseSortOrderColumnHead.d.ts +11 -11
- package/dist/index.d.ts +49 -49
- package/dist/index.es.js +2722 -2236
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +9 -2348
- package/dist/index.js.map +1 -1
- package/dist/storybook-helpers/storybook-controls.d.ts +46 -46
- package/dist/util/DirectionCalculator.d.ts +8 -8
- package/dist/util/DomIdValidator.d.ts +1 -1
- package/dist/util/GridHookOptionsValidator.d.ts +3 -3
- package/dist/util/NumberBoundsWrapper.d.ts +3 -3
- package/dist/util/bounds/NumberBoundsWrapper.d.ts +9 -9
- package/package.json +12 -13
- package/dist/features/standard-table/features/sticky-columns/__tests__/StickyColumnGroupOffsetCalculator.test.d.ts +0 -1
- package/dist/features/standard-table/features/sticky-columns/__tests__/StickyColumnGroupValidator.test.d.ts +0 -1
- package/dist/features/standard-table/features/summary-row/__tests__/SummaryCellColSpanCalculator.test.d.ts +0 -1
- package/dist/features/standard-table/stories/ExpandableRows.stories.d.ts +0 -8
- package/dist/features/standard-table/stories/FewColumns.stories.d.ts +0 -8
- package/dist/features/standard-table/stories/Fields.stories.d.ts +0 -9
- package/dist/features/standard-table/stories/GroupedColumns.stories.d.ts +0 -8
- package/dist/features/standard-table/stories/Sorting.stories.d.ts +0 -8
- package/dist/features/standard-table/stories/StandardTable.stories.d.ts +0 -13
- package/dist/features/standard-table/stories/StandardTableHorror.stories.d.ts +0 -35
- package/dist/features/standard-table/stories/States.stories.d.ts +0 -10
- package/dist/features/standard-table/stories/Sticky.stories.d.ts +0 -11
- package/dist/features/standard-table/stories/Waitlist.stories.d.ts +0 -6
- package/dist/features/standard-table/util/__tests__/IdListPartial.test.d.ts +0 -1
- package/dist/features/table-ui/stories/TableUi.stories.d.ts +0 -7
- package/dist/util/bounds/__tests__/NumberBoundsWrapper.test.d.ts +0 -1
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
export declare const colorListControl: {
|
|
2
|
-
control: {
|
|
3
|
-
type: string;
|
|
4
|
-
options: string[];
|
|
5
|
-
};
|
|
6
|
-
};
|
|
7
|
-
export declare const shadowListControl: {
|
|
8
|
-
control: {
|
|
9
|
-
type: string;
|
|
10
|
-
options: string[];
|
|
11
|
-
};
|
|
12
|
-
};
|
|
13
|
-
export declare const sizeControl: {
|
|
14
|
-
control: {
|
|
15
|
-
type: string;
|
|
16
|
-
min: number;
|
|
17
|
-
max: number;
|
|
18
|
-
step: number;
|
|
19
|
-
};
|
|
20
|
-
};
|
|
21
|
-
export declare const widthControl: {
|
|
22
|
-
control: {
|
|
23
|
-
type: string;
|
|
24
|
-
min: number;
|
|
25
|
-
max: number;
|
|
26
|
-
step: number;
|
|
27
|
-
};
|
|
28
|
-
};
|
|
29
|
-
export declare const spaceControl: {
|
|
30
|
-
control: {
|
|
31
|
-
type: string;
|
|
32
|
-
min: number;
|
|
33
|
-
max: number;
|
|
34
|
-
step: number;
|
|
35
|
-
};
|
|
36
|
-
};
|
|
37
|
-
export declare const disabledControl: {
|
|
38
|
-
control: {
|
|
39
|
-
disable: boolean;
|
|
40
|
-
};
|
|
41
|
-
};
|
|
42
|
-
export declare const hideArg: {
|
|
43
|
-
table: {
|
|
44
|
-
disable: boolean;
|
|
45
|
-
};
|
|
46
|
-
};
|
|
1
|
+
export declare const colorListControl: {
|
|
2
|
+
control: {
|
|
3
|
+
type: string;
|
|
4
|
+
options: string[];
|
|
5
|
+
};
|
|
6
|
+
};
|
|
7
|
+
export declare const shadowListControl: {
|
|
8
|
+
control: {
|
|
9
|
+
type: string;
|
|
10
|
+
options: string[];
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
export declare const sizeControl: {
|
|
14
|
+
control: {
|
|
15
|
+
type: string;
|
|
16
|
+
min: number;
|
|
17
|
+
max: number;
|
|
18
|
+
step: number;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
export declare const widthControl: {
|
|
22
|
+
control: {
|
|
23
|
+
type: string;
|
|
24
|
+
min: number;
|
|
25
|
+
max: number;
|
|
26
|
+
step: number;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
export declare const spaceControl: {
|
|
30
|
+
control: {
|
|
31
|
+
type: string;
|
|
32
|
+
min: number;
|
|
33
|
+
max: number;
|
|
34
|
+
step: number;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
export declare const disabledControl: {
|
|
38
|
+
control: {
|
|
39
|
+
disable: boolean;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare const hideArg: {
|
|
43
|
+
table: {
|
|
44
|
+
disable: boolean;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export declare type MoveDirection = "right" | "left" | "down" | "up";
|
|
2
|
-
export interface CellIndices {
|
|
3
|
-
rowIndex: number;
|
|
4
|
-
colIndex: number;
|
|
5
|
-
}
|
|
6
|
-
export declare type TableEdgeMoveMode = "clamped" | "wrapped" | "unlimited";
|
|
7
|
-
export declare const getNextPositionWrappedOrClamped: (rowIndex: number, colIndex: number, numRows: number, numCols: number, direction: MoveDirection, edgeMode?: TableEdgeMoveMode) => CellIndices;
|
|
8
|
-
export declare const getNextPosition: (rowIndex: number, colIndex: number, direction: MoveDirection) => CellIndices;
|
|
1
|
+
export declare type MoveDirection = "right" | "left" | "down" | "up";
|
|
2
|
+
export interface CellIndices {
|
|
3
|
+
rowIndex: number;
|
|
4
|
+
colIndex: number;
|
|
5
|
+
}
|
|
6
|
+
export declare type TableEdgeMoveMode = "clamped" | "wrapped" | "unlimited";
|
|
7
|
+
export declare const getNextPositionWrappedOrClamped: (rowIndex: number, colIndex: number, numRows: number, numCols: number, direction: MoveDirection, edgeMode?: TableEdgeMoveMode) => CellIndices;
|
|
8
|
+
export declare const getNextPosition: (rowIndex: number, colIndex: number, direction: MoveDirection) => CellIndices;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const ensureDomIdIsCorrect: (id: string) => string;
|
|
1
|
+
export declare const ensureDomIdIsCorrect: (id: string) => string;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { UseGridCellOptions } from "../features/grid-cell/hooks/UseGridCell";
|
|
2
|
-
import { ValidatedUseGridNavigationOptions } from "../features/grid-cell/hooks/UseGridNavigation";
|
|
3
|
-
export declare const validateGridHookOptions: <TValue>(options: UseGridCellOptions<TValue>) => ValidatedUseGridNavigationOptions;
|
|
1
|
+
import { UseGridCellOptions } from "../features/grid-cell/hooks/UseGridCell";
|
|
2
|
+
import { ValidatedUseGridNavigationOptions } from "../features/grid-cell/hooks/UseGridNavigation";
|
|
3
|
+
export declare const validateGridHookOptions: <TValue>(options: UseGridCellOptions<TValue>) => ValidatedUseGridNavigationOptions;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { CellIndices } from "./DirectionCalculator";
|
|
2
|
-
export declare const clampPos: (pos: CellIndices, numRows: number, numCols: number) => CellIndices;
|
|
3
|
-
export declare const wrapPos: (pos: CellIndices, numRows: number, numCols: number) => CellIndices;
|
|
1
|
+
import { CellIndices } from "./DirectionCalculator";
|
|
2
|
+
export declare const clampPos: (pos: CellIndices, numRows: number, numCols: number) => CellIndices;
|
|
3
|
+
export declare const wrapPos: (pos: CellIndices, numRows: number, numCols: number) => CellIndices;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export declare const wrapBounds: (x: number, y: number, maxX: number, maxY: number) => {
|
|
2
|
-
realX: number;
|
|
3
|
-
realY: number;
|
|
4
|
-
};
|
|
5
|
-
export declare const wrapBoundsNextLine: (x: number, y: number, maxX: number, maxY: number) => {
|
|
6
|
-
realX: number;
|
|
7
|
-
realY: number;
|
|
8
|
-
};
|
|
9
|
-
export declare const limitRange: (val: number, min: number, max: number) => number;
|
|
1
|
+
export declare const wrapBounds: (x: number, y: number, maxX: number, maxY: number) => {
|
|
2
|
+
realX: number;
|
|
3
|
+
realY: number;
|
|
4
|
+
};
|
|
5
|
+
export declare const wrapBoundsNextLine: (x: number, y: number, maxX: number, maxY: number) => {
|
|
6
|
+
realX: number;
|
|
7
|
+
realY: number;
|
|
8
|
+
};
|
|
9
|
+
export declare const limitRange: (val: number, min: number, max: number) => number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stenajs-webui/grid",
|
|
3
|
-
"version": "17.
|
|
3
|
+
"version": "17.8.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "mattias800",
|
|
6
6
|
"license": "MIT",
|
|
@@ -18,22 +18,21 @@
|
|
|
18
18
|
"npm": ">=5"
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"clean": "rm -rf dist",
|
|
21
|
+
"build": "yarn tsc -p tsconfig.build.json && yarn vite build",
|
|
22
|
+
"start": "yarn tsc -p tsconfig.build.json && yarn vite build --watch",
|
|
23
|
+
"clean": "rimraf dist",
|
|
25
24
|
"prepare": "yarn clean && yarn run build",
|
|
26
25
|
"predeploy": "cd example && yarn install && yarn run build",
|
|
27
26
|
"deploy": "gh-pages -d example/build"
|
|
28
27
|
},
|
|
29
28
|
"dependencies": {
|
|
30
|
-
"@stenajs-webui/core": "17.
|
|
31
|
-
"@stenajs-webui/elements": "17.
|
|
32
|
-
"@stenajs-webui/forms": "17.
|
|
33
|
-
"@stenajs-webui/panels": "17.
|
|
34
|
-
"@stenajs-webui/redux": "17.
|
|
35
|
-
"@stenajs-webui/theme": "17.
|
|
36
|
-
"@stenajs-webui/tooltip": "17.
|
|
29
|
+
"@stenajs-webui/core": "17.8.0",
|
|
30
|
+
"@stenajs-webui/elements": "17.8.0",
|
|
31
|
+
"@stenajs-webui/forms": "17.8.0",
|
|
32
|
+
"@stenajs-webui/panels": "17.8.0",
|
|
33
|
+
"@stenajs-webui/redux": "17.8.0",
|
|
34
|
+
"@stenajs-webui/theme": "17.8.0",
|
|
35
|
+
"@stenajs-webui/tooltip": "17.8.0",
|
|
37
36
|
"classnames": "^2.3.1"
|
|
38
37
|
},
|
|
39
38
|
"peerDependencies": {
|
|
@@ -72,5 +71,5 @@
|
|
|
72
71
|
"files": [
|
|
73
72
|
"dist"
|
|
74
73
|
],
|
|
75
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "aa893eb34e1b1d3a59a4a77f8ecfe1d922c40cd0"
|
|
76
75
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare const _default: {
|
|
3
|
-
title: string;
|
|
4
|
-
};
|
|
5
|
-
export default _default;
|
|
6
|
-
export declare const ExpandableRows: () => JSX.Element;
|
|
7
|
-
export declare const WithSticky: () => JSX.Element;
|
|
8
|
-
export declare const SomeExpandableRows: () => JSX.Element;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare const _default: {
|
|
3
|
-
title: string;
|
|
4
|
-
};
|
|
5
|
-
export default _default;
|
|
6
|
-
export declare const FixedWidthColumns: () => JSX.Element;
|
|
7
|
-
export declare const FixedWidthColumnsWithStickyHeader: () => JSX.Element;
|
|
8
|
-
export declare const MinWidthColumns: () => JSX.Element;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare const _default: {
|
|
3
|
-
title: string;
|
|
4
|
-
};
|
|
5
|
-
export default _default;
|
|
6
|
-
export declare const FieldError: () => JSX.Element;
|
|
7
|
-
export declare const FieldLoading: () => JSX.Element;
|
|
8
|
-
export declare const ModifiedFields: () => JSX.Element;
|
|
9
|
-
export declare const WarningWhenModifiedFieldIsEmpty: () => JSX.Element;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare const _default: {
|
|
3
|
-
title: string;
|
|
4
|
-
};
|
|
5
|
-
export default _default;
|
|
6
|
-
export declare const GroupedColumns: () => JSX.Element;
|
|
7
|
-
export declare const GroupedColumnsAndStickyHeader: () => JSX.Element;
|
|
8
|
-
export declare const GroupedColumnsAndStickyConfiguration: () => JSX.Element;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare const _default: {
|
|
3
|
-
title: string;
|
|
4
|
-
};
|
|
5
|
-
export default _default;
|
|
6
|
-
export declare const SortingDisabled: () => JSX.Element;
|
|
7
|
-
export declare const SortingDisabledAndSortByName: () => JSX.Element;
|
|
8
|
-
export declare const SortingEnabledAndSortByNameDesc: () => JSX.Element;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare const _default: {
|
|
3
|
-
title: string;
|
|
4
|
-
};
|
|
5
|
-
export default _default;
|
|
6
|
-
export declare const Overview: () => JSX.Element;
|
|
7
|
-
export declare const Variants: () => JSX.Element;
|
|
8
|
-
export declare const WithoutCheckboxInHeader: () => JSX.Element;
|
|
9
|
-
export declare const BackgroundResolver: () => JSX.Element;
|
|
10
|
-
export declare const CellOnKeyDown: () => JSX.Element;
|
|
11
|
-
export declare const NavigationBetweenTables: () => JSX.Element;
|
|
12
|
-
export declare const OnKeyDown: () => JSX.Element;
|
|
13
|
-
export declare const SummaryRow: () => JSX.Element;
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare const _default: {
|
|
3
|
-
title: string;
|
|
4
|
-
};
|
|
5
|
-
export default _default;
|
|
6
|
-
export interface SalesPerformanceTableRowItem {
|
|
7
|
-
info: any;
|
|
8
|
-
pricingPath: any;
|
|
9
|
-
automation?: any;
|
|
10
|
-
efpVehicles?: any;
|
|
11
|
-
fareClassRecommendationRevenue?: any;
|
|
12
|
-
departurePerformance?: any;
|
|
13
|
-
price?: any;
|
|
14
|
-
guestsHistory?: any;
|
|
15
|
-
tableColors: any;
|
|
16
|
-
}
|
|
17
|
-
export interface TableColors {
|
|
18
|
-
efpHistory: HistoryColors;
|
|
19
|
-
guestsHistory: HistoryColors;
|
|
20
|
-
}
|
|
21
|
-
interface HistoryColors {
|
|
22
|
-
minus1?: CellColors;
|
|
23
|
-
minus3?: CellColors;
|
|
24
|
-
minus7?: CellColors;
|
|
25
|
-
minus30?: CellColors;
|
|
26
|
-
minus45?: CellColors;
|
|
27
|
-
}
|
|
28
|
-
export interface CellColors {
|
|
29
|
-
bgColor?: string;
|
|
30
|
-
textColor?: string;
|
|
31
|
-
}
|
|
32
|
-
export declare const HorrorStory: () => JSX.Element;
|
|
33
|
-
export declare const WithScroll: () => JSX.Element;
|
|
34
|
-
export declare const StickyColumnGroups: () => JSX.Element;
|
|
35
|
-
export declare const StickyColumnsGroupsAndHeaders: () => JSX.Element;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare const _default: {
|
|
3
|
-
title: string;
|
|
4
|
-
};
|
|
5
|
-
export default _default;
|
|
6
|
-
export declare const MissingItems: () => JSX.Element;
|
|
7
|
-
export declare const MissingItemsCustomBanner: () => JSX.Element;
|
|
8
|
-
export declare const Loading: () => JSX.Element;
|
|
9
|
-
export declare const _Error: () => JSX.Element;
|
|
10
|
-
export declare const BannerError: () => JSX.Element;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare const _default: {
|
|
3
|
-
title: string;
|
|
4
|
-
};
|
|
5
|
-
export default _default;
|
|
6
|
-
export declare const StickyTableHeader: () => JSX.Element;
|
|
7
|
-
export declare const StickyTableHeaderConfiguration: () => JSX.Element;
|
|
8
|
-
export declare const StickyColumn: () => JSX.Element;
|
|
9
|
-
export declare const StickyHeaderAndColumn: () => JSX.Element;
|
|
10
|
-
export declare const StickyHeaderAndColumnWithBackgrounds: () => JSX.Element;
|
|
11
|
-
export declare const StickyHeaderAndRowCheckbox: () => JSX.Element;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|