@adaptabletools/adaptable-cjs 22.0.0-canary.12 → 22.0.0-canary.13

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 (42) hide show
  1. package/index.css +3 -0
  2. package/index.css.map +1 -1
  3. package/index.d.ts +8 -8
  4. package/index.js +8 -8
  5. package/package.json +1 -1
  6. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +2 -2
  7. package/src/AdaptableState/Common/AdaptableColumn.d.ts +3 -3
  8. package/src/AdaptableState/InitialState.d.ts +1 -1
  9. package/src/Api/ColumnApi.d.ts +1 -1
  10. package/src/Api/Implementation/ColumnApiImpl.d.ts +1 -1
  11. package/src/Api/Implementation/ColumnApiImpl.js +4 -4
  12. package/src/Api/Internal/ColumnInternalApi.d.ts +1 -1
  13. package/src/Api/Internal/ColumnInternalApi.js +4 -2
  14. package/src/Strategy/FormatColumnModule.js +2 -2
  15. package/src/Strategy/StyledColumnModule.js +14 -6
  16. package/src/Strategy/Utilities/FormatColumn/{getFormatColumnSettingsTargetItems.d.ts → getFormatColumnRowTargetItems.d.ts} +1 -1
  17. package/src/Strategy/Utilities/FormatColumn/getFormatColumnRowTargetItems.js +26 -0
  18. package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.js +5 -13
  19. package/src/Utilities/getScopeViewItems.js +1 -1
  20. package/src/View/Components/ValueSelector/index.js +7 -2
  21. package/src/View/Export/Wizard/NewReportWizard.js +8 -8
  22. package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +19 -10
  23. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +1 -1
  24. package/src/View/FormatColumn/Wizard/FormatColumnRowScopeWizardSection.d.ts +8 -0
  25. package/src/View/FormatColumn/Wizard/FormatColumnRowScopeWizardSection.js +86 -0
  26. package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +22 -61
  27. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +22 -10
  28. package/src/View/Layout/Wizard/sections/ColumnsSection.js +1 -1
  29. package/src/View/StyledColumn/Wizard/StyledColumnBadgeRowsSection.d.ts +8 -0
  30. package/src/View/StyledColumn/Wizard/{StyledColumnWizardSettingsSection.js → StyledColumnBadgeRowsSection.js} +22 -22
  31. package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +10 -11
  32. package/src/agGrid/AgGridAdapter.js +4 -4
  33. package/src/env.js +2 -2
  34. package/src/metamodel/adaptable.metamodel.js +1 -1
  35. package/src/migration/VersionUpgrade22.js +8 -0
  36. package/tsconfig.cjs.tsbuildinfo +1 -1
  37. package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsTargetItems.js +0 -16
  38. package/src/View/FormatColumn/Wizard/FormatColumnTargetWizardSection.d.ts +0 -8
  39. package/src/View/FormatColumn/Wizard/FormatColumnTargetWizardSection.js +0 -37
  40. package/src/View/StyledColumn/Wizard/StyledColumnWizardSettingsSection.d.ts +0 -8
  41. /package/src/View/FormatColumn/Wizard/{FormatColumnScopeWizardSection.d.ts → FormatColumnColumnScopeWizardSection.d.ts} +0 -0
  42. /package/src/View/FormatColumn/Wizard/{FormatColumnScopeWizardSection.js → FormatColumnColumnScopeWizardSection.js} +0 -0
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getFormatColumnRowTargetItems = void 0;
4
+ const getFormatColumnRowTargetItems = (formatColumn) => {
5
+ let values = [];
6
+ if (formatColumn.RowScope) {
7
+ if (!formatColumn.RowScope.ExcludeDataRows) {
8
+ values.push('Data');
9
+ }
10
+ if (!formatColumn.RowScope.ExcludeGroupRows) {
11
+ values.push('Group');
12
+ }
13
+ if (!formatColumn.RowScope.ExcludeSummaryRows) {
14
+ values.push('Summary');
15
+ }
16
+ if (!formatColumn.RowScope.ExcludeTotalRows) {
17
+ values.push('Total');
18
+ }
19
+ }
20
+ values = values.filter(Boolean);
21
+ return {
22
+ name: 'Rows',
23
+ values: values.length > 0 ? values : ['-'],
24
+ };
25
+ };
26
+ exports.getFormatColumnRowTargetItems = getFormatColumnRowTargetItems;
@@ -3,19 +3,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getFormatColumnSettingsViewItems = void 0;
4
4
  const getFormatColumnSettingsViewItems = (formatColumn) => {
5
5
  let values = [];
6
- if (formatColumn.RowScope) {
7
- if (formatColumn.RowScope.ExcludeDataRows) {
8
- values.push('Exclude Data Rows');
9
- }
10
- if (formatColumn.RowScope.ExcludeGroupRows) {
11
- values.push('Exclude Group Rows');
12
- }
13
- if (formatColumn.RowScope.ExcludeSummaryRows) {
14
- values.push('Exclude Summary Rows');
15
- }
16
- if (formatColumn.RowScope.ExcludeTotalRows) {
17
- values.push('Exclude Total Rows');
18
- }
6
+ if (!formatColumn.Target || formatColumn.Target === 'cell') {
7
+ values.push('Target: Column Cells');
8
+ }
9
+ else {
10
+ values.push('Target: Column Header');
19
11
  }
20
12
  if (formatColumn.ColumnGroupScope) {
21
13
  values.push(`Column Groups: ${formatColumn.ColumnGroupScope === 'Both' ? 'Always' : formatColumn.ColumnGroupScope}`);
@@ -21,7 +21,7 @@ const getScopeViewItems = (scope, api) => {
21
21
  values = scope.ColumnTypes;
22
22
  }
23
23
  return {
24
- label: 'Scope',
24
+ label: 'Columns',
25
25
  name: 'Target',
26
26
  values,
27
27
  };
@@ -164,7 +164,12 @@ const renderSelectionSection = (props) => {
164
164
  const { value, options, disabled, singleSelect, toLabel, toIdentifier, } = props;
165
165
  const selectionBox = (React.createElement(Flex_1.Box, { className: "twa:flex twa:flex-col twa:gap-2 twa:py-2" },
166
166
  React.createElement(Flex_1.Box, { className: (0, clsx_1.default)('twa:flex twa:flex-row', 'twa:border-b twa:border-primarydark/30 twa:rounded-standard') },
167
- React.createElement(CheckBox_1.CheckBox, { className: "twa:ml-0.5 twa:font-bold", checked: !value.length ? false : value.length === options.length ? true : null, onChange: (checked) => {
167
+ singleSelect ? (React.createElement(Flex_1.Box, { className: "twa:flex twa:flex-row twa:text-3 twa:font-normal" },
168
+ "(",
169
+ value.length,
170
+ " of ",
171
+ options.length,
172
+ " selected)")) : (React.createElement(CheckBox_1.CheckBox, { className: "twa:ml-0.5 twa:font-bold", checked: !value.length ? false : value.length === options.length ? true : null, onChange: (checked) => {
168
173
  if (checked) {
169
174
  props.onSelectAll();
170
175
  }
@@ -179,7 +184,7 @@ const renderSelectionSection = (props) => {
179
184
  value.length,
180
185
  " of ",
181
186
  options.length,
182
- " selected)"))),
187
+ " selected)")))),
183
188
  React.createElement("div", { className: "twa:flex-1" }),
184
189
  React.createElement(Flex_1.Box, { className: "twa:mr-2 twa:text-2 twa:font-normal" }, props.showOnlySelectedCheckbox))));
185
190
  return React.createElement(Flex_1.Box, { className: (0, clsx_1.default)(`${baseClassName}__header `) }, selectionBox);
@@ -39,6 +39,14 @@ const NewReportWizard = (props) => {
39
39
  props.onFinishWizard(report);
40
40
  };
41
41
  return (React.createElement(OnePageAdaptableWizard_1.OnePageAdaptableWizard, { defaultCurrentSectionName: props.defaultCurrentSectionName, moduleInfo: props.moduleInfo, data: report, onHide: props.onCloseWizard, onFinish: handleFinish, sections: [
42
+ {
43
+ title: 'Name',
44
+ details: 'Enter the name of the Report',
45
+ isValid: ReportNameWizardSection_1.isValidReportName,
46
+ renderSummary: ReportNameWizardSection_1.renderReportNameSummary,
47
+ render: () => (React.createElement(Flex_1.Box, { className: "twa:p-2" },
48
+ React.createElement(ReportNameWizardSection_1.ReportNameWizardSection, { onChange: setReport }))),
49
+ },
42
50
  {
43
51
  title: 'Columns',
44
52
  details: 'Choose the Columns you want to include in the Report',
@@ -52,14 +60,6 @@ const NewReportWizard = (props) => {
52
60
  renderSummary: ReportRowsWizardSection_1.renderReportRowsSummary,
53
61
  render: () => React.createElement(ReportRowsWizardSection_1.ReportRowsWizardSection, { onChange: setReport }),
54
62
  },
55
- {
56
- title: 'Name',
57
- details: 'Enter the name of the Report',
58
- isValid: ReportNameWizardSection_1.isValidReportName,
59
- renderSummary: ReportNameWizardSection_1.renderReportNameSummary,
60
- render: () => (React.createElement(Flex_1.Box, { className: "twa:p-2" },
61
- React.createElement(ReportNameWizardSection_1.ReportNameWizardSection, { onChange: setReport }))),
62
- },
63
63
  {
64
64
  details: 'Select Report Tags',
65
65
  title: 'Tags',
@@ -86,15 +86,12 @@ const FlashingAlertSettingsWizardSection = (props) => {
86
86
  React.createElement(Tabs_1.Tabs.Content, null,
87
87
  React.createElement(FormLayout_1.default, null,
88
88
  React.createElement(FormLayout_1.FormRow, { label: "Name" },
89
- React.createElement(Input_1.default, { "data-name": "flashing-cell-name", className: "twa:flex-1 twa:mr-3", onChange: handleNameChange, placeholder: "Enter Name", value: flashingCell.Name ?? '' })),
90
- React.createElement(FormLayout_1.FormRow, { label: "Flash Target" },
91
- React.createElement(CheckBox_1.CheckBox, { "data-name": "flashing-target", onChange: (checked) => handleTargetChange('cell', checked), className: "twa:mr-3", checked: flashingCell?.FlashTarget === 'cell' ||
92
- flashingCell?.FlashTarget?.includes?.('cell'), tabIndex: -1 }, "Cell"),
93
- React.createElement(CheckBox_1.CheckBox, { "data-name": "flashing-target-row", className: "twa:mr-3", onChange: (checked) => handleTargetChange('row', checked), checked: flashingCell?.FlashTarget === 'row' ||
94
- flashingCell?.FlashTarget?.includes?.('row'), tabIndex: -1 }, "Row"),
95
- React.createElement(CheckBox_1.CheckBox, { "data-name": "flashing-target-aggFuncCell", onChange: (checked) => handleTargetChange('aggFuncCell', checked), checked: flashingCell?.FlashTarget === 'aggFuncCell' ||
96
- flashingCell?.FlashTarget?.includes?.('aggFuncCell'), tabIndex: -1 }, "Aggregated Function Cell")),
97
- React.createElement(FormLayout_1.FormRow, { label: "Duration" },
89
+ React.createElement(Input_1.default, { "data-name": "flashing-cell-name", className: "twa:flex-1 twa:mr-3", onChange: handleNameChange, placeholder: "Enter Name", value: flashingCell.Name ?? '' }))))),
90
+ React.createElement(Tabs_1.Tabs, { autoFocus: false, className: "twa:p-2" },
91
+ React.createElement(Tabs_1.Tabs.Tab, null, "Flash Duration"),
92
+ React.createElement(Tabs_1.Tabs.Content, null,
93
+ React.createElement(FormLayout_1.default, null,
94
+ React.createElement(FormLayout_1.FormRow, { label: "" },
98
95
  React.createElement(Flex_1.Flex, { alignItems: "center" },
99
96
  React.createElement(CheckBox_1.CheckBox, { "data-name": "duration-always", checked: duration === 'always', onChange: (checked) => handleTypeChange(checked ? 'always' : 'number'), className: "twa:mr-4", tabIndex: -1 }, "Always"),
100
97
  duration !== 'always' && (React.createElement(React.Fragment, null,
@@ -102,6 +99,18 @@ const FlashingAlertSettingsWizardSection = (props) => {
102
99
  const value = event.target.value;
103
100
  setDuration(isNaN(Number(value)) ? 500 : Number(value));
104
101
  } }),
105
- React.createElement(Flex_1.Box, { className: "twa:text-2" }, "ms"))))))))));
102
+ React.createElement(Flex_1.Box, { className: "twa:text-2" }, "ms")))))))),
103
+ ' ',
104
+ React.createElement(Tabs_1.Tabs, { autoFocus: false, className: "twa:p-2" },
105
+ React.createElement(Tabs_1.Tabs.Tab, null, "Flash Target"),
106
+ React.createElement(Tabs_1.Tabs.Content, null,
107
+ React.createElement(FormLayout_1.default, null,
108
+ React.createElement(FormLayout_1.FormRow, { label: "" },
109
+ React.createElement(CheckBox_1.CheckBox, { "data-name": "flashing-target", onChange: (checked) => handleTargetChange('cell', checked), className: "twa:mr-3", checked: flashingCell?.FlashTarget === 'cell' ||
110
+ flashingCell?.FlashTarget?.includes?.('cell'), tabIndex: -1 }, "Cell"),
111
+ React.createElement(CheckBox_1.CheckBox, { "data-name": "flashing-target-row", className: "twa:mr-3", onChange: (checked) => handleTargetChange('row', checked), checked: flashingCell?.FlashTarget === 'row' ||
112
+ flashingCell?.FlashTarget?.includes?.('row'), tabIndex: -1 }, "Row"),
113
+ React.createElement(CheckBox_1.CheckBox, { "data-name": "flashing-target-aggFuncCell", onChange: (checked) => handleTargetChange('aggFuncCell', checked), checked: flashingCell?.FlashTarget === 'aggFuncCell' ||
114
+ flashingCell?.FlashTarget?.includes?.('aggFuncCell'), tabIndex: -1 }, "Aggregated Function Cell")))))));
106
115
  };
107
116
  exports.FlashingAlertSettingsWizardSection = FlashingAlertSettingsWizardSection;
@@ -77,7 +77,7 @@ const FlashingCellWizard = (props) => {
77
77
  isValid: NewScopeComponent_1.isScopeValid,
78
78
  render: () => React.createElement(FlashingCellScopeWizardSection_1.FlashingAlertScopeWizardSection, { onChange: setFlashingCell }),
79
79
  renderSummary: BaseAlertScopeWizardSection_1.renderScopeSummary,
80
- title: 'Scope',
80
+ title: 'Columns',
81
81
  },
82
82
  {
83
83
  details: 'Build the Rules for when Cells should Flash',
@@ -0,0 +1,8 @@
1
+ import * as React from 'react';
2
+ import { FormatColumn } from '../../../AdaptableState/FormatColumnState';
3
+ type FormatColumnRowScopeWizardSectionProps = {
4
+ onChange: (data: FormatColumn) => void;
5
+ };
6
+ export declare const renderFormatColumnRowScopeSummary: (data: FormatColumn) => React.JSX.Element;
7
+ export declare const FormatColumnRowScopeWizardSection: (props: FormatColumnRowScopeWizardSectionProps) => React.JSX.Element;
8
+ export {};
@@ -0,0 +1,86 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FormatColumnRowScopeWizardSection = exports.renderFormatColumnRowScopeSummary = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const React = tslib_1.__importStar(require("react"));
6
+ const FormLayout_1 = tslib_1.__importStar(require("../../../components/FormLayout"));
7
+ const CheckBox_1 = require("../../../components/CheckBox");
8
+ const OnePageAdaptableWizard_1 = require("../../Wizard/OnePageAdaptableWizard");
9
+ const Tag_1 = require("../../../components/Tag");
10
+ const Flex_1 = require("../../../components/Flex");
11
+ const Tabs_1 = require("../../../components/Tabs");
12
+ const renderFormatColumnRowScopeSummary = (data) => {
13
+ return (React.createElement(Flex_1.Box, { className: "twa:p-2" },
14
+ React.createElement(Flex_1.Box, { className: "twa:mt-3" },
15
+ "Data Rows ",
16
+ React.createElement(Tag_1.Tag, null, data.RowScope?.ExcludeDataRows ? 'no' : 'yes')),
17
+ ' ',
18
+ React.createElement(Flex_1.Box, { className: "twa:mt-3" },
19
+ "Group Rows ",
20
+ React.createElement(Tag_1.Tag, null, data.RowScope?.ExcludeGroupRows ? 'no' : 'yes')),
21
+ React.createElement(Flex_1.Box, { className: "twa:mt-3" },
22
+ "Summary Rows ",
23
+ React.createElement(Tag_1.Tag, null, data.RowScope?.ExcludeSummaryRows ? 'no' : 'yes')),
24
+ React.createElement(Flex_1.Box, { className: "twa:mt-3" },
25
+ "Total Rows ",
26
+ React.createElement(Tag_1.Tag, null, data.RowScope?.ExcludeTotalRows ? 'no' : 'yes'))));
27
+ };
28
+ exports.renderFormatColumnRowScopeSummary = renderFormatColumnRowScopeSummary;
29
+ const FormatColumnRowScopeWizardSection = (props) => {
30
+ const { data } = (0, OnePageAdaptableWizard_1.useOnePageAdaptableWizardContext)();
31
+ const onExcludeDataRowsChanged = (includeDataRows) => {
32
+ props.onChange({
33
+ ...data,
34
+ RowScope: {
35
+ ...data.RowScope,
36
+ ExcludeDataRows: !includeDataRows,
37
+ },
38
+ });
39
+ };
40
+ const onExcludeGroupedRowsChanged = (includeGroupedRows) => {
41
+ props.onChange({
42
+ ...data,
43
+ RowScope: {
44
+ ...data.RowScope,
45
+ ExcludeGroupRows: !includeGroupedRows,
46
+ },
47
+ });
48
+ };
49
+ const onExcludeSummaryRowsChanged = (includeSummaryRows) => {
50
+ props.onChange({
51
+ ...data,
52
+ RowScope: {
53
+ ...data.RowScope,
54
+ ExcludeSummaryRows: !includeSummaryRows,
55
+ },
56
+ });
57
+ };
58
+ const onExcludeTotalRowsChanged = (includeTotalRows) => {
59
+ props.onChange({
60
+ ...data,
61
+ RowScope: {
62
+ ...data.RowScope,
63
+ ExcludeTotalRows: !includeTotalRows,
64
+ },
65
+ });
66
+ };
67
+ return (React.createElement(Flex_1.Flex, { flexDirection: "column", style: { height: '100%' } },
68
+ React.createElement(Tabs_1.Tabs, { className: "twa:mb-3" },
69
+ React.createElement(Tabs_1.Tabs.Tab, null, "Row Types"),
70
+ React.createElement(Tabs_1.Tabs.Content, null,
71
+ React.createElement(Flex_1.Flex, { flexDirection: "row" },
72
+ React.createElement(FormLayout_1.default, null, data.Target === 'cell' && (React.createElement(React.Fragment, null,
73
+ React.createElement(FormLayout_1.FormRow, { label: "Data (leaf) Rows:" },
74
+ React.createElement(Flex_1.Flex, { alignItems: "center", className: "twa:ml-2" },
75
+ React.createElement(CheckBox_1.CheckBox, { "data-name": "include-data-rows-checkbox", checked: !data.RowScope?.ExcludeDataRows, onChange: onExcludeDataRowsChanged, className: "twa:mr-2" }))),
76
+ React.createElement(FormLayout_1.FormRow, { label: "Group Rows:" },
77
+ React.createElement(Flex_1.Flex, { alignItems: "center", className: "twa:ml-2" },
78
+ React.createElement(CheckBox_1.CheckBox, { "data-name": "include-grouped-rows-checkbox", checked: !data.RowScope?.ExcludeGroupRows, onChange: onExcludeGroupedRowsChanged, className: "twa:mr-2" }))),
79
+ React.createElement(FormLayout_1.FormRow, { label: "Summary Rows:" },
80
+ React.createElement(Flex_1.Flex, { alignItems: "center", className: "twa:ml-2" },
81
+ React.createElement(CheckBox_1.CheckBox, { "data-name": "include-summary-rows-checkbox", checked: !data.RowScope?.ExcludeSummaryRows, onChange: onExcludeSummaryRowsChanged, className: "twa:mr-2" }))),
82
+ React.createElement(FormLayout_1.FormRow, { label: "Total Rows:" },
83
+ React.createElement(Flex_1.Flex, { alignItems: "center", className: "twa:ml-2" },
84
+ React.createElement(CheckBox_1.CheckBox, { "data-name": "include-total-rows-checkbox", checked: !data.RowScope?.ExcludeTotalRows, onChange: onExcludeTotalRowsChanged, className: "twa:mr-2" })))))))))));
85
+ };
86
+ exports.FormatColumnRowScopeWizardSection = FormatColumnRowScopeWizardSection;
@@ -4,31 +4,23 @@ exports.FormatColumnSettingsWizardSection = exports.renderFormatColumnSettingsSu
4
4
  const tslib_1 = require("tslib");
5
5
  const React = tslib_1.__importStar(require("react"));
6
6
  const FormLayout_1 = tslib_1.__importStar(require("../../../components/FormLayout"));
7
- const CheckBox_1 = require("../../../components/CheckBox");
8
7
  const OnePageAdaptableWizard_1 = require("../../Wizard/OnePageAdaptableWizard");
9
8
  const Tag_1 = require("../../../components/Tag");
10
9
  const Radio_1 = tslib_1.__importStar(require("../../../components/Radio"));
11
10
  const Flex_1 = require("../../../components/Flex");
12
11
  const Tabs_1 = require("../../../components/Tabs");
13
12
  const Input_1 = tslib_1.__importDefault(require("../../../components/Input"));
13
+ const TypeRadio_1 = require("../../Wizard/TypeRadio");
14
14
  const renderFormatColumnSettingsSummary = (data) => {
15
15
  return (React.createElement(Flex_1.Box, { className: "twa:p-2" },
16
16
  React.createElement(Flex_1.Box, { className: "twa:mt-3" },
17
17
  "Name ",
18
18
  React.createElement(Tag_1.Tag, null, data.Name)),
19
19
  React.createElement(Flex_1.Box, { className: "twa:mt-3" },
20
- "Data Rows ",
21
- React.createElement(Tag_1.Tag, null, data.RowScope?.ExcludeDataRows ? 'no' : 'yes')),
20
+ "Target",
21
+ ' ',
22
+ React.createElement(Tag_1.Tag, null, !data.Target || data.Target === 'cell' ? 'Column Cells' : 'Column Header')),
22
23
  ' ',
23
- React.createElement(Flex_1.Box, { className: "twa:mt-3" },
24
- "Group Rows ",
25
- React.createElement(Tag_1.Tag, null, data.RowScope?.ExcludeGroupRows ? 'no' : 'yes')),
26
- React.createElement(Flex_1.Box, { className: "twa:mt-3" },
27
- "Summary Rows ",
28
- React.createElement(Tag_1.Tag, null, data.RowScope?.ExcludeSummaryRows ? 'no' : 'yes')),
29
- React.createElement(Flex_1.Box, { className: "twa:mt-3" },
30
- "Total Rows ",
31
- React.createElement(Tag_1.Tag, null, data.RowScope?.ExcludeTotalRows ? 'no' : 'yes')),
32
24
  React.createElement(Flex_1.Box, { className: "twa:mt-3" },
33
25
  "Apply on Column Groups:",
34
26
  ' ',
@@ -38,49 +30,22 @@ const renderFormatColumnSettingsSummary = (data) => {
38
30
  };
39
31
  exports.renderFormatColumnSettingsSummary = renderFormatColumnSettingsSummary;
40
32
  const FormatColumnSettingsWizardSection = (props) => {
41
- const { data } = (0, OnePageAdaptableWizard_1.useOnePageAdaptableWizardContext)();
42
- const onNameChange = (event) => {
43
- props.onChange({
44
- ...data,
45
- Name: event.target.value,
46
- });
47
- };
48
- const onExcludeDataRowsChanged = (ExcludeDataRows) => {
49
- props.onChange({
50
- ...data,
51
- RowScope: {
52
- ...data.RowScope,
53
- ExcludeDataRows,
54
- },
55
- });
56
- };
57
- const onExcludeGroupedRowsChanged = (ExcludeGroupedRows) => {
33
+ const { data, api } = (0, OnePageAdaptableWizard_1.useOnePageAdaptableWizardContext)();
34
+ const currentTarget = data.Target ? data.Target : 'cell';
35
+ const handleTargetChange = (target) => {
36
+ // Update the formatColumn object
58
37
  props.onChange({
59
38
  ...data,
60
- RowScope: {
61
- ...data.RowScope,
62
- ExcludeGroupRows: ExcludeGroupedRows,
63
- },
39
+ Target: target,
64
40
  });
65
41
  };
66
- const onExcludeSummaryRowsChanged = (ExcludeSummaryRows) => {
67
- props.onChange({
68
- ...data,
69
- RowScope: {
70
- ...data.RowScope,
71
- ExcludeSummaryRows,
72
- },
73
- });
74
- };
75
- const onExcludeTotalRowsChanged = (ExcludeTotalRows) => {
42
+ const onNameChange = (event) => {
76
43
  props.onChange({
77
44
  ...data,
78
- RowScope: {
79
- ...data.RowScope,
80
- ExcludeTotalRows,
81
- },
45
+ Name: event.target.value,
82
46
  });
83
47
  };
48
+ const behaviourSpellingVariant = api.internalApi.getCorrectEnglishVariant('Behaviour');
84
49
  return (React.createElement(Flex_1.Flex, { flexDirection: "column", style: { height: '100%' } },
85
50
  React.createElement(Tabs_1.Tabs, { className: "twa:mb-3" },
86
51
  React.createElement(Tabs_1.Tabs.Tab, null, "Settings"),
@@ -89,24 +54,20 @@ const FormatColumnSettingsWizardSection = (props) => {
89
54
  React.createElement(FormLayout_1.default, { className: "twa:max-w-[300px] twa:w-full" },
90
55
  React.createElement(FormLayout_1.FormRow, { label: "Name" },
91
56
  React.createElement(Input_1.default, { className: "twa:w-full", "data-name": "format-column-name", onChange: onNameChange, value: data?.Name ?? '' })))))),
57
+ React.createElement(Tabs_1.Tabs, { className: "twa:mb-3" },
58
+ React.createElement(Tabs_1.Tabs.Tab, null, "Target"),
59
+ React.createElement(Tabs_1.Tabs.Content, null,
60
+ React.createElement(Flex_1.Flex, { flexDirection: "column" },
61
+ React.createElement(TypeRadio_1.TypeRadio, { "data-name": "target-column-cell", text: 'Column Cells', description: "Column Cells are styled and formatted", checked: currentTarget === 'cell', onClick: () => handleTargetChange('cell') }),
62
+ React.createElement(TypeRadio_1.TypeRadio, { "data-name": "target-column-header", text: 'Column Header', description: "The Column Header is styled (Note: Conditions are not available for Column Headers)", checked: currentTarget === 'columnHeader', onClick: () => handleTargetChange('columnHeader') })))),
92
63
  React.createElement(Tabs_1.Tabs, null,
93
- React.createElement(Tabs_1.Tabs.Tab, null, "Configuration"),
64
+ React.createElement(Tabs_1.Tabs.Tab, null,
65
+ "Column Group ",
66
+ behaviourSpellingVariant,
67
+ " "),
94
68
  React.createElement(Tabs_1.Tabs.Content, null,
95
69
  React.createElement(Flex_1.Flex, { flexDirection: "row" },
96
70
  React.createElement(FormLayout_1.default, null,
97
- data.Target === 'cell' && (React.createElement(React.Fragment, null,
98
- React.createElement(FormLayout_1.FormRow, { label: "Exclude Data Rows:" },
99
- React.createElement(Flex_1.Flex, { alignItems: "center", className: "twa:ml-2" },
100
- React.createElement(CheckBox_1.CheckBox, { "data-name": "exclude-data-rows-checkbox", checked: data.RowScope?.ExcludeDataRows, onChange: onExcludeDataRowsChanged, className: "twa:mr-2" }))),
101
- React.createElement(FormLayout_1.FormRow, { label: "Exclude Group Rows:" },
102
- React.createElement(Flex_1.Flex, { alignItems: "center", className: "twa:ml-2" },
103
- React.createElement(CheckBox_1.CheckBox, { "data-name": "exclude-grouped-rows-checkbox", checked: data.RowScope?.ExcludeGroupRows, onChange: onExcludeGroupedRowsChanged, className: "twa:mr-2" }))),
104
- React.createElement(FormLayout_1.FormRow, { label: "Exclude Row Summaries:" },
105
- React.createElement(Flex_1.Flex, { alignItems: "center", className: "twa:ml-2" },
106
- React.createElement(CheckBox_1.CheckBox, { "data-name": "exclude-summary-rows-checkbox", checked: data.RowScope?.ExcludeSummaryRows, onChange: onExcludeSummaryRowsChanged, className: "twa:mr-2" }))),
107
- React.createElement(FormLayout_1.FormRow, { label: "Exclude Total Rows:" },
108
- React.createElement(Flex_1.Flex, { alignItems: "center", className: "twa:ml-2" },
109
- React.createElement(CheckBox_1.CheckBox, { "data-name": "exclude-total-rows-checkbox", checked: data.RowScope?.ExcludeTotalRows, onChange: onExcludeTotalRowsChanged, className: "twa:mr-2" }))))),
110
71
  React.createElement(FormLayout_1.FormRow, { label: "Apply on Column Group:" },
111
72
  React.createElement(Radio_1.RadioGroup, { value: data.ColumnGroupScope || 'Both', name: "columnGroupScope", orientation: "horizontal", onRadioChange: (columnGroupScope) => {
112
73
  props.onChange({
@@ -6,7 +6,8 @@ const React = tslib_1.__importStar(require("react"));
6
6
  const react_1 = require("react");
7
7
  const OnePageAdaptableWizard_1 = require("../../Wizard/OnePageAdaptableWizard");
8
8
  const Helper_1 = require("../../../Utilities/Helpers/Helper");
9
- const FormatColumnScopeWizardSection_1 = require("./FormatColumnScopeWizardSection");
9
+ const FormatColumnColumnScopeWizardSection_1 = require("./FormatColumnColumnScopeWizardSection");
10
+ const FormatColumnRowScopeWizardSection_1 = require("./FormatColumnRowScopeWizardSection");
10
11
  const FormatColumnStyleWizardSection_1 = require("./FormatColumnStyleWizardSection");
11
12
  const FormatColumnFormatWizardSection_1 = require("./FormatColumnFormatWizardSection");
12
13
  const AdaptableContext_1 = require("../../AdaptableContext");
@@ -21,11 +22,22 @@ const Utilities_1 = require("../../Components/EntityRulesEditor/Utilities");
21
22
  const FormatColumnRuleWizardSection_1 = require("./FormatColumnRuleWizardSection");
22
23
  const constants_1 = require("./constants");
23
24
  const ObjectExtensions_1 = require("../../../Utilities/Extensions/ObjectExtensions");
24
- const FormatColumnTargetWizardSection_1 = require("./FormatColumnTargetWizardSection");
25
25
  const Flex_1 = require("../../../components/Flex");
26
26
  const adjustDisplayFormat = (fc, api) => {
27
27
  const formatColumn = { ...fc };
28
28
  let formatDataType = (0, FormatColumnFormatWizardSection_1.getFormatDisplayTypeForScope)(formatColumn.Scope, api);
29
+ // Add RowScope and Target defaults for Format Columns that have been created in Initial State
30
+ if (!formatColumn.RowScope) {
31
+ formatColumn.RowScope = {
32
+ ExcludeDataRows: false,
33
+ ExcludeGroupRows: false,
34
+ ExcludeSummaryRows: false,
35
+ ExcludeTotalRows: false,
36
+ };
37
+ }
38
+ if (!formatColumn.Target) {
39
+ formatColumn.Target = 'cell';
40
+ }
29
41
  if (formatColumn.Target === 'columnHeader') {
30
42
  // Column Headers are always text
31
43
  formatDataType = 'text';
@@ -100,7 +112,7 @@ function FormatColumnWizard(props) {
100
112
  return (React.createElement(OnePageAdaptableWizard_1.OnePageAdaptableWizard, { defaultCurrentSectionName: props.defaultCurrentSectionName, moduleInfo: props.moduleInfo, modal: props.modal, data: formatColumn, onHide: props.onCloseWizard, onFinish: handleFinish, sections: [
101
113
  {
102
114
  title: 'Settings',
103
- details: 'Enter Name and set Additional Properties',
115
+ details: 'Enter Name and other Properties',
104
116
  isValid: (formatColumnData) => {
105
117
  if (!formatColumnData.Name) {
106
118
  return 'Format Column Name cannot be blank';
@@ -117,22 +129,22 @@ function FormatColumnWizard(props) {
117
129
  },
118
130
  },
119
131
  {
120
- title: 'Scope',
132
+ title: 'Columns',
121
133
  details: 'Select which Columns will be formatted',
122
134
  isValid: NewScopeComponent_1.isScopeValid,
123
- renderSummary: FormatColumnScopeWizardSection_1.renderFormatColumnScopeSummary,
135
+ renderSummary: FormatColumnColumnScopeWizardSection_1.renderFormatColumnScopeSummary,
124
136
  render: () => {
125
137
  return (React.createElement(Flex_1.Flex, { flexDirection: "column", className: "twa:p-2 twa:h-full" },
126
- React.createElement(FormatColumnScopeWizardSection_1.FormatColumnScopeWizardSection, { onChange: setFormatColumn })));
138
+ React.createElement(FormatColumnColumnScopeWizardSection_1.FormatColumnScopeWizardSection, { onChange: setFormatColumn })));
127
139
  },
128
140
  },
129
141
  {
130
- title: 'Target',
131
- details: 'Select which Columns Elements will be formatted',
132
- renderSummary: FormatColumnTargetWizardSection_1.renderFormatColumnTargetSummary,
142
+ title: 'Rows',
143
+ details: 'Select which Rows will be formatted',
144
+ renderSummary: FormatColumnRowScopeWizardSection_1.renderFormatColumnRowScopeSummary,
133
145
  render: () => {
134
146
  return (React.createElement(Flex_1.Flex, { flexDirection: "column", className: "twa:p-2 twa:h-full" },
135
- React.createElement(FormatColumnTargetWizardSection_1.FormatColumnTargetWizardSection, { onChange: setFormatColumn })));
147
+ React.createElement(FormatColumnRowScopeWizardSection_1.FormatColumnRowScopeWizardSection, { onChange: setFormatColumn })));
136
148
  },
137
149
  },
138
150
  {
@@ -370,7 +370,7 @@ const ColumnsSection = (props) => {
370
370
  const visibleIds = layout.TableColumns.filter((colId) => {
371
371
  return (layout.ColumnVisibility?.[colId] !== false &&
372
372
  adaptable.api.columnApi.isSelectionColumn(colId) === false &&
373
- !adaptable.api.columnApi.internalApi.isAlwaysHiddenColumn(colId));
373
+ !adaptable.api.columnApi.internalApi.isColumnUIHidden(colId));
374
374
  });
375
375
  const currentlyDisplayedColumnIds = searchInputValue
376
376
  ? currentOrder
@@ -0,0 +1,8 @@
1
+ import * as React from 'react';
2
+ import { StyledColumn } from '../../../types';
3
+ type StyledColumnBadgeRowsSectionProps = {
4
+ onChange: (data: StyledColumn) => void;
5
+ };
6
+ export declare const renderStyledColumnBadgeRowsSummary: (data: StyledColumn) => React.JSX.Element;
7
+ export declare const StyledColumnBadgeRowsSection: (props: StyledColumnBadgeRowsSectionProps) => React.JSX.Element;
8
+ export {};
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.StyledColumnWizardSettingsSection = exports.renderStyledColumnWizardSettingsSummary = void 0;
3
+ exports.StyledColumnBadgeRowsSection = exports.renderStyledColumnBadgeRowsSummary = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const React = tslib_1.__importStar(require("react"));
6
6
  const CheckBox_1 = require("../../../components/CheckBox");
@@ -9,7 +9,7 @@ const Tabs_1 = require("../../../components/Tabs");
9
9
  const Tag_1 = require("../../../components/Tag");
10
10
  const OnePageAdaptableWizard_1 = require("../../Wizard/OnePageAdaptableWizard");
11
11
  const Flex_1 = require("../../../components/Flex");
12
- const renderStyledColumnWizardSettingsSummary = (data) => {
12
+ const renderStyledColumnBadgeRowsSummary = (data) => {
13
13
  const badgeStyle = data;
14
14
  return (React.createElement(Flex_1.Box, { className: "twa:p-2" },
15
15
  React.createElement(Flex_1.Box, { className: "twa:mt-3" },
@@ -26,82 +26,82 @@ const renderStyledColumnWizardSettingsSummary = (data) => {
26
26
  "Total Rows ",
27
27
  React.createElement(Tag_1.Tag, null, badgeStyle.RowScope?.ExcludeTotalRows ? 'no' : 'yes'))));
28
28
  };
29
- exports.renderStyledColumnWizardSettingsSummary = renderStyledColumnWizardSettingsSummary;
30
- const StyledColumnWizardSettingsSection = (props) => {
29
+ exports.renderStyledColumnBadgeRowsSummary = renderStyledColumnBadgeRowsSummary;
30
+ const StyledColumnBadgeRowsSection = (props) => {
31
31
  const { data } = (0, OnePageAdaptableWizard_1.useOnePageAdaptableWizardContext)();
32
- const onExcludeDataRowsChanged = (ExcludeDataRows) => {
32
+ const onExcludeDataRowsChanged = (includeDataRows) => {
33
33
  props.onChange({
34
34
  ...data,
35
35
  BadgeStyle: {
36
36
  ...data.BadgeStyle,
37
37
  RowScope: {
38
38
  ...data.BadgeStyle.RowScope,
39
- ExcludeDataRows,
39
+ ExcludeDataRows: !includeDataRows,
40
40
  },
41
41
  },
42
42
  });
43
43
  };
44
- const onExcludeGroupedRowsChanged = (ExcludeGroupedRows) => {
44
+ const onExcludeGroupedRowsChanged = (includeGroupedRows) => {
45
45
  props.onChange({
46
46
  ...data,
47
47
  BadgeStyle: {
48
48
  ...data.BadgeStyle,
49
49
  RowScope: {
50
50
  ...data.BadgeStyle.RowScope,
51
- ExcludeGroupRows: ExcludeGroupedRows,
51
+ ExcludeGroupRows: !includeGroupedRows,
52
52
  },
53
53
  },
54
54
  });
55
55
  };
56
- const onExcludeSummaryRowsChanged = (ExcludeSummaryRows) => {
56
+ const onExcludeSummaryRowsChanged = (includeSummaryRows) => {
57
57
  props.onChange({
58
58
  ...data,
59
59
  BadgeStyle: {
60
60
  ...data.BadgeStyle,
61
61
  RowScope: {
62
62
  ...data.BadgeStyle.RowScope,
63
- ExcludeSummaryRows,
63
+ ExcludeSummaryRows: !includeSummaryRows,
64
64
  },
65
65
  },
66
66
  });
67
67
  };
68
- const onExcludeTotalRowsChanged = (ExcludeTotalRows) => {
68
+ const onExcludeTotalRowsChanged = (includeTotalRows) => {
69
69
  props.onChange({
70
70
  ...data,
71
71
  BadgeStyle: {
72
72
  ...data.BadgeStyle,
73
73
  RowScope: {
74
74
  ...data.BadgeStyle.RowScope,
75
- ExcludeTotalRows,
75
+ ExcludeTotalRows: !includeTotalRows,
76
76
  },
77
77
  },
78
78
  });
79
79
  };
80
80
  return (React.createElement(Tabs_1.Tabs, null,
81
- React.createElement(Tabs_1.Tabs.Tab, null, "Settings"),
81
+ React.createElement(Tabs_1.Tabs.Tab, null, "Row Types"),
82
82
  React.createElement(Tabs_1.Tabs.Content, null,
83
83
  React.createElement(Flex_1.Flex, { flexDirection: "row" },
84
84
  React.createElement(FormLayout_1.default, null,
85
- React.createElement(FormLayout_1.FormRow, { label: "Exclude Data Rows:" },
85
+ React.createElement(FormLayout_1.FormRow, { label: "Data (leaf) Rows:" },
86
86
  React.createElement(Flex_1.Flex, { alignItems: "center", className: "twa:ml-2" },
87
87
  React.createElement(CheckBox_1.CheckBox, { "data-name": "exclude-data-rows-checkbox", className: "twa:mr-2", checked:
88
88
  // @ts-ignore
89
- data.BadgeStyle.RowScope?.ExcludeDataRows, onChange: onExcludeDataRowsChanged }))),
90
- React.createElement(FormLayout_1.FormRow, { label: "Exclude Group Rows:" },
89
+ !data.BadgeStyle.RowScope?.ExcludeDataRows, onChange: onExcludeDataRowsChanged }))),
90
+ React.createElement(FormLayout_1.FormRow, { label: "Group Rows:" },
91
91
  React.createElement(Flex_1.Flex, { alignItems: "center", className: "twa:ml-2" },
92
92
  React.createElement(CheckBox_1.CheckBox, { className: "twa:mr-2", "data-name": "exclude-grouped-rows-checkbox", checked:
93
93
  // @ts-ignore
94
- data.BadgeStyle.RowScope?.ExcludeGroupRows, onChange: onExcludeGroupedRowsChanged }))),
95
- React.createElement(FormLayout_1.FormRow, { label: "Exclude Row Summaries:" },
94
+ !data.BadgeStyle.RowScope?.ExcludeGroupRows, onChange: onExcludeGroupedRowsChanged }))),
95
+ React.createElement(FormLayout_1.FormRow, { label: "Summary Rows:" },
96
96
  React.createElement(Flex_1.Flex, { alignItems: "center", className: "twa:ml-2" },
97
97
  React.createElement(CheckBox_1.CheckBox, { "data-name": "exclude-summary-rows-checkbox", className: "twa:mr-2", checked:
98
98
  // @ts-ignore
99
- data.BadgeStyle.RowScope?.ExcludeSummaryRows, onChange: onExcludeSummaryRowsChanged }))),
99
+ !data.BadgeStyle.RowScope?.ExcludeSummaryRows, onChange: onExcludeSummaryRowsChanged }))),
100
100
  ' ',
101
- React.createElement(FormLayout_1.FormRow, { label: "Exclude Total Rows:" },
101
+ React.createElement(FormLayout_1.FormRow, { label: "Total Rows:" },
102
102
  React.createElement(Flex_1.Flex, { alignItems: "center", className: "twa:ml-2" },
103
103
  React.createElement(CheckBox_1.CheckBox, { "data-name": "exclude-total-rows-checkbox", className: "twa:mr-2", checked:
104
104
  // @ts-ignore
105
- data.BadgeStyle.RowScope?.ExcludeTotalRows, onChange: onExcludeTotalRowsChanged }))))))));
105
+ !data.BadgeStyle.RowScope?.ExcludeTotalRows, onChange: onExcludeTotalRowsChanged }))))))));
106
106
  };
107
- exports.StyledColumnWizardSettingsSection = StyledColumnWizardSettingsSection;
107
+ exports.StyledColumnBadgeRowsSection = StyledColumnBadgeRowsSection;