@vuu-ui/vuu-popups 0.8.7-debug → 0.8.8-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 +3505 -995
- package/cjs/index.js.map +4 -4
- package/esm/index.js +3453 -925
- package/esm/index.js.map +4 -4
- package/index.css +213 -6
- package/index.css.map +3 -3
- package/package.json +5 -5
package/index.css
CHANGED
|
@@ -590,10 +590,10 @@ path.drop-target.centre {
|
|
|
590
590
|
z-index: 2000;
|
|
591
591
|
}
|
|
592
592
|
.vuuDraggable-spacer {
|
|
593
|
-
display: var(--
|
|
594
|
-
height: var(--
|
|
595
|
-
transition: var(--
|
|
596
|
-
width: var(--
|
|
593
|
+
display: var(--vuuDraggable-display, inline-block);
|
|
594
|
+
height: var(--vuuDraggable-spacer-height, var(--tabstrip-height));
|
|
595
|
+
transition: var(--vuuDraggable-transitionProp, width) 0.3s ease;
|
|
596
|
+
width: var(--vuuDraggable-spacer-width, 0);
|
|
597
597
|
}
|
|
598
598
|
.vuuDraggable-dropIndicatorPosition {
|
|
599
599
|
display: var(--saltDraggable-display, inline-block);
|
|
@@ -601,7 +601,7 @@ path.drop-target.centre {
|
|
|
601
601
|
width: 100%;
|
|
602
602
|
}
|
|
603
603
|
.vuuDraggable-dropIndicatorContainer {
|
|
604
|
-
transition: var(--
|
|
604
|
+
transition: var(--vuuDraggable-transitionProp, top) 0.2s ease;
|
|
605
605
|
}
|
|
606
606
|
.vuuDraggable-dropIndicator {
|
|
607
607
|
background-color: var(--salt-palette-accent-background);
|
|
@@ -680,6 +680,206 @@ path.drop-target.centre {
|
|
|
680
680
|
padding: 0;
|
|
681
681
|
}
|
|
682
682
|
|
|
683
|
+
/* ../vuu-ui-controls/src/list/Highlighter.css */
|
|
684
|
+
.saltHighlighter-highlight {
|
|
685
|
+
font-weight: var(--salt-text-fontWeight-strong);
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
/* ../vuu-ui-controls/src/list/CheckboxIcon.css */
|
|
689
|
+
.vuuCheckboxIcon {
|
|
690
|
+
--vuu-icon-size: 14px;
|
|
691
|
+
--vuu-icon-left: -1px;
|
|
692
|
+
--vuu-icon-top: -1px;
|
|
693
|
+
--vuu-icon-svg: var(--vuu-svg-tick);
|
|
694
|
+
border-style: solid;
|
|
695
|
+
border-color: var(--vuuCheckboxIcon-borderColor, var(--salt-selectable-borderColor));
|
|
696
|
+
border-radius: var(--vuuCheckboxIcon-borderRadius, 3px);
|
|
697
|
+
border-width: 1px;
|
|
698
|
+
display: inline-block;
|
|
699
|
+
height: var(--vuuCheckboxIcon-size, 14px);
|
|
700
|
+
position: relative;
|
|
701
|
+
width: var(--vuuCheckboxIcon-size, 14px);
|
|
702
|
+
}
|
|
703
|
+
.vuuCheckboxIcon-checked {
|
|
704
|
+
background-color: var(--vuuCheckboxIcon-background-checked, var(--salt-selectable-background-selected));
|
|
705
|
+
border-color: var(--vuuCheckboxIcon-borderColor-checked, var(--salt-selectable-borderColor-selected));
|
|
706
|
+
}
|
|
707
|
+
.vuuCheckboxIcon-checked:after {
|
|
708
|
+
content: "";
|
|
709
|
+
background-color: white;
|
|
710
|
+
left: var(--vuu-icon-left, auto);
|
|
711
|
+
height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
|
|
712
|
+
-webkit-mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
713
|
+
mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
714
|
+
mask-repeat: no-repeat;
|
|
715
|
+
-webkit-mask-repeat: no-repeat;
|
|
716
|
+
position: absolute;
|
|
717
|
+
top: var(--vuu-icon-top, auto);
|
|
718
|
+
width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
/* ../vuu-ui-controls/src/list/ListItem.css */
|
|
722
|
+
.vuuListItem {
|
|
723
|
+
--list-item-text-color: var(--salt-text-primary-foreground);
|
|
724
|
+
--list-item-background: var(--vuuList-item-background, var(--salt-selectable-background));
|
|
725
|
+
--list-item-text-color-active: var(--salt-text-primary-foreground);
|
|
726
|
+
--list-item-background-active: var(--salt-selectable-background-selected);
|
|
727
|
+
--list-item-alignItems: center;
|
|
728
|
+
}
|
|
729
|
+
.vuuListItem.saltHighlighted {
|
|
730
|
+
--saltCheckbox-icon-stroke: var(--salt-selectable-borderColor-hover);
|
|
731
|
+
--list-item-background: var(--salt-selectable-background-hover);
|
|
732
|
+
}
|
|
733
|
+
.vuuListItemHeader {
|
|
734
|
+
font-weight: var(--salt-text-fontWeight-strong);
|
|
735
|
+
}
|
|
736
|
+
.vuuListItemHeader[data-sticky] {
|
|
737
|
+
position: sticky;
|
|
738
|
+
top: 0;
|
|
739
|
+
z-index: 1;
|
|
740
|
+
}
|
|
741
|
+
.vuuListItem {
|
|
742
|
+
color: var(--list-item-text-color);
|
|
743
|
+
cursor: var(--vuuList-item-cursor, pointer);
|
|
744
|
+
background: var(--vuuList-item-background, var(--list-item-background));
|
|
745
|
+
font-size: var(--salt-text-fontSize);
|
|
746
|
+
text-align: var(--salt-text-textAlign);
|
|
747
|
+
line-height: var(--salt-text-lineHeight);
|
|
748
|
+
height: var(--vuuList-item-height, var(--list-item-height, auto));
|
|
749
|
+
margin-bottom: var(--list-item-gap);
|
|
750
|
+
padding: 0 var(--salt-size-unit);
|
|
751
|
+
left: 0;
|
|
752
|
+
right: 0;
|
|
753
|
+
display: flex;
|
|
754
|
+
position: relative;
|
|
755
|
+
align-items: var(--list-item-alignItems);
|
|
756
|
+
white-space: nowrap;
|
|
757
|
+
}
|
|
758
|
+
.vuuListItem:last-child {
|
|
759
|
+
margin-bottom: 0px;
|
|
760
|
+
}
|
|
761
|
+
.vuuListItem-checkbox {
|
|
762
|
+
--list-item-background-active: var(--salt-selectable-background);
|
|
763
|
+
--list-item-text-color-active: var(--salt-text-primary-foreground);
|
|
764
|
+
--list-item-text-padding: 0 0 0 var(--salt-size-unit);
|
|
765
|
+
}
|
|
766
|
+
.vuuListItem[aria-selected=true]:not(.vuuListItem-checkbox) {
|
|
767
|
+
--list-item-background: var(--list-item-background-active);
|
|
768
|
+
color: var(--list-item-text-color-active);
|
|
769
|
+
}
|
|
770
|
+
.vuuListItem.saltDisabled {
|
|
771
|
+
--list-item-text-color: var(--salt-text-primary-foreground-disabled);
|
|
772
|
+
cursor: var(--salt-selectable-cursor-disabled);
|
|
773
|
+
}
|
|
774
|
+
.vuuListItem.vuuFocusVisible {
|
|
775
|
+
outline-style: var(--salt-focused-outlineStyle);
|
|
776
|
+
outline-width: var(--salt-focused-outlineWidth);
|
|
777
|
+
outline-offset: -2px;
|
|
778
|
+
outline-color: var(--salt-focused-outlineColor);
|
|
779
|
+
}
|
|
780
|
+
.vuuListItem.vuuFocusVisible:after {
|
|
781
|
+
content: none;
|
|
782
|
+
}
|
|
783
|
+
.vuuListItem[aria-selected=true]:not(.vuuListItem-checkbox).vuuFocusVisible {
|
|
784
|
+
outline-color: var(--list-item-selected-focus-outlineColor);
|
|
785
|
+
}
|
|
786
|
+
.vuuListItem-textWrapper {
|
|
787
|
+
flex: 1;
|
|
788
|
+
overflow: hidden;
|
|
789
|
+
padding: var(--list-item-text-padding, 0px);
|
|
790
|
+
white-space: nowrap;
|
|
791
|
+
text-overflow: ellipsis;
|
|
792
|
+
}
|
|
793
|
+
.vuuListItem-proxy {
|
|
794
|
+
position: absolute !important;
|
|
795
|
+
visibility: hidden;
|
|
796
|
+
}
|
|
797
|
+
.vuuDraggable-list-item {
|
|
798
|
+
--vuuList-item-height: 24px;
|
|
799
|
+
background-color: white;
|
|
800
|
+
}
|
|
801
|
+
.vuuListItem.vuuDraggable-dragAway {
|
|
802
|
+
display: none;
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
/* ../vuu-ui-controls/src/list/List.css */
|
|
806
|
+
.vuuList {
|
|
807
|
+
--list-background: var(--salt-container-primary-background);
|
|
808
|
+
--list-borderStyle: var(--vuuList-borderStyle,--salt-container-borderStyle);
|
|
809
|
+
--list-borderWidth: var(--salt-size-border);
|
|
810
|
+
--list-height: auto;
|
|
811
|
+
--list-item-height: var(--salt-size-stackable);
|
|
812
|
+
--list-item-gap: 0px;
|
|
813
|
+
--list-maxHeight: 100%;
|
|
814
|
+
--vuuDraggable-display: block;
|
|
815
|
+
--vuuDraggable-spacer-height: 0;
|
|
816
|
+
--vuuDraggable-spacer-width: 100%;
|
|
817
|
+
--vuuDraggable-transitionProp: height;
|
|
818
|
+
background: var(--list-background);
|
|
819
|
+
border-color: var(--salt-container-primary-borderColor);
|
|
820
|
+
border-style: var(--list-borderStyle);
|
|
821
|
+
border-width: var(--list-borderWidth);
|
|
822
|
+
height: var(--saltList-height, var(--list-height));
|
|
823
|
+
max-height: var(--list-maxHeight);
|
|
824
|
+
outline: none;
|
|
825
|
+
overflow-y: auto;
|
|
826
|
+
position: relative;
|
|
827
|
+
user-select: none;
|
|
828
|
+
width: var(--saltList-width, auto);
|
|
829
|
+
}
|
|
830
|
+
.vuuList-borderless {
|
|
831
|
+
--list-borderStyle: none;
|
|
832
|
+
}
|
|
833
|
+
.vuuList-viewport {
|
|
834
|
+
--list-item-height: 30px;
|
|
835
|
+
max-height: calc(var(--list-maxHeight) - 2 * var(--list-borderWidth));
|
|
836
|
+
overflow: auto;
|
|
837
|
+
}
|
|
838
|
+
.vuuListItemHeader {
|
|
839
|
+
--saltList-item-background: var(--list-item-header-background);
|
|
840
|
+
color: var(--list-item-header-color);
|
|
841
|
+
}
|
|
842
|
+
.vuuListItemHeader[data-sticky=true] {
|
|
843
|
+
--saltList-item-background: var(--list-background);
|
|
844
|
+
position: sticky;
|
|
845
|
+
top: 0;
|
|
846
|
+
z-index: 1;
|
|
847
|
+
}
|
|
848
|
+
.vuuList-collapsible .vuuListItemHeader:after {
|
|
849
|
+
border-width: var(--checkbox-borderWidth);
|
|
850
|
+
border-color: var(--checkbox-borderColor);
|
|
851
|
+
content: var(--list-item-header-twisty-content);
|
|
852
|
+
-webkit-mask: var(--list-svg-chevron-down) center center/12px 12px no-repeat;
|
|
853
|
+
mask: var(--list-svg-chevron-down) center center/12px 12px no-repeat;
|
|
854
|
+
background: var(--list-item-header-twisty-color);
|
|
855
|
+
height: 12px;
|
|
856
|
+
left: var(--list-item-header-twisty-left);
|
|
857
|
+
right: var(--list-item-header-twisty-right);
|
|
858
|
+
margin-top: -8px;
|
|
859
|
+
position: absolute;
|
|
860
|
+
top: var(--list-item-header-twisty-top);
|
|
861
|
+
transition: transform 0.3s;
|
|
862
|
+
width: 12px;
|
|
863
|
+
}
|
|
864
|
+
.vuuListItemHeader[aria-expanded=false]:after {
|
|
865
|
+
transform: rotate(-90deg);
|
|
866
|
+
}
|
|
867
|
+
.vuuList-scrollingContentContainer {
|
|
868
|
+
box-sizing: inherit;
|
|
869
|
+
position: relative;
|
|
870
|
+
}
|
|
871
|
+
.vuuList-virtualized .vuuListItem {
|
|
872
|
+
line-height: 30px;
|
|
873
|
+
position: absolute;
|
|
874
|
+
top: 0;
|
|
875
|
+
left: 0;
|
|
876
|
+
right: 0;
|
|
877
|
+
will-change: transform;
|
|
878
|
+
}
|
|
879
|
+
.vuuList.saltFocusVisible:after {
|
|
880
|
+
inset: 2px;
|
|
881
|
+
}
|
|
882
|
+
|
|
683
883
|
/* ../vuu-ui-controls/src/tabstrip/Tabstrip.css */
|
|
684
884
|
.vuuTabstrip {
|
|
685
885
|
--vuuOverflowContainer-background: transparent;
|
|
@@ -768,6 +968,7 @@ path.drop-target.centre {
|
|
|
768
968
|
}
|
|
769
969
|
.vuuDraggable-tabstrip-horizontal {
|
|
770
970
|
--tab-thumb-height: 2px;
|
|
971
|
+
--tab-thumb-left: 0px;
|
|
771
972
|
--tabstrip-height: 28px;
|
|
772
973
|
line-height: var(--tabstrip-height);
|
|
773
974
|
}
|
|
@@ -1712,6 +1913,8 @@ vuuUserPanel-history {
|
|
|
1712
1913
|
.vuuContextPanel-inner {
|
|
1713
1914
|
background-color: var(--salt-container-primary-background);
|
|
1714
1915
|
box-shadow: var(--vuu-side-panel-shadow, none);
|
|
1916
|
+
display: flex;
|
|
1917
|
+
flex-direction: column;
|
|
1715
1918
|
height: 100%;
|
|
1716
1919
|
padding-bottom: 24px;
|
|
1717
1920
|
padding-top: 24px;
|
|
@@ -1732,7 +1935,7 @@ vuuUserPanel-history {
|
|
|
1732
1935
|
align-items: center;
|
|
1733
1936
|
display: flex;
|
|
1734
1937
|
flex-wrap: nowrap;
|
|
1735
|
-
|
|
1938
|
+
flex: 0 0 27px;
|
|
1736
1939
|
justify-content: space-between;
|
|
1737
1940
|
}
|
|
1738
1941
|
.vuuContextPanel-title {
|
|
@@ -1740,6 +1943,10 @@ vuuUserPanel-history {
|
|
|
1740
1943
|
font-weight: 700;
|
|
1741
1944
|
white-space: nowrap;
|
|
1742
1945
|
}
|
|
1946
|
+
.vuuContextPanel-content {
|
|
1947
|
+
flex: 1 1 auto;
|
|
1948
|
+
width: 100%;
|
|
1949
|
+
}
|
|
1743
1950
|
|
|
1744
1951
|
/* ../vuu-shell/src/shell.css */
|
|
1745
1952
|
.vuuShell {
|