@adaptabletools/adaptable-react-aggrid 12.0.0-canary.2 → 12.0.0-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.
Files changed (3) hide show
  1. package/base.css +15 -14
  2. package/index.css +15 -14
  3. package/package.json +2 -2
package/base.css CHANGED
@@ -672,7 +672,7 @@
672
672
  padding: 0 !important;
673
673
  overflow: hidden !important;
674
674
  clip: rect(1px, 1px, 1px, 1px) !important;
675
- border: 0 !important
675
+ border: 0 !important;
676
676
  }
677
677
  /* Buttons */
678
678
  .rdp-button_reset {
@@ -692,19 +692,20 @@
692
692
  .rdp-button {
693
693
  border: 2px solid transparent;
694
694
  }
695
- .rdp-button[disabled] {
695
+ .rdp-button[aria-disabled='true'] {
696
696
  opacity: 0.25;
697
+ pointer-events: none;
697
698
  }
698
- .rdp-button:not([disabled]) {
699
+ .rdp-button:not([aria-disabled='true']) {
699
700
  cursor: pointer;
700
701
  }
701
- .rdp-button:focus:not([disabled]),
702
- .rdp-button:active:not([disabled]) {
702
+ .rdp-button:focus,
703
+ .rdp-button:active {
703
704
  color: inherit;
704
705
  border: var(--rdp-outline);
705
706
  background-color: var(--rdp-background-color);
706
707
  }
707
- .rdp-button:hover:not([disabled]) {
708
+ .rdp-button:hover:not([aria-disabled='true']) {
708
709
  background-color: var(--rdp-background-color);
709
710
  }
710
711
  .rdp-months {
@@ -814,8 +815,8 @@
814
815
  opacity: unset;
815
816
  color: unset;
816
817
  }
817
- .rdp-dropdown:focus:not([disabled])+.rdp-caption_label,
818
- .rdp-dropdown:active:not([disabled])+.rdp-caption_label {
818
+ .rdp-dropdown:focus:not([disabled]) + .rdp-caption_label,
819
+ .rdp-dropdown:active:not([disabled]) + .rdp-caption_label {
819
820
  border: var(--rdp-outline);
820
821
  border-radius: 6px;
821
822
  background-color: var(--rdp-background-color);
@@ -843,7 +844,7 @@
843
844
  .rdp-tbody {
844
845
  border: 0;
845
846
  }
846
- .rdp-foot {
847
+ .rdp-tfoot {
847
848
  margin: 0.5em;
848
849
  }
849
850
  .rdp-cell {
@@ -873,14 +874,14 @@
873
874
  .rdp-day_today:not(.rdp-day_outside) {
874
875
  font-weight: bold;
875
876
  }
876
- .rdp-day_selected:not([disabled]),
877
- .rdp-day_selected:focus:not([disabled]),
878
- .rdp-day_selected:active:not([disabled]),
879
- .rdp-day_selected:hover:not([disabled]) {
877
+ .rdp-day_selected:not([aria-disabled='true']),
878
+ .rdp-day_selected:focus:not([aria-disabled='true']),
879
+ .rdp-day_selected:active:not([aria-disabled='true']),
880
+ .rdp-day_selected:hover:not([aria-disabled='true']) {
880
881
  color: white;
881
882
  background-color: var(--rdp-accent-color);
882
883
  }
883
- .rdp-day_selected:focus:not([disabled]) {
884
+ .rdp-day_selected:focus:not([aria-disabled='true']) {
884
885
  border: var(--rdp-outline-selected);
885
886
  }
886
887
  .rdp:not([dir='rtl']) .rdp-day_range_start:not(.rdp-day_range_end) {
package/index.css CHANGED
@@ -1177,7 +1177,7 @@ template {
1177
1177
  padding: 0 !important;
1178
1178
  overflow: hidden !important;
1179
1179
  clip: rect(1px, 1px, 1px, 1px) !important;
1180
- border: 0 !important
1180
+ border: 0 !important;
1181
1181
  }
1182
1182
 
1183
1183
  /* Buttons */
@@ -1201,22 +1201,23 @@ template {
1201
1201
  border: 2px solid transparent;
1202
1202
  }
1203
1203
 
1204
- .rdp-button[disabled] {
1204
+ .rdp-button[aria-disabled='true'] {
1205
1205
  opacity: 0.25;
1206
+ pointer-events: none;
1206
1207
  }
1207
1208
 
1208
- .rdp-button:not([disabled]) {
1209
+ .rdp-button:not([aria-disabled='true']) {
1209
1210
  cursor: pointer;
1210
1211
  }
1211
1212
 
1212
- .rdp-button:focus:not([disabled]),
1213
- .rdp-button:active:not([disabled]) {
1213
+ .rdp-button:focus,
1214
+ .rdp-button:active {
1214
1215
  color: inherit;
1215
1216
  border: var(--rdp-outline);
1216
1217
  background-color: var(--rdp-background-color);
1217
1218
  }
1218
1219
 
1219
- .rdp-button:hover:not([disabled]) {
1220
+ .rdp-button:hover:not([aria-disabled='true']) {
1220
1221
  background-color: var(--rdp-background-color);
1221
1222
  }
1222
1223
 
@@ -1347,8 +1348,8 @@ template {
1347
1348
  color: unset;
1348
1349
  }
1349
1350
 
1350
- .rdp-dropdown:focus:not([disabled])+.rdp-caption_label,
1351
- .rdp-dropdown:active:not([disabled])+.rdp-caption_label {
1351
+ .rdp-dropdown:focus:not([disabled]) + .rdp-caption_label,
1352
+ .rdp-dropdown:active:not([disabled]) + .rdp-caption_label {
1352
1353
  border: var(--rdp-outline);
1353
1354
  border-radius: 6px;
1354
1355
  background-color: var(--rdp-background-color);
@@ -1382,7 +1383,7 @@ template {
1382
1383
  border: 0;
1383
1384
  }
1384
1385
 
1385
- .rdp-foot {
1386
+ .rdp-tfoot {
1386
1387
  margin: 0.5em;
1387
1388
  }
1388
1389
 
@@ -1417,15 +1418,15 @@ template {
1417
1418
  font-weight: bold;
1418
1419
  }
1419
1420
 
1420
- .rdp-day_selected:not([disabled]),
1421
- .rdp-day_selected:focus:not([disabled]),
1422
- .rdp-day_selected:active:not([disabled]),
1423
- .rdp-day_selected:hover:not([disabled]) {
1421
+ .rdp-day_selected:not([aria-disabled='true']),
1422
+ .rdp-day_selected:focus:not([aria-disabled='true']),
1423
+ .rdp-day_selected:active:not([aria-disabled='true']),
1424
+ .rdp-day_selected:hover:not([aria-disabled='true']) {
1424
1425
  color: white;
1425
1426
  background-color: var(--rdp-accent-color);
1426
1427
  }
1427
1428
 
1428
- .rdp-day_selected:focus:not([disabled]) {
1429
+ .rdp-day_selected:focus:not([aria-disabled='true']) {
1429
1430
  border: var(--rdp-outline-selected);
1430
1431
  }
1431
1432
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptabletools/adaptable-react-aggrid",
3
- "version": "12.0.0-canary.2",
3
+ "version": "12.0.0-canary.3",
4
4
  "description": "React version of AdapTable - the powerful AG Grid add-on that provides all the rich functionality that advanced users expect from their DataGrids and Data Tables",
5
5
  "keywords": [],
6
6
  "license": "contact sales@adaptabletools.com for details",
@@ -19,7 +19,7 @@
19
19
  },
20
20
  "dependencies": {
21
21
  "tslib": "^2.0.0",
22
- "@adaptabletools/adaptable": "12.0.0-canary.2"
22
+ "@adaptabletools/adaptable": "12.0.0-canary.3"
23
23
  },
24
24
  "peerDependencies": {
25
25
  "@ag-grid-community/all-modules": ">=27.2.0",