@adaptabletools/adaptable-vue3-aggrid 23.0.0-canary.7 → 23.0.0-canary.8
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 +75 -9
- 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
|
}
|
|
@@ -585,6 +582,9 @@
|
|
|
585
582
|
.twa\:inline-flex {
|
|
586
583
|
display: inline-flex;
|
|
587
584
|
}
|
|
585
|
+
.twa\:inline-grid {
|
|
586
|
+
display: inline-grid;
|
|
587
|
+
}
|
|
588
588
|
.twa\:field-sizing-content {
|
|
589
589
|
field-sizing: content;
|
|
590
590
|
}
|
|
@@ -687,9 +687,6 @@
|
|
|
687
687
|
.twa\:h-\[90vh\] {
|
|
688
688
|
height: 90vh;
|
|
689
689
|
}
|
|
690
|
-
.twa\:h-\[400px\] {
|
|
691
|
-
height: 400px;
|
|
692
|
-
}
|
|
693
690
|
.twa\:h-\[calc\(--spacing\(5\.5\)\)\] {
|
|
694
691
|
height: calc(calc(var(--ab-base-space) * 5.5));
|
|
695
692
|
}
|
|
@@ -768,9 +765,6 @@
|
|
|
768
765
|
.twa\:min-h-\[15px\] {
|
|
769
766
|
min-height: 15px;
|
|
770
767
|
}
|
|
771
|
-
.twa\:min-h-\[20px\] {
|
|
772
|
-
min-height: 20px;
|
|
773
|
-
}
|
|
774
768
|
.twa\:min-h-\[32px\] {
|
|
775
769
|
min-height: 32px;
|
|
776
770
|
}
|
|
@@ -1280,6 +1274,9 @@
|
|
|
1280
1274
|
.twa\:grid-cols-\[4\.5rem_1fr\] {
|
|
1281
1275
|
grid-template-columns: 4.5rem 1fr;
|
|
1282
1276
|
}
|
|
1277
|
+
.twa\:grid-cols-\[160px_140px_140px\] {
|
|
1278
|
+
grid-template-columns: 160px 140px 140px;
|
|
1279
|
+
}
|
|
1283
1280
|
.twa\:grid-cols-\[auto_1fr\] {
|
|
1284
1281
|
grid-template-columns: auto 1fr;
|
|
1285
1282
|
}
|
|
@@ -8001,6 +7998,75 @@
|
|
|
8001
7998
|
min-width: 0;
|
|
8002
7999
|
word-break: break-all;
|
|
8003
8000
|
}
|
|
8001
|
+
.ab-ObjectListActionButton {
|
|
8002
|
+
border-radius: var(--ab-base-border-radius, 4px);
|
|
8003
|
+
min-width: 30px;
|
|
8004
|
+
min-height: 30px;
|
|
8005
|
+
box-shadow: inset 0 0 0 1px currentColor;
|
|
8006
|
+
}
|
|
8007
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
8008
|
+
.ab-ObjectListActionButton {
|
|
8009
|
+
box-shadow: inset 0 0 0 1px color-mix(in srgb, currentColor 24%, transparent);
|
|
8010
|
+
}
|
|
8011
|
+
}
|
|
8012
|
+
.ab-SimpleButton.ab-ObjectListActionButton--edit {
|
|
8013
|
+
background-color: var(--ab-color-action-edit) !important;
|
|
8014
|
+
}
|
|
8015
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
8016
|
+
.ab-SimpleButton.ab-ObjectListActionButton--edit {
|
|
8017
|
+
background-color: color-mix(in srgb, var(--ab-color-action-edit) 14%, var(--ab-color-muted)) !important;
|
|
8018
|
+
}
|
|
8019
|
+
}
|
|
8020
|
+
.ab-SimpleButton.ab-ObjectListActionButton--edit {
|
|
8021
|
+
color: var(--ab-color-action-edit);
|
|
8022
|
+
}
|
|
8023
|
+
.ab-SimpleButton.ab-ObjectListActionButton--suspend {
|
|
8024
|
+
background-color: var(--ab-color-primary-foreground) !important;
|
|
8025
|
+
}
|
|
8026
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
8027
|
+
.ab-SimpleButton.ab-ObjectListActionButton--suspend {
|
|
8028
|
+
background-color: color-mix( in srgb, var(--ab-color-primary-foreground) 10%, var(--ab-color-muted) ) !important;
|
|
8029
|
+
}
|
|
8030
|
+
}
|
|
8031
|
+
.ab-SimpleButton.ab-ObjectListActionButton--suspend {
|
|
8032
|
+
color: var(--ab-color-primary-foreground);
|
|
8033
|
+
}
|
|
8034
|
+
.ab-SimpleButton.ab-ObjectListActionButton--delete {
|
|
8035
|
+
background-color: var(--ab-color-action-delete) !important;
|
|
8036
|
+
}
|
|
8037
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
8038
|
+
.ab-SimpleButton.ab-ObjectListActionButton--delete {
|
|
8039
|
+
background-color: color-mix(in srgb, var(--ab-color-action-delete) 14%, var(--ab-color-muted)) !important;
|
|
8040
|
+
}
|
|
8041
|
+
}
|
|
8042
|
+
.ab-SimpleButton.ab-ObjectListActionButton--delete {
|
|
8043
|
+
color: var(--ab-color-action-delete);
|
|
8044
|
+
}
|
|
8045
|
+
.ab-SimpleButton.ab-ObjectListActionButton--share {
|
|
8046
|
+
background-color: var(--ab-color-action-share) !important;
|
|
8047
|
+
}
|
|
8048
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
8049
|
+
.ab-SimpleButton.ab-ObjectListActionButton--share {
|
|
8050
|
+
background-color: color-mix(in srgb, var(--ab-color-action-share) 14%, var(--ab-color-muted)) !important;
|
|
8051
|
+
}
|
|
8052
|
+
}
|
|
8053
|
+
.ab-SimpleButton.ab-ObjectListActionButton--share {
|
|
8054
|
+
color: var(--ab-color-action-share);
|
|
8055
|
+
}
|
|
8056
|
+
.ab-SimpleButton.ab-ObjectListActionButton:hover:not(:disabled) {
|
|
8057
|
+
box-shadow: inset 0 0 0 1px currentColor;
|
|
8058
|
+
}
|
|
8059
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
8060
|
+
.ab-SimpleButton.ab-ObjectListActionButton:hover:not(:disabled) {
|
|
8061
|
+
box-shadow: inset 0 0 0 1px color-mix(in srgb, currentColor 38%, transparent);
|
|
8062
|
+
}
|
|
8063
|
+
}
|
|
8064
|
+
.ab-SimpleButton.ab-ObjectListActionButton:hover:not(:disabled) {
|
|
8065
|
+
filter: brightness(1.03);
|
|
8066
|
+
}
|
|
8067
|
+
.ab-SimpleButton.ab-ObjectListActionButton:disabled {
|
|
8068
|
+
opacity: 0.5;
|
|
8069
|
+
}
|
|
8004
8070
|
.ab-Adaptable-Object-List__Item__label {
|
|
8005
8071
|
width: var(--ab-cmp-adaptable-object-list-item-label__width);
|
|
8006
8072
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable-vue3-aggrid",
|
|
3
|
-
"version": "23.0.0-canary.
|
|
3
|
+
"version": "23.0.0-canary.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"typings": "lib/index.d.ts",
|
|
6
6
|
"peerDependencies": {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"vue": "^3.0.0"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@adaptabletools/adaptable": "23.0.0-canary.
|
|
12
|
+
"@adaptabletools/adaptable": "23.0.0-canary.8"
|
|
13
13
|
},
|
|
14
14
|
"module": "lib/index.js"
|
|
15
15
|
}
|