@adaptabletools/adaptable-react-aggrid 10.0.3 → 10.0.4-canary.3
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/README.md +2 -1
- package/base.css +16 -6
- package/index.css +20 -6
- package/package.json +2 -2
- package/src/components/AdaptableReact.d.ts +1 -1
package/README.md
CHANGED
|
@@ -20,7 +20,8 @@ There are a number of different licence options available.
|
|
|
20
20
|
|
|
21
21
|
We can also make a trial licence available for a short period of time to allow you to try out AdapTable for yourself.
|
|
22
22
|
|
|
23
|
-
**Note: The AdapTable licence does not include
|
|
23
|
+
**Note: The AdapTable licence does not include AG Grid's licence which you must pay for that separately**.
|
|
24
|
+
|
|
24
25
|
|
|
25
26
|
Please contact [`sales@adaptabletools.com`](mailto:sales@adaptabletools.com) or see our [Licence Help Page](https://docs.adaptabletools.com/docs/getting-started/licence) for more information.
|
|
26
27
|
|
package/base.css
CHANGED
|
@@ -2161,8 +2161,12 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2161
2161
|
opacity: 1; }
|
|
2162
2162
|
.ab-Dashboard .ab-Input {
|
|
2163
2163
|
border: none; }
|
|
2164
|
+
.ab-Dashboard .ab-DashboardToolbar__Export__wrap {
|
|
2165
|
+
white-space: nowrap; }
|
|
2164
2166
|
.ab-Dashboard .ab-DashboardToolbar__QuickSearch__text .ab-Input {
|
|
2165
2167
|
padding: var(--ab-space-1); }
|
|
2168
|
+
.ab-Dashboard .ab-StateManagement__Clear-Button, .ab-Dashboard .ab-StateManagement__Load-Button, .ab-Dashboard .ab-StateManagement__Export-Dropdown {
|
|
2169
|
+
margin-left: var(--ab-space-1); }
|
|
2166
2170
|
.ab-GridList {
|
|
2167
2171
|
--at-grid__background: transparent; }
|
|
2168
2172
|
.ab-GridList .AT-GridCell_content, .ab-GridList .ab-ListGroupItem, .ab-GridList .AT-GridColumnCell {
|
|
@@ -2341,17 +2345,17 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2341
2345
|
margin-Bottom: 0; }
|
|
2342
2346
|
.ab-ListBoxFilterForm .ab-GridList .AT-VirtualScrollContainer {
|
|
2343
2347
|
overflow-x: hidden; }
|
|
2344
|
-
.ag-theme-balham-dark .ab-ListBoxFilterForm--
|
|
2345
|
-
.ag-theme-balham .ab-ListBoxFilterForm--
|
|
2348
|
+
.ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style,
|
|
2349
|
+
.ag-theme-balham .ab-ListBoxFilterForm--aggrid-style {
|
|
2346
2350
|
--ab-cmp-dropdown__border-radius: 0;
|
|
2347
2351
|
--ab-cmp-input__border-radius: 0;
|
|
2348
2352
|
--ab-cmp-input__padding: 0;
|
|
2349
2353
|
--ab-cmp-dropdown__padding: 3px;
|
|
2350
2354
|
--ab-focus__box-shadow: 0 0 3px 0px var(--ab-color-accent); }
|
|
2351
|
-
.ag-theme-balham-dark .ab-ListBoxFilterForm--
|
|
2352
|
-
.ag-theme-balham .ab-ListBoxFilterForm--
|
|
2355
|
+
.ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style .ab-FieldWrap,
|
|
2356
|
+
.ag-theme-balham .ab-ListBoxFilterForm--aggrid-style .ab-FieldWrap {
|
|
2353
2357
|
border-radius: 0; }
|
|
2354
|
-
html.ab--theme-dark .ab-ListBoxFilterForm--
|
|
2358
|
+
html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
2355
2359
|
--ab-color-inputborder: white;
|
|
2356
2360
|
--ab-cmp-dropdown__border: 1px solid white; }
|
|
2357
2361
|
.ab-Popover {
|
|
@@ -2415,7 +2419,8 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
|
|
|
2415
2419
|
.ab-Dashboard__application-icon {
|
|
2416
2420
|
margin-right: var(--ab-space-2); }
|
|
2417
2421
|
.ab-ToolPanel {
|
|
2418
|
-
|
|
2422
|
+
flex: 1 1 0;
|
|
2423
|
+
min-width: 0;
|
|
2419
2424
|
color: var(--ab-cmp-toolpanel__color);
|
|
2420
2425
|
font-family: var(--ab-cmp-toolpanel__font-family); }
|
|
2421
2426
|
.ab-ToolPanel .ab-ToolPanel__header {
|
|
@@ -2428,6 +2433,11 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
|
|
|
2428
2433
|
flex-direction: row;
|
|
2429
2434
|
flex-wrap: wrap;
|
|
2430
2435
|
grid-gap: var(--ab-cmp-toolpanel-header__grid-gap); }
|
|
2436
|
+
.ab-ToolPanel .ab-StateManagement__Clear-Button, .ab-ToolPanel .ab-StateManagement__Load-Button {
|
|
2437
|
+
justify-content: center;
|
|
2438
|
+
flex: 1; }
|
|
2439
|
+
.ab-ToolPanel .ab-StateManagement__Clear-Button, .ab-ToolPanel .ab-StateManagement__Load-Button, .ab-ToolPanel .ab-StateManagement__Export-Dropdown {
|
|
2440
|
+
margin-bottom: var(--ab-space-1); }
|
|
2431
2441
|
.ab-CustomSortWizard__SortOrder .ab-Loader__text {
|
|
2432
2442
|
font-size: var(--ab-cmp-custom-sort-wizard-loader__font-size); }
|
|
2433
2443
|
.ab-alert--error {
|
package/index.css
CHANGED
|
@@ -2932,9 +2932,15 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2932
2932
|
.ab-Dashboard .ab-Input {
|
|
2933
2933
|
border: none; }
|
|
2934
2934
|
|
|
2935
|
+
.ab-Dashboard .ab-DashboardToolbar__Export__wrap {
|
|
2936
|
+
white-space: nowrap; }
|
|
2937
|
+
|
|
2935
2938
|
.ab-Dashboard .ab-DashboardToolbar__QuickSearch__text .ab-Input {
|
|
2936
2939
|
padding: var(--ab-space-1); }
|
|
2937
2940
|
|
|
2941
|
+
.ab-Dashboard .ab-StateManagement__Clear-Button, .ab-Dashboard .ab-StateManagement__Load-Button, .ab-Dashboard .ab-StateManagement__Export-Dropdown {
|
|
2942
|
+
margin-left: var(--ab-space-1); }
|
|
2943
|
+
|
|
2938
2944
|
.ab-GridList {
|
|
2939
2945
|
--at-grid__background: transparent; }
|
|
2940
2946
|
|
|
@@ -3157,19 +3163,19 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3157
3163
|
.ab-ListBoxFilterForm .ab-GridList .AT-VirtualScrollContainer {
|
|
3158
3164
|
overflow-x: hidden; }
|
|
3159
3165
|
|
|
3160
|
-
.ag-theme-balham-dark .ab-ListBoxFilterForm--
|
|
3161
|
-
.ag-theme-balham .ab-ListBoxFilterForm--
|
|
3166
|
+
.ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style,
|
|
3167
|
+
.ag-theme-balham .ab-ListBoxFilterForm--aggrid-style {
|
|
3162
3168
|
--ab-cmp-dropdown__border-radius: 0;
|
|
3163
3169
|
--ab-cmp-input__border-radius: 0;
|
|
3164
3170
|
--ab-cmp-input__padding: 0;
|
|
3165
3171
|
--ab-cmp-dropdown__padding: 3px;
|
|
3166
3172
|
--ab-focus__box-shadow: 0 0 3px 0px var(--ab-color-accent); }
|
|
3167
3173
|
|
|
3168
|
-
.ag-theme-balham-dark .ab-ListBoxFilterForm--
|
|
3169
|
-
.ag-theme-balham .ab-ListBoxFilterForm--
|
|
3174
|
+
.ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style .ab-FieldWrap,
|
|
3175
|
+
.ag-theme-balham .ab-ListBoxFilterForm--aggrid-style .ab-FieldWrap {
|
|
3170
3176
|
border-radius: 0; }
|
|
3171
3177
|
|
|
3172
|
-
html.ab--theme-dark .ab-ListBoxFilterForm--
|
|
3178
|
+
html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
3173
3179
|
--ab-color-inputborder: white;
|
|
3174
3180
|
--ab-cmp-dropdown__border: 1px solid white; }
|
|
3175
3181
|
|
|
@@ -3249,7 +3255,8 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
|
|
|
3249
3255
|
margin-right: var(--ab-space-2); }
|
|
3250
3256
|
|
|
3251
3257
|
.ab-ToolPanel {
|
|
3252
|
-
|
|
3258
|
+
flex: 1 1 0;
|
|
3259
|
+
min-width: 0;
|
|
3253
3260
|
color: var(--ab-cmp-toolpanel__color);
|
|
3254
3261
|
font-family: var(--ab-cmp-toolpanel__font-family); }
|
|
3255
3262
|
|
|
@@ -3266,6 +3273,13 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
|
|
|
3266
3273
|
flex-wrap: wrap;
|
|
3267
3274
|
grid-gap: var(--ab-cmp-toolpanel-header__grid-gap); }
|
|
3268
3275
|
|
|
3276
|
+
.ab-ToolPanel .ab-StateManagement__Clear-Button, .ab-ToolPanel .ab-StateManagement__Load-Button {
|
|
3277
|
+
justify-content: center;
|
|
3278
|
+
flex: 1; }
|
|
3279
|
+
|
|
3280
|
+
.ab-ToolPanel .ab-StateManagement__Clear-Button, .ab-ToolPanel .ab-StateManagement__Load-Button, .ab-ToolPanel .ab-StateManagement__Export-Dropdown {
|
|
3281
|
+
margin-bottom: var(--ab-space-1); }
|
|
3282
|
+
|
|
3269
3283
|
.ab-CustomSortWizard__SortOrder .ab-Loader__text {
|
|
3270
3284
|
font-size: var(--ab-cmp-custom-sort-wizard-loader__font-size); }
|
|
3271
3285
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable-react-aggrid",
|
|
3
|
-
"version": "10.0.3",
|
|
3
|
+
"version": "10.0.4-canary.3",
|
|
4
4
|
"description": "React version of the powerful data-agnostic HTML5 datagrid add-on that sits on top of the agGrid component and provides all the rich functionality that advanced users expect from their DataGrids and Data Tables",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@adaptabletools/adaptable": "10.0.3"
|
|
23
|
+
"@adaptabletools/adaptable": "10.0.4-canary.3"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"@ag-grid-community/all-modules": ">=26.0.0",
|
|
@@ -11,7 +11,7 @@ declare const AdaptableReact: ({ adaptableOptions, gridOptions, onAdaptableReady
|
|
|
11
11
|
modules: Module[];
|
|
12
12
|
onAdaptableReady?: (adaptableReadyInfo: {
|
|
13
13
|
adaptableApi: AdaptableApi;
|
|
14
|
-
|
|
14
|
+
gridOptions: GridOptions;
|
|
15
15
|
}) => void;
|
|
16
16
|
} & React.HTMLProps<HTMLDivElement>) => JSX.Element;
|
|
17
17
|
export default AdaptableReact;
|