@adaptabletools/adaptable-react-aggrid 23.0.0-canary.7 → 23.0.0-canary.9

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 (2) hide show
  1. package/index.css +98 -17
  2. package/package.json +2 -2
package/index.css CHANGED
@@ -552,9 +552,6 @@
552
552
  .twa\:ml-6 {
553
553
  margin-left: calc(var(--ab-base-space) * 6);
554
554
  }
555
- .twa\:ml-\[2px\] {
556
- margin-left: 2px;
557
- }
558
555
  .twa\:ml-auto {
559
556
  margin-left: auto;
560
557
  }
@@ -687,9 +684,6 @@
687
684
  .twa\:h-\[90vh\] {
688
685
  height: 90vh;
689
686
  }
690
- .twa\:h-\[400px\] {
691
- height: 400px;
692
- }
693
687
  .twa\:h-\[calc\(--spacing\(5\.5\)\)\] {
694
688
  height: calc(calc(var(--ab-base-space) * 5.5));
695
689
  }
@@ -768,9 +762,6 @@
768
762
  .twa\:min-h-\[15px\] {
769
763
  min-height: 15px;
770
764
  }
771
- .twa\:min-h-\[20px\] {
772
- min-height: 20px;
773
- }
774
765
  .twa\:min-h-\[32px\] {
775
766
  min-height: 32px;
776
767
  }
@@ -5855,7 +5846,18 @@
5855
5846
  --ab-icon-fill: currentColor;
5856
5847
  --ab-custom-scrollbar-size: 10px;
5857
5848
  --ab-grid-row-height: 35px;
5858
- --ab-cmp-column-tag__background: #d8e0e8;
5849
+ --ab-cmp-column-tag__background: var(--ab-color-primary);
5850
+ }
5851
+ @supports (color: color-mix(in lab, red, red)) {
5852
+ :root {
5853
+ --ab-cmp-column-tag__background: color-mix(
5854
+ in srgb,
5855
+ var(--ab-color-primary) 80%,
5856
+ var(--ab-color-accent)
5857
+ );
5858
+ }
5859
+ }
5860
+ :root {
5859
5861
  --ab-cmp-column-tag__foreground: var(--ab-color-primary-foreground);
5860
5862
  --ab-loaded: 777;
5861
5863
  --ab_flex-direction: column;
@@ -7491,7 +7493,7 @@
7491
7493
  .ab-Tag {
7492
7494
  max-width: 100%;
7493
7495
  }
7494
- .ab-Tag.ab-Tag--column {
7496
+ .ab-Tag--column {
7495
7497
  background: var(--ab-cmp-column-tag__background);
7496
7498
  color: var(--ab-cmp-column-tag__foreground, inherit);
7497
7499
  }
@@ -8001,6 +8003,75 @@
8001
8003
  min-width: 0;
8002
8004
  word-break: break-all;
8003
8005
  }
8006
+ .ab-ObjectListActionButton {
8007
+ border-radius: var(--ab-base-border-radius, 4px);
8008
+ min-width: 30px;
8009
+ min-height: 30px;
8010
+ box-shadow: inset 0 0 0 1px currentColor;
8011
+ }
8012
+ @supports (color: color-mix(in lab, red, red)) {
8013
+ .ab-ObjectListActionButton {
8014
+ box-shadow: inset 0 0 0 1px color-mix(in srgb, currentColor 24%, transparent);
8015
+ }
8016
+ }
8017
+ .ab-SimpleButton.ab-ObjectListActionButton--edit {
8018
+ background-color: var(--ab-color-action-edit) !important;
8019
+ }
8020
+ @supports (color: color-mix(in lab, red, red)) {
8021
+ .ab-SimpleButton.ab-ObjectListActionButton--edit {
8022
+ background-color: color-mix(in srgb, var(--ab-color-action-edit) 14%, var(--ab-color-muted)) !important;
8023
+ }
8024
+ }
8025
+ .ab-SimpleButton.ab-ObjectListActionButton--edit {
8026
+ color: var(--ab-color-action-edit);
8027
+ }
8028
+ .ab-SimpleButton.ab-ObjectListActionButton--suspend {
8029
+ background-color: var(--ab-color-primary-foreground) !important;
8030
+ }
8031
+ @supports (color: color-mix(in lab, red, red)) {
8032
+ .ab-SimpleButton.ab-ObjectListActionButton--suspend {
8033
+ background-color: color-mix( in srgb, var(--ab-color-primary-foreground) 10%, var(--ab-color-muted) ) !important;
8034
+ }
8035
+ }
8036
+ .ab-SimpleButton.ab-ObjectListActionButton--suspend {
8037
+ color: var(--ab-color-primary-foreground);
8038
+ }
8039
+ .ab-SimpleButton.ab-ObjectListActionButton--delete {
8040
+ background-color: var(--ab-color-action-delete) !important;
8041
+ }
8042
+ @supports (color: color-mix(in lab, red, red)) {
8043
+ .ab-SimpleButton.ab-ObjectListActionButton--delete {
8044
+ background-color: color-mix(in srgb, var(--ab-color-action-delete) 14%, var(--ab-color-muted)) !important;
8045
+ }
8046
+ }
8047
+ .ab-SimpleButton.ab-ObjectListActionButton--delete {
8048
+ color: var(--ab-color-action-delete);
8049
+ }
8050
+ .ab-SimpleButton.ab-ObjectListActionButton--share {
8051
+ background-color: var(--ab-color-action-share) !important;
8052
+ }
8053
+ @supports (color: color-mix(in lab, red, red)) {
8054
+ .ab-SimpleButton.ab-ObjectListActionButton--share {
8055
+ background-color: color-mix(in srgb, var(--ab-color-action-share) 14%, var(--ab-color-muted)) !important;
8056
+ }
8057
+ }
8058
+ .ab-SimpleButton.ab-ObjectListActionButton--share {
8059
+ color: var(--ab-color-action-share);
8060
+ }
8061
+ .ab-SimpleButton.ab-ObjectListActionButton:hover:not(:disabled) {
8062
+ box-shadow: inset 0 0 0 1px currentColor;
8063
+ }
8064
+ @supports (color: color-mix(in lab, red, red)) {
8065
+ .ab-SimpleButton.ab-ObjectListActionButton:hover:not(:disabled) {
8066
+ box-shadow: inset 0 0 0 1px color-mix(in srgb, currentColor 38%, transparent);
8067
+ }
8068
+ }
8069
+ .ab-SimpleButton.ab-ObjectListActionButton:hover:not(:disabled) {
8070
+ filter: brightness(1.03);
8071
+ }
8072
+ .ab-SimpleButton.ab-ObjectListActionButton:disabled {
8073
+ opacity: 0.5;
8074
+ }
8004
8075
  .ab-Adaptable-Object-List__Item__label {
8005
8076
  width: var(--ab-cmp-adaptable-object-list-item-label__width);
8006
8077
  }
@@ -8941,11 +9012,16 @@
8941
9012
  .ab--theme-dark {
8942
9013
  --ab-color-secondary: oklch(0.269 0 0);
8943
9014
  --ab-color-secondary-foreground: oklch(0.985 0 0);
8944
- --ab-color-destructive: oklch(0.396 0.141 25.723);
8945
- --ab-color-destructive-foreground: oklch(0.637 0.237 25.331);
8946
9015
  --ab-color-border: oklch(0.269 0 0);
8947
9016
  --ab-theme-loaded: dark;
8948
- --ab-color-input-background: color-mix(in srgb, var(--ab-color-background) 95%, black);
9017
+ --ab-color-input-background: var(--ab-color-background);
9018
+ }
9019
+ @supports (color: color-mix(in lab, red, red)) {
9020
+ .ab--theme-dark {
9021
+ --ab-color-input-background: color-mix(in srgb, var(--ab-color-background) 95%, black);
9022
+ }
9023
+ }
9024
+ .ab--theme-dark {
8949
9025
  --ab-cmp-input--disabled__background: #232323;
8950
9026
  --ab-color-background: var(--ab-color-defaultbackground, #474c52);
8951
9027
  --ab-color-foreground: var(--ab-color-text-on-defaultbackground, #e2e2e2);
@@ -8955,13 +9031,18 @@
8955
9031
  --ab-color-primarydark: #1c2021;
8956
9032
  --ab-color-card: #51555a;
8957
9033
  --ab-color-card-foreground: var(--ab-color-foreground);
8958
- --ab-cmp-draggable-list-item__background: color-mix(
9034
+ --ab-cmp-draggable-list-item__background: var(--ab-color-primary);
9035
+ }
9036
+ @supports (color: color-mix(in lab, red, red)) {
9037
+ .ab--theme-dark {
9038
+ --ab-cmp-draggable-list-item__background: color-mix(
8959
9039
  in srgb,
8960
9040
  var(--ab-color-primary) 72%,
8961
9041
  var(--ab-color-primarylight)
8962
9042
  );
8963
- --ab-cmp-column-tag__background: #6f7882;
8964
- --ab-cmp-column-tag__foreground: var(--ab-color-primary-foreground);
9043
+ }
9044
+ }
9045
+ .ab--theme-dark {
8965
9046
  --ab-color-palette-1: #5c1a1a;
8966
9047
  --ab-color-palette-2: #ffb4b4;
8967
9048
  --ab-color-palette-3: #4a3b00;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptabletools/adaptable-react-aggrid",
3
- "version": "23.0.0-canary.7",
3
+ "version": "23.0.0-canary.9",
4
4
  "description": "React version of AdapTable - the powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements",
5
5
  "keywords": [],
6
6
  "license": "contact sales@adaptabletools.com for details",
@@ -8,7 +8,7 @@
8
8
  "dependencies": {
9
9
  "tslib": "^2.8.1",
10
10
  "react-redux": "9.2.0",
11
- "@adaptabletools/adaptable": "23.0.0-canary.7"
11
+ "@adaptabletools/adaptable": "23.0.0-canary.9"
12
12
  },
13
13
  "peerDependencies": {
14
14
  "ag-grid-enterprise": ">=35.3.0",