@adaptabletools/adaptable-cjs 22.0.0-canary.11 → 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 (141) hide show
  1. package/index.css +3 -12
  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 -4
  6. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +2 -2
  7. package/src/AdaptableState/Common/AdaptableColumn.d.ts +3 -3
  8. package/src/AdaptableState/Common/AdaptableForm.d.ts +1 -1
  9. package/src/AdaptableState/InitialState.d.ts +1 -1
  10. package/src/AdaptableState/UserInterfaceState.d.ts +1 -1
  11. package/src/Api/ColumnApi.d.ts +1 -1
  12. package/src/Api/Implementation/ColumnApiImpl.d.ts +1 -1
  13. package/src/Api/Implementation/ColumnApiImpl.js +4 -4
  14. package/src/Api/Implementation/LayoutHelpers.js +1 -1
  15. package/src/Api/Internal/ColumnInternalApi.d.ts +1 -1
  16. package/src/Api/Internal/ColumnInternalApi.js +5 -3
  17. package/src/Api/Internal/EventInternalApi.js +1 -1
  18. package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +1 -1
  19. package/src/Redux/Store/AdaptableReduxMerger.js +5 -6
  20. package/src/Strategy/FormatColumnModule.js +2 -2
  21. package/src/Strategy/LayoutModule.js +1 -1
  22. package/src/Strategy/StyledColumnModule.js +14 -6
  23. package/src/Strategy/TeamSharingModule.js +2 -2
  24. package/src/Strategy/Utilities/FormatColumn/{getFormatColumnSettingsTargetItems.d.ts → getFormatColumnRowTargetItems.d.ts} +1 -1
  25. package/src/Strategy/Utilities/FormatColumn/getFormatColumnRowTargetItems.js +26 -0
  26. package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.js +5 -13
  27. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +1 -1
  28. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +1 -1
  29. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +1 -1
  30. package/src/Utilities/Extensions/StringExtensions.js +1 -1
  31. package/src/Utilities/Helpers/AdaptableHelper.js +2 -2
  32. package/src/Utilities/Helpers/FormatHelper.js +2 -2
  33. package/src/Utilities/Services/LicenseService/index.js +1 -1
  34. package/src/Utilities/Services/RowSummaryService.d.ts +1 -1
  35. package/src/Utilities/Services/RowSummaryService.js +2 -2
  36. package/src/Utilities/getScopeViewItems.js +1 -1
  37. package/src/Utilities/utils/chunk.d.ts +6 -0
  38. package/src/Utilities/utils/chunk.js +20 -0
  39. package/src/Utilities/utils/clamp.d.ts +5 -0
  40. package/src/Utilities/utils/clamp.js +10 -0
  41. package/src/Utilities/utils/cloneDeepWith.d.ts +9 -0
  42. package/src/Utilities/utils/cloneDeepWith.js +70 -0
  43. package/src/Utilities/utils/debounce.d.ts +20 -0
  44. package/src/Utilities/utils/debounce.js +124 -0
  45. package/src/Utilities/utils/flatten.d.ts +5 -0
  46. package/src/Utilities/utils/flatten.js +10 -0
  47. package/src/Utilities/utils/flattenDeep.d.ts +5 -0
  48. package/src/Utilities/utils/flattenDeep.js +10 -0
  49. package/src/Utilities/utils/get.d.ts +6 -0
  50. package/src/Utilities/utils/get.js +38 -0
  51. package/src/Utilities/utils/index.d.ts +22 -0
  52. package/src/Utilities/utils/index.js +48 -0
  53. package/src/Utilities/utils/isArray.d.ts +6 -0
  54. package/src/Utilities/utils/isArray.js +8 -0
  55. package/src/Utilities/utils/isEqual.d.ts +5 -0
  56. package/src/Utilities/utils/isEqual.js +127 -0
  57. package/src/Utilities/utils/isObject.d.ts +6 -0
  58. package/src/Utilities/utils/isObject.js +12 -0
  59. package/src/Utilities/utils/isPlainObject.d.ts +6 -0
  60. package/src/Utilities/utils/isPlainObject.js +20 -0
  61. package/src/Utilities/utils/kebabCase.d.ts +5 -0
  62. package/src/Utilities/utils/kebabCase.js +12 -0
  63. package/src/Utilities/utils/merge.d.ts +11 -0
  64. package/src/Utilities/utils/merge.js +44 -0
  65. package/src/Utilities/utils/mergeWith.d.ts +7 -0
  66. package/src/Utilities/utils/mergeWith.js +50 -0
  67. package/src/Utilities/utils/orderBy.d.ts +8 -0
  68. package/src/Utilities/utils/orderBy.js +33 -0
  69. package/src/Utilities/utils/parseInt.d.ts +6 -0
  70. package/src/Utilities/utils/parseInt.js +12 -0
  71. package/src/Utilities/utils/sentenceCase.d.ts +6 -0
  72. package/src/Utilities/utils/sentenceCase.js +19 -0
  73. package/src/Utilities/utils/startCase.d.ts +5 -0
  74. package/src/Utilities/utils/startCase.js +15 -0
  75. package/src/Utilities/utils/throttle.d.ts +17 -0
  76. package/src/Utilities/utils/throttle.js +23 -0
  77. package/src/Utilities/utils/toNumber.d.ts +5 -0
  78. package/src/Utilities/utils/toNumber.js +42 -0
  79. package/src/Utilities/utils/uniq.d.ts +7 -0
  80. package/src/Utilities/utils/uniq.js +12 -0
  81. package/src/Utilities/utils/uniqBy.d.ts +8 -0
  82. package/src/Utilities/utils/uniqBy.js +25 -0
  83. package/src/Utilities/utils/words.d.ts +7 -0
  84. package/src/Utilities/utils/words.js +13 -0
  85. package/src/Utilities/weightedAverage.js +1 -1
  86. package/src/View/AdaptableComputedCSSVarsContext.js +1 -1
  87. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +1 -1
  88. package/src/View/Alert/Wizard/AlertButtonsEditor.js +2 -2
  89. package/src/View/Charting/ChartingWizard/AgChargingWizard/PreviewChartSection.js +1 -1
  90. package/src/View/Components/ColumnFilter/components/ColumnFilterInput.js +1 -1
  91. package/src/View/Components/ColumnFilter/components/ColumnFilterInputList.js +2 -2
  92. package/src/View/Components/ColumnFilter/components/FloatingFilterInputList.js +2 -2
  93. package/src/View/Components/RangesComponent.js +1 -1
  94. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +1 -1
  95. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
  96. package/src/View/Components/ValueSelector/index.js +7 -2
  97. package/src/View/Dashboard/CustomDashboardButton.js +1 -1
  98. package/src/View/Dashboard/Dashboard.js +1 -1
  99. package/src/View/DataImport/DataImportWizard/sections/DataPreview.js +1 -1
  100. package/src/View/DataSet/DataSetViewPanel.d.ts +1 -1
  101. package/src/View/Export/Wizard/NewReportWizard.js +8 -8
  102. package/src/View/Filter/FilterViewPanel.d.ts +1 -1
  103. package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +19 -10
  104. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +1 -1
  105. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +2 -2
  106. package/src/View/FormatColumn/Wizard/FormatColumnRowScopeWizardSection.d.ts +8 -0
  107. package/src/View/FormatColumn/Wizard/FormatColumnRowScopeWizardSection.js +86 -0
  108. package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +22 -61
  109. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +22 -10
  110. package/src/View/GridFilter/GridFilterViewPanel.js +3 -3
  111. package/src/View/Layout/LayoutViewPanel.js +1 -1
  112. package/src/View/Layout/Wizard/sections/ColumnsSection.js +1 -1
  113. package/src/View/Note/NoteEditor.js +1 -1
  114. package/src/View/QuickSearch/useQuickSearchDebounced.js +1 -1
  115. package/src/View/SpecialColumnSettingsWizardStep.js +1 -1
  116. package/src/View/StyledColumn/Wizard/StyledColumnBadgeRowsSection.d.ts +8 -0
  117. package/src/View/StyledColumn/Wizard/{StyledColumnWizardSettingsSection.js → StyledColumnBadgeRowsSection.js} +22 -22
  118. package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +10 -11
  119. package/src/View/SystemStatus/SystemStatusViewPanel.d.ts +1 -1
  120. package/src/View/Theme/ThemeEditor.js +1 -1
  121. package/src/View/Theme/ThemeField.js +1 -1
  122. package/src/View/Wizard/OnePageAdaptableWizard.js +1 -1
  123. package/src/agGrid/AdaptableAgGrid.js +2 -2
  124. package/src/agGrid/AgGridAdapter.js +4 -4
  125. package/src/agGrid/AgGridColumnAdapter.js +2 -2
  126. package/src/agGrid/cellRenderers/PercentBarRenderer.js +1 -1
  127. package/src/components/ColorPicker/ColorPicker.js +1 -1
  128. package/src/components/DropdownButton/renderItem.js +1 -1
  129. package/src/components/FormLayout/index.js +1 -1
  130. package/src/components/OverlayTrigger/index.js +1 -1
  131. package/src/env.js +2 -2
  132. package/src/layout-manager/src/isLayoutEqual.js +1 -1
  133. package/src/metamodel/adaptable.metamodel.js +1 -1
  134. package/src/migration/VersionUpgrade22.js +9 -0
  135. package/tsconfig.cjs.tsbuildinfo +1 -1
  136. package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsTargetItems.js +0 -16
  137. package/src/View/FormatColumn/Wizard/FormatColumnTargetWizardSection.d.ts +0 -8
  138. package/src/View/FormatColumn/Wizard/FormatColumnTargetWizardSection.js +0 -37
  139. package/src/View/StyledColumn/Wizard/StyledColumnWizardSettingsSection.d.ts +0 -8
  140. /package/src/View/FormatColumn/Wizard/{FormatColumnScopeWizardSection.d.ts → FormatColumnColumnScopeWizardSection.d.ts} +0 -0
  141. /package/src/View/FormatColumn/Wizard/{FormatColumnScopeWizardSection.js → FormatColumnColumnScopeWizardSection.js} +0 -0
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+ /**
3
+ * Converts value to a number.
4
+ * Drop-in replacement for lodash/toNumber.
5
+ */
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.default = toNumber;
8
+ const reTrimStart = /^\s+/;
9
+ const reTrimEnd = /\s+$/;
10
+ const reIsBinary = /^0b[01]+$/i;
11
+ const reIsOctal = /^0o[0-7]+$/i;
12
+ const reIsBadHex = /^[-+]0x[0-9a-f]+$/i;
13
+ function toNumber(value) {
14
+ if (typeof value === 'number') {
15
+ return value;
16
+ }
17
+ if (typeof value === 'symbol') {
18
+ return NaN;
19
+ }
20
+ if (typeof value === 'boolean') {
21
+ return value ? 1 : 0;
22
+ }
23
+ if (value == null) {
24
+ return value === undefined ? NaN : 0;
25
+ }
26
+ if (typeof value === 'string') {
27
+ const trimmed = value.replace(reTrimStart, '').replace(reTrimEnd, '');
28
+ if (reIsBinary.test(trimmed)) {
29
+ return globalThis.parseInt(trimmed.slice(2), 2);
30
+ }
31
+ if (reIsOctal.test(trimmed)) {
32
+ return globalThis.parseInt(trimmed.slice(2), 8);
33
+ }
34
+ if (reIsBadHex.test(trimmed)) {
35
+ return NaN;
36
+ }
37
+ return +trimmed;
38
+ }
39
+ // Objects: try valueOf
40
+ const other = typeof value.valueOf === 'function' ? value.valueOf() : value;
41
+ return +other;
42
+ }
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Creates a duplicate-free version of an array, using SameValueZero for equality comparisons,
3
+ * in which only the first occurrence of each element is kept. The order of result values is
4
+ * determined by the order they occur in the array.
5
+ * Drop-in replacement for lodash/uniq.
6
+ */
7
+ export default function uniq<T>(array: T[]): T[];
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = uniq;
4
+ /**
5
+ * Creates a duplicate-free version of an array, using SameValueZero for equality comparisons,
6
+ * in which only the first occurrence of each element is kept. The order of result values is
7
+ * determined by the order they occur in the array.
8
+ * Drop-in replacement for lodash/uniq.
9
+ */
10
+ function uniq(array) {
11
+ return [...new Set(array)];
12
+ }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This method is like `uniq` except that it accepts iteratee which is
3
+ * invoked for each element in array to generate the criterion by which
4
+ * uniqueness is computed. The order of result values is determined by the
5
+ * order they occur in the array. The iteratee is invoked with one argument: (value).
6
+ * Drop-in replacement for lodash/uniqBy.
7
+ */
8
+ export default function uniqBy<T>(array: T[], iteratee: ((value: T) => any) | string): T[];
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = uniqBy;
4
+ /**
5
+ * This method is like `uniq` except that it accepts iteratee which is
6
+ * invoked for each element in array to generate the criterion by which
7
+ * uniqueness is computed. The order of result values is determined by the
8
+ * order they occur in the array. The iteratee is invoked with one argument: (value).
9
+ * Drop-in replacement for lodash/uniqBy.
10
+ */
11
+ function uniqBy(array, iteratee) {
12
+ const seen = new Set();
13
+ const result = [];
14
+ const fn = typeof iteratee === 'function'
15
+ ? iteratee
16
+ : (value) => value?.[iteratee];
17
+ for (const item of array) {
18
+ const key = fn(item);
19
+ if (!seen.has(key)) {
20
+ seen.add(key);
21
+ result.push(item);
22
+ }
23
+ }
24
+ return result;
25
+ }
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Split a string into words: handles camelCase, PascalCase, UPPER_CASE,
3
+ * UPPER_SNAKE_CASE, snake_case, kebab-case, spaces, and dot.notation.
4
+ *
5
+ * Shared helper used by kebabCase, startCase, and sentenceCase.
6
+ */
7
+ export default function words(str: string): string[];
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = words;
4
+ /**
5
+ * Split a string into words: handles camelCase, PascalCase, UPPER_CASE,
6
+ * UPPER_SNAKE_CASE, snake_case, kebab-case, spaces, and dot.notation.
7
+ *
8
+ * Shared helper used by kebabCase, startCase, and sentenceCase.
9
+ */
10
+ function words(str) {
11
+ const matches = str.match(/[A-Z]?[a-z]+|[A-Z]+(?=[A-Z][a-z]|\d|$|[^a-zA-Z0-9])|[A-Z]|[0-9]+/g);
12
+ return matches || [];
13
+ }
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.weightedAverage = exports.getNumericValue = void 0;
4
4
  const tslib_1 = require("tslib");
5
- const toNumber_1 = tslib_1.__importDefault(require("lodash/toNumber"));
5
+ const toNumber_1 = tslib_1.__importDefault(require("./utils/toNumber"));
6
6
  const getNumericValue = (input) => {
7
7
  if (typeof input === 'number') {
8
8
  return input;
@@ -4,7 +4,7 @@ exports.useAdaptableComputedCSSVar = exports.useAdaptableComputedCSSVars = expor
4
4
  const tslib_1 = require("tslib");
5
5
  const React = tslib_1.__importStar(require("react"));
6
6
  const CSSNumericVariableWatch_1 = require("../components/Select/CSSNumericVariableWatch");
7
- const debounce_1 = tslib_1.__importDefault(require("lodash/debounce"));
7
+ const debounce_1 = tslib_1.__importDefault(require("../Utilities/utils/debounce"));
8
8
  const react_1 = require("react");
9
9
  const computedCSSVarNames = [
10
10
  '--ab-cmp-select-menu__max-width',
@@ -11,7 +11,7 @@ const react_1 = require("react");
11
11
  const StringExtensions_1 = tslib_1.__importDefault(require("../../../Utilities/Extensions/StringExtensions"));
12
12
  const InfiniteTable_1 = require("../../../components/InfiniteTable");
13
13
  const Flex_1 = require("../../../components/Flex");
14
- const throttle_1 = tslib_1.__importDefault(require("lodash/throttle"));
14
+ const throttle_1 = tslib_1.__importDefault(require("../../../Utilities/utils/throttle"));
15
15
  const twMerge_1 = require("../../../twMerge");
16
16
  const dataTypes = [
17
17
  {
@@ -12,7 +12,7 @@ const StringExtensions_1 = tslib_1.__importDefault(require("../../../Utilities/E
12
12
  const AdaptableIconSelector_1 = require("../../Components/AdaptableIconSelector");
13
13
  const Select_1 = require("../../../components/Select");
14
14
  const Flex_1 = require("../../../components/Flex");
15
- const sentence_case_1 = require("sentence-case");
15
+ const sentenceCase_1 = tslib_1.__importDefault(require("../../../Utilities/utils/sentenceCase"));
16
16
  function renderCommand(command) {
17
17
  switch (command) {
18
18
  case 'highlight-cell':
@@ -225,7 +225,7 @@ const AlertButtonsEditor = (props) => {
225
225
  buttonCommands.map((commandName) => {
226
226
  return (React.createElement(CheckBox_1.CheckBox, { key: commandName, className: "twa:mr-3", onChange: (checked) => handleCommandChange(checked, commandName), checked: button.Command === commandName ||
227
227
  (Array.isArray(button.Command) && button.Command.includes(commandName)) },
228
- React.createElement(Flex_1.Box, { className: "twa:text-2" }, (0, sentence_case_1.sentenceCase)(commandName))));
228
+ React.createElement(Flex_1.Box, { className: "twa:text-2" }, (0, sentenceCase_1.default)(commandName))));
229
229
  }),
230
230
  btnUserFunctions.length ? (React.createElement(CheckBox_1.CheckBox, { checked: true, disabled: true },
231
231
  React.createElement(Flex_1.Box, { className: "twa:text-2" },
@@ -4,7 +4,7 @@ exports.PreviewChartSection = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const React = tslib_1.__importStar(require("react"));
6
6
  const react_redux_1 = require("react-redux");
7
- const isEqual_1 = tslib_1.__importDefault(require("lodash/isEqual"));
7
+ const isEqual_1 = tslib_1.__importDefault(require("../../../../Utilities/utils/isEqual"));
8
8
  const InternalRedux = tslib_1.__importStar(require("../../../../Redux/ActionsReducers/InternalRedux"));
9
9
  const AdaptableContext_1 = require("../../../AdaptableContext");
10
10
  const PreviewChartSection = (props) => {
@@ -8,7 +8,7 @@ const AdaptableInput_1 = tslib_1.__importDefault(require("../../AdaptableInput")
8
8
  const AdaptableDateInlineInput_1 = require("../../AdaptableInput/AdaptableDateInlineInput");
9
9
  const PermittedValuesSelector_1 = require("../../Selectors/PermittedValuesSelector");
10
10
  const AdaptableContext_1 = require("../../../AdaptableContext");
11
- const debounce_1 = tslib_1.__importDefault(require("lodash/debounce"));
11
+ const debounce_1 = tslib_1.__importDefault(require("../../../../Utilities/utils/debounce"));
12
12
  const react_1 = require("react");
13
13
  function debounceOrImmediate(fn, time) {
14
14
  return time && time > 0 ? (0, debounce_1.default)(fn, time) : fn;
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ColumnFilterInputList = void 0;
4
4
  const tslib_1 = require("tslib");
5
- const lodash_1 = require("lodash");
5
+ const debounce_1 = tslib_1.__importDefault(require("../../../../Utilities/utils/debounce"));
6
6
  const React = tslib_1.__importStar(require("react"));
7
7
  const utils_1 = require("../../../../components/ExpressionEditor/QueryBuilder/utils");
8
8
  const Panel_1 = tslib_1.__importDefault(require("../../../../components/Panel"));
@@ -21,7 +21,7 @@ const ColumnFilterInputList = (props) => {
21
21
  const matchingInputs = predicateDef
22
22
  ? (0, utils_1.getOperatorMatchingInputs)(fnTypeInput, predicateDef?.inputs, true)
23
23
  : [];
24
- const debouncedPredicateChange = React.useCallback((0, lodash_1.debounce)((predicate) => {
24
+ const debouncedPredicateChange = React.useCallback((0, debounce_1.default)((predicate) => {
25
25
  props.onPredicateChange(predicate);
26
26
  }, 300), [props.predicate, props.columnId]);
27
27
  if (['date[]', 'number[]', 'text[]'].includes(matchingInputs[0])) {
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.FloatingFilterInputList = void 0;
4
4
  const tslib_1 = require("tslib");
5
- const lodash_1 = require("lodash");
5
+ const debounce_1 = tslib_1.__importDefault(require("../../../../Utilities/utils/debounce"));
6
6
  const React = tslib_1.__importStar(require("react"));
7
7
  const utils_1 = require("../../../../components/ExpressionEditor/QueryBuilder/utils");
8
8
  const adaptableQlUtils_1 = require("../../../../Utilities/adaptableQlUtils");
@@ -20,7 +20,7 @@ const FloatingFilterInputList = (props) => {
20
20
  const matchingInputs = predicateDef
21
21
  ? (0, utils_1.getOperatorMatchingInputs)(fnTypeInput, predicateDef?.inputs, true)
22
22
  : [];
23
- const debouncedPredicateChange = React.useCallback((0, lodash_1.debounce)((predicate) => {
23
+ const debouncedPredicateChange = React.useCallback((0, debounce_1.default)((predicate) => {
24
24
  props.onPredicateChange(predicate);
25
25
  }, 300), [props.predicate, props.columnId]);
26
26
  if (['date[]', 'number[]', 'text[]'].includes(matchingInputs[0])) {
@@ -4,7 +4,7 @@ exports.RangesComponent = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const React = tslib_1.__importStar(require("react"));
6
6
  const ColorPicker_1 = require("../../components/ColorPicker");
7
- const clamp_1 = tslib_1.__importDefault(require("lodash/clamp"));
7
+ const clamp_1 = tslib_1.__importDefault(require("../../Utilities/utils/clamp"));
8
8
  const CheckBox_1 = require("../../components/CheckBox");
9
9
  const FormLayout_1 = tslib_1.__importStar(require("../../components/FormLayout"));
10
10
  const NumberInput_1 = require("../../components/Input/NumberInput");
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getAdaptableToolPanelAgGridComponent = exports.ConnectedAdaptableToolPanel = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const React = tslib_1.__importStar(require("react"));
6
- const kebabCase_1 = tslib_1.__importDefault(require("lodash/kebabCase"));
6
+ const kebabCase_1 = tslib_1.__importDefault(require("../../../Utilities/utils/kebabCase"));
7
7
  const ToolPanelRedux = tslib_1.__importStar(require("../../../Redux/ActionsReducers/ToolPanelRedux"));
8
8
  const react_redux_1 = require("react-redux");
9
9
  const ArrayExtensions_1 = tslib_1.__importDefault(require("../../../Utilities/Extensions/ArrayExtensions"));
@@ -7,7 +7,7 @@ const react_1 = require("react");
7
7
  const AdaptableContext_1 = require("../../AdaptableContext");
8
8
  const uuid_1 = require("../../../components/utils/uuid");
9
9
  const SimpleButton_1 = tslib_1.__importDefault(require("../../../components/SimpleButton"));
10
- const kebabCase_1 = tslib_1.__importDefault(require("lodash/kebabCase"));
10
+ const kebabCase_1 = tslib_1.__importDefault(require("../../../Utilities/utils/kebabCase"));
11
11
  const CustomToolPanelContent = (props) => {
12
12
  const { customToolPanel } = props;
13
13
  const { api } = (0, AdaptableContext_1.useAdaptable)();
@@ -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);
@@ -5,7 +5,7 @@ const tslib_1 = require("tslib");
5
5
  const React = tslib_1.__importStar(require("react"));
6
6
  const react_1 = require("react");
7
7
  const SimpleButton_1 = tslib_1.__importDefault(require("../../components/SimpleButton"));
8
- const kebabCase_1 = tslib_1.__importDefault(require("lodash/kebabCase"));
8
+ const kebabCase_1 = tslib_1.__importDefault(require("../../Utilities/utils/kebabCase"));
9
9
  const CustomDashboardButton = (props) => {
10
10
  const { button } = props;
11
11
  const [componentRevision, setComponentRevision] = (0, react_1.useState)(1);
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Dashboard = void 0;
4
4
  const tslib_1 = require("tslib");
5
- const kebabCase_1 = tslib_1.__importDefault(require("lodash/kebabCase"));
5
+ const kebabCase_1 = tslib_1.__importDefault(require("../../Utilities/utils/kebabCase"));
6
6
  const React = tslib_1.__importStar(require("react"));
7
7
  const react_redux_1 = require("react-redux");
8
8
  const Dashboard_1 = require("../../components/Dashboard");
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.DataPreview = void 0;
4
4
  const tslib_1 = require("tslib");
5
- const flatten_1 = tslib_1.__importDefault(require("lodash/flatten"));
5
+ const flatten_1 = tslib_1.__importDefault(require("../../../../Utilities/utils/flatten"));
6
6
  const React = tslib_1.__importStar(require("react"));
7
7
  const HelpBlock_1 = tslib_1.__importDefault(require("../../../../components/HelpBlock"));
8
8
  const icons_1 = require("../../../../components/icons");
@@ -16,8 +16,8 @@ declare class DataSetViewPanelComponent extends React.Component<DataSetViewPanel
16
16
  onSelectedDataSetChanged(dataSetName: string): void;
17
17
  }
18
18
  export declare let DataSetViewPanelControl: import("react-redux").ConnectedComponent<typeof DataSetViewPanelComponent, {
19
- ref?: React.Ref<DataSetViewPanelComponent>;
20
19
  key?: React.Key | null | undefined;
20
+ ref?: React.Ref<DataSetViewPanelComponent>;
21
21
  context?: React.Context<import("react-redux").ReactReduxContextValue<any, import("redux").UnknownAction>>;
22
22
  store?: import("redux").Store;
23
23
  }>;
@@ -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',
@@ -18,8 +18,8 @@ declare class FilterViewPanelComponent extends React.Component<FilterViewPanelCo
18
18
  private onClearFilters;
19
19
  }
20
20
  export declare const FilterViewPanelControl: import("react-redux").ConnectedComponent<typeof FilterViewPanelComponent, {
21
- ref?: React.Ref<FilterViewPanelComponent>;
22
21
  key?: React.Key | null | undefined;
22
+ ref?: React.Ref<FilterViewPanelComponent>;
23
23
  context?: React.Context<import("react-redux").ReactReduxContextValue<any, import("redux").UnknownAction>>;
24
24
  store?: import("redux").Store;
25
25
  }>;
@@ -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',
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.FormatColumnFormatWizardSection = exports.getFormatDisplayTypeForScope = exports.renderFormatColumnFormatSummary = exports.getFormatColumnFormatSummaryValue = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const React = tslib_1.__importStar(require("react"));
6
- const uniq_1 = tslib_1.__importDefault(require("lodash/uniq"));
7
- const clamp_1 = tslib_1.__importDefault(require("lodash/clamp"));
6
+ const uniq_1 = tslib_1.__importDefault(require("../../../Utilities/utils/uniq"));
7
+ const clamp_1 = tslib_1.__importDefault(require("../../../Utilities/utils/clamp"));
8
8
  const HelpBlock_1 = tslib_1.__importDefault(require("../../../components/HelpBlock"));
9
9
  const Input_1 = tslib_1.__importDefault(require("../../../components/Input"));
10
10
  const SimpleButton_1 = tslib_1.__importDefault(require("../../../components/SimpleButton"));
@@ -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;