@adaptabletools/adaptable 17.0.0-canary.1 → 17.0.0-canary.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable",
|
|
3
|
-
"version": "17.0.0-canary.
|
|
3
|
+
"version": "17.0.0-canary.2",
|
|
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",
|
|
@@ -53,7 +53,6 @@
|
|
|
53
53
|
"react-redux": "7.2.8",
|
|
54
54
|
"react-remove-scroll": "2.4.4",
|
|
55
55
|
"react-select": "5.8.0",
|
|
56
|
-
"react-toastify": "9.0.7",
|
|
57
56
|
"rebass": "^3.2.2",
|
|
58
57
|
"redux": "4.0.5",
|
|
59
58
|
"rxjs": "^7.4.0",
|
|
@@ -66,9 +65,7 @@
|
|
|
66
65
|
"peerDependencies": {
|
|
67
66
|
"@ag-grid-community/core": ">=30.2.0"
|
|
68
67
|
},
|
|
69
|
-
"publishTimestamp":
|
|
68
|
+
"publishTimestamp": 1704900031724,
|
|
70
69
|
"type": "module",
|
|
71
|
-
"
|
|
72
|
-
".": "./agGrid.js"
|
|
73
|
-
}
|
|
70
|
+
"module": "agGrid.js"
|
|
74
71
|
}
|
package/src/agGrid/Adaptable.js
CHANGED
|
@@ -64,7 +64,7 @@ import { AdaptableLogger } from './AdaptableLogger';
|
|
|
64
64
|
import { attachColumnTypes } from './attachAddaptableColumnTypes';
|
|
65
65
|
import { DateFormatter } from '../Utilities/Helpers/FormatHelper';
|
|
66
66
|
import { Fdc3Service } from '../Utilities/Services/Fdc3Service';
|
|
67
|
-
|
|
67
|
+
import tinycolor from 'tinycolor2';
|
|
68
68
|
const GROUP_PATH_SEPARATOR = '/';
|
|
69
69
|
// IMPORTANT - we need colId to be set in order for safeSetColDefs to work correctly
|
|
70
70
|
const assignColId = (colDef, logger) => {
|
|
@@ -43,7 +43,7 @@ import { Helper } from '../Utilities/Helpers/Helper';
|
|
|
43
43
|
import UIHelper from '../View/UIHelper';
|
|
44
44
|
import { getBadgeRendererForColumn } from './BadgeRenderer';
|
|
45
45
|
import { getPercentBarRendererForColumn } from './PercentBarRenderer';
|
|
46
|
-
|
|
46
|
+
import tinycolor from 'tinycolor2';
|
|
47
47
|
/**
|
|
48
48
|
* Adaptable AG Grid implementation is getting really big and unwieldy
|
|
49
49
|
* So lets put some of the more obvious 'Helper' functions here
|
|
@@ -3,7 +3,7 @@ import * as React from 'react';
|
|
|
3
3
|
import { Box, Flex } from 'rebass';
|
|
4
4
|
import Input from '../Input';
|
|
5
5
|
import { getVariableColor } from '../../Utilities/Helpers/StyleHelper';
|
|
6
|
-
|
|
6
|
+
import tinycolor from 'tinycolor2';
|
|
7
7
|
export const ColorPicker = React.forwardRef((props, ref) => {
|
|
8
8
|
const ColorPalette = props.api.userInterfaceApi.getColorPalette();
|
|
9
9
|
let { api, value, includeAlpha = true } = props, restProps = __rest(props, ["api", "value", "includeAlpha"]);
|