@adaptabletools/adaptable-react-aggrid 10.0.2 → 10.0.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.
Files changed (3) hide show
  1. package/base.css +68 -26
  2. package/index.css +80 -28
  3. package/package.json +2 -2
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; }
@@ -2255,6 +2270,55 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
2255
2270
  box-shadow: var(--ab-focus__box-shadow); }
2256
2271
  .ab-ToggleButton__input:disabled + .ab-ToggleButton__slider {
2257
2272
  opacity: 0.5; }
2273
+ .ab-Loader {
2274
+ font-size: var(--ab-cmp-loader__font-size);
2275
+ margin-top: 8px;
2276
+ font-style: italic; }
2277
+ .ab-Loader__text, .ab-Loader__Spinner {
2278
+ vertical-align: middle; }
2279
+ .ab-Loader .ab-Loader__Spinner {
2280
+ margin-right: 5px; }
2281
+ .ab-Loader__Spinner {
2282
+ display: inline-block;
2283
+ border-radius: 50%;
2284
+ border: 2px solid var(--ab-cmp-loader__background);
2285
+ border-top: 2px solid var(--ab-cmp-loader__border);
2286
+ width: 10px;
2287
+ height: 10px;
2288
+ bottom: 0;
2289
+ animation: spin 1.5s linear infinite; }
2290
+ @keyframes spin {
2291
+ 0% {
2292
+ transform: rotate(0deg); }
2293
+ 100% {
2294
+ transform: rotate(360deg); } }
2295
+ .ab-progress-indicator-wrapper {
2296
+ align-items: center;
2297
+ display: flex;
2298
+ justify-content: center;
2299
+ position: fixed;
2300
+ top: 0;
2301
+ left: 0;
2302
+ height: 0;
2303
+ width: 0;
2304
+ z-index: var(--ab-cmp-progress-indicator__z-index);
2305
+ opacity: 0;
2306
+ transition-delay: var(--ab-cmp-progress-indicator__delay);
2307
+ transition-property: opacity;
2308
+ transition-duration: 0.3s; }
2309
+ .ab-progress-indicator-wrapper--visible {
2310
+ opacity: 1; }
2311
+ .ab-progress-indicator-wrapper .ab-progress-indicator-body {
2312
+ padding: var(--ab-cmp-progress-indicator__padding);
2313
+ background: var(--ab-cmp-progress-indicator__background);
2314
+ color: var(--ab-cmp-progress-indicator__color);
2315
+ border-style: none;
2316
+ border-width: 0px;
2317
+ border-radius: var(--ab__border-radius);
2318
+ box-shadow: var(--ab-focus__box-shadow);
2319
+ font-size: var(--ab-cmp-progress-indicator__font-size);
2320
+ font-style: var(--ab-cmp-progress-indicator__font-style);
2321
+ font-family: var(--ab-cmp-progress-indicator__font-family); }
2258
2322
  .ab-ObjectCollection__list > * {
2259
2323
  background: var(--ab-cmp-listgroupitem__background);
2260
2324
  color: var(--ab-cmp-listgroupitem__color); }
@@ -2364,6 +2428,8 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
2364
2428
  flex-direction: row;
2365
2429
  flex-wrap: wrap;
2366
2430
  grid-gap: var(--ab-cmp-toolpanel-header__grid-gap); }
2431
+ .ab-CustomSortWizard__SortOrder .ab-Loader__text {
2432
+ font-size: var(--ab-cmp-custom-sort-wizard-loader__font-size); }
2367
2433
  .ab-alert--error {
2368
2434
  background: var(--ab-color-error); }
2369
2435
  .ab-alert--success {
@@ -2488,32 +2554,8 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
2488
2554
  flex-flow: column; }
2489
2555
  .ag-details-row .ag-details-grid {
2490
2556
  flex: 1; }
2491
- div.ab-progress-indicator-wrapper {
2492
- align-items: center;
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); }
2557
+ .ab-wait-for-progress-indicator.ab-Grid {
2558
+ pointer-events: none; }
2517
2559
  :root {
2518
2560
  --ab_flex-direction: column; }
2519
2561
  .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; }
@@ -3053,6 +3071,63 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
3053
3071
  .ab-ToggleButton__input:disabled + .ab-ToggleButton__slider {
3054
3072
  opacity: 0.5; }
3055
3073
 
3074
+ .ab-Loader {
3075
+ font-size: var(--ab-cmp-loader__font-size);
3076
+ margin-top: 8px;
3077
+ font-style: italic; }
3078
+
3079
+ .ab-Loader__text, .ab-Loader__Spinner {
3080
+ vertical-align: middle; }
3081
+
3082
+ .ab-Loader .ab-Loader__Spinner {
3083
+ margin-right: 5px; }
3084
+
3085
+ .ab-Loader__Spinner {
3086
+ display: inline-block;
3087
+ border-radius: 50%;
3088
+ border: 2px solid var(--ab-cmp-loader__background);
3089
+ border-top: 2px solid var(--ab-cmp-loader__border);
3090
+ width: 10px;
3091
+ height: 10px;
3092
+ bottom: 0;
3093
+ animation: spin 1.5s linear infinite; }
3094
+
3095
+ @keyframes spin {
3096
+ 0% {
3097
+ transform: rotate(0deg); }
3098
+ 100% {
3099
+ transform: rotate(360deg); } }
3100
+
3101
+ .ab-progress-indicator-wrapper {
3102
+ align-items: center;
3103
+ display: flex;
3104
+ justify-content: center;
3105
+ position: fixed;
3106
+ top: 0;
3107
+ left: 0;
3108
+ height: 0;
3109
+ width: 0;
3110
+ z-index: var(--ab-cmp-progress-indicator__z-index);
3111
+ opacity: 0;
3112
+ transition-delay: var(--ab-cmp-progress-indicator__delay);
3113
+ transition-property: opacity;
3114
+ transition-duration: 0.3s; }
3115
+
3116
+ .ab-progress-indicator-wrapper--visible {
3117
+ opacity: 1; }
3118
+
3119
+ .ab-progress-indicator-wrapper .ab-progress-indicator-body {
3120
+ padding: var(--ab-cmp-progress-indicator__padding);
3121
+ background: var(--ab-cmp-progress-indicator__background);
3122
+ color: var(--ab-cmp-progress-indicator__color);
3123
+ border-style: none;
3124
+ border-width: 0px;
3125
+ border-radius: var(--ab__border-radius);
3126
+ box-shadow: var(--ab-focus__box-shadow);
3127
+ font-size: var(--ab-cmp-progress-indicator__font-size);
3128
+ font-style: var(--ab-cmp-progress-indicator__font-style);
3129
+ font-family: var(--ab-cmp-progress-indicator__font-family); }
3130
+
3056
3131
  .ab-ObjectCollection__list > * {
3057
3132
  background: var(--ab-cmp-listgroupitem__background);
3058
3133
  color: var(--ab-cmp-listgroupitem__color); }
@@ -3191,6 +3266,9 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
3191
3266
  flex-wrap: wrap;
3192
3267
  grid-gap: var(--ab-cmp-toolpanel-header__grid-gap); }
3193
3268
 
3269
+ .ab-CustomSortWizard__SortOrder .ab-Loader__text {
3270
+ font-size: var(--ab-cmp-custom-sort-wizard-loader__font-size); }
3271
+
3194
3272
  .ab-alert--error {
3195
3273
  background: var(--ab-color-error); }
3196
3274
 
@@ -3346,34 +3424,8 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
3346
3424
  .ag-details-row .ag-details-grid {
3347
3425
  flex: 1; }
3348
3426
 
3349
- div.ab-progress-indicator-wrapper {
3350
- align-items: center;
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); }
3427
+ .ab-wait-for-progress-indicator.ab-Grid {
3428
+ pointer-events: none; }
3377
3429
 
3378
3430
  :root {
3379
3431
  --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.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.2"
23
+ "@adaptabletools/adaptable": "10.0.3"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "@ag-grid-community/all-modules": ">=26.0.0",