@react-spectrum/s2 3.0.0-nightly-74cac946a-250317 → 3.0.0-nightly-27e5ef1b7-250319
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/package.json +18 -18
- package/style/dist/main.cjs +18 -18
- package/style/dist/module.mjs +9 -9
- package/style/dist/spectrum-theme.cjs +191 -191
- package/style/dist/spectrum-theme.mjs +183 -183
- package/style/dist/style-macro.cjs +74 -74
- package/style/dist/style-macro.mjs +68 -68
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {createArbitraryProperty as $
|
|
1
|
+
import {createArbitraryProperty as $1d6343f16443be39$export$e33e260cb0fb20f7, createColorProperty as $1d6343f16443be39$export$852145629bb0d58b, createMappedProperty as $1d6343f16443be39$export$40f4ff17b27355ab, createRenamedProperty as $1d6343f16443be39$export$7fdf8c7af26ba416, createSizingProperty as $1d6343f16443be39$export$fa08b74e8bc1d2a7, createTheme as $1d6343f16443be39$export$25d302a5b900a763, parseArbitraryValue as $1d6343f16443be39$export$22a8270399010c94} from "./style-macro.mjs";
|
|
2
2
|
|
|
3
3
|
/*
|
|
4
4
|
* Copyright 2024 Adobe. All rights reserved.
|
|
@@ -11,11 +11,11 @@ import {createArbitraryProperty as $a42cf657cdea7060$export$e33e260cb0fb20f7, cr
|
|
|
11
11
|
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
12
12
|
* governing permissions and limitations under the License.
|
|
13
13
|
*/
|
|
14
|
-
function $
|
|
14
|
+
function $a81f2c98f3b7c89e$var$pxToRem(px) {
|
|
15
15
|
if (typeof px === 'string') px = parseFloat(px);
|
|
16
16
|
return px / 16 + 'rem';
|
|
17
17
|
}
|
|
18
|
-
const $
|
|
18
|
+
const $a81f2c98f3b7c89e$var$color = {
|
|
19
19
|
transparent: 'transparent',
|
|
20
20
|
black: 'black',
|
|
21
21
|
white: 'white',
|
|
@@ -451,8 +451,8 @@ const $468034641bb536ce$var$color = {
|
|
|
451
451
|
Mark: 'Mark',
|
|
452
452
|
LinkText: 'LinkText'
|
|
453
453
|
};
|
|
454
|
-
function $
|
|
455
|
-
let keys = Object.keys($
|
|
454
|
+
function $a81f2c98f3b7c89e$export$49bbad2a916ab57c(base) {
|
|
455
|
+
let keys = Object.keys($a81f2c98f3b7c89e$var$color);
|
|
456
456
|
let index = keys.indexOf(base);
|
|
457
457
|
if (index === -1) throw new Error('Invalid base color ' + base);
|
|
458
458
|
return {
|
|
@@ -462,21 +462,21 @@ function $468034641bb536ce$export$49bbad2a916ab57c(base) {
|
|
|
462
462
|
isPressed: keys[index + 1]
|
|
463
463
|
};
|
|
464
464
|
}
|
|
465
|
-
function $
|
|
466
|
-
let arbitrary = (0, $
|
|
465
|
+
function $a81f2c98f3b7c89e$var$parseColor(value) {
|
|
466
|
+
let arbitrary = (0, $1d6343f16443be39$export$22a8270399010c94)(value);
|
|
467
467
|
if (arbitrary) return arbitrary[0];
|
|
468
468
|
let [colorValue, opacity] = value.split('/');
|
|
469
|
-
colorValue = $
|
|
469
|
+
colorValue = $a81f2c98f3b7c89e$var$color[colorValue];
|
|
470
470
|
if (opacity) colorValue = `rgb(from ${colorValue} r g b / ${opacity}%)`;
|
|
471
471
|
return colorValue;
|
|
472
472
|
}
|
|
473
|
-
function $
|
|
474
|
-
return `[light-dark(${$
|
|
473
|
+
function $a81f2c98f3b7c89e$export$d19e682d444755ed(light, dark) {
|
|
474
|
+
return `[light-dark(${$a81f2c98f3b7c89e$var$parseColor(light)}, ${$a81f2c98f3b7c89e$var$parseColor(dark)})]`;
|
|
475
475
|
}
|
|
476
|
-
function $
|
|
477
|
-
return `[color-mix(in srgb, ${$
|
|
476
|
+
function $a81f2c98f3b7c89e$export$9b476054b78b89cd(a, b, percent) {
|
|
477
|
+
return `[color-mix(in srgb, ${$a81f2c98f3b7c89e$var$parseColor(a)}, ${$a81f2c98f3b7c89e$var$parseColor(b)} ${percent}%)]`;
|
|
478
478
|
}
|
|
479
|
-
function $
|
|
479
|
+
function $a81f2c98f3b7c89e$export$46def8197cf4dd4c(angle, ...tokens) {
|
|
480
480
|
// Generate @property rules for each gradient stop color. This allows the gradient to be animated.
|
|
481
481
|
let propertyDefinitions = [];
|
|
482
482
|
for(let i = 0; i < tokens.length; i++)propertyDefinitions.push(`@property --g${i} {
|
|
@@ -496,12 +496,12 @@ function $468034641bb536ce$export$46def8197cf4dd4c(angle, ...tokens) {
|
|
|
496
496
|
}
|
|
497
497
|
];
|
|
498
498
|
}
|
|
499
|
-
function $
|
|
499
|
+
function $a81f2c98f3b7c89e$var$generateSpacing(px) {
|
|
500
500
|
let res = {};
|
|
501
|
-
for (let p of px)res[p] = $
|
|
501
|
+
for (let p of px)res[p] = $a81f2c98f3b7c89e$var$pxToRem(p);
|
|
502
502
|
return res;
|
|
503
503
|
}
|
|
504
|
-
const $
|
|
504
|
+
const $a81f2c98f3b7c89e$var$baseSpacing = $a81f2c98f3b7c89e$var$generateSpacing([
|
|
505
505
|
0,
|
|
506
506
|
2,
|
|
507
507
|
4,
|
|
@@ -538,7 +538,7 @@ const $468034641bb536ce$var$baseSpacing = $468034641bb536ce$var$generateSpacing(
|
|
|
538
538
|
]);
|
|
539
539
|
// This should match the above, but negative. There's no way to negate a number
|
|
540
540
|
// type in typescript so this has to be done manually for now.
|
|
541
|
-
const $
|
|
541
|
+
const $a81f2c98f3b7c89e$var$negativeSpacing = $a81f2c98f3b7c89e$var$generateSpacing([
|
|
542
542
|
// -2, // spacing-50 !! TODO: should we support this?
|
|
543
543
|
-4,
|
|
544
544
|
-8,
|
|
@@ -572,107 +572,107 @@ const $468034641bb536ce$var$negativeSpacing = $468034641bb536ce$var$generateSpac
|
|
|
572
572
|
-320,
|
|
573
573
|
-384
|
|
574
574
|
]);
|
|
575
|
-
function $
|
|
575
|
+
function $a81f2c98f3b7c89e$export$ba024f4caf693d15(base, baseFontSize = 14) {
|
|
576
576
|
return base / baseFontSize + 'em';
|
|
577
577
|
}
|
|
578
|
-
function $
|
|
579
|
-
return `calc(${$
|
|
578
|
+
function $a81f2c98f3b7c89e$export$17b63977b35bb6d2(height) {
|
|
579
|
+
return `calc(${$a81f2c98f3b7c89e$var$baseSpacing[height]} * 3 / 8)`;
|
|
580
580
|
}
|
|
581
|
-
function $
|
|
582
|
-
return $
|
|
581
|
+
function $a81f2c98f3b7c89e$export$a941ed4b947d12f8(px) {
|
|
582
|
+
return $a81f2c98f3b7c89e$var$pxToRem(px);
|
|
583
583
|
}
|
|
584
|
-
const $
|
|
585
|
-
...$
|
|
584
|
+
const $a81f2c98f3b7c89e$var$spacing = {
|
|
585
|
+
...$a81f2c98f3b7c89e$var$baseSpacing,
|
|
586
586
|
// font-size relative values
|
|
587
|
-
'text-to-control': $
|
|
587
|
+
'text-to-control': $a81f2c98f3b7c89e$export$ba024f4caf693d15(10),
|
|
588
588
|
'text-to-visual': {
|
|
589
|
-
default: $
|
|
590
|
-
touch: $
|
|
589
|
+
default: $a81f2c98f3b7c89e$export$ba024f4caf693d15(6),
|
|
590
|
+
touch: $a81f2c98f3b7c89e$export$ba024f4caf693d15(8, 17) // -> 6px, 7px, 8px, 9px, 10px, should be 7px, 7px, 8px, 9px, 11px
|
|
591
591
|
},
|
|
592
592
|
// height relative values
|
|
593
593
|
'edge-to-text': 'calc(self(height, self(minHeight)) * 3 / 8)',
|
|
594
594
|
'pill': 'calc(self(height, self(minHeight)) / 2)'
|
|
595
595
|
};
|
|
596
|
-
function $
|
|
597
|
-
return `calc(${$
|
|
596
|
+
function $a81f2c98f3b7c89e$export$346677f925de839c(px) {
|
|
597
|
+
return `calc(${$a81f2c98f3b7c89e$var$pxToRem(px)} * var(--s2-scale))`;
|
|
598
598
|
}
|
|
599
|
-
const $
|
|
599
|
+
const $a81f2c98f3b7c89e$var$sizing = {
|
|
600
600
|
auto: 'auto',
|
|
601
601
|
full: '100%',
|
|
602
602
|
min: 'min-content',
|
|
603
603
|
max: 'max-content',
|
|
604
604
|
fit: 'fit-content',
|
|
605
605
|
control: {
|
|
606
|
-
default: $
|
|
606
|
+
default: $a81f2c98f3b7c89e$export$346677f925de839c(32),
|
|
607
607
|
size: {
|
|
608
|
-
XS: $
|
|
609
|
-
S: $
|
|
610
|
-
L: $
|
|
611
|
-
XL: $
|
|
608
|
+
XS: $a81f2c98f3b7c89e$export$346677f925de839c(20),
|
|
609
|
+
S: $a81f2c98f3b7c89e$export$346677f925de839c(24),
|
|
610
|
+
L: $a81f2c98f3b7c89e$export$346677f925de839c(40),
|
|
611
|
+
XL: $a81f2c98f3b7c89e$export$346677f925de839c(48)
|
|
612
612
|
}
|
|
613
613
|
},
|
|
614
614
|
// With browser support for round() we could do this:
|
|
615
615
|
// 'control-sm': `round(${16 / 14}em, 2px)`
|
|
616
616
|
'control-sm': {
|
|
617
|
-
default: $
|
|
617
|
+
default: $a81f2c98f3b7c89e$export$346677f925de839c(16),
|
|
618
618
|
size: {
|
|
619
|
-
S: $
|
|
620
|
-
L: $
|
|
621
|
-
XL: $
|
|
619
|
+
S: $a81f2c98f3b7c89e$export$346677f925de839c(14),
|
|
620
|
+
L: $a81f2c98f3b7c89e$export$346677f925de839c(18),
|
|
621
|
+
XL: $a81f2c98f3b7c89e$export$346677f925de839c(20)
|
|
622
622
|
}
|
|
623
623
|
}
|
|
624
624
|
};
|
|
625
|
-
const $
|
|
626
|
-
...$
|
|
625
|
+
const $a81f2c98f3b7c89e$var$height = {
|
|
626
|
+
...$a81f2c98f3b7c89e$var$sizing,
|
|
627
627
|
screen: '100vh'
|
|
628
628
|
};
|
|
629
|
-
const $
|
|
630
|
-
...$
|
|
629
|
+
const $a81f2c98f3b7c89e$var$width = {
|
|
630
|
+
...$a81f2c98f3b7c89e$var$sizing,
|
|
631
631
|
screen: '100vw'
|
|
632
632
|
};
|
|
633
|
-
function $
|
|
634
|
-
return (0, $
|
|
633
|
+
function $a81f2c98f3b7c89e$var$createSpectrumSizingProperty(values) {
|
|
634
|
+
return (0, $1d6343f16443be39$export$fa08b74e8bc1d2a7)(values, (px)=>`calc(${$a81f2c98f3b7c89e$var$pxToRem(px)} * var(--s2-scale))`);
|
|
635
635
|
}
|
|
636
|
-
const $
|
|
637
|
-
...$
|
|
638
|
-
...$
|
|
636
|
+
const $a81f2c98f3b7c89e$var$margin = {
|
|
637
|
+
...$a81f2c98f3b7c89e$var$spacing,
|
|
638
|
+
...$a81f2c98f3b7c89e$var$negativeSpacing,
|
|
639
639
|
auto: 'auto'
|
|
640
640
|
};
|
|
641
|
-
const $
|
|
642
|
-
...$
|
|
641
|
+
const $a81f2c98f3b7c89e$var$inset = {
|
|
642
|
+
...$a81f2c98f3b7c89e$var$baseSpacing,
|
|
643
643
|
auto: 'auto',
|
|
644
644
|
full: '100%'
|
|
645
645
|
};
|
|
646
|
-
const $
|
|
647
|
-
...$
|
|
648
|
-
...$
|
|
646
|
+
const $a81f2c98f3b7c89e$var$translate = {
|
|
647
|
+
...$a81f2c98f3b7c89e$var$baseSpacing,
|
|
648
|
+
...$a81f2c98f3b7c89e$var$negativeSpacing,
|
|
649
649
|
full: '100%'
|
|
650
650
|
};
|
|
651
|
-
const $
|
|
651
|
+
const $a81f2c98f3b7c89e$var$borderWidth = {
|
|
652
652
|
0: '0px',
|
|
653
653
|
1: "1px",
|
|
654
654
|
2: "2px",
|
|
655
655
|
4: "4px"
|
|
656
656
|
};
|
|
657
|
-
const $
|
|
657
|
+
const $a81f2c98f3b7c89e$var$radius = {
|
|
658
658
|
none: "0px",
|
|
659
|
-
sm: $
|
|
660
|
-
default: $
|
|
661
|
-
lg: $
|
|
662
|
-
xl: $
|
|
659
|
+
sm: $a81f2c98f3b7c89e$var$pxToRem("4px"),
|
|
660
|
+
default: $a81f2c98f3b7c89e$var$pxToRem("8px"),
|
|
661
|
+
lg: $a81f2c98f3b7c89e$var$pxToRem("10px"),
|
|
662
|
+
xl: $a81f2c98f3b7c89e$var$pxToRem("16px"),
|
|
663
663
|
full: '9999px',
|
|
664
664
|
pill: 'calc(self(height, self(minHeight, 9999px)) / 2)',
|
|
665
|
-
control: $
|
|
666
|
-
'control-sm': $
|
|
665
|
+
control: $a81f2c98f3b7c89e$export$ba024f4caf693d15(8),
|
|
666
|
+
'control-sm': $a81f2c98f3b7c89e$export$ba024f4caf693d15(4)
|
|
667
667
|
};
|
|
668
|
-
let $
|
|
668
|
+
let $a81f2c98f3b7c89e$var$gridTrack = (value)=>{
|
|
669
669
|
if (typeof value === 'string') return value;
|
|
670
|
-
return value.map((v)=>$
|
|
670
|
+
return value.map((v)=>$a81f2c98f3b7c89e$var$gridTrackSize(v)).join(' ');
|
|
671
671
|
};
|
|
672
|
-
let $
|
|
673
|
-
return value in $
|
|
672
|
+
let $a81f2c98f3b7c89e$var$gridTrackSize = (value)=>{
|
|
673
|
+
return value in $a81f2c98f3b7c89e$var$baseSpacing ? $a81f2c98f3b7c89e$var$baseSpacing[value] : value;
|
|
674
674
|
};
|
|
675
|
-
const $
|
|
675
|
+
const $a81f2c98f3b7c89e$var$transitionProperty = {
|
|
676
676
|
// var(--gp) is generated by the backgroundImage property when setting a gradient.
|
|
677
677
|
// It includes a list of all of the custom properties used for each color stop.
|
|
678
678
|
default: 'color, background-color, var(--gp), border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, translate, scale, rotate, filter, backdrop-filter',
|
|
@@ -684,7 +684,7 @@ const $468034641bb536ce$var$transitionProperty = {
|
|
|
684
684
|
none: 'none'
|
|
685
685
|
};
|
|
686
686
|
// TODO
|
|
687
|
-
const $
|
|
687
|
+
const $a81f2c98f3b7c89e$var$timingFunction = {
|
|
688
688
|
default: 'cubic-bezier(0.45, 0, 0.4, 1)',
|
|
689
689
|
linear: 'linear',
|
|
690
690
|
in: 'cubic-bezier(0.5, 0, 1, 1)',
|
|
@@ -692,11 +692,11 @@ const $468034641bb536ce$var$timingFunction = {
|
|
|
692
692
|
'in-out': 'cubic-bezier(0.45, 0, 0.4, 1)'
|
|
693
693
|
};
|
|
694
694
|
// TODO: do these need tokens or are arbitrary values ok?
|
|
695
|
-
let $
|
|
695
|
+
let $a81f2c98f3b7c89e$var$durationProperty = (0, $1d6343f16443be39$export$e33e260cb0fb20f7)((value, property)=>({
|
|
696
696
|
[property]: typeof value === 'number' ? value + 'ms' : value
|
|
697
697
|
}));
|
|
698
698
|
// const colorWithAlpha = createColorProperty(color);
|
|
699
|
-
const $
|
|
699
|
+
const $a81f2c98f3b7c89e$var$fontWeightBase = {
|
|
700
700
|
light: '300',
|
|
701
701
|
// TODO: spectrum calls this "regular" but CSS calls it "normal". We also call other properties "default". What do we want to match?
|
|
702
702
|
normal: '400',
|
|
@@ -705,7 +705,7 @@ const $468034641bb536ce$var$fontWeightBase = {
|
|
|
705
705
|
'extra-bold': '800',
|
|
706
706
|
black: '900'
|
|
707
707
|
};
|
|
708
|
-
const $
|
|
708
|
+
const $a81f2c98f3b7c89e$var$i18nFonts = {
|
|
709
709
|
':lang(ar)': 'myriad-arabic, ui-sans-serif, system-ui, sans-serif',
|
|
710
710
|
':lang(he)': 'myriad-hebrew, ui-sans-serif, system-ui, sans-serif',
|
|
711
711
|
':lang(ja)': "adobe-clean-han-japanese, 'Hiragino Kaku Gothic ProN', '\u30D2\u30E9\u30AE\u30CE\u89D2\u30B4 ProN W3', Osaka, YuGothic, 'Yu Gothic', '\u30E1\u30A4\u30EA\u30AA', Meiryo, '\uFF2D\uFF33 \uFF30\u30B4\u30B7\u30C3\u30AF', 'MS PGothic', sans-serif",
|
|
@@ -715,7 +715,7 @@ const $468034641bb536ce$var$i18nFonts = {
|
|
|
715
715
|
':lang(zh-hant)': "adobe-clean-han-traditional, source-han-traditional, 'MingLiu', 'Microsoft JhengHei UI', 'Microsoft JhengHei', 'Heiti TC Light', sans-serif",
|
|
716
716
|
':lang(zh-Hans, zh-CN, zh-SG)': "adobe-clean-han-simplified-c, source-han-simplified-c, 'SimSun', 'Heiti SC Light', sans-serif"
|
|
717
717
|
};
|
|
718
|
-
const $
|
|
718
|
+
const $a81f2c98f3b7c89e$var$fontSize = {
|
|
719
719
|
// The default font size scale is for use within UI components.
|
|
720
720
|
'ui-xs': {
|
|
721
721
|
"default": "0.6875rem",
|
|
@@ -899,11 +899,11 @@ const $468034641bb536ce$var$fontSize = {
|
|
|
899
899
|
touch: "1.5rem"
|
|
900
900
|
}
|
|
901
901
|
};
|
|
902
|
-
const $
|
|
902
|
+
const $a81f2c98f3b7c89e$export$1d567c320f4763bc = (0, $1d6343f16443be39$export$25d302a5b900a763)({
|
|
903
903
|
properties: {
|
|
904
904
|
// colors
|
|
905
|
-
color: (0, $
|
|
906
|
-
...$
|
|
905
|
+
color: (0, $1d6343f16443be39$export$852145629bb0d58b)({
|
|
906
|
+
...$a81f2c98f3b7c89e$var$color,
|
|
907
907
|
accent: {
|
|
908
908
|
default: "light-dark(rgb(59, 99, 251), rgb(86, 129, 255))",
|
|
909
909
|
isHovered: "light-dark(rgb(39, 77, 234), rgb(105, 149, 254))",
|
|
@@ -938,8 +938,8 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
938
938
|
code: "light-dark(rgb(41, 41, 41), rgb(219, 219, 219))",
|
|
939
939
|
auto: "lch(from self(backgroundColor, var(--s2-container-bg)) calc((49.44 - l) * infinity) 0 0 / 1)"
|
|
940
940
|
}),
|
|
941
|
-
backgroundColor: (0, $
|
|
942
|
-
...$
|
|
941
|
+
backgroundColor: (0, $1d6343f16443be39$export$852145629bb0d58b)({
|
|
942
|
+
...$a81f2c98f3b7c89e$var$color,
|
|
943
943
|
accent: {
|
|
944
944
|
default: "light-dark(rgb(59, 99, 251), rgb(64, 105, 253))",
|
|
945
945
|
isHovered: "light-dark(rgb(39, 77, 234), rgb(52, 91, 248))",
|
|
@@ -1028,8 +1028,8 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
1028
1028
|
pasteboard: "light-dark(rgb(233, 233, 233), rgb(17, 17, 17))",
|
|
1029
1029
|
elevated: "light-dark(rgb(255, 255, 255), rgb(34, 34, 34))"
|
|
1030
1030
|
}),
|
|
1031
|
-
borderColor: (0, $
|
|
1032
|
-
...$
|
|
1031
|
+
borderColor: (0, $1d6343f16443be39$export$852145629bb0d58b)({
|
|
1032
|
+
...$a81f2c98f3b7c89e$var$color,
|
|
1033
1033
|
negative: {
|
|
1034
1034
|
default: "light-dark(rgb(215, 50, 32), rgb(252, 67, 46))",
|
|
1035
1035
|
isHovered: "light-dark(rgb(183, 40, 24), rgb(255, 103, 86))",
|
|
@@ -1038,8 +1038,8 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
1038
1038
|
},
|
|
1039
1039
|
disabled: "light-dark(rgb(218, 218, 218), rgb(57, 57, 57))"
|
|
1040
1040
|
}),
|
|
1041
|
-
outlineColor: (0, $
|
|
1042
|
-
...$
|
|
1041
|
+
outlineColor: (0, $1d6343f16443be39$export$852145629bb0d58b)({
|
|
1042
|
+
...$a81f2c98f3b7c89e$var$color,
|
|
1043
1043
|
'focus-ring': {
|
|
1044
1044
|
default: "light-dark(rgb(75, 117, 255), rgb(64, 105, 253))",
|
|
1045
1045
|
forcedColors: 'Highlight'
|
|
@@ -1048,7 +1048,7 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
1048
1048
|
// textDecorationColor: colorWithAlpha,
|
|
1049
1049
|
// accentColor: colorWithAlpha,
|
|
1050
1050
|
// caretColor: colorWithAlpha,
|
|
1051
|
-
fill: (0, $
|
|
1051
|
+
fill: (0, $1d6343f16443be39$export$852145629bb0d58b)({
|
|
1052
1052
|
none: 'none',
|
|
1053
1053
|
currentColor: 'currentColor',
|
|
1054
1054
|
accent: "light-dark(rgb(75, 117, 255), rgb(86, 129, 255))",
|
|
@@ -1076,40 +1076,40 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
1076
1076
|
cinnamon: "light-dark(rgb(184, 109, 70), rgb(192, 119, 80))",
|
|
1077
1077
|
brown: "light-dark(rgb(154, 123, 77), rgb(163, 132, 84))",
|
|
1078
1078
|
silver: "light-dark(rgb(128, 128, 128), rgb(137, 137, 137))",
|
|
1079
|
-
...$
|
|
1079
|
+
...$a81f2c98f3b7c89e$var$color
|
|
1080
1080
|
}),
|
|
1081
|
-
stroke: (0, $
|
|
1081
|
+
stroke: (0, $1d6343f16443be39$export$852145629bb0d58b)({
|
|
1082
1082
|
none: 'none',
|
|
1083
1083
|
currentColor: 'currentColor',
|
|
1084
|
-
...$
|
|
1084
|
+
...$a81f2c98f3b7c89e$var$color
|
|
1085
1085
|
}),
|
|
1086
1086
|
// dimensions
|
|
1087
|
-
borderSpacing: $
|
|
1087
|
+
borderSpacing: $a81f2c98f3b7c89e$var$baseSpacing,
|
|
1088
1088
|
flexBasis: {
|
|
1089
1089
|
auto: 'auto',
|
|
1090
1090
|
full: '100%',
|
|
1091
|
-
...$
|
|
1091
|
+
...$a81f2c98f3b7c89e$var$baseSpacing
|
|
1092
1092
|
},
|
|
1093
|
-
rowGap: $
|
|
1094
|
-
columnGap: $
|
|
1095
|
-
height: $
|
|
1096
|
-
width: $
|
|
1097
|
-
containIntrinsicWidth: $
|
|
1098
|
-
containIntrinsicHeight: $
|
|
1099
|
-
minHeight: $
|
|
1100
|
-
maxHeight: $
|
|
1101
|
-
...$
|
|
1093
|
+
rowGap: $a81f2c98f3b7c89e$var$spacing,
|
|
1094
|
+
columnGap: $a81f2c98f3b7c89e$var$spacing,
|
|
1095
|
+
height: $a81f2c98f3b7c89e$var$createSpectrumSizingProperty($a81f2c98f3b7c89e$var$height),
|
|
1096
|
+
width: $a81f2c98f3b7c89e$var$createSpectrumSizingProperty($a81f2c98f3b7c89e$var$width),
|
|
1097
|
+
containIntrinsicWidth: $a81f2c98f3b7c89e$var$createSpectrumSizingProperty($a81f2c98f3b7c89e$var$width),
|
|
1098
|
+
containIntrinsicHeight: $a81f2c98f3b7c89e$var$createSpectrumSizingProperty($a81f2c98f3b7c89e$var$height),
|
|
1099
|
+
minHeight: $a81f2c98f3b7c89e$var$createSpectrumSizingProperty($a81f2c98f3b7c89e$var$height),
|
|
1100
|
+
maxHeight: $a81f2c98f3b7c89e$var$createSpectrumSizingProperty({
|
|
1101
|
+
...$a81f2c98f3b7c89e$var$height,
|
|
1102
1102
|
none: 'none'
|
|
1103
1103
|
}),
|
|
1104
|
-
minWidth: $
|
|
1105
|
-
maxWidth: $
|
|
1106
|
-
...$
|
|
1104
|
+
minWidth: $a81f2c98f3b7c89e$var$createSpectrumSizingProperty($a81f2c98f3b7c89e$var$width),
|
|
1105
|
+
maxWidth: $a81f2c98f3b7c89e$var$createSpectrumSizingProperty({
|
|
1106
|
+
...$a81f2c98f3b7c89e$var$width,
|
|
1107
1107
|
none: 'none'
|
|
1108
1108
|
}),
|
|
1109
|
-
borderStartWidth: (0, $
|
|
1110
|
-
borderEndWidth: (0, $
|
|
1111
|
-
borderTopWidth: $
|
|
1112
|
-
borderBottomWidth: $
|
|
1109
|
+
borderStartWidth: (0, $1d6343f16443be39$export$7fdf8c7af26ba416)('borderInlineStartWidth', $a81f2c98f3b7c89e$var$borderWidth),
|
|
1110
|
+
borderEndWidth: (0, $1d6343f16443be39$export$7fdf8c7af26ba416)('borderInlineEndWidth', $a81f2c98f3b7c89e$var$borderWidth),
|
|
1111
|
+
borderTopWidth: $a81f2c98f3b7c89e$var$borderWidth,
|
|
1112
|
+
borderBottomWidth: $a81f2c98f3b7c89e$var$borderWidth,
|
|
1113
1113
|
borderStyle: [
|
|
1114
1114
|
'solid',
|
|
1115
1115
|
'dashed',
|
|
@@ -1123,43 +1123,43 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
1123
1123
|
1: '1',
|
|
1124
1124
|
2: '2'
|
|
1125
1125
|
},
|
|
1126
|
-
marginStart: (0, $
|
|
1127
|
-
marginEnd: (0, $
|
|
1128
|
-
marginTop: $
|
|
1129
|
-
marginBottom: $
|
|
1130
|
-
paddingStart: (0, $
|
|
1131
|
-
paddingEnd: (0, $
|
|
1132
|
-
paddingTop: $
|
|
1133
|
-
paddingBottom: $
|
|
1134
|
-
scrollMarginStart: (0, $
|
|
1135
|
-
scrollMarginEnd: (0, $
|
|
1136
|
-
scrollMarginTop: $
|
|
1137
|
-
scrollMarginBottom: $
|
|
1138
|
-
scrollPaddingStart: (0, $
|
|
1139
|
-
scrollPaddingEnd: (0, $
|
|
1140
|
-
scrollPaddingTop: $
|
|
1141
|
-
scrollPaddingBottom: $
|
|
1142
|
-
textIndent: $
|
|
1143
|
-
translateX: (0, $
|
|
1126
|
+
marginStart: (0, $1d6343f16443be39$export$7fdf8c7af26ba416)('marginInlineStart', $a81f2c98f3b7c89e$var$margin),
|
|
1127
|
+
marginEnd: (0, $1d6343f16443be39$export$7fdf8c7af26ba416)('marginInlineEnd', $a81f2c98f3b7c89e$var$margin),
|
|
1128
|
+
marginTop: $a81f2c98f3b7c89e$var$margin,
|
|
1129
|
+
marginBottom: $a81f2c98f3b7c89e$var$margin,
|
|
1130
|
+
paddingStart: (0, $1d6343f16443be39$export$7fdf8c7af26ba416)('paddingInlineStart', $a81f2c98f3b7c89e$var$spacing),
|
|
1131
|
+
paddingEnd: (0, $1d6343f16443be39$export$7fdf8c7af26ba416)('paddingInlineEnd', $a81f2c98f3b7c89e$var$spacing),
|
|
1132
|
+
paddingTop: $a81f2c98f3b7c89e$var$spacing,
|
|
1133
|
+
paddingBottom: $a81f2c98f3b7c89e$var$spacing,
|
|
1134
|
+
scrollMarginStart: (0, $1d6343f16443be39$export$7fdf8c7af26ba416)('scrollMarginInlineStart', $a81f2c98f3b7c89e$var$baseSpacing),
|
|
1135
|
+
scrollMarginEnd: (0, $1d6343f16443be39$export$7fdf8c7af26ba416)('scrollMarginInlineEnd', $a81f2c98f3b7c89e$var$baseSpacing),
|
|
1136
|
+
scrollMarginTop: $a81f2c98f3b7c89e$var$baseSpacing,
|
|
1137
|
+
scrollMarginBottom: $a81f2c98f3b7c89e$var$baseSpacing,
|
|
1138
|
+
scrollPaddingStart: (0, $1d6343f16443be39$export$7fdf8c7af26ba416)('scrollPaddingInlineStart', $a81f2c98f3b7c89e$var$baseSpacing),
|
|
1139
|
+
scrollPaddingEnd: (0, $1d6343f16443be39$export$7fdf8c7af26ba416)('scrollPaddingInlineEnd', $a81f2c98f3b7c89e$var$baseSpacing),
|
|
1140
|
+
scrollPaddingTop: $a81f2c98f3b7c89e$var$baseSpacing,
|
|
1141
|
+
scrollPaddingBottom: $a81f2c98f3b7c89e$var$baseSpacing,
|
|
1142
|
+
textIndent: $a81f2c98f3b7c89e$var$baseSpacing,
|
|
1143
|
+
translateX: (0, $1d6343f16443be39$export$40f4ff17b27355ab)((value)=>({
|
|
1144
1144
|
'--translateX': value,
|
|
1145
1145
|
translate: 'var(--translateX, 0) var(--translateY, 0)'
|
|
1146
|
-
}), $
|
|
1147
|
-
translateY: (0, $
|
|
1146
|
+
}), $a81f2c98f3b7c89e$var$translate),
|
|
1147
|
+
translateY: (0, $1d6343f16443be39$export$40f4ff17b27355ab)((value)=>({
|
|
1148
1148
|
'--translateY': value,
|
|
1149
1149
|
translate: 'var(--translateX, 0) var(--translateY, 0)'
|
|
1150
|
-
}), $
|
|
1151
|
-
rotate: (0, $
|
|
1150
|
+
}), $a81f2c98f3b7c89e$var$translate),
|
|
1151
|
+
rotate: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)((value, property)=>({
|
|
1152
1152
|
[property]: typeof value === 'number' ? `${value}deg` : value
|
|
1153
1153
|
})),
|
|
1154
|
-
scaleX: (0, $
|
|
1154
|
+
scaleX: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)((value)=>({
|
|
1155
1155
|
'--scaleX': value,
|
|
1156
1156
|
scale: 'var(--scaleX, 1) var(--scaleY, 1)'
|
|
1157
1157
|
})),
|
|
1158
|
-
scaleY: (0, $
|
|
1158
|
+
scaleY: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)((value)=>({
|
|
1159
1159
|
'--scaleY': value,
|
|
1160
1160
|
scale: 'var(--scaleX, 1) var(--scaleY, 1)'
|
|
1161
1161
|
})),
|
|
1162
|
-
transform: (0, $
|
|
1162
|
+
transform: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)(),
|
|
1163
1163
|
position: [
|
|
1164
1164
|
'absolute',
|
|
1165
1165
|
'fixed',
|
|
@@ -1167,12 +1167,12 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
1167
1167
|
'sticky',
|
|
1168
1168
|
'static'
|
|
1169
1169
|
],
|
|
1170
|
-
insetStart: (0, $
|
|
1171
|
-
insetEnd: (0, $
|
|
1172
|
-
top: $
|
|
1173
|
-
left: $
|
|
1174
|
-
bottom: $
|
|
1175
|
-
right: $
|
|
1170
|
+
insetStart: (0, $1d6343f16443be39$export$7fdf8c7af26ba416)('insetInlineStart', $a81f2c98f3b7c89e$var$inset),
|
|
1171
|
+
insetEnd: (0, $1d6343f16443be39$export$7fdf8c7af26ba416)('insetInlineEnd', $a81f2c98f3b7c89e$var$inset),
|
|
1172
|
+
top: $a81f2c98f3b7c89e$var$inset,
|
|
1173
|
+
left: $a81f2c98f3b7c89e$var$inset,
|
|
1174
|
+
bottom: $a81f2c98f3b7c89e$var$inset,
|
|
1175
|
+
right: $a81f2c98f3b7c89e$var$inset,
|
|
1176
1176
|
aspectRatio: {
|
|
1177
1177
|
auto: 'auto',
|
|
1178
1178
|
square: '1 / 1',
|
|
@@ -1182,16 +1182,16 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
1182
1182
|
fontFamily: {
|
|
1183
1183
|
sans: {
|
|
1184
1184
|
default: 'adobe-clean-variable, adobe-clean, ui-sans-serif, system-ui, sans-serif',
|
|
1185
|
-
...$
|
|
1185
|
+
...$a81f2c98f3b7c89e$var$i18nFonts
|
|
1186
1186
|
},
|
|
1187
1187
|
serif: {
|
|
1188
1188
|
default: 'adobe-clean-serif, "Source Serif", Georgia, serif',
|
|
1189
|
-
...$
|
|
1189
|
+
...$a81f2c98f3b7c89e$var$i18nFonts
|
|
1190
1190
|
},
|
|
1191
1191
|
code: 'source-code-pro, "Source Code Pro", Monaco, monospace'
|
|
1192
1192
|
},
|
|
1193
|
-
fontSize: $
|
|
1194
|
-
fontWeight: (0, $
|
|
1193
|
+
fontSize: $a81f2c98f3b7c89e$var$fontSize,
|
|
1194
|
+
fontWeight: (0, $1d6343f16443be39$export$40f4ff17b27355ab)((value, property)=>{
|
|
1195
1195
|
if (property === 'fontWeight') return {
|
|
1196
1196
|
// Set font-variation-settings in addition to font-weight to work around typekit issue.
|
|
1197
1197
|
fontVariationSettings: value === 'inherit' ? 'inherit' : `"wght" ${value}`,
|
|
@@ -1202,18 +1202,18 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
1202
1202
|
[property]: value
|
|
1203
1203
|
};
|
|
1204
1204
|
}, {
|
|
1205
|
-
...$
|
|
1205
|
+
...$a81f2c98f3b7c89e$var$fontWeightBase,
|
|
1206
1206
|
heading: {
|
|
1207
|
-
default: $
|
|
1208
|
-
':lang(ja, ko, zh, zh-Hant, zh-Hans)': $
|
|
1207
|
+
default: $a81f2c98f3b7c89e$var$fontWeightBase["extra-bold"],
|
|
1208
|
+
':lang(ja, ko, zh, zh-Hant, zh-Hans)': $a81f2c98f3b7c89e$var$fontWeightBase["extra-bold"]
|
|
1209
1209
|
},
|
|
1210
1210
|
title: {
|
|
1211
|
-
default: $
|
|
1212
|
-
':lang(ja, ko, zh, zh-Hant, zh-Hans)': $
|
|
1211
|
+
default: $a81f2c98f3b7c89e$var$fontWeightBase["bold"],
|
|
1212
|
+
':lang(ja, ko, zh, zh-Hant, zh-Hans)': $a81f2c98f3b7c89e$var$fontWeightBase["bold"]
|
|
1213
1213
|
},
|
|
1214
1214
|
detail: {
|
|
1215
|
-
default: $
|
|
1216
|
-
':lang(ja, ko, zh, zh-Hant, zh-Hans)': $
|
|
1215
|
+
default: $a81f2c98f3b7c89e$var$fontWeightBase["medium"],
|
|
1216
|
+
':lang(ja, ko, zh, zh-Hant, zh-Hans)': $a81f2c98f3b7c89e$var$fontWeightBase["bold"]
|
|
1217
1217
|
}
|
|
1218
1218
|
}),
|
|
1219
1219
|
lineHeight: {
|
|
@@ -1274,7 +1274,7 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
1274
1274
|
'sub',
|
|
1275
1275
|
'super'
|
|
1276
1276
|
],
|
|
1277
|
-
textDecoration: (0, $
|
|
1277
|
+
textDecoration: (0, $1d6343f16443be39$export$40f4ff17b27355ab)((value)=>({
|
|
1278
1278
|
textDecoration: value === 'none' ? 'none' : `${value} ${"1px"}`,
|
|
1279
1279
|
textUnderlineOffset: value === 'underline' ? "1px" : undefined
|
|
1280
1280
|
}), [
|
|
@@ -1287,7 +1287,7 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
1287
1287
|
'ellipsis',
|
|
1288
1288
|
'clip'
|
|
1289
1289
|
],
|
|
1290
|
-
lineClamp: (0, $
|
|
1290
|
+
lineClamp: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)((value)=>({
|
|
1291
1291
|
overflow: 'hidden',
|
|
1292
1292
|
display: '-webkit-box',
|
|
1293
1293
|
'-webkit-box-orient': 'vertical',
|
|
@@ -1334,10 +1334,10 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
1334
1334
|
dragged: `drop-shadow${"0px"} ${"6px"} ${"16px"} ${"light-dark(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6))"}`,
|
|
1335
1335
|
none: 'none'
|
|
1336
1336
|
},
|
|
1337
|
-
borderTopStartRadius: (0, $
|
|
1338
|
-
borderTopEndRadius: (0, $
|
|
1339
|
-
borderBottomStartRadius: (0, $
|
|
1340
|
-
borderBottomEndRadius: (0, $
|
|
1337
|
+
borderTopStartRadius: (0, $1d6343f16443be39$export$7fdf8c7af26ba416)('borderStartStartRadius', $a81f2c98f3b7c89e$var$radius),
|
|
1338
|
+
borderTopEndRadius: (0, $1d6343f16443be39$export$7fdf8c7af26ba416)('borderStartEndRadius', $a81f2c98f3b7c89e$var$radius),
|
|
1339
|
+
borderBottomStartRadius: (0, $1d6343f16443be39$export$7fdf8c7af26ba416)('borderEndStartRadius', $a81f2c98f3b7c89e$var$radius),
|
|
1340
|
+
borderBottomEndRadius: (0, $1d6343f16443be39$export$7fdf8c7af26ba416)('borderEndEndRadius', $a81f2c98f3b7c89e$var$radius),
|
|
1341
1341
|
forcedColorAdjust: [
|
|
1342
1342
|
'auto',
|
|
1343
1343
|
'none'
|
|
@@ -1347,7 +1347,7 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
1347
1347
|
'dark',
|
|
1348
1348
|
'light dark'
|
|
1349
1349
|
],
|
|
1350
|
-
backgroundImage: (0, $
|
|
1350
|
+
backgroundImage: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)((value, property)=>{
|
|
1351
1351
|
if (typeof value === 'string') return {
|
|
1352
1352
|
[property]: value
|
|
1353
1353
|
};
|
|
@@ -1360,7 +1360,7 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
1360
1360
|
let properties = [];
|
|
1361
1361
|
value[0].stops.forEach(([color], i)=>{
|
|
1362
1362
|
properties.push(`--g${i}`);
|
|
1363
|
-
values[`--g${i}`] = $
|
|
1363
|
+
values[`--g${i}`] = $a81f2c98f3b7c89e$var$parseColor(color);
|
|
1364
1364
|
});
|
|
1365
1365
|
// This is used by transition-property so we automatically transition all of the color stops.
|
|
1366
1366
|
values['--gp'] = properties.join(', ');
|
|
@@ -1446,7 +1446,7 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
1446
1446
|
'plus-darker',
|
|
1447
1447
|
'plus-lighter'
|
|
1448
1448
|
],
|
|
1449
|
-
opacity: (0, $
|
|
1449
|
+
opacity: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)(),
|
|
1450
1450
|
outlineStyle: [
|
|
1451
1451
|
'none',
|
|
1452
1452
|
'solid',
|
|
@@ -1455,19 +1455,19 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
1455
1455
|
'double',
|
|
1456
1456
|
'inset'
|
|
1457
1457
|
],
|
|
1458
|
-
outlineOffset: (0, $
|
|
1458
|
+
outlineOffset: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)((v, property)=>({
|
|
1459
1459
|
[property]: `${v}px`
|
|
1460
1460
|
})),
|
|
1461
|
-
outlineWidth: $
|
|
1462
|
-
transition: (0, $
|
|
1463
|
-
transitionDelay: $
|
|
1464
|
-
transitionDuration: $
|
|
1465
|
-
transitionTimingFunction: $
|
|
1466
|
-
animation: (0, $
|
|
1461
|
+
outlineWidth: $a81f2c98f3b7c89e$var$borderWidth,
|
|
1462
|
+
transition: (0, $1d6343f16443be39$export$7fdf8c7af26ba416)('transitionProperty', $a81f2c98f3b7c89e$var$transitionProperty),
|
|
1463
|
+
transitionDelay: $a81f2c98f3b7c89e$var$durationProperty,
|
|
1464
|
+
transitionDuration: $a81f2c98f3b7c89e$var$durationProperty,
|
|
1465
|
+
transitionTimingFunction: $a81f2c98f3b7c89e$var$timingFunction,
|
|
1466
|
+
animation: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)((value, property)=>({
|
|
1467
1467
|
[property === 'animation' ? 'animationName' : property]: value
|
|
1468
1468
|
})),
|
|
1469
|
-
animationDuration: $
|
|
1470
|
-
animationDelay: $
|
|
1469
|
+
animationDuration: $a81f2c98f3b7c89e$var$durationProperty,
|
|
1470
|
+
animationDelay: $a81f2c98f3b7c89e$var$durationProperty,
|
|
1471
1471
|
animationDirection: [
|
|
1472
1472
|
'normal',
|
|
1473
1473
|
'reverse',
|
|
@@ -1480,8 +1480,8 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
1480
1480
|
'backwards',
|
|
1481
1481
|
'both'
|
|
1482
1482
|
],
|
|
1483
|
-
animationIterationCount: (0, $
|
|
1484
|
-
animationTimingFunction: $
|
|
1483
|
+
animationIterationCount: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)(),
|
|
1484
|
+
animationTimingFunction: $a81f2c98f3b7c89e$var$timingFunction,
|
|
1485
1485
|
// layout
|
|
1486
1486
|
display: [
|
|
1487
1487
|
'block',
|
|
@@ -1555,12 +1555,12 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
1555
1555
|
'wrap-reverse',
|
|
1556
1556
|
'nowrap'
|
|
1557
1557
|
],
|
|
1558
|
-
flexShrink: (0, $
|
|
1559
|
-
flexGrow: (0, $
|
|
1560
|
-
gridColumnStart: (0, $
|
|
1561
|
-
gridColumnEnd: (0, $
|
|
1562
|
-
gridRowStart: (0, $
|
|
1563
|
-
gridRowEnd: (0, $
|
|
1558
|
+
flexShrink: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)(),
|
|
1559
|
+
flexGrow: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)(),
|
|
1560
|
+
gridColumnStart: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)(),
|
|
1561
|
+
gridColumnEnd: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)(),
|
|
1562
|
+
gridRowStart: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)(),
|
|
1563
|
+
gridRowEnd: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)(),
|
|
1564
1564
|
gridAutoFlow: [
|
|
1565
1565
|
'row',
|
|
1566
1566
|
'column',
|
|
@@ -1568,19 +1568,19 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
1568
1568
|
'row dense',
|
|
1569
1569
|
'column dense'
|
|
1570
1570
|
],
|
|
1571
|
-
gridAutoRows: (0, $
|
|
1572
|
-
[property]: $
|
|
1571
|
+
gridAutoRows: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)((value, property)=>({
|
|
1572
|
+
[property]: $a81f2c98f3b7c89e$var$gridTrackSize(value)
|
|
1573
1573
|
})),
|
|
1574
|
-
gridAutoColumns: (0, $
|
|
1575
|
-
[property]: $
|
|
1574
|
+
gridAutoColumns: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)((value, property)=>({
|
|
1575
|
+
[property]: $a81f2c98f3b7c89e$var$gridTrackSize(value)
|
|
1576
1576
|
})),
|
|
1577
|
-
gridTemplateColumns: (0, $
|
|
1578
|
-
[property]: $
|
|
1577
|
+
gridTemplateColumns: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)((value, property)=>({
|
|
1578
|
+
[property]: $a81f2c98f3b7c89e$var$gridTrack(value)
|
|
1579
1579
|
})),
|
|
1580
|
-
gridTemplateRows: (0, $
|
|
1581
|
-
[property]: $
|
|
1580
|
+
gridTemplateRows: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)((value, property)=>({
|
|
1581
|
+
[property]: $a81f2c98f3b7c89e$var$gridTrack(value)
|
|
1582
1582
|
})),
|
|
1583
|
-
gridTemplateAreas: (0, $
|
|
1583
|
+
gridTemplateAreas: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)((value, property)=>({
|
|
1584
1584
|
[property]: value.map((v)=>`"${v}"`).join('')
|
|
1585
1585
|
})),
|
|
1586
1586
|
float: [
|
|
@@ -1707,7 +1707,7 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
1707
1707
|
'auto',
|
|
1708
1708
|
'smooth'
|
|
1709
1709
|
],
|
|
1710
|
-
order: (0, $
|
|
1710
|
+
order: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)(),
|
|
1711
1711
|
pointerEvents: [
|
|
1712
1712
|
'none',
|
|
1713
1713
|
'auto'
|
|
@@ -1835,9 +1835,9 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
1835
1835
|
'contents',
|
|
1836
1836
|
'transform'
|
|
1837
1837
|
],
|
|
1838
|
-
zIndex: (0, $
|
|
1838
|
+
zIndex: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)(),
|
|
1839
1839
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
1840
|
-
disableTapHighlight: (0, $
|
|
1840
|
+
disableTapHighlight: (0, $1d6343f16443be39$export$e33e260cb0fb20f7)((_value)=>({
|
|
1841
1841
|
'-webkit-tap-highlight-color': 'rgba(0,0,0,0)'
|
|
1842
1842
|
}))
|
|
1843
1843
|
},
|
|
@@ -2048,5 +2048,5 @@ const $468034641bb536ce$export$1d567c320f4763bc = (0, $a42cf657cdea7060$export$2
|
|
|
2048
2048
|
});
|
|
2049
2049
|
|
|
2050
2050
|
|
|
2051
|
-
export {$
|
|
2051
|
+
export {$a81f2c98f3b7c89e$export$49bbad2a916ab57c as baseColor, $a81f2c98f3b7c89e$export$d19e682d444755ed as lightDark, $a81f2c98f3b7c89e$export$9b476054b78b89cd as colorMix, $a81f2c98f3b7c89e$export$46def8197cf4dd4c as linearGradient, $a81f2c98f3b7c89e$export$ba024f4caf693d15 as fontRelative, $a81f2c98f3b7c89e$export$17b63977b35bb6d2 as edgeToText, $a81f2c98f3b7c89e$export$a941ed4b947d12f8 as space, $a81f2c98f3b7c89e$export$346677f925de839c as size, $a81f2c98f3b7c89e$export$1d567c320f4763bc as style};
|
|
2052
2052
|
//# sourceMappingURL=spectrum-theme.mjs.map
|