@m3-baseui/react-vanilla-extract 1.0.4 → 1.1.0
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/dist/bottom-app-bar.css +28 -0
- package/dist/bottom-app-bar.css.map +1 -0
- package/dist/bottom-app-bar.d.ts +7 -0
- package/dist/bottom-app-bar.js +17 -0
- package/dist/bottom-app-bar.js.map +1 -0
- package/dist/bottom-sheet.css +79 -0
- package/dist/bottom-sheet.css.map +1 -0
- package/dist/bottom-sheet.d.ts +22 -0
- package/dist/bottom-sheet.js +27 -0
- package/dist/bottom-sheet.js.map +1 -0
- package/dist/fab-menu.css +201 -0
- package/dist/fab-menu.css.map +1 -0
- package/dist/fab-menu.d.ts +15 -0
- package/dist/fab-menu.js +19 -0
- package/dist/fab-menu.js.map +1 -0
- package/dist/index.css +507 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +94 -8
- package/dist/index.js.map +1 -1
- package/dist/navigation-rail.css +117 -0
- package/dist/navigation-rail.css.map +1 -0
- package/dist/navigation-rail.d.ts +14 -0
- package/dist/navigation-rail.js +29 -0
- package/dist/navigation-rail.js.map +1 -0
- package/dist/progress.d.ts +2 -2
- package/dist/side-sheet.css +103 -0
- package/dist/side-sheet.css.map +1 -0
- package/dist/side-sheet.d.ts +22 -0
- package/dist/side-sheet.js +28 -0
- package/dist/side-sheet.js.map +1 -0
- package/dist/top-app-bar.css +89 -0
- package/dist/top-app-bar.css.map +1 -0
- package/dist/top-app-bar.d.ts +7 -0
- package/dist/top-app-bar.js +24 -0
- package/dist/top-app-bar.js.map +1 -0
- package/package.json +31 -1
package/dist/index.css
CHANGED
|
@@ -1989,6 +1989,97 @@
|
|
|
1989
1989
|
color: rgb(var(--md-sys-color-on-tertiary-container));
|
|
1990
1990
|
}
|
|
1991
1991
|
|
|
1992
|
+
/* vanilla-extract-css-ns:src/fab-menu.css.ts.vanilla.css?source=#H4sIAAAAAAAAA6VVwW7bMAy95yuEnBpgypK2KToV22WfMQQDLdE2UVkyJNmtO_TfB8luErvZ5nSnwCIfSb33xKx_btuuuC9fNuzXgjFFvtbQCZZrfH5YsPTLFTmUgawRTFrdVCZGQFNhOAWsfJ_O0agYKKAW7L5O8AzkY-FsY5RgwYHxNTg0IYZsEzQZFMxYg_EgxXPrKm4dFWQEa8FdcT49Xx2SqZ_J1iApdGy721R-AFWK-87zysYUjuDJFNwHMAqcWn06NrsA9bB4XawPfP1QECAGXeizOo37T2yagEYdw4njYVzBNqNbC-YlaLzarL_sxq22CVbbt_s61BCoTaQdBCMT2eRvuo3UkWgCuoM22-tenBKpKINgu7v-uwaVZu1LCbYdzm2LLtf2SbCSlMKkfmafuacXMoVgmXUKHc9sypaN89YJVlt669p4dNyjRhmOcr_TfyjjQFHjxVgRX0KNPG-0Xh26l6DiTKM81NhCEk9ji_rmnVeOyIuEZyy3JvAcKtLdpGfoakzScQ0Zaq7BFchj_hH4NFA9A9inHqGeXnAWMCYmWDJCOb_jSX6PxxCiYNGnUd8ZJYID-UimmBhXiAxz6zAZWFoT0ATBlsuHkZ8h81Y3IZmAjMcwPI3T5SEbFxfHd6ttstT4EQ1e49iiCX6yUqZbYvOh974VZXwH6SZz7Xd7tsSIlMM9xnYPEJCn7EmJfqmUVJQ66oVq_1_lBMi4SWbXqB16j1Nq-qEUecg0qv2wrs5Lcsrd4exEaFdkV6PGMkrOreG-cTlIXLHPbLPeXierpuBs0M393wc_T8NmsoyHxa9t-LrMIeMVmoZrhLg7l_vx3-hoK19S5RvzbZFqPZEKpWDXt-Ol3X-flLzprflvKgdKeHyPQAZdstNqBp-1owpctxqzeDu38QA_Np7T05rzuJMBdrNvjtLGp335CH9AngxxN3eIgC7QR2Y4D3z9DcphDVLCCQAA */
|
|
1993
|
+
._1vyg8hz0 {
|
|
1994
|
+
display: flex;
|
|
1995
|
+
flex-direction: column;
|
|
1996
|
+
align-items: flex-end;
|
|
1997
|
+
gap: 8px;
|
|
1998
|
+
background: transparent;
|
|
1999
|
+
outline: none;
|
|
2000
|
+
transform-origin: var(--transform-origin);
|
|
2001
|
+
transition: opacity 150ms var(--md-sys-motion-easing-standard), transform 150ms var(--md-sys-motion-easing-standard);
|
|
2002
|
+
}
|
|
2003
|
+
._1vyg8hz0[data-starting-style],
|
|
2004
|
+
._1vyg8hz0[data-ending-style] {
|
|
2005
|
+
opacity: 0;
|
|
2006
|
+
transform: scale(0.95);
|
|
2007
|
+
}
|
|
2008
|
+
._1vyg8hz1 {
|
|
2009
|
+
position: relative;
|
|
2010
|
+
display: inline-flex;
|
|
2011
|
+
align-items: center;
|
|
2012
|
+
gap: 12px;
|
|
2013
|
+
height: 56px;
|
|
2014
|
+
padding-inline: 16px;
|
|
2015
|
+
overflow: hidden;
|
|
2016
|
+
box-sizing: border-box;
|
|
2017
|
+
cursor: pointer;
|
|
2018
|
+
user-select: none;
|
|
2019
|
+
outline: none;
|
|
2020
|
+
border-radius: var(--md-sys-shape-full);
|
|
2021
|
+
box-shadow: var(--md-sys-elevation-level3);
|
|
2022
|
+
transition: box-shadow 150ms var(--md-sys-motion-easing-standard);
|
|
2023
|
+
font-family: var(--md-sys-typescale-label-large-font);
|
|
2024
|
+
font-weight: var(--md-sys-typescale-label-large-weight);
|
|
2025
|
+
font-size: var(--md-sys-typescale-label-large-size);
|
|
2026
|
+
line-height: var(--md-sys-typescale-label-large-line-height);
|
|
2027
|
+
letter-spacing: var(--md-sys-typescale-label-large-tracking);
|
|
2028
|
+
}
|
|
2029
|
+
._1vyg8hz1::before {
|
|
2030
|
+
content: "";
|
|
2031
|
+
position: absolute;
|
|
2032
|
+
inset: 0;
|
|
2033
|
+
background: currentColor;
|
|
2034
|
+
opacity: 0;
|
|
2035
|
+
pointer-events: none;
|
|
2036
|
+
transition: opacity 100ms var(--md-sys-motion-easing-standard);
|
|
2037
|
+
}
|
|
2038
|
+
._1vyg8hz1:hover {
|
|
2039
|
+
box-shadow: var(--md-sys-elevation-level4);
|
|
2040
|
+
}
|
|
2041
|
+
._1vyg8hz1:hover::before {
|
|
2042
|
+
opacity: var(--md-sys-state-hover);
|
|
2043
|
+
}
|
|
2044
|
+
._1vyg8hz1[data-highlighted]::before {
|
|
2045
|
+
opacity: var(--md-sys-state-hover);
|
|
2046
|
+
}
|
|
2047
|
+
._1vyg8hz1:active::before {
|
|
2048
|
+
opacity: var(--md-sys-state-pressed);
|
|
2049
|
+
}
|
|
2050
|
+
._1vyg8hz1[data-disabled] {
|
|
2051
|
+
pointer-events: none;
|
|
2052
|
+
box-shadow: none;
|
|
2053
|
+
background: rgb(var(--md-sys-color-on-surface) / 0.12);
|
|
2054
|
+
color: rgb(var(--md-sys-color-on-surface) / 0.38);
|
|
2055
|
+
}
|
|
2056
|
+
._1vyg8hz1[data-disabled]::before {
|
|
2057
|
+
opacity: 0;
|
|
2058
|
+
}
|
|
2059
|
+
._1vyg8hz1 [data-slot=fab-menu-leading] {
|
|
2060
|
+
display: inline-flex;
|
|
2061
|
+
}
|
|
2062
|
+
._1vyg8hz1 [data-slot=fab-menu-leading] > svg {
|
|
2063
|
+
width: 24px;
|
|
2064
|
+
height: 24px;
|
|
2065
|
+
}
|
|
2066
|
+
._1vyg8hz3 {
|
|
2067
|
+
background: rgb(var(--md-sys-color-surface-container-high));
|
|
2068
|
+
color: rgb(var(--md-sys-color-primary));
|
|
2069
|
+
}
|
|
2070
|
+
._1vyg8hz4 {
|
|
2071
|
+
background: rgb(var(--md-sys-color-primary-container));
|
|
2072
|
+
color: rgb(var(--md-sys-color-on-primary-container));
|
|
2073
|
+
}
|
|
2074
|
+
._1vyg8hz5 {
|
|
2075
|
+
background: rgb(var(--md-sys-color-secondary-container));
|
|
2076
|
+
color: rgb(var(--md-sys-color-on-secondary-container));
|
|
2077
|
+
}
|
|
2078
|
+
._1vyg8hz6 {
|
|
2079
|
+
background: rgb(var(--md-sys-color-tertiary-container));
|
|
2080
|
+
color: rgb(var(--md-sys-color-on-tertiary-container));
|
|
2081
|
+
}
|
|
2082
|
+
|
|
1992
2083
|
/* vanilla-extract-css-ns:src/divider.css.ts.vanilla.css?source=Lm45YnFjZTAgewogIGZsZXgtc2hyaW5rOiAwOwogIGFsaWduLXNlbGY6IHN0cmV0Y2g7CiAgYm9yZGVyOiBub25lOwogIGJhY2tncm91bmQ6IHJnYih2YXIoLS1tZC1zeXMtY29sb3Itb3V0bGluZS12YXJpYW50KSk7Cn0KLm45YnFjZTEgewogIGhlaWdodDogMXB4OwogIHdpZHRoOiBhdXRvOwp9Ci5uOWJxY2UyIHsKICB3aWR0aDogMXB4OwogIGhlaWdodDogYXV0bzsKfQoubjlicWNlNiB7CiAgbWFyZ2luLWlubGluZS1zdGFydDogMTZweDsKfQoubjlicWNlNyB7CiAgbWFyZ2luLWlubGluZTogMTZweDsKfQoubjlicWNlOCB7CiAgbWFyZ2luLWJsb2NrLXN0YXJ0OiAxNnB4Owp9Ci5uOWJxY2U5IHsKICBtYXJnaW4tYmxvY2s6IDE2cHg7Cn0 */
|
|
1993
2084
|
.n9bqce0 {
|
|
1994
2085
|
flex-shrink: 0;
|
|
@@ -2744,4 +2835,420 @@
|
|
|
2744
2835
|
line-height: var(--md-sys-typescale-label-small-line-height);
|
|
2745
2836
|
letter-spacing: var(--md-sys-typescale-label-small-tracking);
|
|
2746
2837
|
}
|
|
2838
|
+
|
|
2839
|
+
/* vanilla-extract-css-ns:src/top-app-bar.css.ts.vanilla.css?source=#H4sIAAAAAAAAA-2V246bMBCG7_MUc1Npc-EVye7Srfs0xh7MND4g2zlt1XevcGgSaCoBe9srZOb_5_DZ4Ocfrn0piwJ-rgAUxdaIM4fa4On7CvKTKQooE3nHQXqzt66LHEmlhsOmKL50y8qfWKQPcppD5YPCwCqfUzRIukkcytc2ryshdzr4vVMcgq6eDiI8MWYVi-fIpDc-sLgPtZC4Xnf6_OqfUu_u1b9Wz5dxXvI4f0pvNtuu9jX6Ooy-DaNvj1EIQ9oxSmgjB4kuYehea9Fy6Ecbj9oKpchpRs6Qw152rVPOqpN3IjaB3I5DsRhMCfGgc-F-A7ej3rfDJr9mrSXHen0u7Q8YauOPHBpSCvOBSHhK7BZAY6iNFPNZaSghi62QyMH5YxDt4gHec0MdDQ6bR5Avew1Qe5dYLSyZM4dB_nRuMUphkCVKBpkRQSPr9Our8djjmGC8SG_WSB84ydgJs61rnDXTK97pL35MCUMGnD_ACSlSEHJHTt-j_TYVbd7qfE4HJ_Q_8JnARQb-F-Vy-PeofEre3r7UKZwbFCo3Ha0wZh7qkXcW7ZF3FvCRdyHzUZZH2Kt52N8XYLeoaG8Xcu_Ny8D35mXke_Nn0fdpHrGXiy_X5RcgO4hAwqX1sJFpF-Fvgh0T7iAJAAA */
|
|
2840
|
+
.jnp3600 {
|
|
2841
|
+
display: flex;
|
|
2842
|
+
flex-direction: column;
|
|
2843
|
+
width: 100%;
|
|
2844
|
+
box-sizing: border-box;
|
|
2845
|
+
height: 64px;
|
|
2846
|
+
background: rgb(var(--md-sys-color-surface));
|
|
2847
|
+
color: rgb(var(--md-sys-color-on-surface));
|
|
2848
|
+
}
|
|
2849
|
+
.jnp3603 {
|
|
2850
|
+
height: 112px;
|
|
2851
|
+
}
|
|
2852
|
+
.jnp3604 {
|
|
2853
|
+
height: 152px;
|
|
2854
|
+
}
|
|
2855
|
+
.jnp3605 {
|
|
2856
|
+
display: flex;
|
|
2857
|
+
align-items: center;
|
|
2858
|
+
gap: 4px;
|
|
2859
|
+
height: 64px;
|
|
2860
|
+
padding-inline: 4px;
|
|
2861
|
+
}
|
|
2862
|
+
.jnp3606 {
|
|
2863
|
+
display: flex;
|
|
2864
|
+
align-items: center;
|
|
2865
|
+
flex-shrink: 0;
|
|
2866
|
+
color: rgb(var(--md-sys-color-on-surface));
|
|
2867
|
+
}
|
|
2868
|
+
.jnp3606 svg {
|
|
2869
|
+
width: 24px;
|
|
2870
|
+
height: 24px;
|
|
2871
|
+
}
|
|
2872
|
+
.jnp3607 {
|
|
2873
|
+
min-width: 0;
|
|
2874
|
+
overflow: hidden;
|
|
2875
|
+
text-overflow: ellipsis;
|
|
2876
|
+
white-space: nowrap;
|
|
2877
|
+
color: rgb(var(--md-sys-color-on-surface));
|
|
2878
|
+
}
|
|
2879
|
+
.jnp3608 {
|
|
2880
|
+
flex: 1;
|
|
2881
|
+
padding-inline: 12px;
|
|
2882
|
+
font-family: var(--md-sys-typescale-title-large-font);
|
|
2883
|
+
font-weight: var(--md-sys-typescale-title-large-weight);
|
|
2884
|
+
font-size: var(--md-sys-typescale-title-large-size);
|
|
2885
|
+
line-height: var(--md-sys-typescale-title-large-line-height);
|
|
2886
|
+
letter-spacing: var(--md-sys-typescale-title-large-tracking);
|
|
2887
|
+
}
|
|
2888
|
+
.jnp3609 {
|
|
2889
|
+
flex: 1;
|
|
2890
|
+
padding-inline: 12px;
|
|
2891
|
+
text-align: center;
|
|
2892
|
+
font-family: var(--md-sys-typescale-title-large-font);
|
|
2893
|
+
font-weight: var(--md-sys-typescale-title-large-weight);
|
|
2894
|
+
font-size: var(--md-sys-typescale-title-large-size);
|
|
2895
|
+
line-height: var(--md-sys-typescale-title-large-line-height);
|
|
2896
|
+
letter-spacing: var(--md-sys-typescale-title-large-tracking);
|
|
2897
|
+
}
|
|
2898
|
+
.jnp360a {
|
|
2899
|
+
padding-inline: 16px;
|
|
2900
|
+
padding-bottom: 24px;
|
|
2901
|
+
font-family: var(--md-sys-typescale-headline-small-font);
|
|
2902
|
+
font-weight: var(--md-sys-typescale-headline-small-weight);
|
|
2903
|
+
font-size: var(--md-sys-typescale-headline-small-size);
|
|
2904
|
+
line-height: var(--md-sys-typescale-headline-small-line-height);
|
|
2905
|
+
letter-spacing: var(--md-sys-typescale-headline-small-tracking);
|
|
2906
|
+
}
|
|
2907
|
+
.jnp360b {
|
|
2908
|
+
padding-inline: 16px;
|
|
2909
|
+
padding-bottom: 28px;
|
|
2910
|
+
font-family: var(--md-sys-typescale-headline-medium-font);
|
|
2911
|
+
font-weight: var(--md-sys-typescale-headline-medium-weight);
|
|
2912
|
+
font-size: var(--md-sys-typescale-headline-medium-size);
|
|
2913
|
+
line-height: var(--md-sys-typescale-headline-medium-line-height);
|
|
2914
|
+
letter-spacing: var(--md-sys-typescale-headline-medium-tracking);
|
|
2915
|
+
}
|
|
2916
|
+
.jnp360c {
|
|
2917
|
+
display: flex;
|
|
2918
|
+
align-items: center;
|
|
2919
|
+
gap: 4px;
|
|
2920
|
+
flex-shrink: 0;
|
|
2921
|
+
color: rgb(var(--md-sys-color-on-surface-variant));
|
|
2922
|
+
}
|
|
2923
|
+
.jnp360c svg {
|
|
2924
|
+
width: 24px;
|
|
2925
|
+
height: 24px;
|
|
2926
|
+
}
|
|
2927
|
+
|
|
2928
|
+
/* vanilla-extract-css-ns:src/bottom-app-bar.css.ts.vanilla.css?source=Ll8xbGozajlmMCB7CiAgZGlzcGxheTogZmxleDsKICBhbGlnbi1pdGVtczogY2VudGVyOwogIGp1c3RpZnktY29udGVudDogc3BhY2UtYmV0d2VlbjsKICB3aWR0aDogMTAwJTsKICBib3gtc2l6aW5nOiBib3JkZXItYm94OwogIGhlaWdodDogODBweDsKICBwYWRkaW5nLWlubGluZTogNHB4OwogIGJhY2tncm91bmQ6IHJnYih2YXIoLS1tZC1zeXMtY29sb3Itc3VyZmFjZS1jb250YWluZXIpKTsKICBjb2xvcjogcmdiKHZhcigtLW1kLXN5cy1jb2xvci1vbi1zdXJmYWNlLXZhcmlhbnQpKTsKfQouXzFsajNqOWYxIHsKICBkaXNwbGF5OiBmbGV4OwogIGFsaWduLWl0ZW1zOiBjZW50ZXI7CiAgZ2FwOiA0cHg7CiAgcGFkZGluZy1sZWZ0OiA4cHg7Cn0KLl8xbGozajlmMSBzdmcgewogIHdpZHRoOiAyNHB4OwogIGhlaWdodDogMjRweDsKfQouXzFsajNqOWYyIHsKICBkaXNwbGF5OiBmbGV4OwogIGFsaWduLWl0ZW1zOiBjZW50ZXI7CiAgcGFkZGluZy1yaWdodDogMTJweDsKfQ */
|
|
2929
|
+
._1lj3j9f0 {
|
|
2930
|
+
display: flex;
|
|
2931
|
+
align-items: center;
|
|
2932
|
+
justify-content: space-between;
|
|
2933
|
+
width: 100%;
|
|
2934
|
+
box-sizing: border-box;
|
|
2935
|
+
height: 80px;
|
|
2936
|
+
padding-inline: 4px;
|
|
2937
|
+
background: rgb(var(--md-sys-color-surface-container));
|
|
2938
|
+
color: rgb(var(--md-sys-color-on-surface-variant));
|
|
2939
|
+
}
|
|
2940
|
+
._1lj3j9f1 {
|
|
2941
|
+
display: flex;
|
|
2942
|
+
align-items: center;
|
|
2943
|
+
gap: 4px;
|
|
2944
|
+
padding-left: 8px;
|
|
2945
|
+
}
|
|
2946
|
+
._1lj3j9f1 svg {
|
|
2947
|
+
width: 24px;
|
|
2948
|
+
height: 24px;
|
|
2949
|
+
}
|
|
2950
|
+
._1lj3j9f2 {
|
|
2951
|
+
display: flex;
|
|
2952
|
+
align-items: center;
|
|
2953
|
+
padding-right: 12px;
|
|
2954
|
+
}
|
|
2955
|
+
|
|
2956
|
+
/* vanilla-extract-css-ns:src/navigation-rail.css.ts.vanilla.css?source=#H4sIAAAAAAAAA71VwW7bMAy95yuEAgOagzrHcbpCOe4zhh1oibbVypIhyc6yYf8-SHbruGlau912CiLrPZKPj9TN4TbNtvcJ-bUiREjXKDgyUij8sV-R-EuFtMi9NJoRblRb6_AFlCw1lR5rxwhH7dGG4xIaRjZpE9EVyrLyjGyS5FP4f5DCV4zcJf3nBoSQuqS5MvyBkXQ4zoE_lNa0WjBiy_y6A3tNaS2oOzrKjTKWutYWwHG93q9-r276Cjb_ooIabCk1zY33pmYkC6dPEdMYsTFO9tQWFXjZ4f6v5HHfOi-LI-VGe9T-LMVsKqLUSmo8Ox60zc6l9Ra0a8Ci9vGTsQItI9roWABvrTOWkcbIx7CtQ0sdKuR-vGda3wfuD0ZxvgnwQIV0kCsU3wetIhnFDrV3Z5jtEkGXyzbYb3c7dec2nXQ1e5YE5M6o1sckpHboGUlGwagFIVvHyMSlroIGadEqtX5DdtOhLZQ5MFJJITAaIl4Zoo_Q3vpks0tqN41Wm3CXIrjQcedBC7DidDYyxnIsjMVY25M0V1f7eaWe5M9bG3L_GpKJBTTApT8ON19u8LSkARG2wvJKBls1Fp0Lrpo0bc7mQG4CaW8QkBrtZIukrAotIS8K91TrtNkePNIImzIVhreOdtLJXOFyxgifMgIP47CcapDrBSHH-XydNDmB7v7tmMZGXWyg0Y_bn3ZgJWi_Xj932Acm5YK_dsPgvJXZW-66IPpc-uHZI59JcrO9e435Y2VcjrMjrisjy7BN02y6TdPpG3m7KOK0pYXRnhZQS_Xc1f7YoOOgkCrIUdEahWxrGgAj8jBkNAfZ3x2xTv7EechwM-LCK0irBTFPAD0B-rA6XRg5Xc7j8Bb4g9TlfxiBZZ1cn_fhS5LMGIWFYd49Cu-P8we99-BDMgsAAA */
|
|
2957
|
+
.w6243j0 {
|
|
2958
|
+
display: flex;
|
|
2959
|
+
flex-direction: column;
|
|
2960
|
+
align-items: center;
|
|
2961
|
+
gap: 12px;
|
|
2962
|
+
height: 100%;
|
|
2963
|
+
width: 80px;
|
|
2964
|
+
padding-block: 20px;
|
|
2965
|
+
background: rgb(var(--md-sys-color-surface));
|
|
2966
|
+
}
|
|
2967
|
+
.w6243j1 {
|
|
2968
|
+
display: flex;
|
|
2969
|
+
flex-direction: column;
|
|
2970
|
+
align-items: center;
|
|
2971
|
+
gap: 12px;
|
|
2972
|
+
margin-bottom: 4px;
|
|
2973
|
+
}
|
|
2974
|
+
.w6243j2 {
|
|
2975
|
+
position: relative;
|
|
2976
|
+
display: flex;
|
|
2977
|
+
flex-direction: column;
|
|
2978
|
+
align-items: center;
|
|
2979
|
+
justify-content: center;
|
|
2980
|
+
gap: 4px;
|
|
2981
|
+
padding-inline: 4px;
|
|
2982
|
+
padding-block: 4px;
|
|
2983
|
+
background: transparent;
|
|
2984
|
+
border: none;
|
|
2985
|
+
cursor: pointer;
|
|
2986
|
+
user-select: none;
|
|
2987
|
+
outline: none;
|
|
2988
|
+
}
|
|
2989
|
+
.w6243j2[data-disabled] {
|
|
2990
|
+
pointer-events: none;
|
|
2991
|
+
}
|
|
2992
|
+
.w6243j3 {
|
|
2993
|
+
position: relative;
|
|
2994
|
+
display: flex;
|
|
2995
|
+
align-items: center;
|
|
2996
|
+
justify-content: center;
|
|
2997
|
+
width: 56px;
|
|
2998
|
+
height: 32px;
|
|
2999
|
+
}
|
|
3000
|
+
.w6243j4 {
|
|
3001
|
+
position: absolute;
|
|
3002
|
+
inset: 0;
|
|
3003
|
+
border-radius: var(--md-sys-shape-full);
|
|
3004
|
+
background: transparent;
|
|
3005
|
+
overflow: hidden;
|
|
3006
|
+
transition: background-color 150ms var(--md-sys-motion-easing-standard);
|
|
3007
|
+
}
|
|
3008
|
+
.w6243j4::before {
|
|
3009
|
+
content: "";
|
|
3010
|
+
position: absolute;
|
|
3011
|
+
inset: 0;
|
|
3012
|
+
background: currentColor;
|
|
3013
|
+
opacity: 0;
|
|
3014
|
+
pointer-events: none;
|
|
3015
|
+
transition: opacity 100ms var(--md-sys-motion-easing-standard);
|
|
3016
|
+
}
|
|
3017
|
+
.w6243j2[data-pressed] .w6243j4 {
|
|
3018
|
+
background: rgb(var(--md-sys-color-secondary-container));
|
|
3019
|
+
}
|
|
3020
|
+
.w6243j2:hover .w6243j4::before {
|
|
3021
|
+
opacity: var(--md-sys-state-hover);
|
|
3022
|
+
}
|
|
3023
|
+
.w6243j2:focus-visible .w6243j4::before {
|
|
3024
|
+
opacity: var(--md-sys-state-focus);
|
|
3025
|
+
}
|
|
3026
|
+
.w6243j2:active .w6243j4::before {
|
|
3027
|
+
opacity: var(--md-sys-state-pressed);
|
|
3028
|
+
}
|
|
3029
|
+
.w6243j2[data-disabled] .w6243j4::before {
|
|
3030
|
+
opacity: 0;
|
|
3031
|
+
}
|
|
3032
|
+
.w6243j5 {
|
|
3033
|
+
position: relative;
|
|
3034
|
+
display: flex;
|
|
3035
|
+
align-items: center;
|
|
3036
|
+
justify-content: center;
|
|
3037
|
+
color: rgb(var(--md-sys-color-on-surface-variant));
|
|
3038
|
+
transition: color 150ms var(--md-sys-motion-easing-standard);
|
|
3039
|
+
}
|
|
3040
|
+
.w6243j2[data-pressed] .w6243j5 {
|
|
3041
|
+
color: rgb(var(--md-sys-color-on-secondary-container));
|
|
3042
|
+
}
|
|
3043
|
+
.w6243j2[data-disabled] .w6243j5 {
|
|
3044
|
+
color: rgb(var(--md-sys-color-on-surface) / 0.38);
|
|
3045
|
+
}
|
|
3046
|
+
.w6243j2[data-disabled][data-pressed] .w6243j5 {
|
|
3047
|
+
color: rgb(var(--md-sys-color-on-surface) / 0.38);
|
|
3048
|
+
}
|
|
3049
|
+
.w6243j5 svg {
|
|
3050
|
+
width: 24px;
|
|
3051
|
+
height: 24px;
|
|
3052
|
+
}
|
|
3053
|
+
.w6243j6 {
|
|
3054
|
+
color: rgb(var(--md-sys-color-on-surface-variant));
|
|
3055
|
+
font-family: var(--md-sys-typescale-label-medium-font);
|
|
3056
|
+
font-weight: var(--md-sys-typescale-label-medium-weight);
|
|
3057
|
+
font-size: var(--md-sys-typescale-label-medium-size);
|
|
3058
|
+
line-height: var(--md-sys-typescale-label-medium-line-height);
|
|
3059
|
+
letter-spacing: var(--md-sys-typescale-label-medium-tracking);
|
|
3060
|
+
transition: color 150ms var(--md-sys-motion-easing-standard);
|
|
3061
|
+
}
|
|
3062
|
+
.w6243j2[data-pressed] .w6243j6 {
|
|
3063
|
+
color: rgb(var(--md-sys-color-on-surface));
|
|
3064
|
+
font-weight: 700;
|
|
3065
|
+
}
|
|
3066
|
+
.w6243j2[data-disabled] .w6243j6 {
|
|
3067
|
+
color: rgb(var(--md-sys-color-on-surface) / 0.38);
|
|
3068
|
+
}
|
|
3069
|
+
.w6243j2[data-disabled][data-pressed] .w6243j6 {
|
|
3070
|
+
color: rgb(var(--md-sys-color-on-surface) / 0.38);
|
|
3071
|
+
}
|
|
3072
|
+
|
|
3073
|
+
/* vanilla-extract-css-ns:src/bottom-sheet.css.ts.vanilla.css?source=#H4sIAAAAAAAAA51U227bMAx971foZUCDjZ2TpsXgfskw9IGxaJurLBkSndgd9u-DZDtxum5I-qYLD0nxnKO7Epu1LzP160ap1gUWdjZXJfekn26UYhtIcpXF9Suw1dTnapu2OyxeKu86q3Plq93tHv0tQKMhDAEKZ5yHUHhuVuqryu7uN6sIEo92LuJaLFgGdZ9lTVBn8MbFECAMbCugpq0x8Cvp1dPN75u7qecfGgUhHLhlWz2nFyzTW2fpnXBBLzFpkMHQ8xd1fk1Wny5TyqnLNINjsvVV83pIW82hNTjkqjTUxwM0XFlgoSaMh7F6vPjZBeFygMJZISu5KsgK-UX9Taq_cz0EfmVb5WrnvCYPO5dSH1hLnat1ln2K2wZ7mI4et1nbz2c1cVXH_GiK23WW6X2tQD08tn0iy-3Jl8YdYMgVduLms1B4ZwzsqMY9O5-r2CiyTQS7rqgBi3EuR1Qnhi3NpCjVok6D3jkR1-Rqsx27ukRUnS-xIJiKkgfjDqvUcAr4J9DZGTtGTyMT14KhUsCj5i7k50oMNbYE1ItHMOgregv1cYTXYft4o93hTTgZ2mPSvaE9mfXJMKXzTT4uDQp9v02EjWDt8UAegsUWWsdWwJVlIFmpz-o84sAtQeP21JAVGFarvxx5LPZRT27e8WQXYnEyVMhfptz835Sbf5ny_alEuS-7uU-xDfqKba7Wj22fBKm-jVqb1T9JbzLI_WbcJkOG2rN9mfw8kf4fqsvOmNWFMj6pEfboGa2MH-V2-YLt2QuypXPYjo6anTOfi2vz-YXX-aF0VqDEhs3w5nUytBQKNATCYmgUM8T4E_AwTfMC4Bh6gkYZXQSMgQkWn378vS4ALuJHPIlEVca_Pf6eF6QQj8UL22pJz8MH6dleR89RIBfTtHN6gIY0d811NC2BV9G0BF5F0xL4QZqWKZY0_QH-Zaf33QgAAA */
|
|
3074
|
+
.fam1rf0 {
|
|
3075
|
+
position: fixed;
|
|
3076
|
+
inset: 0;
|
|
3077
|
+
z-index: 40;
|
|
3078
|
+
background: rgb(var(--md-sys-color-scrim) / 0.32);
|
|
3079
|
+
transition: opacity 300ms var(--md-sys-motion-easing-emphasized);
|
|
3080
|
+
}
|
|
3081
|
+
.fam1rf0[data-swiping] {
|
|
3082
|
+
transition: none;
|
|
3083
|
+
}
|
|
3084
|
+
.fam1rf0[data-starting-style],
|
|
3085
|
+
.fam1rf0[data-ending-style] {
|
|
3086
|
+
opacity: 0;
|
|
3087
|
+
}
|
|
3088
|
+
.fam1rf1 {
|
|
3089
|
+
position: fixed;
|
|
3090
|
+
inset: 0;
|
|
3091
|
+
z-index: 50;
|
|
3092
|
+
display: flex;
|
|
3093
|
+
align-items: flex-end;
|
|
3094
|
+
justify-content: center;
|
|
3095
|
+
}
|
|
3096
|
+
.fam1rf2 {
|
|
3097
|
+
box-sizing: border-box;
|
|
3098
|
+
width: 100%;
|
|
3099
|
+
max-width: 640px;
|
|
3100
|
+
max-height: calc(100dvh - 56px);
|
|
3101
|
+
overflow-y: auto;
|
|
3102
|
+
overscroll-behavior: contain;
|
|
3103
|
+
touch-action: auto;
|
|
3104
|
+
outline: none;
|
|
3105
|
+
padding-bottom: 24px;
|
|
3106
|
+
background: rgb(var(--md-sys-color-surface-container-low));
|
|
3107
|
+
color: rgb(var(--md-sys-color-on-surface));
|
|
3108
|
+
border-top-left-radius: var(--md-sys-shape-extra-large);
|
|
3109
|
+
border-top-right-radius: var(--md-sys-shape-extra-large);
|
|
3110
|
+
box-shadow: var(--md-sys-elevation-level1);
|
|
3111
|
+
transform: translateY(calc(var(--drawer-snap-point-offset) + var(--drawer-swipe-movement-y)));
|
|
3112
|
+
transition: transform 300ms var(--md-sys-motion-easing-emphasized);
|
|
3113
|
+
}
|
|
3114
|
+
.fam1rf2[data-swiping] {
|
|
3115
|
+
user-select: none;
|
|
3116
|
+
}
|
|
3117
|
+
.fam1rf2[data-starting-style],
|
|
3118
|
+
.fam1rf2[data-ending-style] {
|
|
3119
|
+
transform: translateY(100%);
|
|
3120
|
+
}
|
|
3121
|
+
.fam1rf3 {
|
|
3122
|
+
margin: 16px auto 8px;
|
|
3123
|
+
height: 4px;
|
|
3124
|
+
width: 32px;
|
|
3125
|
+
flex-shrink: 0;
|
|
3126
|
+
border-radius: var(--md-sys-shape-full);
|
|
3127
|
+
background: rgb(var(--md-sys-color-on-surface-variant) / 0.4);
|
|
3128
|
+
}
|
|
3129
|
+
.fam1rf4 {
|
|
3130
|
+
margin: 0;
|
|
3131
|
+
padding-inline: 24px;
|
|
3132
|
+
padding-top: 8px;
|
|
3133
|
+
color: rgb(var(--md-sys-color-on-surface));
|
|
3134
|
+
font-family: var(--md-sys-typescale-title-large-font);
|
|
3135
|
+
font-weight: var(--md-sys-typescale-title-large-weight);
|
|
3136
|
+
font-size: var(--md-sys-typescale-title-large-size);
|
|
3137
|
+
line-height: var(--md-sys-typescale-title-large-line-height);
|
|
3138
|
+
letter-spacing: var(--md-sys-typescale-title-large-tracking);
|
|
3139
|
+
}
|
|
3140
|
+
.fam1rf5 {
|
|
3141
|
+
margin: 0;
|
|
3142
|
+
padding-inline: 24px;
|
|
3143
|
+
padding-top: 4px;
|
|
3144
|
+
color: rgb(var(--md-sys-color-on-surface-variant));
|
|
3145
|
+
font-family: var(--md-sys-typescale-body-medium-font);
|
|
3146
|
+
font-weight: var(--md-sys-typescale-body-medium-weight);
|
|
3147
|
+
font-size: var(--md-sys-typescale-body-medium-size);
|
|
3148
|
+
line-height: var(--md-sys-typescale-body-medium-line-height);
|
|
3149
|
+
letter-spacing: var(--md-sys-typescale-body-medium-tracking);
|
|
3150
|
+
}
|
|
3151
|
+
|
|
3152
|
+
/* vanilla-extract-css-ns:src/side-sheet.css.ts.vanilla.css?source=#H4sIAAAAAAAAA51W227bMAx9z1cIAwY0wNg5Sdt1LvYfA4Y-MBJjC5UlQ6KTuMP-fZDsJM6lrdOnxBIPecRzRPtW_XR37TYTfydC1C5o1s7mYqW3pJ4mQmgbiHORxf-voK2ibS7u0uMS5UvhXWNVLnyxvFmjvwGoFIQ2gHTGeQjS62oqvovsdjGfRhB7tLsirkapuRWLLKuCOIJXLoYAYdC2AKrqEoN-JTV9mvyb3Pac_yhkhLDRtbbFczrBML11li6EM3qOSQO3hp6_ieNtsuqwmVL2LFMP9slmV_XrPj0qHWqDbS5WhrZxAY0uLGimKuQisCeW5aDGPNVYui0E_aptkYul84o8LF2Cl6SLknMxy7Kv8XmjFZe5WMyzOu1XuIV-TaKRN7MsW28EiPuHeju9SCj-gtKeZHcq6UxT2bjj1uRXxm2gzQU27HZrQXpnDCypxLV2PkIso04Ydo0sAftce1TDRlvayTPORo1foSTok5MH4zbTdIYU8CbQ2R12enDfyvkq7_4aZPrdA5XHDflkJ4LKrakiy7Cdntl2n-Szxp1fMG4TYm0yJPnMuYN4Osjz64uP-n_p8BX6QlswtOJdrz_Ex-BjuO8cNRLf13__Xo0Cn9-6y0pFq7_RyQsn-xyxIXYsLzgltjjc3RKV2-THLiFDa0xGMbQmMzuCjlC7HwTs6qQ4eFS6CSdFQok1gUFfUPLwfnowu2o07kNeAxcNaCW2n-E1GrgndnfW65P7c58C3h-_kiyTj8sF1rl47EeotrAbs3FsxrUaVTKFtt0cm52sL42TL32GPYWHRCFWzsXsaX_h-hfFdUNs5SzDCitt2pMGcVtTkGgIWLPpWwUx_gDc9McZAexCD9A4yEYBY2CCxQ7tGzgCOIjv8MQc52J8BccX4IgU7FG-aFsMHfJjMOP6lp-qOL87UTG58aDuWIlgjV6j5fFSLZ1qoSKlm-o6qYbAq6QaAq-Sagj8pFTDFJekejy-q508cPSBEkqv7Uv3PfYfWgy9Pr8KAAA */
|
|
3153
|
+
.d9o4yx0 {
|
|
3154
|
+
position: fixed;
|
|
3155
|
+
inset: 0;
|
|
3156
|
+
z-index: 40;
|
|
3157
|
+
background: rgb(var(--md-sys-color-scrim) / 0.32);
|
|
3158
|
+
transition: opacity 300ms var(--md-sys-motion-easing-emphasized);
|
|
3159
|
+
}
|
|
3160
|
+
.d9o4yx0[data-swiping] {
|
|
3161
|
+
transition: none;
|
|
3162
|
+
}
|
|
3163
|
+
.d9o4yx0[data-starting-style],
|
|
3164
|
+
.d9o4yx0[data-ending-style] {
|
|
3165
|
+
opacity: 0;
|
|
3166
|
+
}
|
|
3167
|
+
.d9o4yx1 {
|
|
3168
|
+
position: fixed;
|
|
3169
|
+
inset: 0;
|
|
3170
|
+
z-index: 50;
|
|
3171
|
+
display: flex;
|
|
3172
|
+
align-items: stretch;
|
|
3173
|
+
}
|
|
3174
|
+
.d9o4yx2 {
|
|
3175
|
+
box-sizing: border-box;
|
|
3176
|
+
height: 100%;
|
|
3177
|
+
width: 320px;
|
|
3178
|
+
max-width: calc(100vw - 56px);
|
|
3179
|
+
display: flex;
|
|
3180
|
+
flex-direction: column;
|
|
3181
|
+
overflow-y: auto;
|
|
3182
|
+
overscroll-behavior: contain;
|
|
3183
|
+
touch-action: auto;
|
|
3184
|
+
outline: none;
|
|
3185
|
+
background: rgb(var(--md-sys-color-surface-container-low));
|
|
3186
|
+
color: rgb(var(--md-sys-color-on-surface));
|
|
3187
|
+
transform: translateX(var(--drawer-swipe-movement-x));
|
|
3188
|
+
transition: transform 300ms var(--md-sys-motion-easing-emphasized);
|
|
3189
|
+
}
|
|
3190
|
+
.d9o4yx2[data-swiping] {
|
|
3191
|
+
user-select: none;
|
|
3192
|
+
}
|
|
3193
|
+
.d9o4yx2[data-swipe-direction=right] {
|
|
3194
|
+
margin-left: auto;
|
|
3195
|
+
}
|
|
3196
|
+
.d9o4yx2[data-swipe-direction=left] {
|
|
3197
|
+
margin-right: auto;
|
|
3198
|
+
}
|
|
3199
|
+
.d9o4yx2[data-swipe-direction=right][data-starting-style],
|
|
3200
|
+
.d9o4yx2[data-swipe-direction=right][data-ending-style] {
|
|
3201
|
+
transform: translateX(100%);
|
|
3202
|
+
}
|
|
3203
|
+
.d9o4yx2[data-swipe-direction=left][data-starting-style],
|
|
3204
|
+
.d9o4yx2[data-swipe-direction=left][data-ending-style] {
|
|
3205
|
+
transform: translateX(-100%);
|
|
3206
|
+
}
|
|
3207
|
+
.d9o4yx3 {
|
|
3208
|
+
box-shadow: var(--md-sys-elevation-level1);
|
|
3209
|
+
}
|
|
3210
|
+
.d9o4yx3[data-swipe-direction=right] {
|
|
3211
|
+
border-top-left-radius: var(--md-sys-shape-large);
|
|
3212
|
+
border-bottom-left-radius: var(--md-sys-shape-large);
|
|
3213
|
+
}
|
|
3214
|
+
.d9o4yx3[data-swipe-direction=left] {
|
|
3215
|
+
border-top-right-radius: var(--md-sys-shape-large);
|
|
3216
|
+
border-bottom-right-radius: var(--md-sys-shape-large);
|
|
3217
|
+
}
|
|
3218
|
+
.d9o4yx4 {
|
|
3219
|
+
box-shadow: none;
|
|
3220
|
+
}
|
|
3221
|
+
.d9o4yx5 {
|
|
3222
|
+
display: flex;
|
|
3223
|
+
align-items: center;
|
|
3224
|
+
gap: 8px;
|
|
3225
|
+
min-height: 56px;
|
|
3226
|
+
padding-inline: 16px;
|
|
3227
|
+
padding-block: 8px;
|
|
3228
|
+
}
|
|
3229
|
+
.d9o4yx6 {
|
|
3230
|
+
flex: 1;
|
|
3231
|
+
margin: 0;
|
|
3232
|
+
color: rgb(var(--md-sys-color-on-surface));
|
|
3233
|
+
font-family: var(--md-sys-typescale-title-large-font);
|
|
3234
|
+
font-weight: var(--md-sys-typescale-title-large-weight);
|
|
3235
|
+
font-size: var(--md-sys-typescale-title-large-size);
|
|
3236
|
+
line-height: var(--md-sys-typescale-title-large-line-height);
|
|
3237
|
+
letter-spacing: var(--md-sys-typescale-title-large-tracking);
|
|
3238
|
+
}
|
|
3239
|
+
.d9o4yx7 {
|
|
3240
|
+
margin: 0;
|
|
3241
|
+
padding-inline: 24px;
|
|
3242
|
+
padding-bottom: 16px;
|
|
3243
|
+
color: rgb(var(--md-sys-color-on-surface-variant));
|
|
3244
|
+
font-family: var(--md-sys-typescale-body-medium-font);
|
|
3245
|
+
font-weight: var(--md-sys-typescale-body-medium-weight);
|
|
3246
|
+
font-size: var(--md-sys-typescale-body-medium-size);
|
|
3247
|
+
line-height: var(--md-sys-typescale-body-medium-line-height);
|
|
3248
|
+
letter-spacing: var(--md-sys-typescale-body-medium-tracking);
|
|
3249
|
+
}
|
|
3250
|
+
.d9o4yx8 {
|
|
3251
|
+
display: inline-flex;
|
|
3252
|
+
flex-shrink: 0;
|
|
3253
|
+
}
|
|
2747
3254
|
/*# sourceMappingURL=index.css.map */
|