@adaptabletools/adaptable-react-aggrid 23.0.0-canary.8 → 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.
- package/index.css +29 -14
- package/package.json +2 -2
package/index.css
CHANGED
|
@@ -582,9 +582,6 @@
|
|
|
582
582
|
.twa\:inline-flex {
|
|
583
583
|
display: inline-flex;
|
|
584
584
|
}
|
|
585
|
-
.twa\:inline-grid {
|
|
586
|
-
display: inline-grid;
|
|
587
|
-
}
|
|
588
585
|
.twa\:field-sizing-content {
|
|
589
586
|
field-sizing: content;
|
|
590
587
|
}
|
|
@@ -1274,9 +1271,6 @@
|
|
|
1274
1271
|
.twa\:grid-cols-\[4\.5rem_1fr\] {
|
|
1275
1272
|
grid-template-columns: 4.5rem 1fr;
|
|
1276
1273
|
}
|
|
1277
|
-
.twa\:grid-cols-\[160px_140px_140px\] {
|
|
1278
|
-
grid-template-columns: 160px 140px 140px;
|
|
1279
|
-
}
|
|
1280
1274
|
.twa\:grid-cols-\[auto_1fr\] {
|
|
1281
1275
|
grid-template-columns: auto 1fr;
|
|
1282
1276
|
}
|
|
@@ -5852,7 +5846,18 @@
|
|
|
5852
5846
|
--ab-icon-fill: currentColor;
|
|
5853
5847
|
--ab-custom-scrollbar-size: 10px;
|
|
5854
5848
|
--ab-grid-row-height: 35px;
|
|
5855
|
-
--ab-cmp-column-tag__background:
|
|
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 {
|
|
5856
5861
|
--ab-cmp-column-tag__foreground: var(--ab-color-primary-foreground);
|
|
5857
5862
|
--ab-loaded: 777;
|
|
5858
5863
|
--ab_flex-direction: column;
|
|
@@ -7488,7 +7493,7 @@
|
|
|
7488
7493
|
.ab-Tag {
|
|
7489
7494
|
max-width: 100%;
|
|
7490
7495
|
}
|
|
7491
|
-
.ab-Tag
|
|
7496
|
+
.ab-Tag--column {
|
|
7492
7497
|
background: var(--ab-cmp-column-tag__background);
|
|
7493
7498
|
color: var(--ab-cmp-column-tag__foreground, inherit);
|
|
7494
7499
|
}
|
|
@@ -9007,11 +9012,16 @@
|
|
|
9007
9012
|
.ab--theme-dark {
|
|
9008
9013
|
--ab-color-secondary: oklch(0.269 0 0);
|
|
9009
9014
|
--ab-color-secondary-foreground: oklch(0.985 0 0);
|
|
9010
|
-
--ab-color-destructive: oklch(0.396 0.141 25.723);
|
|
9011
|
-
--ab-color-destructive-foreground: oklch(0.637 0.237 25.331);
|
|
9012
9015
|
--ab-color-border: oklch(0.269 0 0);
|
|
9013
9016
|
--ab-theme-loaded: dark;
|
|
9014
|
-
--ab-color-input-background:
|
|
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 {
|
|
9015
9025
|
--ab-cmp-input--disabled__background: #232323;
|
|
9016
9026
|
--ab-color-background: var(--ab-color-defaultbackground, #474c52);
|
|
9017
9027
|
--ab-color-foreground: var(--ab-color-text-on-defaultbackground, #e2e2e2);
|
|
@@ -9021,13 +9031,18 @@
|
|
|
9021
9031
|
--ab-color-primarydark: #1c2021;
|
|
9022
9032
|
--ab-color-card: #51555a;
|
|
9023
9033
|
--ab-color-card-foreground: var(--ab-color-foreground);
|
|
9024
|
-
--ab-cmp-draggable-list-item__background: color-
|
|
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(
|
|
9025
9039
|
in srgb,
|
|
9026
9040
|
var(--ab-color-primary) 72%,
|
|
9027
9041
|
var(--ab-color-primarylight)
|
|
9028
9042
|
);
|
|
9029
|
-
|
|
9030
|
-
|
|
9043
|
+
}
|
|
9044
|
+
}
|
|
9045
|
+
.ab--theme-dark {
|
|
9031
9046
|
--ab-color-palette-1: #5c1a1a;
|
|
9032
9047
|
--ab-color-palette-2: #ffb4b4;
|
|
9033
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.
|
|
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.
|
|
11
|
+
"@adaptabletools/adaptable": "23.0.0-canary.9"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
14
14
|
"ag-grid-enterprise": ">=35.3.0",
|