@rogieking/figui3 6.20.0 → 6.20.1
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/components.css +7 -10
- package/dist/components.css +1 -1
- package/dist/fig-editor.css +1 -1
- package/dist/fig-lab.css +1 -1
- package/dist/fig.css +1 -1
- package/fig-lab.css +91 -50
- package/package.json +1 -1
package/fig-lab.css
CHANGED
|
@@ -137,6 +137,27 @@ fig-content:has(> propskit-group[name]:last-child) {
|
|
|
137
137
|
padding-bottom: 0;
|
|
138
138
|
}
|
|
139
139
|
|
|
140
|
+
/* Large size: more left field padding; nudge trailing controls in from the right.
|
|
141
|
+
propskit-select applies left inset on label + trigger button instead (below). */
|
|
142
|
+
:is(
|
|
143
|
+
propskit-switch,
|
|
144
|
+
propskit-color,
|
|
145
|
+
propskit-text,
|
|
146
|
+
propskit-number,
|
|
147
|
+
propskit-slider
|
|
148
|
+
)[size="large"] {
|
|
149
|
+
fig-field:not([direction="vertical"]) {
|
|
150
|
+
padding-left: var(--spacer-2-5);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/* Flex-positioned numbers — margin works. Absolute numbers use right: calc(...) below. */
|
|
155
|
+
:is(propskit-color, propskit-number)[size="large"] {
|
|
156
|
+
fig-field fig-input-number {
|
|
157
|
+
margin-right: var(--spacer-1);
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
|
|
140
161
|
propskit-switch {
|
|
141
162
|
--propskit-switch-height: 2rem;
|
|
142
163
|
--propskit-switch-vertical-padding: var(--spacer-1);
|
|
@@ -349,6 +370,27 @@ propskit-select {
|
|
|
349
370
|
|
|
350
371
|
&[size="large"] {
|
|
351
372
|
--propskit-select-vertical-padding: 0px;
|
|
373
|
+
|
|
374
|
+
fig-field:not([direction="vertical"]) {
|
|
375
|
+
padding-left: 0;
|
|
376
|
+
|
|
377
|
+
& > label {
|
|
378
|
+
inset: 0 auto 0 var(--spacer-2-5);
|
|
379
|
+
width: calc(50% - var(--spacer-2-5));
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
fig-select {
|
|
383
|
+
padding-right: var(--spacer-1);
|
|
384
|
+
|
|
385
|
+
&::after {
|
|
386
|
+
right: calc(0.25rem + var(--spacer-1));
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
fig-select::part(trigger) {
|
|
391
|
+
padding-left: var(--spacer-2-5);
|
|
392
|
+
}
|
|
393
|
+
}
|
|
352
394
|
}
|
|
353
395
|
|
|
354
396
|
&[disabled]:not([disabled="false"]) {
|
|
@@ -546,6 +588,10 @@ propskit-number {
|
|
|
546
588
|
|
|
547
589
|
&[size="large"] {
|
|
548
590
|
--propskit-number-vertical-padding: 0px;
|
|
591
|
+
|
|
592
|
+
fig-field:not([direction="vertical"]) > label {
|
|
593
|
+
inset: 0 auto 0 var(--spacer-2-5);
|
|
594
|
+
}
|
|
549
595
|
}
|
|
550
596
|
|
|
551
597
|
&[disabled]:not([disabled="false"]) {
|
|
@@ -567,6 +613,12 @@ propskit-number {
|
|
|
567
613
|
height: 100%;
|
|
568
614
|
border-radius: var(--radius-medium);
|
|
569
615
|
background-color: var(--figma-color-bg-secondary);
|
|
616
|
+
outline: none;
|
|
617
|
+
|
|
618
|
+
&:focus-within {
|
|
619
|
+
outline: var(--figma-focus-outline);
|
|
620
|
+
outline-offset: var(--figma-focus-outline-offset);
|
|
621
|
+
}
|
|
570
622
|
|
|
571
623
|
&::after {
|
|
572
624
|
content: "";
|
|
@@ -602,8 +654,6 @@ propskit-number {
|
|
|
602
654
|
}
|
|
603
655
|
|
|
604
656
|
fig-input-number {
|
|
605
|
-
--figma-focus-outline-offset: 1px;
|
|
606
|
-
|
|
607
657
|
position: relative;
|
|
608
658
|
align-self: center;
|
|
609
659
|
flex: 0 0 auto;
|
|
@@ -617,10 +667,10 @@ propskit-number {
|
|
|
617
667
|
border-radius: var(--radius-medium);
|
|
618
668
|
background-color: transparent;
|
|
619
669
|
box-shadow: none;
|
|
670
|
+
outline: none !important;
|
|
620
671
|
|
|
621
672
|
&:has(input:focus) {
|
|
622
|
-
outline:
|
|
623
|
-
outline-offset: var(--figma-focus-outline-offset) !important;
|
|
673
|
+
outline: none !important;
|
|
624
674
|
}
|
|
625
675
|
|
|
626
676
|
input {
|
|
@@ -650,6 +700,7 @@ propskit-slider {
|
|
|
650
700
|
light-dark(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
|
|
651
701
|
--propskit-slider-fig-slider-height: calc(var(--propskit-slider-height) - var(--propskit-slider-vertical-padding) * 2);
|
|
652
702
|
--propskit-slider-fig-slider-thumb-height: calc(var(--propskit-slider-fig-slider-height) - var(--spacer-2-5));
|
|
703
|
+
--propskit-slider-number-right: 2px;
|
|
653
704
|
|
|
654
705
|
display: block;
|
|
655
706
|
position: relative;
|
|
@@ -663,9 +714,12 @@ propskit-slider {
|
|
|
663
714
|
padding-left: var(--propskit-slider-horizontal-padding);
|
|
664
715
|
padding-right: var(--propskit-slider-horizontal-padding);
|
|
665
716
|
|
|
666
|
-
&[size="large"]{
|
|
717
|
+
&[size="large"] {
|
|
667
718
|
--propskit-slider-vertical-padding: 0px;
|
|
668
|
-
--propskit-slider-fig-slider-thumb-height: calc(
|
|
719
|
+
--propskit-slider-fig-slider-thumb-height: calc(
|
|
720
|
+
var(--propskit-slider-fig-slider-height) - var(--spacer-3)
|
|
721
|
+
);
|
|
722
|
+
--propskit-slider-number-right: calc(2px + var(--spacer-1));
|
|
669
723
|
}
|
|
670
724
|
|
|
671
725
|
label {
|
|
@@ -725,6 +779,11 @@ propskit-slider {
|
|
|
725
779
|
padding: 0;
|
|
726
780
|
background-color: transparent;
|
|
727
781
|
--slider-height: var(--propskit-slider-fig-slider-height);
|
|
782
|
+
|
|
783
|
+
&:focus-within {
|
|
784
|
+
outline: var(--figma-focus-outline);
|
|
785
|
+
outline-offset: var(--figma-focus-outline-offset);
|
|
786
|
+
}
|
|
728
787
|
--slider-field-height: calc(var(--propskit-slider-height) - var(--propskit-slider-vertical-padding) * 2);
|
|
729
788
|
--slider-thumb-width: var(--spacer-1);
|
|
730
789
|
--slider-thumb-color: light-dark(
|
|
@@ -741,25 +800,17 @@ propskit-slider {
|
|
|
741
800
|
--slider-tick-height: var(--spacer-2);
|
|
742
801
|
--slider-tick-radius: var(--radius-medium);
|
|
743
802
|
--slider-stepper-padding: 0;
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
)
|
|
754
|
-
|
|
755
|
-
);
|
|
756
|
-
--slider-thumb-travel-offset: var(--slider-thumb-edge-offset);
|
|
757
|
-
--propskit-slider-progress-offset: calc(
|
|
758
|
-
min(var(--slider-complete), calc(1 - var(--slider-complete))) *
|
|
759
|
-
var(--spacer-2)
|
|
760
|
-
);
|
|
761
|
-
--propskit-slider-progress-percent: calc(
|
|
762
|
-
var(--slider-percent) + var(--propskit-slider-progress-offset)
|
|
803
|
+
/*
|
|
804
|
+
Progress = --slider-percent (0 → 100%).
|
|
805
|
+
Native range: thumbRight = complete * (100% - thumbWidth) + thumbWidth.
|
|
806
|
+
Wanted: thumbRight = progress - inset = complete * 100% - inset.
|
|
807
|
+
Compensate with a constant-gap margin on the thumb.
|
|
808
|
+
*/
|
|
809
|
+
--propskit-slider-thumb-inset: var(--spacer-2);
|
|
810
|
+
--propskit-slider-progress-percent: var(--slider-percent);
|
|
811
|
+
--propskit-slider-thumb-travel-offset: calc(
|
|
812
|
+
(var(--slider-complete) - 1) * var(--slider-thumb-width) -
|
|
813
|
+
var(--propskit-slider-thumb-inset)
|
|
763
814
|
);
|
|
764
815
|
--slider-handle-shadow:
|
|
765
816
|
inset 0 0 0 var(--slider-thumb-height) var(--slider-thumb-color),
|
|
@@ -773,18 +824,13 @@ propskit-slider {
|
|
|
773
824
|
);
|
|
774
825
|
--slider-tick-opacity: 0.5;
|
|
775
826
|
|
|
776
|
-
&[type="delta"]
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
);
|
|
781
|
-
--slider-thumb-travel-offset: calc(
|
|
782
|
-
(var(--slider-complete) - 1) * var(--spacer-2)
|
|
783
|
-
);
|
|
827
|
+
&[type="delta"],
|
|
828
|
+
&[type="stepper"],
|
|
829
|
+
&[type="hue"] {
|
|
830
|
+
--propskit-slider-thumb-inset: 0;
|
|
784
831
|
}
|
|
785
832
|
|
|
786
833
|
&[type="stepper"] {
|
|
787
|
-
--slider-thumb-travel-offset: 0px;
|
|
788
834
|
datalist{
|
|
789
835
|
opacity: 0;
|
|
790
836
|
}
|
|
@@ -800,14 +846,10 @@ propskit-slider {
|
|
|
800
846
|
margin-left: 0;
|
|
801
847
|
}
|
|
802
848
|
|
|
803
|
-
&:has(input[type="range"]:focus-within) {
|
|
804
|
-
--slider-thumb-outline: var(--figma-focus-outline) !important;
|
|
805
|
-
--slider-thumb-outline-offset: var(--figma-focus-outline-offset) !important;
|
|
806
|
-
}
|
|
807
|
-
|
|
808
849
|
.fig-slider-input-container {
|
|
809
850
|
box-shadow: none !important;
|
|
810
851
|
background-color: var(--figma-color-bg-secondary) !important;
|
|
852
|
+
overflow: hidden;
|
|
811
853
|
&:hover,
|
|
812
854
|
&:focus-within {
|
|
813
855
|
&::after {
|
|
@@ -827,19 +869,20 @@ propskit-slider {
|
|
|
827
869
|
}
|
|
828
870
|
input[type="range"] {
|
|
829
871
|
border-radius: 0 !important;
|
|
830
|
-
width:
|
|
831
|
-
margin-left:
|
|
872
|
+
width: 100% !important;
|
|
873
|
+
margin-left: 0;
|
|
832
874
|
&::-webkit-slider-thumb {
|
|
833
|
-
margin-left: var(--slider-thumb-travel-offset);
|
|
875
|
+
margin-left: var(--propskit-slider-thumb-travel-offset);
|
|
834
876
|
}
|
|
835
877
|
&::-moz-range-thumb {
|
|
836
|
-
margin-left: var(--slider-thumb-travel-offset);
|
|
878
|
+
margin-left: var(--propskit-slider-thumb-travel-offset);
|
|
837
879
|
}
|
|
838
880
|
}
|
|
839
881
|
}
|
|
840
882
|
|
|
841
883
|
&:not([type="delta"]) .fig-slider-input-container::before {
|
|
842
884
|
width: var(--propskit-slider-progress-percent) !important;
|
|
885
|
+
max-width: 100%;
|
|
843
886
|
}
|
|
844
887
|
|
|
845
888
|
&[type="delta"] .fig-slider-input-container::before {
|
|
@@ -934,23 +977,21 @@ propskit-slider {
|
|
|
934
977
|
background-color: transparent;
|
|
935
978
|
box-shadow: none !important;
|
|
936
979
|
position: absolute;
|
|
937
|
-
right:
|
|
938
|
-
top:2px;
|
|
939
|
-
bottom:2px;
|
|
980
|
+
right: var(--propskit-slider-number-right);
|
|
981
|
+
top: 2px;
|
|
982
|
+
bottom: 2px;
|
|
940
983
|
width: fit-content;
|
|
941
984
|
min-width: fit-content;
|
|
942
985
|
max-width: max-content;
|
|
943
986
|
flex: 0 0 auto;
|
|
944
987
|
border-left: 0;
|
|
945
988
|
border-radius: var(--radius-medium);
|
|
989
|
+
outline: none !important;
|
|
946
990
|
|
|
947
991
|
&:hover,
|
|
948
992
|
&:has(input:focus) {
|
|
949
993
|
box-shadow: none !important;
|
|
950
|
-
|
|
951
|
-
&:has(input:focus) {
|
|
952
|
-
outline: var(--figma-focus-outline) !important;
|
|
953
|
-
outline-offset: var(--figma-focus-outline-offset) !important;
|
|
994
|
+
outline: none !important;
|
|
954
995
|
}
|
|
955
996
|
input {
|
|
956
997
|
field-sizing: content;
|
package/package.json
CHANGED