@vuu-ui/vuu-data-react 0.8.14-debug → 0.8.15-debug
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/cjs/index.js +330 -298
- package/cjs/index.js.map +4 -4
- package/esm/index.js +458 -418
- package/esm/index.js.map +4 -4
- package/index.css +29 -22
- package/index.css.map +2 -2
- package/package.json +9 -9
package/index.css
CHANGED
|
@@ -174,11 +174,14 @@
|
|
|
174
174
|
border-style: solid;
|
|
175
175
|
border-width: 1px;
|
|
176
176
|
padding: 4px 0;
|
|
177
|
-
z-index:
|
|
177
|
+
z-index: 100;
|
|
178
178
|
}
|
|
179
179
|
.vuuPortal:has(.vuuDropdown-popup-component.vuuList-empty) {
|
|
180
180
|
display: none;
|
|
181
181
|
}
|
|
182
|
+
#vuu-portal-root {
|
|
183
|
+
z-index: 1000;
|
|
184
|
+
}
|
|
182
185
|
|
|
183
186
|
/* ../vuu-popups/src/dialog-header/DialogHeader.css */
|
|
184
187
|
.vuuDialogHeader {
|
|
@@ -456,6 +459,7 @@
|
|
|
456
459
|
.vuuTooltip {
|
|
457
460
|
--tooltip-align: flex-start;
|
|
458
461
|
--tooltip-background: white;
|
|
462
|
+
--tooltip-border: var(--vuu-color-gray-30);
|
|
459
463
|
--tooltip-color: var(--vuu-color-gray-80);
|
|
460
464
|
--tooltip-justify: flex-start;
|
|
461
465
|
--tooltip-top: auto;
|
|
@@ -466,6 +470,7 @@
|
|
|
466
470
|
justify-content: var(--tooltip-justify);
|
|
467
471
|
display: flex;
|
|
468
472
|
position: absolute;
|
|
473
|
+
z-index: 100;
|
|
469
474
|
}
|
|
470
475
|
.vuuTooltip[data-align=right] {
|
|
471
476
|
--tooltip-align: center;
|
|
@@ -488,10 +493,14 @@
|
|
|
488
493
|
}
|
|
489
494
|
.vuuTooltip-content {
|
|
490
495
|
background-color: var(--tooltip-background);
|
|
491
|
-
border-
|
|
496
|
+
border-color: var(--tooltip-border);
|
|
497
|
+
border-width: 1px;
|
|
498
|
+
border-style: solid;
|
|
499
|
+
border-radius: 6px;
|
|
500
|
+
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
|
|
492
501
|
color: var(--tooltip-color);
|
|
493
502
|
line-height: 24px;
|
|
494
|
-
padding: 2px
|
|
503
|
+
padding: 2px 8px;
|
|
495
504
|
position: absolute;
|
|
496
505
|
white-space: nowrap;
|
|
497
506
|
top: var(--tooltip-top);
|
|
@@ -500,7 +509,7 @@
|
|
|
500
509
|
left: var(--tooltip-left);
|
|
501
510
|
}
|
|
502
511
|
.vuuTooltip::before {
|
|
503
|
-
background-color: var(--tooltip-
|
|
512
|
+
background-color: var(--tooltip-border);
|
|
504
513
|
content: " ";
|
|
505
514
|
display: block;
|
|
506
515
|
position: absolute;
|
|
@@ -3289,20 +3298,16 @@ input[type=radio] {
|
|
|
3289
3298
|
.vuuFilterBuilderMenuList {
|
|
3290
3299
|
--vuuList-borderStyle: none;
|
|
3291
3300
|
}
|
|
3292
|
-
.vuuListItem.vuuMenuButton {
|
|
3293
|
-
|
|
3294
|
-
font-size: 9px;
|
|
3295
|
-
padding: 0 8px;
|
|
3301
|
+
.vuuListItem:has(.vuuMenuButton) {
|
|
3302
|
+
justify-content: center;
|
|
3296
3303
|
}
|
|
3297
|
-
.
|
|
3298
|
-
|
|
3299
|
-
content: "";
|
|
3300
|
-
position: absolute;
|
|
3301
|
-
height: 16px;
|
|
3302
|
-
background-color: transparent;
|
|
3303
|
-
left: 4px;
|
|
3304
|
-
right: 4px;
|
|
3304
|
+
.vuuMenuButton {
|
|
3305
|
+
background-color: white;
|
|
3305
3306
|
border: solid 1px var(--salt-actionable-primary-foreground);
|
|
3307
|
+
border-radius: 6px;
|
|
3308
|
+
color: var(--vuu-color-gray-50);
|
|
3309
|
+
font-size: 9px;
|
|
3310
|
+
padding: 1px 6px;
|
|
3306
3311
|
}
|
|
3307
3312
|
|
|
3308
3313
|
/* ../vuu-filters/src/filter-clause/ExpandoCombobox.css */
|
|
@@ -3684,16 +3689,16 @@ input[type=radio] {
|
|
|
3684
3689
|
}
|
|
3685
3690
|
|
|
3686
3691
|
/* ../vuu-layout/src/stack/Stack.css */
|
|
3687
|
-
.
|
|
3692
|
+
.vuuTabs {
|
|
3688
3693
|
display: flex;
|
|
3689
3694
|
box-sizing: border-box;
|
|
3690
3695
|
flex-direction: column;
|
|
3691
3696
|
}
|
|
3692
|
-
.
|
|
3697
|
+
.vuuTabs-horizontal {
|
|
3693
3698
|
--vuu-tabs-border-style: none solid none none;
|
|
3694
3699
|
flex-direction: row;
|
|
3695
3700
|
}
|
|
3696
|
-
.
|
|
3701
|
+
.vuuTabs .Toolbar:before {
|
|
3697
3702
|
left: 0;
|
|
3698
3703
|
width: 100%;
|
|
3699
3704
|
bottom: 0;
|
|
@@ -3702,11 +3707,13 @@ input[type=radio] {
|
|
|
3702
3707
|
position: absolute;
|
|
3703
3708
|
background: var(--grey60);
|
|
3704
3709
|
}
|
|
3705
|
-
.
|
|
3710
|
+
.vuuTabs-tabPanel {
|
|
3711
|
+
display: flex;
|
|
3706
3712
|
flex: 1;
|
|
3713
|
+
flex-direction: column;
|
|
3707
3714
|
}
|
|
3708
|
-
.
|
|
3709
|
-
|
|
3715
|
+
.vuuTabs-tabPanel > * {
|
|
3716
|
+
flex: 1 1 auto;
|
|
3710
3717
|
}
|
|
3711
3718
|
.vuuTabHeader {
|
|
3712
3719
|
--saltTabs-activationIndicator-background: transparent;
|