@adaptabletools/adaptable-react-aggrid 10.0.2 → 10.0.4-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/README.md +2 -1
- package/base.css +84 -32
- package/index.css +100 -34
- 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
|
@@ -1362,6 +1362,19 @@
|
|
|
1362
1362
|
--ab-cmp-datepicker__font-size: var(--ab-font-size-2);
|
|
1363
1363
|
--ab-cmp-datepicker__font-family: var(--ab__font-family);
|
|
1364
1364
|
--ab-cmp-datepicker__cell-size: 30px; }
|
|
1365
|
+
:root {
|
|
1366
|
+
--ab-cmp-loader__background: var(--ab-color-primarydark);
|
|
1367
|
+
--ab-cmp-loader__border: var(--ab-color-text-on-primary);
|
|
1368
|
+
--ab-cmp-loader__font-size: var(--ab-font-size-2); }
|
|
1369
|
+
:root {
|
|
1370
|
+
--ab-cmp-progress-indicator__delay: 1s;
|
|
1371
|
+
--ab-cmp-progress-indicator__z-index: 9999;
|
|
1372
|
+
--ab-cmp-progress-indicator__font-size: var(--ab-font-size-4);
|
|
1373
|
+
--ab-cmp-progress-indicator__font-style: italic;
|
|
1374
|
+
--ab-cmp-progress-indicator__font-family: var(--ab__font-family);
|
|
1375
|
+
--ab-cmp-progress-indicator__padding: var(--ab-space-3);
|
|
1376
|
+
--ab-cmp-progress-indicator__background: var(--ab-color-primary);
|
|
1377
|
+
--ab-cmp-progress-indicator__color: var(--ab-color-text-on-primary); }
|
|
1365
1378
|
:root {
|
|
1366
1379
|
--ab-cmp-wizard__padding: var(--ab-space-5);
|
|
1367
1380
|
--ab-cmp-wizard__margin: var(--ab-space-1);
|
|
@@ -1471,6 +1484,8 @@
|
|
|
1471
1484
|
--ab-cmp-toolpanel-header__grid-gap: 3px;
|
|
1472
1485
|
--ab-cmp-toolpanel__color: var(--ab-dashboard__color);
|
|
1473
1486
|
--ab-cmp-toolpanel__font-family: var(--ab__font-family); }
|
|
1487
|
+
:root {
|
|
1488
|
+
--ab-cmp-custom-sort-wizard-loader__font-size: var(--ab-font-size-4); }
|
|
1474
1489
|
.ab-Radio-input:focus + svg rect {
|
|
1475
1490
|
stroke: var(--ab-color-accent);
|
|
1476
1491
|
stroke-width: 2; }
|
|
@@ -2146,8 +2161,12 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2146
2161
|
opacity: 1; }
|
|
2147
2162
|
.ab-Dashboard .ab-Input {
|
|
2148
2163
|
border: none; }
|
|
2164
|
+
.ab-Dashboard .ab-DashboardToolbar__Export__wrap {
|
|
2165
|
+
white-space: nowrap; }
|
|
2149
2166
|
.ab-Dashboard .ab-DashboardToolbar__QuickSearch__text .ab-Input {
|
|
2150
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); }
|
|
2151
2170
|
.ab-GridList {
|
|
2152
2171
|
--at-grid__background: transparent; }
|
|
2153
2172
|
.ab-GridList .AT-GridCell_content, .ab-GridList .ab-ListGroupItem, .ab-GridList .AT-GridColumnCell {
|
|
@@ -2255,6 +2274,55 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2255
2274
|
box-shadow: var(--ab-focus__box-shadow); }
|
|
2256
2275
|
.ab-ToggleButton__input:disabled + .ab-ToggleButton__slider {
|
|
2257
2276
|
opacity: 0.5; }
|
|
2277
|
+
.ab-Loader {
|
|
2278
|
+
font-size: var(--ab-cmp-loader__font-size);
|
|
2279
|
+
margin-top: 8px;
|
|
2280
|
+
font-style: italic; }
|
|
2281
|
+
.ab-Loader__text, .ab-Loader__Spinner {
|
|
2282
|
+
vertical-align: middle; }
|
|
2283
|
+
.ab-Loader .ab-Loader__Spinner {
|
|
2284
|
+
margin-right: 5px; }
|
|
2285
|
+
.ab-Loader__Spinner {
|
|
2286
|
+
display: inline-block;
|
|
2287
|
+
border-radius: 50%;
|
|
2288
|
+
border: 2px solid var(--ab-cmp-loader__background);
|
|
2289
|
+
border-top: 2px solid var(--ab-cmp-loader__border);
|
|
2290
|
+
width: 10px;
|
|
2291
|
+
height: 10px;
|
|
2292
|
+
bottom: 0;
|
|
2293
|
+
animation: spin 1.5s linear infinite; }
|
|
2294
|
+
@keyframes spin {
|
|
2295
|
+
0% {
|
|
2296
|
+
transform: rotate(0deg); }
|
|
2297
|
+
100% {
|
|
2298
|
+
transform: rotate(360deg); } }
|
|
2299
|
+
.ab-progress-indicator-wrapper {
|
|
2300
|
+
align-items: center;
|
|
2301
|
+
display: flex;
|
|
2302
|
+
justify-content: center;
|
|
2303
|
+
position: fixed;
|
|
2304
|
+
top: 0;
|
|
2305
|
+
left: 0;
|
|
2306
|
+
height: 0;
|
|
2307
|
+
width: 0;
|
|
2308
|
+
z-index: var(--ab-cmp-progress-indicator__z-index);
|
|
2309
|
+
opacity: 0;
|
|
2310
|
+
transition-delay: var(--ab-cmp-progress-indicator__delay);
|
|
2311
|
+
transition-property: opacity;
|
|
2312
|
+
transition-duration: 0.3s; }
|
|
2313
|
+
.ab-progress-indicator-wrapper--visible {
|
|
2314
|
+
opacity: 1; }
|
|
2315
|
+
.ab-progress-indicator-wrapper .ab-progress-indicator-body {
|
|
2316
|
+
padding: var(--ab-cmp-progress-indicator__padding);
|
|
2317
|
+
background: var(--ab-cmp-progress-indicator__background);
|
|
2318
|
+
color: var(--ab-cmp-progress-indicator__color);
|
|
2319
|
+
border-style: none;
|
|
2320
|
+
border-width: 0px;
|
|
2321
|
+
border-radius: var(--ab__border-radius);
|
|
2322
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
2323
|
+
font-size: var(--ab-cmp-progress-indicator__font-size);
|
|
2324
|
+
font-style: var(--ab-cmp-progress-indicator__font-style);
|
|
2325
|
+
font-family: var(--ab-cmp-progress-indicator__font-family); }
|
|
2258
2326
|
.ab-ObjectCollection__list > * {
|
|
2259
2327
|
background: var(--ab-cmp-listgroupitem__background);
|
|
2260
2328
|
color: var(--ab-cmp-listgroupitem__color); }
|
|
@@ -2277,17 +2345,17 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2277
2345
|
margin-Bottom: 0; }
|
|
2278
2346
|
.ab-ListBoxFilterForm .ab-GridList .AT-VirtualScrollContainer {
|
|
2279
2347
|
overflow-x: hidden; }
|
|
2280
|
-
.ag-theme-balham-dark .ab-ListBoxFilterForm--
|
|
2281
|
-
.ag-theme-balham .ab-ListBoxFilterForm--
|
|
2348
|
+
.ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style,
|
|
2349
|
+
.ag-theme-balham .ab-ListBoxFilterForm--aggrid-style {
|
|
2282
2350
|
--ab-cmp-dropdown__border-radius: 0;
|
|
2283
2351
|
--ab-cmp-input__border-radius: 0;
|
|
2284
2352
|
--ab-cmp-input__padding: 0;
|
|
2285
2353
|
--ab-cmp-dropdown__padding: 3px;
|
|
2286
2354
|
--ab-focus__box-shadow: 0 0 3px 0px var(--ab-color-accent); }
|
|
2287
|
-
.ag-theme-balham-dark .ab-ListBoxFilterForm--
|
|
2288
|
-
.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 {
|
|
2289
2357
|
border-radius: 0; }
|
|
2290
|
-
html.ab--theme-dark .ab-ListBoxFilterForm--
|
|
2358
|
+
html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
2291
2359
|
--ab-color-inputborder: white;
|
|
2292
2360
|
--ab-cmp-dropdown__border: 1px solid white; }
|
|
2293
2361
|
.ab-Popover {
|
|
@@ -2351,7 +2419,8 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
|
|
|
2351
2419
|
.ab-Dashboard__application-icon {
|
|
2352
2420
|
margin-right: var(--ab-space-2); }
|
|
2353
2421
|
.ab-ToolPanel {
|
|
2354
|
-
|
|
2422
|
+
flex: 1 1 0;
|
|
2423
|
+
min-width: 0;
|
|
2355
2424
|
color: var(--ab-cmp-toolpanel__color);
|
|
2356
2425
|
font-family: var(--ab-cmp-toolpanel__font-family); }
|
|
2357
2426
|
.ab-ToolPanel .ab-ToolPanel__header {
|
|
@@ -2364,6 +2433,13 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
|
|
|
2364
2433
|
flex-direction: row;
|
|
2365
2434
|
flex-wrap: wrap;
|
|
2366
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); }
|
|
2441
|
+
.ab-CustomSortWizard__SortOrder .ab-Loader__text {
|
|
2442
|
+
font-size: var(--ab-cmp-custom-sort-wizard-loader__font-size); }
|
|
2367
2443
|
.ab-alert--error {
|
|
2368
2444
|
background: var(--ab-color-error); }
|
|
2369
2445
|
.ab-alert--success {
|
|
@@ -2488,32 +2564,8 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
|
|
|
2488
2564
|
flex-flow: column; }
|
|
2489
2565
|
.ag-details-row .ag-details-grid {
|
|
2490
2566
|
flex: 1; }
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
display: flex;
|
|
2494
|
-
height: 100vh;
|
|
2495
|
-
justify-content: center;
|
|
2496
|
-
left: 0;
|
|
2497
|
-
position: fixed;
|
|
2498
|
-
top: 0;
|
|
2499
|
-
width: 100%;
|
|
2500
|
-
z-index: 9999;
|
|
2501
|
-
opacity: 0;
|
|
2502
|
-
transition-delay: 0.5s;
|
|
2503
|
-
transition-property: opacity;
|
|
2504
|
-
transition-duration: 0.3s; }
|
|
2505
|
-
div.ab-progress-indicator-wrapper--visible {
|
|
2506
|
-
opacity: 1; }
|
|
2507
|
-
div.ab-progress-indicator-wrapper .ab-progress-indicator-text {
|
|
2508
|
-
padding: var(--ab-space-3);
|
|
2509
|
-
background: var(--ab-color-primary);
|
|
2510
|
-
color: var(--ab-color-text-on-primary);
|
|
2511
|
-
border-style: none;
|
|
2512
|
-
border-width: 0px;
|
|
2513
|
-
border-radius: var(--ab__border-radius);
|
|
2514
|
-
box-shadow: var(--ab-focus__box-shadow);
|
|
2515
|
-
font-size: var(--ab-font-size-3);
|
|
2516
|
-
font-family: var(--ab__font-family); }
|
|
2567
|
+
.ab-wait-for-progress-indicator.ab-Grid {
|
|
2568
|
+
pointer-events: none; }
|
|
2517
2569
|
:root {
|
|
2518
2570
|
--ab_flex-direction: column; }
|
|
2519
2571
|
.ab__react-wrapper {
|
package/index.css
CHANGED
|
@@ -1941,6 +1941,21 @@ template {
|
|
|
1941
1941
|
--ab-cmp-datepicker__font-family: var(--ab__font-family);
|
|
1942
1942
|
--ab-cmp-datepicker__cell-size: 30px; }
|
|
1943
1943
|
|
|
1944
|
+
:root {
|
|
1945
|
+
--ab-cmp-loader__background: var(--ab-color-primarydark);
|
|
1946
|
+
--ab-cmp-loader__border: var(--ab-color-text-on-primary);
|
|
1947
|
+
--ab-cmp-loader__font-size: var(--ab-font-size-2); }
|
|
1948
|
+
|
|
1949
|
+
:root {
|
|
1950
|
+
--ab-cmp-progress-indicator__delay: 1s;
|
|
1951
|
+
--ab-cmp-progress-indicator__z-index: 9999;
|
|
1952
|
+
--ab-cmp-progress-indicator__font-size: var(--ab-font-size-4);
|
|
1953
|
+
--ab-cmp-progress-indicator__font-style: italic;
|
|
1954
|
+
--ab-cmp-progress-indicator__font-family: var(--ab__font-family);
|
|
1955
|
+
--ab-cmp-progress-indicator__padding: var(--ab-space-3);
|
|
1956
|
+
--ab-cmp-progress-indicator__background: var(--ab-color-primary);
|
|
1957
|
+
--ab-cmp-progress-indicator__color: var(--ab-color-text-on-primary); }
|
|
1958
|
+
|
|
1944
1959
|
:root {
|
|
1945
1960
|
--ab-cmp-wizard__padding: var(--ab-space-5);
|
|
1946
1961
|
--ab-cmp-wizard__margin: var(--ab-space-1);
|
|
@@ -2072,6 +2087,9 @@ template {
|
|
|
2072
2087
|
--ab-cmp-toolpanel__color: var(--ab-dashboard__color);
|
|
2073
2088
|
--ab-cmp-toolpanel__font-family: var(--ab__font-family); }
|
|
2074
2089
|
|
|
2090
|
+
:root {
|
|
2091
|
+
--ab-cmp-custom-sort-wizard-loader__font-size: var(--ab-font-size-4); }
|
|
2092
|
+
|
|
2075
2093
|
.ab-Radio-input:focus + svg rect {
|
|
2076
2094
|
stroke: var(--ab-color-accent);
|
|
2077
2095
|
stroke-width: 2; }
|
|
@@ -2914,9 +2932,15 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2914
2932
|
.ab-Dashboard .ab-Input {
|
|
2915
2933
|
border: none; }
|
|
2916
2934
|
|
|
2935
|
+
.ab-Dashboard .ab-DashboardToolbar__Export__wrap {
|
|
2936
|
+
white-space: nowrap; }
|
|
2937
|
+
|
|
2917
2938
|
.ab-Dashboard .ab-DashboardToolbar__QuickSearch__text .ab-Input {
|
|
2918
2939
|
padding: var(--ab-space-1); }
|
|
2919
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
|
+
|
|
2920
2944
|
.ab-GridList {
|
|
2921
2945
|
--at-grid__background: transparent; }
|
|
2922
2946
|
|
|
@@ -3053,6 +3077,63 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3053
3077
|
.ab-ToggleButton__input:disabled + .ab-ToggleButton__slider {
|
|
3054
3078
|
opacity: 0.5; }
|
|
3055
3079
|
|
|
3080
|
+
.ab-Loader {
|
|
3081
|
+
font-size: var(--ab-cmp-loader__font-size);
|
|
3082
|
+
margin-top: 8px;
|
|
3083
|
+
font-style: italic; }
|
|
3084
|
+
|
|
3085
|
+
.ab-Loader__text, .ab-Loader__Spinner {
|
|
3086
|
+
vertical-align: middle; }
|
|
3087
|
+
|
|
3088
|
+
.ab-Loader .ab-Loader__Spinner {
|
|
3089
|
+
margin-right: 5px; }
|
|
3090
|
+
|
|
3091
|
+
.ab-Loader__Spinner {
|
|
3092
|
+
display: inline-block;
|
|
3093
|
+
border-radius: 50%;
|
|
3094
|
+
border: 2px solid var(--ab-cmp-loader__background);
|
|
3095
|
+
border-top: 2px solid var(--ab-cmp-loader__border);
|
|
3096
|
+
width: 10px;
|
|
3097
|
+
height: 10px;
|
|
3098
|
+
bottom: 0;
|
|
3099
|
+
animation: spin 1.5s linear infinite; }
|
|
3100
|
+
|
|
3101
|
+
@keyframes spin {
|
|
3102
|
+
0% {
|
|
3103
|
+
transform: rotate(0deg); }
|
|
3104
|
+
100% {
|
|
3105
|
+
transform: rotate(360deg); } }
|
|
3106
|
+
|
|
3107
|
+
.ab-progress-indicator-wrapper {
|
|
3108
|
+
align-items: center;
|
|
3109
|
+
display: flex;
|
|
3110
|
+
justify-content: center;
|
|
3111
|
+
position: fixed;
|
|
3112
|
+
top: 0;
|
|
3113
|
+
left: 0;
|
|
3114
|
+
height: 0;
|
|
3115
|
+
width: 0;
|
|
3116
|
+
z-index: var(--ab-cmp-progress-indicator__z-index);
|
|
3117
|
+
opacity: 0;
|
|
3118
|
+
transition-delay: var(--ab-cmp-progress-indicator__delay);
|
|
3119
|
+
transition-property: opacity;
|
|
3120
|
+
transition-duration: 0.3s; }
|
|
3121
|
+
|
|
3122
|
+
.ab-progress-indicator-wrapper--visible {
|
|
3123
|
+
opacity: 1; }
|
|
3124
|
+
|
|
3125
|
+
.ab-progress-indicator-wrapper .ab-progress-indicator-body {
|
|
3126
|
+
padding: var(--ab-cmp-progress-indicator__padding);
|
|
3127
|
+
background: var(--ab-cmp-progress-indicator__background);
|
|
3128
|
+
color: var(--ab-cmp-progress-indicator__color);
|
|
3129
|
+
border-style: none;
|
|
3130
|
+
border-width: 0px;
|
|
3131
|
+
border-radius: var(--ab__border-radius);
|
|
3132
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
3133
|
+
font-size: var(--ab-cmp-progress-indicator__font-size);
|
|
3134
|
+
font-style: var(--ab-cmp-progress-indicator__font-style);
|
|
3135
|
+
font-family: var(--ab-cmp-progress-indicator__font-family); }
|
|
3136
|
+
|
|
3056
3137
|
.ab-ObjectCollection__list > * {
|
|
3057
3138
|
background: var(--ab-cmp-listgroupitem__background);
|
|
3058
3139
|
color: var(--ab-cmp-listgroupitem__color); }
|
|
@@ -3082,19 +3163,19 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3082
3163
|
.ab-ListBoxFilterForm .ab-GridList .AT-VirtualScrollContainer {
|
|
3083
3164
|
overflow-x: hidden; }
|
|
3084
3165
|
|
|
3085
|
-
.ag-theme-balham-dark .ab-ListBoxFilterForm--
|
|
3086
|
-
.ag-theme-balham .ab-ListBoxFilterForm--
|
|
3166
|
+
.ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style,
|
|
3167
|
+
.ag-theme-balham .ab-ListBoxFilterForm--aggrid-style {
|
|
3087
3168
|
--ab-cmp-dropdown__border-radius: 0;
|
|
3088
3169
|
--ab-cmp-input__border-radius: 0;
|
|
3089
3170
|
--ab-cmp-input__padding: 0;
|
|
3090
3171
|
--ab-cmp-dropdown__padding: 3px;
|
|
3091
3172
|
--ab-focus__box-shadow: 0 0 3px 0px var(--ab-color-accent); }
|
|
3092
3173
|
|
|
3093
|
-
.ag-theme-balham-dark .ab-ListBoxFilterForm--
|
|
3094
|
-
.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 {
|
|
3095
3176
|
border-radius: 0; }
|
|
3096
3177
|
|
|
3097
|
-
html.ab--theme-dark .ab-ListBoxFilterForm--
|
|
3178
|
+
html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
3098
3179
|
--ab-color-inputborder: white;
|
|
3099
3180
|
--ab-cmp-dropdown__border: 1px solid white; }
|
|
3100
3181
|
|
|
@@ -3174,7 +3255,8 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
|
|
|
3174
3255
|
margin-right: var(--ab-space-2); }
|
|
3175
3256
|
|
|
3176
3257
|
.ab-ToolPanel {
|
|
3177
|
-
|
|
3258
|
+
flex: 1 1 0;
|
|
3259
|
+
min-width: 0;
|
|
3178
3260
|
color: var(--ab-cmp-toolpanel__color);
|
|
3179
3261
|
font-family: var(--ab-cmp-toolpanel__font-family); }
|
|
3180
3262
|
|
|
@@ -3191,6 +3273,16 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
|
|
|
3191
3273
|
flex-wrap: wrap;
|
|
3192
3274
|
grid-gap: var(--ab-cmp-toolpanel-header__grid-gap); }
|
|
3193
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
|
+
|
|
3283
|
+
.ab-CustomSortWizard__SortOrder .ab-Loader__text {
|
|
3284
|
+
font-size: var(--ab-cmp-custom-sort-wizard-loader__font-size); }
|
|
3285
|
+
|
|
3194
3286
|
.ab-alert--error {
|
|
3195
3287
|
background: var(--ab-color-error); }
|
|
3196
3288
|
|
|
@@ -3346,34 +3438,8 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
|
|
|
3346
3438
|
.ag-details-row .ag-details-grid {
|
|
3347
3439
|
flex: 1; }
|
|
3348
3440
|
|
|
3349
|
-
|
|
3350
|
-
|
|
3351
|
-
display: flex;
|
|
3352
|
-
height: 100vh;
|
|
3353
|
-
justify-content: center;
|
|
3354
|
-
left: 0;
|
|
3355
|
-
position: fixed;
|
|
3356
|
-
top: 0;
|
|
3357
|
-
width: 100%;
|
|
3358
|
-
z-index: 9999;
|
|
3359
|
-
opacity: 0;
|
|
3360
|
-
transition-delay: 0.5s;
|
|
3361
|
-
transition-property: opacity;
|
|
3362
|
-
transition-duration: 0.3s; }
|
|
3363
|
-
|
|
3364
|
-
div.ab-progress-indicator-wrapper--visible {
|
|
3365
|
-
opacity: 1; }
|
|
3366
|
-
|
|
3367
|
-
div.ab-progress-indicator-wrapper .ab-progress-indicator-text {
|
|
3368
|
-
padding: var(--ab-space-3);
|
|
3369
|
-
background: var(--ab-color-primary);
|
|
3370
|
-
color: var(--ab-color-text-on-primary);
|
|
3371
|
-
border-style: none;
|
|
3372
|
-
border-width: 0px;
|
|
3373
|
-
border-radius: var(--ab__border-radius);
|
|
3374
|
-
box-shadow: var(--ab-focus__box-shadow);
|
|
3375
|
-
font-size: var(--ab-font-size-3);
|
|
3376
|
-
font-family: var(--ab__font-family); }
|
|
3441
|
+
.ab-wait-for-progress-indicator.ab-Grid {
|
|
3442
|
+
pointer-events: none; }
|
|
3377
3443
|
|
|
3378
3444
|
:root {
|
|
3379
3445
|
--ab_flex-direction: column; }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable-react-aggrid",
|
|
3
|
-
"version": "10.0.2",
|
|
3
|
+
"version": "10.0.4-canary.2",
|
|
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.2"
|
|
23
|
+
"@adaptabletools/adaptable": "10.0.4-canary.2"
|
|
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;
|