@adaptabletools/adaptable 22.1.0-canary.1 → 22.1.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/index.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.2.3 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  @layer adaptable.reset, adaptable.theming, adaptable.components, adaptable.utilities, adaptable.theme;
4
4
  @layer adaptable.reset {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptabletools/adaptable",
3
- "version": "22.1.0-canary.1",
3
+ "version": "22.1.0",
4
4
  "description": "Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements",
5
5
  "keywords": [
6
6
  "web-components",
@@ -25,8 +25,11 @@ export class ColumnFilterModule extends AdaptableModuleBase {
25
25
  .getDataService()
26
26
  .on('CellDataChanged', (cellDataChangedInfo) => {
27
27
  if (!cellDataChangedInfo.preventEdit) {
28
- const changedColumnId = cellDataChangedInfo.column.columnId;
29
- this.api.filterApi.columnFilterApi.resetFilterValues(changedColumnId);
28
+ const changedColumn = cellDataChangedInfo.column;
29
+ if (!changedColumn.filterable) {
30
+ return;
31
+ }
32
+ this.api.filterApi.columnFilterApi.resetFilterValues(changedColumn.columnId);
30
33
  }
31
34
  });
32
35
  // we reset the filter cache on sort change, because we might have columns
@@ -104,17 +104,17 @@ export const RowSelectionSection = (props) => {
104
104
  !rowSelection && React.createElement(HelpBlock, null, "There is no Row Selection configured for this Layout"),
105
105
  rowSelection && (React.createElement(React.Fragment, null,
106
106
  React.createElement(Tabs, { className: "twa:mt-2" },
107
- React.createElement(Tabs.Tab, null, "Row Selection Column"),
107
+ React.createElement(Tabs.Tab, null, "Row Selection Column Checkboxes"),
108
108
  React.createElement(Tabs.Content, null,
109
109
  React.createElement(Flex, { flexDirection: "row", className: "twa:gap-6" },
110
- React.createElement(CheckBox, { className: "twa:flex-1", checked: rowSelection.Checkboxes ?? true, onChange: (checked) => updateRowSelection({ Checkboxes: checked }) }, "Show Row Selection Checkboxes"),
111
- mode === 'multiRow' && (React.createElement(CheckBox, { className: "twa:flex-1", checked: rowSelection.HeaderCheckbox ?? true, onChange: (checked) => updateRowSelection({ HeaderCheckbox: checked }) }, "Show Header Checkbox (to enable Select All)"))))),
110
+ React.createElement(CheckBox, { className: "twa:flex-1", checked: rowSelection.Checkboxes ?? true, onChange: (checked) => updateRowSelection({ Checkboxes: checked }) }, "Checkboxes in Column Cells"),
111
+ mode === 'multiRow' && (React.createElement(CheckBox, { className: "twa:flex-1", checked: rowSelection.HeaderCheckbox ?? true, onChange: (checked) => updateRowSelection({ HeaderCheckbox: checked }) }, "Checkbox in Column Header (to enable Select All)"))))),
112
112
  (rowSelection.Checkboxes ?? true) && (React.createElement(Tabs, { className: "twa:mt-2" },
113
- React.createElement(Tabs.Tab, null, "Row Grouping"),
113
+ React.createElement(Tabs.Tab, null, "Row Grouping Selection Checkboxes"),
114
114
  React.createElement(Tabs.Content, null,
115
115
  React.createElement(RadioGroup, { orientation: "vertical", value: rowSelection.CheckboxInGroupColumn ?? false, name: "checkboxLocation", onRadioChange: (value) => updateRowSelection({ CheckboxInGroupColumn: value }) },
116
- React.createElement(Radio, { value: false }, "Show Row Selection Checkbox in dedicated Selection Column"),
117
- React.createElement(Radio, { value: true }, "Show Row Selection Checkbox in Row Grouped Column"))))),
116
+ React.createElement(Radio, { value: false }, "Display in dedicated Selection Column"),
117
+ React.createElement(Radio, { value: true }, "Display in Row Grouped Column"))))),
118
118
  React.createElement(Tabs, { className: "twa:mt-2" },
119
119
  React.createElement(Tabs.Tab, null, "Row Click Selection (when user clicks on Row outside of Selection Checkbox)"),
120
120
  React.createElement(Tabs.Content, null,
package/src/env.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export default {
2
2
  NEXT_PUBLIC_INFINITE_TABLE_LICENSE_KEY: "StartDate=2021-06-29|EndDate=2030-01-01|Owner=Adaptable|Type=distribution|TS=1624971462479|C=137829811,1004007071,2756196225,1839832928,3994409405,636616862" || '',
3
- PUBLISH_TIMESTAMP: 1776672459689 || Date.now(),
4
- VERSION: "22.1.0-canary.1" || '--current-version--',
3
+ PUBLISH_TIMESTAMP: 1776765136447 || Date.now(),
4
+ VERSION: "22.1.0" || '--current-version--',
5
5
  };