@adaptabletools/adaptable 17.0.0-canary.9 → 17.0.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.
Files changed (66) hide show
  1. package/base.css +24 -1
  2. package/base.css.map +1 -1
  3. package/bundle.cjs.js +198 -225
  4. package/index.css +34 -1
  5. package/index.css.map +1 -1
  6. package/package.json +1 -2
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/Api/EventApi.d.ts +19 -8
  10. package/src/Api/Events/CellSelectionChanged.d.ts +11 -0
  11. package/src/Api/Events/RowSelectionChanged.d.ts +11 -0
  12. package/src/Api/Events/RowSelectionChanged.js +2 -0
  13. package/src/Api/Internal/DashboardInternalApi.d.ts +1 -0
  14. package/src/Api/Internal/DashboardInternalApi.js +5 -0
  15. package/src/Redux/ActionsReducers/PlusMinusRedux.d.ts +16 -0
  16. package/src/Redux/ActionsReducers/PlusMinusRedux.js +47 -1
  17. package/src/Strategy/LayoutModule.d.ts +12 -4
  18. package/src/Strategy/LayoutModule.js +11 -5
  19. package/src/Strategy/NotesModule.js +1 -1
  20. package/src/Strategy/PlusMinusModule.js +2 -0
  21. package/src/Strategy/Utilities/Export/getExportRowsViewItems.d.ts +2 -1
  22. package/src/Strategy/Utilities/Export/getExportRowsViewItems.js +14 -5
  23. package/src/Strategy/Utilities/getExpressionViewItems.js +8 -2
  24. package/src/View/Alert/Wizard/AlertButtonsEditor.js +2 -2
  25. package/src/View/Components/FilterForm/FilterForm.js +0 -1
  26. package/src/View/Components/FilterForm/ListBoxFilterForm.js +1 -3
  27. package/src/View/Components/FilterForm/QuickFilterForm.js +1 -1
  28. package/src/View/Components/FilterForm/QuickFilterValues.js +3 -2
  29. package/src/View/Components/Selectors/ColumnSelector.d.ts +1 -0
  30. package/src/View/Components/Selectors/ColumnSelector.js +2 -1
  31. package/src/View/Dashboard/PinnedDashboard.js +2 -1
  32. package/src/View/DataImport/DataImportWizard/sections/DataPreview.js +2 -2
  33. package/src/View/Export/Wizard/ReportRowsWizardSection.js +3 -1
  34. package/src/View/GridFilter/GridFilterExpressionEditor.js +1 -1
  35. package/src/View/GridFilter/GridFilterPopup.js +5 -5
  36. package/src/View/GridFilter/GridFilterViewPanel.js +11 -10
  37. package/src/View/GridFilter/NamedQuerySelector.js +1 -1
  38. package/src/View/GridFilter/useGridFilterExpressionEditor.d.ts +1 -0
  39. package/src/View/GridFilter/useGridFilterExpressionEditor.js +7 -4
  40. package/src/View/Layout/Wizard/getGridFilterPreview.d.ts +6 -0
  41. package/src/View/Layout/Wizard/getGridFilterPreview.js +16 -0
  42. package/src/View/Layout/Wizard/sections/FilterSection.js +1 -1
  43. package/src/View/NamedQuery/Wizard/NamedQueryExpressionWizardSection.js +1 -1
  44. package/src/View/Notes/NotesPopup.js +2 -2
  45. package/src/View/PlusMinus/MovePlusMinus.d.ts +7 -0
  46. package/src/View/PlusMinus/MovePlusMinus.js +27 -0
  47. package/src/agGrid/Adaptable.js +2 -2
  48. package/src/agGrid/agGridHelper.d.ts +2 -1
  49. package/src/agGrid/agGridHelper.js +13 -3
  50. package/src/components/Datepicker/index.js +1 -1
  51. package/src/components/ExpressionEditor/ExpressionPreview.d.ts +7 -0
  52. package/src/components/ExpressionEditor/ExpressionPreview.js +25 -0
  53. package/src/components/ExpressionEditor/QueryBuilder/QueryBuilderInputs.js +33 -10
  54. package/src/components/ExpressionEditor/index.js +4 -7
  55. package/src/components/InputGroup/InputGroup.d.ts +7 -0
  56. package/src/components/InputGroup/InputGroup.js +12 -0
  57. package/src/components/InputGroup/index.d.ts +1 -0
  58. package/src/components/InputGroup/index.js +4 -0
  59. package/src/components/OverlayTrigger/index.js +7 -2
  60. package/src/components/Select/Select.d.ts +1 -2
  61. package/src/components/Select/Select.js +18 -5
  62. package/src/types.d.ts +2 -1
  63. package/version.d.ts +1 -1
  64. package/version.js +1 -1
  65. package/src/Api/Events/SelectionChanged.d.ts +0 -16
  66. /package/src/Api/Events/{SelectionChanged.js → CellSelectionChanged.js} +0 -0
@@ -97,7 +97,7 @@ exports.Datepicker = React.forwardRef((props, ref) => {
97
97
  borderRadius: style === null || style === void 0 ? void 0 : style.borderRadius,
98
98
  width: style === null || style === void 0 ? void 0 : style.width,
99
99
  maxWidth: style === null || style === void 0 ? void 0 : style.maxWidth,
100
- }, onFocus: () => {
100
+ }, className: "ab-Datepicker", onFocus: () => {
101
101
  if (!visible) {
102
102
  setVisible(true);
103
103
  }
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ import { AdaptableQuery } from '../../types';
3
+ interface ExpressionPreviewProps {
4
+ query: AdaptableQuery;
5
+ }
6
+ export declare const ExpressionPreview: React.FunctionComponent<ExpressionPreviewProps>;
7
+ export {};
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ExpressionPreview = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const React = tslib_1.__importStar(require("react"));
6
+ const AdaptableContext_1 = require("../../View/AdaptableContext");
7
+ const ExpressionPreview = (props) => {
8
+ var _a;
9
+ const adaptable = (0, AdaptableContext_1.useAdaptable)();
10
+ const displayColumnFriendlyNames = (_a = adaptable.api.optionsApi.getExpressionOptions()) === null || _a === void 0 ? void 0 : _a.displayColumnFriendlyNamesForExpressions;
11
+ if (!displayColumnFriendlyNames) {
12
+ return React.createElement(React.Fragment, null, adaptable.api.expressionApi.getAdaptableQueryExpression(props.query));
13
+ }
14
+ const expressionWithFriendlyNames = adaptable.api.expressionApi.getAdaptableQueryExpressionWithColumnFriendlyNames(props.query);
15
+ // '[Column Name] > 2' => ['[Column Name]', '>', '2']
16
+ // not the prettiest
17
+ const strWithMarkedGroupes = expressionWithFriendlyNames.replace(/\]/gi, '],').split(',');
18
+ return (React.createElement(React.Fragment, null, strWithMarkedGroupes.map((part, index) => {
19
+ const partEl = part.includes('[') ? React.createElement("i", null, part.replace(/[\[\]]/g, '')) : part;
20
+ return React.createElement(React.Fragment, { key: index },
21
+ "\u00A0",
22
+ partEl);
23
+ })));
24
+ };
25
+ exports.ExpressionPreview = ExpressionPreview;
@@ -11,6 +11,7 @@ const PermittedValuesSelector_1 = require("../../../View/Components/Selectors/Pe
11
11
  const CheckBox_1 = require("../../CheckBox");
12
12
  const DropdownButton_1 = tslib_1.__importDefault(require("../../DropdownButton"));
13
13
  const icons_1 = require("../../icons");
14
+ const InputGroup_1 = require("../../InputGroup");
14
15
  const Select_1 = require("../../Select");
15
16
  const QueryBuilder_1 = require("./QueryBuilder");
16
17
  const utils_1 = require("./utils");
@@ -85,22 +86,25 @@ const PrimiteValueInput = (props) => {
85
86
  }
86
87
  const options = [
87
88
  {
88
- label: 'Column',
89
+ label: (react_1.default.createElement(rebass_1.Flex, null,
90
+ react_1.default.createElement(icons_1.Icon, { name: "columns" }),
91
+ react_1.default.createElement(rebass_1.Text, { ml: 2 }, "Column"))),
89
92
  icon: 'columns',
90
93
  value: 'column-name',
91
94
  },
92
95
  {
93
- label: 'Value',
96
+ label: (react_1.default.createElement(rebass_1.Flex, null,
97
+ react_1.default.createElement(icons_1.Icon, { name: "edit" }),
98
+ react_1.default.createElement(rebass_1.Text, { ml: 2 }, "Value"))),
94
99
  icon: 'edit',
95
100
  value: 'input-value',
96
101
  },
97
102
  ];
98
103
  const typeOption = options.find((option) => option.value === type);
99
- return (react_1.default.createElement(rebass_1.Flex, { "data-id": "query-input-wrapper", mr: 2 },
100
- react_1.default.createElement(rebass_1.Flex, null,
101
- react_1.default.createElement(Select_1.Select, { rederSingleValue: (value) => {
102
- return (react_1.default.createElement(react_1.default.Fragment, null, typeOption.value === 'column-name' ? react_1.default.createElement(icons_1.Icon, { name: "grid" }) : react_1.default.createElement(icons_1.Icon, { name: "edit" })));
103
- }, variant: "raised", value: typeOption.value, options: options, onChange: (value) => handleTypeChange(value) })),
104
+ return (react_1.default.createElement(InputGroup_1.InputGroup, { Component: rebass_1.Flex, "data-id": "query-input-wrapper", mr: 2 },
105
+ react_1.default.createElement(Select_1.Select, { renderSingleValue: (value) => {
106
+ return (react_1.default.createElement(react_1.default.Fragment, null, typeOption.value === 'column-name' ? react_1.default.createElement(icons_1.Icon, { name: "grid" }) : react_1.default.createElement(icons_1.Icon, { name: "edit" })));
107
+ }, value: typeOption.value, options: options, onChange: (value) => handleTypeChange(value) }),
104
108
  editor));
105
109
  };
106
110
  exports.PrimiteValueInput = PrimiteValueInput;
@@ -110,18 +114,37 @@ const PrimitiveMultiValueInput = (props) => {
110
114
  } }));
111
115
  };
112
116
  exports.PrimitiveMultiValueInput = PrimitiveMultiValueInput;
117
+ const SymbolToIcon = (props) => {
118
+ switch (props.symbol) {
119
+ case '=':
120
+ return react_1.default.createElement(icons_1.Icon, { name: "equals" });
121
+ case '!=':
122
+ return react_1.default.createElement(icons_1.Icon, { name: "not-equal" });
123
+ case '>':
124
+ return react_1.default.createElement(icons_1.Icon, { name: "greater-than" });
125
+ case '>=':
126
+ return react_1.default.createElement(icons_1.Icon, { name: "greater-than-or-equal" });
127
+ case '<':
128
+ return react_1.default.createElement(icons_1.Icon, { name: "less-than" });
129
+ case '<=':
130
+ return react_1.default.createElement(icons_1.Icon, { name: "less-than-or-equal" });
131
+ default:
132
+ return react_1.default.createElement(react_1.default.Fragment, null, props.symbol);
133
+ }
134
+ };
113
135
  const ExpressionSelector = (props) => {
114
136
  var _a;
115
137
  const { getExpressions } = (0, QueryBuilder_1.useQueryBuilderContext)();
116
138
  const expressions = props.dataType ? getExpressions(props.dataType) : [];
117
- return (react_1.default.createElement(DropdownButton_1.default, { "data-id": "expression-selector", "data-value": props.value, variant: "raised", columns: ['label'], items: expressions.map((expression) => ({
118
- label: (0, mapQlPredicateToExpression_1.getQlPredicateSymbol)(expression),
139
+ return (react_1.default.createElement(DropdownButton_1.default, { "data-id": "expression-selector", "data-value": props.value, variant: "raised", tone: 'accent', columns: ['label'], items: expressions.map((expression) => ({
140
+ label: react_1.default.createElement(SymbolToIcon, { symbol: (0, mapQlPredicateToExpression_1.getQlPredicateSymbol)(expression) }),
119
141
  onClick: () => {
120
142
  if (expression !== props.value) {
121
143
  props.onExpressionChange(expression);
122
144
  }
123
145
  },
124
- })) }, (_a = (0, mapQlPredicateToExpression_1.getQlPredicateSymbol)(props.value)) !== null && _a !== void 0 ? _a : 'Select Operator'));
146
+ })) },
147
+ react_1.default.createElement(SymbolToIcon, { symbol: (_a = (0, mapQlPredicateToExpression_1.getQlPredicateSymbol)(props.value)) !== null && _a !== void 0 ? _a : 'Select Operator' })));
125
148
  };
126
149
  exports.ExpressionSelector = ExpressionSelector;
127
150
  const CombinatorSelector = (props) => {
@@ -32,6 +32,7 @@ function ExpressionEditor(props) {
32
32
  const { type, module } = props;
33
33
  const [data, setData] = (0, react_1.useState)(props.initialData);
34
34
  const [showColumnIds, setShowColumnIds] = (0, react_1.useState)(false);
35
+ const [inlineQuery, setInlineQuery] = (0, react_1.useState)(false);
35
36
  const [showNamedQueries, setShowNamedQueries] = (0, react_1.useState)(false);
36
37
  const baseClassName = `ab-ExpressionEditor`;
37
38
  const [selectedFunction, setSelectedFunction] = (0, react_1.useState)(null);
@@ -94,12 +95,8 @@ function ExpressionEditor(props) {
94
95
  setData(updateColValue(data, column, new Date(e.target.value)));
95
96
  }, style: { width: '100%' }, disabled: column.readOnly })) : column.dataType === 'Boolean' ? (React.createElement(CheckBox_1.CheckBox, { "data-name": "column-input", "data-value": column.columnId, checked: getColValue(column), onChange: (checked) => setData(updateColValue(data, column, checked)), disabled: column.readOnly })) : null))))));
96
97
  const namedQueries = (React.createElement(rebass_1.Flex, { flexDirection: "column", alignItems: "start", style: { marginTop: 2 } },
97
- React.createElement(CheckBox_1.CheckBox, { checked: showColumnIds, onChange: (checked) => setShowColumnIds(checked), style: {
98
- float: 'right',
99
- margin: 0,
100
- paddingTop: 'var(--ab-space-1)',
101
- paddingBottom: 'var(--ab-space-1)',
102
- } }, 'Show Column IDs'),
98
+ React.createElement(CheckBox_1.CheckBox, { checked: showColumnIds, onChange: (checked) => setShowColumnIds(checked) }, "Show Column IDs"),
99
+ React.createElement(CheckBox_1.CheckBox, { checked: inlineQuery, onChange: (checked) => setInlineQuery(checked) }, "Inline Query"),
103
100
  props.namedQueries.map((namedQuery) => (React.createElement(rebass_1.Flex, { key: namedQuery.Uuid, flexDirection: "column", alignItems: "start", style: {
104
101
  padding: 3,
105
102
  marginTop: 'var(--ab-space-2)',
@@ -110,7 +107,7 @@ function ExpressionEditor(props) {
110
107
  React.createElement(EditorButton_1.default, { width: "100%", height: "100%", style: {
111
108
  background: 'var(--ab-color-primary)',
112
109
  cursor: 'grab',
113
- }, data: `QUERY("${namedQuery.Name}")`, "data-name": "column", icon: "drag" },
110
+ }, data: inlineQuery ? namedQuery.BooleanExpression : `QUERY("${namedQuery.Name}")`, "data-name": "column", icon: "drag" },
114
111
  React.createElement(rebass_1.Flex, { flexDirection: "column", alignItems: "start" }, namedQuery.Name)),
115
112
  React.createElement(rebass_1.Flex, { alignItems: "start", style: {
116
113
  padding: 5,
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ type InputGroupProps<T extends React.ComponentType<any>> = {
3
+ Component?: T;
4
+ children: React.ReactNode;
5
+ } & React.ComponentProps<T>;
6
+ export declare const InputGroup: <T extends React.ComponentType<any>>({ Component, children, ...rest }: InputGroupProps<T>) => JSX.Element;
7
+ export {};
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.InputGroup = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const React = tslib_1.__importStar(require("react"));
6
+ const InputGroup = (_a) => {
7
+ var _b;
8
+ var { Component = 'div', children } = _a, rest = tslib_1.__rest(_a, ["Component", "children"]);
9
+ const Comp = Component;
10
+ return (React.createElement(Comp, Object.assign({}, rest, { className: `ab-cmp-input-group ${(_b = rest.className) !== null && _b !== void 0 ? _b : ''}` }), children));
11
+ };
12
+ exports.InputGroup = InputGroup;
@@ -0,0 +1 @@
1
+ export * from './InputGroup';
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./InputGroup"), exports);
@@ -4,6 +4,7 @@ exports.getConstrainRect = exports.getConstrainElement = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const React = tslib_1.__importStar(require("react"));
6
6
  const react_1 = require("react");
7
+ const debounce_1 = tslib_1.__importDefault(require("lodash/debounce"));
7
8
  const batchUpdate_1 = tslib_1.__importDefault(require("../utils/batchUpdate"));
8
9
  const selectParent_1 = tslib_1.__importDefault(require("../utils/selectParent"));
9
10
  const useProperty_1 = tslib_1.__importDefault(require("../utils/useProperty"));
@@ -72,7 +73,11 @@ const OverlayTrigger = React.forwardRef((props, ref) => {
72
73
  const overlayRef = (0, react_1.useRef)(null);
73
74
  const [visible, doSetVisible] = (0, useProperty_1.default)(props, 'visible', false);
74
75
  const hideTimeoutRef = (0, react_1.useRef)(null);
75
- const setVisible = React.useCallback((visible) => {
76
+ const setVisible = React.useCallback(
77
+ // visible state may quickly change from true -> false -> true
78
+ // when moving the mouse cursor from the trigger to the overlay
79
+ // for this case we debounce the visible change for a very small amount of time
80
+ (0, debounce_1.default)((visible) => {
76
81
  onVisibleChange === null || onVisibleChange === void 0 ? void 0 : onVisibleChange(visible);
77
82
  if (!visible) {
78
83
  hideTimeoutRef.current = setTimeout(() => {
@@ -86,7 +91,7 @@ const OverlayTrigger = React.forwardRef((props, ref) => {
86
91
  hideTimeoutRef.current = null;
87
92
  }
88
93
  doSetVisible(true);
89
- }, []);
94
+ }, 50), []);
90
95
  const prevVisible = (0, usePrevious_1.default)(visible, false);
91
96
  ensurePortalElement();
92
97
  const onShow = React.useCallback((event) => {
@@ -17,14 +17,13 @@ export type SelectProps<SelectValue extends unknown, IsMulti extends boolean = f
17
17
  placeholder?: string;
18
18
  'data-name'?: string;
19
19
  'data-id'?: string;
20
- rederSingleValue?: (option: SelectOption<SelectValue>) => React.ReactNode;
20
+ renderSingleValue?: (option: SelectOption<SelectValue>) => React.ReactNode;
21
21
  className?: string;
22
22
  isLoding?: boolean;
23
23
  onFocus?: () => void;
24
24
  accessLevel?: AccessLevel;
25
25
  style?: React.CSSProperties;
26
26
  onInputChange?: (value: string) => void;
27
- variant?: 'default' | 'raised';
28
27
  size?: 'small' | 'normal';
29
28
  isCreatable?: boolean;
30
29
  };
@@ -6,6 +6,7 @@ const date_fns_1 = require("date-fns");
6
6
  const React = tslib_1.__importStar(require("react"));
7
7
  const react_select_1 = tslib_1.__importStar(require("react-select"));
8
8
  const creatable_1 = tslib_1.__importDefault(require("react-select/creatable"));
9
+ const icons_1 = require("../icons");
9
10
  const commonStyles = ({ isFocused, isDisabled, }) => {
10
11
  return {
11
12
  color: 'var(--ab-cmp-input__color)',
@@ -71,6 +72,18 @@ const Select = function (props) {
71
72
  };
72
73
  }, []);
73
74
  const SelectComponent = props.isCreatable ? creatable_1.default : react_select_1.default;
75
+ const ClearIndicator = React.useMemo(() => {
76
+ return (clearIndicatorProps) => {
77
+ return (React.createElement(react_select_1.components.ClearIndicator, Object.assign({}, clearIndicatorProps),
78
+ React.createElement(icons_1.Icon, { name: "close" })));
79
+ };
80
+ }, []);
81
+ const DropdownIndicator = React.useMemo(() => {
82
+ return (props) => {
83
+ return (React.createElement(react_select_1.components.DropdownIndicator, Object.assign({}, props),
84
+ React.createElement(icons_1.Icon, { name: "triangle-down", style: { height: 20, width: 20 } })));
85
+ };
86
+ }, []);
74
87
  return (React.createElement(SelectComponent, { onInputChange: props.onInputChange, onFocus: props.onFocus, isLoading: props.isLoding, options: props.options, className: props.className, isDisabled: disabled, isMulti: props.isMulti, value: selectedOption, menuPosition: (_g = props.menuPosition) !== null && _g !== void 0 ? _g : 'absolute',
75
88
  // This needed so the menu is not clipped by overflow: hidden
76
89
  menuPortalTarget: document.body, isClearable: props.isClearable, onChange: (option) => {
@@ -84,10 +97,12 @@ const Select = function (props) {
84
97
  SelectContainer,
85
98
  ValueContainer,
86
99
  SingleValue: (singleValueProps) => {
87
- return (React.createElement(react_select_1.components.SingleValue, Object.assign({}, singleValueProps), props.rederSingleValue
88
- ? props.rederSingleValue(selectedOption)
100
+ return (React.createElement(react_select_1.components.SingleValue, Object.assign({}, singleValueProps), props.renderSingleValue
101
+ ? props.renderSingleValue(selectedOption)
89
102
  : singleValueProps.children));
90
103
  },
104
+ ClearIndicator,
105
+ DropdownIndicator,
91
106
  },
92
107
  /**
93
108
  * Using styles is the preferred way to style react-select.
@@ -138,9 +153,7 @@ const Select = function (props) {
138
153
  state;
139
154
  return Object.assign(Object.assign(Object.assign({}, baseStyle), commonStyles(state)), {
140
155
  // height: 30,
141
- minHeight: props.size === 'small' ? 0 : 32, boxShadow: state.isFocused ? 'var(--ab-cmp-select-focused__box-shadow)' : 'none', outline: state.isFocused ? 'var(--ab-cmp-select-focused__outline)' : 'none', border: props.variant && props.variant === 'raised'
142
- ? '1px solid transparent'
143
- : 'var(--ab-cmp-select__border)', '&:hover': {
156
+ minHeight: props.size === 'small' ? 0 : 32, boxShadow: state.isFocused ? 'var(--ab-cmp-select-focused__box-shadow)' : 'none', outline: state.isFocused ? 'var(--ab-cmp-select-focused__outline)' : 'none', border: 'var(--ab-cmp-select__border)', borderRadius: 'var(--ab-cmp-select__border-radius)', '&:hover': {
144
157
  border: 'var(--ab-cmp-select__border)',
145
158
  } });
146
159
  },
package/src/types.d.ts CHANGED
@@ -127,7 +127,8 @@ export type { GridFilterAppliedInfo } from './Api/Events/GridFilterApplied';
127
127
  export type { GridSortedInfo, AdaptableSortState } from './Api/Events/GridSorted';
128
128
  export type { AdaptableSearchState } from './Api/Events/AdaptableSearchState';
129
129
  export type { DataSetSelectedInfo } from './Api/Events/DataSetSelected';
130
- export type { SelectionChangedInfo } from './Api/Events/SelectionChanged';
130
+ export type { CellSelectionChangedInfo } from './Api/Events/CellSelectionChanged';
131
+ export type { RowSelectionChangedInfo } from './Api/Events/RowSelectionChanged';
131
132
  export type { AdaptableStateReloadedInfo } from './Api/Events/AdaptableStateReloaded';
132
133
  export type { ThemeChangedInfo } from './Api/Events/ThemeChanged';
133
134
  export type { ThemeEditedInfo } from './Api/Events/ThemeEdited';
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "17.0.0-canary.9";
1
+ declare const _default: "17.0.1";
2
2
  export default _default;
package/version.js CHANGED
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = '17.0.0-canary.9'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
3
+ exports.default = '17.0.1'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
@@ -1,16 +0,0 @@
1
- import { SelectedCellInfo } from '../../PredefinedConfig/Selection/SelectedCellInfo';
2
- import { SelectedRowInfo } from '../../PredefinedConfig/Selection/SelectedRowInfo';
3
- import { BaseEventInfo } from './BaseEventInfo';
4
- /**
5
- * Event Info published by SelectionChanged event
6
- */
7
- export interface SelectionChangedInfo extends BaseEventInfo {
8
- /**
9
- * Details of cells currently selected in the Grid
10
- */
11
- selectedCellInfo: SelectedCellInfo;
12
- /**
13
- * Details of rows currently selected in the Grid
14
- */
15
- selectedRowInfo: SelectedRowInfo;
16
- }