@react-spectrum/menu 3.22.7 → 3.22.9
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/Menu.main.js +1 -1
- package/dist/Menu.main.js.map +1 -1
- package/dist/Menu.mjs +2 -2
- package/dist/Menu.module.js +2 -2
- package/dist/Menu.module.js.map +1 -1
- package/dist/MenuItem.main.js +2 -1
- package/dist/MenuItem.main.js.map +1 -1
- package/dist/MenuItem.mjs +2 -1
- package/dist/MenuItem.module.js +2 -1
- package/dist/MenuItem.module.js.map +1 -1
- package/dist/Popover.main.js +196 -0
- package/dist/Popover.main.js.map +1 -0
- package/dist/Popover.mjs +191 -0
- package/dist/Popover.module.js +191 -0
- package/dist/Popover.module.js.map +1 -0
- package/dist/SubmenuTrigger.main.js +2 -2
- package/dist/SubmenuTrigger.main.js.map +1 -1
- package/dist/SubmenuTrigger.mjs +2 -2
- package/dist/SubmenuTrigger.module.js +2 -2
- package/dist/SubmenuTrigger.module.js.map +1 -1
- package/dist/Underlay.main.js +54 -0
- package/dist/Underlay.main.js.map +1 -0
- package/dist/Underlay.mjs +49 -0
- package/dist/Underlay.module.js +49 -0
- package/dist/Underlay.module.js.map +1 -0
- package/dist/calculatePosition.main.js +392 -0
- package/dist/calculatePosition.main.js.map +1 -0
- package/dist/calculatePosition.mjs +386 -0
- package/dist/calculatePosition.module.js +386 -0
- package/dist/calculatePosition.module.js.map +1 -0
- package/dist/menu.2259a533.css +210 -0
- package/dist/menu.2259a533.css.map +1 -0
- package/dist/menu.359a0c0a.css +131 -0
- package/dist/menu.359a0c0a.css.map +1 -0
- package/dist/menu.57b3a408.css +12 -0
- package/dist/menu.57b3a408.css.map +1 -0
- package/dist/overlays_css.main.js +35 -0
- package/dist/overlays_css.main.js.map +1 -0
- package/dist/overlays_css.mjs +37 -0
- package/dist/overlays_css.module.js +37 -0
- package/dist/overlays_css.module.js.map +1 -0
- package/dist/popover_vars_css.main.js +83 -0
- package/dist/popover_vars_css.main.js.map +1 -0
- package/dist/popover_vars_css.mjs +85 -0
- package/dist/popover_vars_css.module.js +85 -0
- package/dist/popover_vars_css.module.js.map +1 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/underlay_vars_css.main.js +50 -0
- package/dist/underlay_vars_css.main.js.map +1 -0
- package/dist/underlay_vars_css.mjs +52 -0
- package/dist/underlay_vars_css.module.js +52 -0
- package/dist/underlay_vars_css.module.js.map +1 -0
- package/dist/useCloseOnScroll.main.js +49 -0
- package/dist/useCloseOnScroll.main.js.map +1 -0
- package/dist/useCloseOnScroll.mjs +44 -0
- package/dist/useCloseOnScroll.module.js +44 -0
- package/dist/useCloseOnScroll.module.js.map +1 -0
- package/dist/useOverlayPosition.main.js +225 -0
- package/dist/useOverlayPosition.main.js.map +1 -0
- package/dist/useOverlayPosition.mjs +220 -0
- package/dist/useOverlayPosition.module.js +220 -0
- package/dist/useOverlayPosition.module.js.map +1 -0
- package/dist/usePopover.main.js +73 -0
- package/dist/usePopover.main.js.map +1 -0
- package/dist/usePopover.mjs +68 -0
- package/dist/usePopover.module.js +68 -0
- package/dist/usePopover.module.js.map +1 -0
- package/package.json +23 -23
- package/src/Menu.tsx +2 -1
- package/src/MenuItem.tsx +5 -1
- package/src/Popover.tsx +240 -0
- package/src/SubmenuTrigger.tsx +1 -1
- package/src/Underlay.tsx +43 -0
- package/src/calculatePosition.ts +627 -0
- package/src/useCloseOnScroll.ts +64 -0
- package/src/useOverlayPosition.ts +327 -0
- package/src/usePopover.ts +136 -0
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
.XUQvlW_i18nFontFamily {
|
|
2
|
+
font-synthesis: weight;
|
|
3
|
+
font-family: adobe-clean, Source Sans Pro, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Trebuchet MS, Lucida Grande, sans-serif;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.XUQvlW_i18nFontFamily:lang(ar) {
|
|
7
|
+
font-family: myriad-arabic, adobe-clean, Source Sans Pro, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Trebuchet MS, Lucida Grande, sans-serif;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.XUQvlW_i18nFontFamily:lang(he) {
|
|
11
|
+
font-family: myriad-hebrew, adobe-clean, Source Sans Pro, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Trebuchet MS, Lucida Grande, sans-serif;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.XUQvlW_i18nFontFamily:lang(zh) {
|
|
15
|
+
font-family: adobe-clean-han-traditional, source-han-traditional, MingLiu, Heiti TC Light, sans-serif;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.XUQvlW_i18nFontFamily:lang(zh-Hans) {
|
|
19
|
+
font-family: adobe-clean-han-simplified-c, source-han-simplified-c, SimSun, Heiti SC Light, sans-serif;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.XUQvlW_i18nFontFamily:lang(zh-Hant) {
|
|
23
|
+
font-family: adobe-clean-han-traditional, source-han-traditional, MingLiu, Microsoft JhengHei UI, Microsoft JhengHei, Heiti TC Light, sans-serif;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.XUQvlW_i18nFontFamily:lang(zh-SG), .XUQvlW_i18nFontFamily:lang(zh-CN) {
|
|
27
|
+
font-family: adobe-clean-han-simplified-c, source-han-simplified-c, SimSun, Heiti SC Light, sans-serif;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.XUQvlW_i18nFontFamily:lang(ko) {
|
|
31
|
+
font-family: adobe-clean-han-korean, source-han-korean, Malgun Gothic, Apple Gothic, sans-serif;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.XUQvlW_i18nFontFamily:lang(ja) {
|
|
35
|
+
font-family: adobe-clean-han-japanese, Hiragino Kaku Gothic ProN, ヒラギノ角ゴ ProN W3, Osaka, YuGothic, Yu Gothic, メイリオ, Meiryo, MS Pゴシック, MS PGothic, sans-serif;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.XUQvlW_spectrum-FocusRing-ring {
|
|
39
|
+
--spectrum-focus-ring-border-radius: var(--spectrum-textfield-border-radius, var(--spectrum-alias-border-radius-regular));
|
|
40
|
+
--spectrum-focus-ring-gap: var(--spectrum-alias-input-focusring-gap);
|
|
41
|
+
--spectrum-focus-ring-size: var(--spectrum-alias-input-focusring-size);
|
|
42
|
+
--spectrum-focus-ring-border-size: 0px;
|
|
43
|
+
--spectrum-focus-ring-color: var(--spectrum-high-contrast-focus-ring-color, var(--spectrum-alias-focus-ring-color, var(--spectrum-alias-focus-color)));
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.XUQvlW_spectrum-FocusRing-ring:after {
|
|
47
|
+
border-radius: calc(var(--spectrum-focus-ring-border-radius) + var(--spectrum-focus-ring-gap));
|
|
48
|
+
content: "";
|
|
49
|
+
margin: calc(-1 * var(--spectrum-focus-ring-border-size));
|
|
50
|
+
pointer-events: none;
|
|
51
|
+
transition: box-shadow var(--spectrum-global-animation-duration-100, .13s) ease-out, margin var(--spectrum-global-animation-duration-100, .13s) ease-out;
|
|
52
|
+
display: block;
|
|
53
|
+
position: absolute;
|
|
54
|
+
inset: 0;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.XUQvlW_spectrum-FocusRing.XUQvlW_focus-ring:after {
|
|
58
|
+
margin: calc(var(--spectrum-focus-ring-gap) * -1 - var(--spectrum-focus-ring-border-size));
|
|
59
|
+
box-shadow: 0 0 0 var(--spectrum-focus-ring-size) var(--spectrum-focus-ring-color);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.XUQvlW_spectrum-FocusRing--quiet:after {
|
|
63
|
+
border-radius: 0;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.XUQvlW_spectrum-FocusRing--quiet.XUQvlW_focus-ring:after {
|
|
67
|
+
margin: 0 0 calc(var(--spectrum-focus-ring-gap) * -1 - var(--spectrum-focus-ring-border-size)) 0;
|
|
68
|
+
box-shadow: 0 var(--spectrum-focus-ring-size) 0 var(--spectrum-focus-ring-color);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
@media (forced-colors: active) {
|
|
72
|
+
.XUQvlW_spectrum-FocusRing, .XUQvlW_spectrum-FocusRing-ring, .XUQvlW_spectrum-FocusRing--quiet {
|
|
73
|
+
--spectrum-high-contrast-focus-ring-color: Highlight;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
:is(.XUQvlW_spectrum-FocusRing, .XUQvlW_spectrum-FocusRing-ring, .XUQvlW_spectrum-FocusRing--quiet):after {
|
|
77
|
+
forced-color-adjust: none;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.XUQvlW_spectrum-overlay {
|
|
82
|
+
visibility: hidden;
|
|
83
|
+
opacity: 0;
|
|
84
|
+
transition: transform var(--spectrum-global-animation-duration-100, .13s) ease-in-out, opacity var(--spectrum-global-animation-duration-100, .13s) ease-in-out, visibility 0s linear var(--spectrum-global-animation-duration-100, .13s);
|
|
85
|
+
pointer-events: none;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.XUQvlW_spectrum-overlay--open {
|
|
89
|
+
visibility: visible;
|
|
90
|
+
opacity: .9999;
|
|
91
|
+
pointer-events: auto;
|
|
92
|
+
transition-delay: 0s;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.XUQvlW_spectrum-overlay--bottom--open {
|
|
96
|
+
transform: translateY(var(--spectrum-overlay-positive-transform-distance));
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.XUQvlW_spectrum-overlay--top--open {
|
|
100
|
+
transform: translateY(var(--spectrum-overlay-negative-transform-distance));
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.XUQvlW_spectrum-overlay--right--open {
|
|
104
|
+
transform: translateX(var(--spectrum-overlay-positive-transform-distance));
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.XUQvlW_spectrum-overlay--left--open {
|
|
108
|
+
transform: translateX(var(--spectrum-overlay-negative-transform-distance));
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.XUQvlW_spectrum-Popover {
|
|
112
|
+
box-sizing: border-box;
|
|
113
|
+
min-width: var(--spectrum-global-dimension-size-400);
|
|
114
|
+
min-height: var(--spectrum-global-dimension-size-400);
|
|
115
|
+
border-style: solid;
|
|
116
|
+
border-width: var(--spectrum-popover-border-size, var(--spectrum-alias-border-size-thin));
|
|
117
|
+
border-radius: var(--spectrum-popover-border-radius, var(--spectrum-alias-border-radius-regular));
|
|
118
|
+
outline: none;
|
|
119
|
+
flex-direction: column;
|
|
120
|
+
display: inline-flex;
|
|
121
|
+
position: absolute;
|
|
122
|
+
overflow: hidden;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.XUQvlW_spectrum-Popover--withTip {
|
|
126
|
+
overflow: visible;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.XUQvlW_spectrum-Popover-tip {
|
|
130
|
+
--spectrum-popover-tip-size: var(--spectrum-popover-tip-width, var(--spectrum-global-dimension-size-250));
|
|
131
|
+
--spectrum-popover-tip-borderWidth: var(--spectrum-popover-border-size, var(--spectrum-alias-border-size-thin));
|
|
132
|
+
position: absolute;
|
|
133
|
+
-webkit-transform: translate(0);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.XUQvlW_spectrum-Popover-tip .XUQvlW_spectrum-Popover-tip-triangle {
|
|
137
|
+
stroke-linecap: square;
|
|
138
|
+
stroke-linejoin: miter;
|
|
139
|
+
stroke-width: var(--spectrum-popover-border-size, var(--spectrum-alias-border-size-thin));
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.XUQvlW_spectrum-Popover--dialog {
|
|
143
|
+
min-width: 270px;
|
|
144
|
+
padding: 30px 29px;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.XUQvlW_spectrum-Popover--left.XUQvlW_spectrum-Popover--withTip {
|
|
148
|
+
margin-right: 13px;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.XUQvlW_spectrum-Popover--left .XUQvlW_spectrum-Popover-tip {
|
|
152
|
+
left: 100%;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.XUQvlW_spectrum-Popover--right.XUQvlW_spectrum-Popover--withTip {
|
|
156
|
+
margin-left: 13px;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.XUQvlW_spectrum-Popover--right .XUQvlW_spectrum-Popover-tip {
|
|
160
|
+
right: 100%;
|
|
161
|
+
transform: scaleX(-1);
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
:is(.XUQvlW_spectrum-Popover--left, .XUQvlW_spectrum-Popover--right) .XUQvlW_spectrum-Popover-tip {
|
|
165
|
+
margin-top: calc(var(--spectrum-global-dimension-size-150) * -1);
|
|
166
|
+
top: 50%;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.XUQvlW_spectrum-Popover--bottom.XUQvlW_spectrum-Popover--withTip {
|
|
170
|
+
margin-top: 13px;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.XUQvlW_spectrum-Popover--bottom .XUQvlW_spectrum-Popover-tip {
|
|
174
|
+
bottom: 100%;
|
|
175
|
+
transform: scaleY(-1);
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.XUQvlW_spectrum-Popover--top.XUQvlW_spectrum-Popover--withTip {
|
|
179
|
+
margin-bottom: 13px;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.XUQvlW_spectrum-Popover--top .XUQvlW_spectrum-Popover-tip {
|
|
183
|
+
top: 100%;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
:is(.XUQvlW_spectrum-Popover--bottom, .XUQvlW_spectrum-Popover--top) .XUQvlW_spectrum-Popover-tip {
|
|
187
|
+
margin-left: calc(var(--spectrum-global-dimension-size-150) * -1);
|
|
188
|
+
left: 50%;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.XUQvlW_spectrum-Popover {
|
|
192
|
+
background-color: var(--spectrum-popover-background-color, var(--spectrum-global-color-gray-50));
|
|
193
|
+
border-color: var(--spectrum-popover-border-color, var(--spectrum-alias-border-color-dark));
|
|
194
|
+
-webkit-filter: drop-shadow(0 var(--spectrum-popover-shadow-offset-y, var(--spectrum-alias-dropshadow-offset-y)) var(--spectrum-popover-shadow-blur, var(--spectrum-alias-dropshadow-blur)) var(--spectrum-popover-shadow-color, var(--spectrum-alias-dropshadow-color)));
|
|
195
|
+
will-change: filter;
|
|
196
|
+
clip-path: inset(-30px);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.XUQvlW_spectrum-Popover .XUQvlW_spectrum-Popover-tip .XUQvlW_spectrum-Popover-tip-triangle {
|
|
200
|
+
fill: var(--spectrum-popover-background-color, var(--spectrum-global-color-gray-50));
|
|
201
|
+
stroke: var(--spectrum-popover-border-color, var(--spectrum-alias-border-color-dark));
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
@media (forced-colors: active) {
|
|
205
|
+
.XUQvlW_spectrum-Popover {
|
|
206
|
+
--spectrum-popover-background-color: Canvas;
|
|
207
|
+
--spectrum-popover-border-color: CanvasText;
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
/*# sourceMappingURL=menu.2259a533.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"mappings":"AA4DA;;;;;AAIE;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAQA;;;;AAIA;;;;AAKF;;;;;;;;AAOE;;;;;;;;;;;AAqBE;;;;;AAQF;;;;AAKE;;;;;AAOJ;EACE;;;;EAIE;;;;;AAkBJ;;;;;;;AAYA;;;;;;;AAWA;;;;AAIA;;;;AAUA;;;;AAIA;;;;AAIA;;;;;;;;;;;;;;AA0BA;;;;AAIA;;;;;;;AAOE;;;;;;AAOF;;;;;AAME;;;;AAIA;;;;AAUA;;;;AAIA;;;;;AAcA;;;;;AAOA;;;;AAIA;;;;;AAWA;;;;AAIA;;;;AAaA;;;;;AAkBF;;;;;;;;AAqBI;;;;;AAOJ;EACE","sources":["packages/@adobe/spectrum-css-temp/components/popover/vars.css"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n@import './index.css';\n@import './skin.css';\n"],"names":[],"version":3,"file":"menu.2259a533.css.map"}
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
.fdFt3W_i18nFontFamily {
|
|
2
|
+
font-synthesis: weight;
|
|
3
|
+
font-family: adobe-clean, Source Sans Pro, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Trebuchet MS, Lucida Grande, sans-serif;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.fdFt3W_i18nFontFamily:lang(ar) {
|
|
7
|
+
font-family: myriad-arabic, adobe-clean, Source Sans Pro, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Trebuchet MS, Lucida Grande, sans-serif;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.fdFt3W_i18nFontFamily:lang(he) {
|
|
11
|
+
font-family: myriad-hebrew, adobe-clean, Source Sans Pro, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Trebuchet MS, Lucida Grande, sans-serif;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.fdFt3W_i18nFontFamily:lang(zh) {
|
|
15
|
+
font-family: adobe-clean-han-traditional, source-han-traditional, MingLiu, Heiti TC Light, sans-serif;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.fdFt3W_i18nFontFamily:lang(zh-Hans) {
|
|
19
|
+
font-family: adobe-clean-han-simplified-c, source-han-simplified-c, SimSun, Heiti SC Light, sans-serif;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.fdFt3W_i18nFontFamily:lang(zh-Hant) {
|
|
23
|
+
font-family: adobe-clean-han-traditional, source-han-traditional, MingLiu, Microsoft JhengHei UI, Microsoft JhengHei, Heiti TC Light, sans-serif;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.fdFt3W_i18nFontFamily:lang(zh-SG), .fdFt3W_i18nFontFamily:lang(zh-CN) {
|
|
27
|
+
font-family: adobe-clean-han-simplified-c, source-han-simplified-c, SimSun, Heiti SC Light, sans-serif;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.fdFt3W_i18nFontFamily:lang(ko) {
|
|
31
|
+
font-family: adobe-clean-han-korean, source-han-korean, Malgun Gothic, Apple Gothic, sans-serif;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.fdFt3W_i18nFontFamily:lang(ja) {
|
|
35
|
+
font-family: adobe-clean-han-japanese, Hiragino Kaku Gothic ProN, ヒラギノ角ゴ ProN W3, Osaka, YuGothic, Yu Gothic, メイリオ, Meiryo, MS Pゴシック, MS PGothic, sans-serif;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.fdFt3W_spectrum-FocusRing-ring {
|
|
39
|
+
--spectrum-focus-ring-border-radius: var(--spectrum-textfield-border-radius, var(--spectrum-alias-border-radius-regular));
|
|
40
|
+
--spectrum-focus-ring-gap: var(--spectrum-alias-input-focusring-gap);
|
|
41
|
+
--spectrum-focus-ring-size: var(--spectrum-alias-input-focusring-size);
|
|
42
|
+
--spectrum-focus-ring-border-size: 0px;
|
|
43
|
+
--spectrum-focus-ring-color: var(--spectrum-high-contrast-focus-ring-color, var(--spectrum-alias-focus-ring-color, var(--spectrum-alias-focus-color)));
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.fdFt3W_spectrum-FocusRing-ring:after {
|
|
47
|
+
border-radius: calc(var(--spectrum-focus-ring-border-radius) + var(--spectrum-focus-ring-gap));
|
|
48
|
+
content: "";
|
|
49
|
+
margin: calc(-1 * var(--spectrum-focus-ring-border-size));
|
|
50
|
+
pointer-events: none;
|
|
51
|
+
transition: box-shadow var(--spectrum-global-animation-duration-100, .13s) ease-out, margin var(--spectrum-global-animation-duration-100, .13s) ease-out;
|
|
52
|
+
display: block;
|
|
53
|
+
position: absolute;
|
|
54
|
+
inset: 0;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.fdFt3W_spectrum-FocusRing.fdFt3W_focus-ring:after {
|
|
58
|
+
margin: calc(var(--spectrum-focus-ring-gap) * -1 - var(--spectrum-focus-ring-border-size));
|
|
59
|
+
box-shadow: 0 0 0 var(--spectrum-focus-ring-size) var(--spectrum-focus-ring-color);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.fdFt3W_spectrum-FocusRing--quiet:after {
|
|
63
|
+
border-radius: 0;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.fdFt3W_spectrum-FocusRing--quiet.fdFt3W_focus-ring:after {
|
|
67
|
+
margin: 0 0 calc(var(--spectrum-focus-ring-gap) * -1 - var(--spectrum-focus-ring-border-size)) 0;
|
|
68
|
+
box-shadow: 0 var(--spectrum-focus-ring-size) 0 var(--spectrum-focus-ring-color);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
@media (forced-colors: active) {
|
|
72
|
+
.fdFt3W_spectrum-FocusRing, .fdFt3W_spectrum-FocusRing-ring, .fdFt3W_spectrum-FocusRing--quiet {
|
|
73
|
+
--spectrum-high-contrast-focus-ring-color: Highlight;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
:is(.fdFt3W_spectrum-FocusRing, .fdFt3W_spectrum-FocusRing-ring, .fdFt3W_spectrum-FocusRing--quiet):after {
|
|
77
|
+
forced-color-adjust: none;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.fdFt3W_spectrum-overlay {
|
|
82
|
+
visibility: hidden;
|
|
83
|
+
opacity: 0;
|
|
84
|
+
transition: transform var(--spectrum-global-animation-duration-100, .13s) ease-in-out, opacity var(--spectrum-global-animation-duration-100, .13s) ease-in-out, visibility 0s linear var(--spectrum-global-animation-duration-100, .13s);
|
|
85
|
+
pointer-events: none;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.fdFt3W_spectrum-overlay--open {
|
|
89
|
+
visibility: visible;
|
|
90
|
+
opacity: .9999;
|
|
91
|
+
pointer-events: auto;
|
|
92
|
+
transition-delay: 0s;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.fdFt3W_spectrum-overlay--bottom--open {
|
|
96
|
+
transform: translateY(var(--spectrum-overlay-positive-transform-distance));
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.fdFt3W_spectrum-overlay--top--open {
|
|
100
|
+
transform: translateY(var(--spectrum-overlay-negative-transform-distance));
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.fdFt3W_spectrum-overlay--right--open {
|
|
104
|
+
transform: translateX(var(--spectrum-overlay-positive-transform-distance));
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.fdFt3W_spectrum-overlay--left--open {
|
|
108
|
+
transform: translateX(var(--spectrum-overlay-negative-transform-distance));
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.fdFt3W_spectrum-Underlay {
|
|
112
|
+
z-index: 1;
|
|
113
|
+
transition: opacity var(--spectrum-dialog-background-exit-animation-duration, var(--spectrum-global-animation-duration-300)) cubic-bezier(.5, 0, 1, 1) var(--spectrum-dialog-background-exit-animation-delay, var(--spectrum-global-animation-duration-200)), visibility 0s linear calc(var(--spectrum-dialog-background-exit-animation-delay, var(--spectrum-global-animation-duration-200)) + var(--spectrum-dialog-background-exit-animation-duration, var(--spectrum-global-animation-duration-300)));
|
|
114
|
+
position: absolute;
|
|
115
|
+
inset: 0;
|
|
116
|
+
overflow: hidden;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.fdFt3W_spectrum-Underlay.fdFt3W_spectrum-Underlay--transparent {
|
|
120
|
+
background: none;
|
|
121
|
+
transition: none;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.fdFt3W_is-open {
|
|
125
|
+
transition: opacity var(--spectrum-dialog-background-entry-animation-duration, var(--spectrum-global-animation-duration-600)) cubic-bezier(0, 0, .4, 1) 0s;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.fdFt3W_spectrum-Underlay {
|
|
129
|
+
background: var(--spectrum-dialog-underlay-background-color, var(--spectrum-alias-background-color-modal-overlay));
|
|
130
|
+
}
|
|
131
|
+
/*# sourceMappingURL=menu.359a0c0a.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"mappings":"AA4DA;;;;;AAIE;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAQA;;;;AAIA;;;;AAKF;;;;;;;;AAOE;;;;;;;;;;;AAqBE;;;;;AAQF;;;;AAKE;;;;;AAOJ;EACE;;;;EAIE;;;;;AAkBJ;;;;;;;AAYA;;;;;;;AAWA;;;;AAIA;;;;AAUA;;;;AAIA;;;;AAIA;;;;;;;;AAmBE;;;;;AAMF;;;;AAmBA","sources":["packages/@adobe/spectrum-css-temp/components/underlay/vars.css"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n@import './index.css';\n@import './skin.css';\n"],"names":[],"version":3,"file":"menu.359a0c0a.css.map"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
.PDo2aW_spectrum-Popover.PDo2aW_react-spectrum-Popover {
|
|
2
|
+
visibility: visible;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.PDo2aW_spectrum-Popover .PDo2aW_spectrum-Dialog-content {
|
|
6
|
+
max-height: initial;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.PDo2aW_spectrum-Modal-wrapper.PDo2aW_react-spectrum-Modal-wrapper, .PDo2aW_spectrum-Modal.PDo2aW_react-spectrum-Modal, .PDo2aW_spectrum-Tray.PDo2aW_react-spectrum-Tray {
|
|
10
|
+
visibility: visible;
|
|
11
|
+
}
|
|
12
|
+
/*# sourceMappingURL=menu.57b3a408.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"mappings":"AAeE;;;;AAIA;;;;AAKF","sources":["packages/@react-spectrum/menu/src/overlays.css"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n.spectrum-Popover {\n /* This makes the contents of popovers focusable immediately, without waiting\n a frame for animations to start. */\n &.react-spectrum-Popover {\n visibility: visible;\n }\n\n .spectrum-Dialog-content {\n max-height: initial;\n }\n}\n\n.spectrum-Modal-wrapper.react-spectrum-Modal-wrapper,\n.spectrum-Modal.react-spectrum-Modal {\n visibility: visible;\n}\n\n.spectrum-Tray.react-spectrum-Tray {\n visibility: visible;\n}\n"],"names":[],"version":3,"file":"menu.57b3a408.css.map"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
|
|
2
|
+
function $parcel$export(e, n, v, s) {
|
|
3
|
+
Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
$parcel$export(module.exports, "react-spectrum-Modal", () => $d77aa5d771e2d5f7$export$f8edeb62d7fed8c1, (v) => $d77aa5d771e2d5f7$export$f8edeb62d7fed8c1 = v);
|
|
7
|
+
$parcel$export(module.exports, "react-spectrum-Modal-wrapper", () => $d77aa5d771e2d5f7$export$e088717c213c31d7, (v) => $d77aa5d771e2d5f7$export$e088717c213c31d7 = v);
|
|
8
|
+
$parcel$export(module.exports, "react-spectrum-Popover", () => $d77aa5d771e2d5f7$export$884f6b5065bdc41a, (v) => $d77aa5d771e2d5f7$export$884f6b5065bdc41a = v);
|
|
9
|
+
$parcel$export(module.exports, "react-spectrum-Tray", () => $d77aa5d771e2d5f7$export$69dafa24343974dd, (v) => $d77aa5d771e2d5f7$export$69dafa24343974dd = v);
|
|
10
|
+
$parcel$export(module.exports, "spectrum-Dialog-content", () => $d77aa5d771e2d5f7$export$cb8eccd0f3639238, (v) => $d77aa5d771e2d5f7$export$cb8eccd0f3639238 = v);
|
|
11
|
+
$parcel$export(module.exports, "spectrum-Modal", () => $d77aa5d771e2d5f7$export$4c0b1e44c3834c85, (v) => $d77aa5d771e2d5f7$export$4c0b1e44c3834c85 = v);
|
|
12
|
+
$parcel$export(module.exports, "spectrum-Modal-wrapper", () => $d77aa5d771e2d5f7$export$35bea187ff802494, (v) => $d77aa5d771e2d5f7$export$35bea187ff802494 = v);
|
|
13
|
+
$parcel$export(module.exports, "spectrum-Popover", () => $d77aa5d771e2d5f7$export$a62dc1b6ab23a7bb, (v) => $d77aa5d771e2d5f7$export$a62dc1b6ab23a7bb = v);
|
|
14
|
+
$parcel$export(module.exports, "spectrum-Tray", () => $d77aa5d771e2d5f7$export$ce0704cd084c4f0d, (v) => $d77aa5d771e2d5f7$export$ce0704cd084c4f0d = v);
|
|
15
|
+
var $d77aa5d771e2d5f7$export$f8edeb62d7fed8c1;
|
|
16
|
+
var $d77aa5d771e2d5f7$export$e088717c213c31d7;
|
|
17
|
+
var $d77aa5d771e2d5f7$export$884f6b5065bdc41a;
|
|
18
|
+
var $d77aa5d771e2d5f7$export$69dafa24343974dd;
|
|
19
|
+
var $d77aa5d771e2d5f7$export$cb8eccd0f3639238;
|
|
20
|
+
var $d77aa5d771e2d5f7$export$4c0b1e44c3834c85;
|
|
21
|
+
var $d77aa5d771e2d5f7$export$35bea187ff802494;
|
|
22
|
+
var $d77aa5d771e2d5f7$export$a62dc1b6ab23a7bb;
|
|
23
|
+
var $d77aa5d771e2d5f7$export$ce0704cd084c4f0d;
|
|
24
|
+
$d77aa5d771e2d5f7$export$f8edeb62d7fed8c1 = `PDo2aW_react-spectrum-Modal`;
|
|
25
|
+
$d77aa5d771e2d5f7$export$e088717c213c31d7 = `PDo2aW_react-spectrum-Modal-wrapper`;
|
|
26
|
+
$d77aa5d771e2d5f7$export$884f6b5065bdc41a = `PDo2aW_react-spectrum-Popover`;
|
|
27
|
+
$d77aa5d771e2d5f7$export$69dafa24343974dd = `PDo2aW_react-spectrum-Tray`;
|
|
28
|
+
$d77aa5d771e2d5f7$export$cb8eccd0f3639238 = `PDo2aW_spectrum-Dialog-content`;
|
|
29
|
+
$d77aa5d771e2d5f7$export$4c0b1e44c3834c85 = `PDo2aW_spectrum-Modal`;
|
|
30
|
+
$d77aa5d771e2d5f7$export$35bea187ff802494 = `PDo2aW_spectrum-Modal-wrapper`;
|
|
31
|
+
$d77aa5d771e2d5f7$export$a62dc1b6ab23a7bb = `PDo2aW_spectrum-Popover`;
|
|
32
|
+
$d77aa5d771e2d5f7$export$ce0704cd084c4f0d = `PDo2aW_spectrum-Tray`;
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
//# sourceMappingURL=overlays_css.main.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"mappings":";;;;;;;;;;;;;;AAAA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AARA,4CAAyC,CAAC,2BAA2B,CAAC;AACtE,4CAAiD,CAAC,mCAAmC,CAAC;AACtF,4CAA2C,CAAC,6BAA6B,CAAC;AAC1E,4CAAwC,CAAC,0BAA0B,CAAC;AACpE,4CAA4C,CAAC,8BAA8B,CAAC;AAC5E,4CAAmC,CAAC,qBAAqB,CAAC;AAC1D,4CAA2C,CAAC,6BAA6B,CAAC;AAC1E,4CAAqC,CAAC,uBAAuB,CAAC;AAC9D,4CAAkC,CAAC,oBAAoB,CAAC","sources":["packages/@react-spectrum/menu/src/overlays.css"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n.spectrum-Popover {\n /* This makes the contents of popovers focusable immediately, without waiting\n a frame for animations to start. */\n &.react-spectrum-Popover {\n visibility: visible;\n }\n\n .spectrum-Dialog-content {\n max-height: initial;\n }\n}\n\n.spectrum-Modal-wrapper.react-spectrum-Modal-wrapper,\n.spectrum-Modal.react-spectrum-Modal {\n visibility: visible;\n}\n\n.spectrum-Tray.react-spectrum-Tray {\n visibility: visible;\n}\n"],"names":[],"version":3,"file":"overlays_css.main.js.map"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
|
|
2
|
+
function $parcel$export(e, n, v, s) {
|
|
3
|
+
Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
|
|
4
|
+
}
|
|
5
|
+
var $8f8a3e5d83c988b0$exports = {};
|
|
6
|
+
|
|
7
|
+
$parcel$export($8f8a3e5d83c988b0$exports, "react-spectrum-Modal", () => $8f8a3e5d83c988b0$export$f8edeb62d7fed8c1, (v) => $8f8a3e5d83c988b0$export$f8edeb62d7fed8c1 = v);
|
|
8
|
+
$parcel$export($8f8a3e5d83c988b0$exports, "react-spectrum-Modal-wrapper", () => $8f8a3e5d83c988b0$export$e088717c213c31d7, (v) => $8f8a3e5d83c988b0$export$e088717c213c31d7 = v);
|
|
9
|
+
$parcel$export($8f8a3e5d83c988b0$exports, "react-spectrum-Popover", () => $8f8a3e5d83c988b0$export$884f6b5065bdc41a, (v) => $8f8a3e5d83c988b0$export$884f6b5065bdc41a = v);
|
|
10
|
+
$parcel$export($8f8a3e5d83c988b0$exports, "react-spectrum-Tray", () => $8f8a3e5d83c988b0$export$69dafa24343974dd, (v) => $8f8a3e5d83c988b0$export$69dafa24343974dd = v);
|
|
11
|
+
$parcel$export($8f8a3e5d83c988b0$exports, "spectrum-Dialog-content", () => $8f8a3e5d83c988b0$export$cb8eccd0f3639238, (v) => $8f8a3e5d83c988b0$export$cb8eccd0f3639238 = v);
|
|
12
|
+
$parcel$export($8f8a3e5d83c988b0$exports, "spectrum-Modal", () => $8f8a3e5d83c988b0$export$4c0b1e44c3834c85, (v) => $8f8a3e5d83c988b0$export$4c0b1e44c3834c85 = v);
|
|
13
|
+
$parcel$export($8f8a3e5d83c988b0$exports, "spectrum-Modal-wrapper", () => $8f8a3e5d83c988b0$export$35bea187ff802494, (v) => $8f8a3e5d83c988b0$export$35bea187ff802494 = v);
|
|
14
|
+
$parcel$export($8f8a3e5d83c988b0$exports, "spectrum-Popover", () => $8f8a3e5d83c988b0$export$a62dc1b6ab23a7bb, (v) => $8f8a3e5d83c988b0$export$a62dc1b6ab23a7bb = v);
|
|
15
|
+
$parcel$export($8f8a3e5d83c988b0$exports, "spectrum-Tray", () => $8f8a3e5d83c988b0$export$ce0704cd084c4f0d, (v) => $8f8a3e5d83c988b0$export$ce0704cd084c4f0d = v);
|
|
16
|
+
var $8f8a3e5d83c988b0$export$f8edeb62d7fed8c1;
|
|
17
|
+
var $8f8a3e5d83c988b0$export$e088717c213c31d7;
|
|
18
|
+
var $8f8a3e5d83c988b0$export$884f6b5065bdc41a;
|
|
19
|
+
var $8f8a3e5d83c988b0$export$69dafa24343974dd;
|
|
20
|
+
var $8f8a3e5d83c988b0$export$cb8eccd0f3639238;
|
|
21
|
+
var $8f8a3e5d83c988b0$export$4c0b1e44c3834c85;
|
|
22
|
+
var $8f8a3e5d83c988b0$export$35bea187ff802494;
|
|
23
|
+
var $8f8a3e5d83c988b0$export$a62dc1b6ab23a7bb;
|
|
24
|
+
var $8f8a3e5d83c988b0$export$ce0704cd084c4f0d;
|
|
25
|
+
$8f8a3e5d83c988b0$export$f8edeb62d7fed8c1 = `PDo2aW_react-spectrum-Modal`;
|
|
26
|
+
$8f8a3e5d83c988b0$export$e088717c213c31d7 = `PDo2aW_react-spectrum-Modal-wrapper`;
|
|
27
|
+
$8f8a3e5d83c988b0$export$884f6b5065bdc41a = `PDo2aW_react-spectrum-Popover`;
|
|
28
|
+
$8f8a3e5d83c988b0$export$69dafa24343974dd = `PDo2aW_react-spectrum-Tray`;
|
|
29
|
+
$8f8a3e5d83c988b0$export$cb8eccd0f3639238 = `PDo2aW_spectrum-Dialog-content`;
|
|
30
|
+
$8f8a3e5d83c988b0$export$4c0b1e44c3834c85 = `PDo2aW_spectrum-Modal`;
|
|
31
|
+
$8f8a3e5d83c988b0$export$35bea187ff802494 = `PDo2aW_spectrum-Modal-wrapper`;
|
|
32
|
+
$8f8a3e5d83c988b0$export$a62dc1b6ab23a7bb = `PDo2aW_spectrum-Popover`;
|
|
33
|
+
$8f8a3e5d83c988b0$export$ce0704cd084c4f0d = `PDo2aW_spectrum-Tray`;
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
export {$8f8a3e5d83c988b0$exports as default};
|
|
37
|
+
//# sourceMappingURL=overlays_css.module.js.map
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
|
|
2
|
+
function $parcel$export(e, n, v, s) {
|
|
3
|
+
Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
|
|
4
|
+
}
|
|
5
|
+
var $8f8a3e5d83c988b0$exports = {};
|
|
6
|
+
|
|
7
|
+
$parcel$export($8f8a3e5d83c988b0$exports, "react-spectrum-Modal", () => $8f8a3e5d83c988b0$export$f8edeb62d7fed8c1, (v) => $8f8a3e5d83c988b0$export$f8edeb62d7fed8c1 = v);
|
|
8
|
+
$parcel$export($8f8a3e5d83c988b0$exports, "react-spectrum-Modal-wrapper", () => $8f8a3e5d83c988b0$export$e088717c213c31d7, (v) => $8f8a3e5d83c988b0$export$e088717c213c31d7 = v);
|
|
9
|
+
$parcel$export($8f8a3e5d83c988b0$exports, "react-spectrum-Popover", () => $8f8a3e5d83c988b0$export$884f6b5065bdc41a, (v) => $8f8a3e5d83c988b0$export$884f6b5065bdc41a = v);
|
|
10
|
+
$parcel$export($8f8a3e5d83c988b0$exports, "react-spectrum-Tray", () => $8f8a3e5d83c988b0$export$69dafa24343974dd, (v) => $8f8a3e5d83c988b0$export$69dafa24343974dd = v);
|
|
11
|
+
$parcel$export($8f8a3e5d83c988b0$exports, "spectrum-Dialog-content", () => $8f8a3e5d83c988b0$export$cb8eccd0f3639238, (v) => $8f8a3e5d83c988b0$export$cb8eccd0f3639238 = v);
|
|
12
|
+
$parcel$export($8f8a3e5d83c988b0$exports, "spectrum-Modal", () => $8f8a3e5d83c988b0$export$4c0b1e44c3834c85, (v) => $8f8a3e5d83c988b0$export$4c0b1e44c3834c85 = v);
|
|
13
|
+
$parcel$export($8f8a3e5d83c988b0$exports, "spectrum-Modal-wrapper", () => $8f8a3e5d83c988b0$export$35bea187ff802494, (v) => $8f8a3e5d83c988b0$export$35bea187ff802494 = v);
|
|
14
|
+
$parcel$export($8f8a3e5d83c988b0$exports, "spectrum-Popover", () => $8f8a3e5d83c988b0$export$a62dc1b6ab23a7bb, (v) => $8f8a3e5d83c988b0$export$a62dc1b6ab23a7bb = v);
|
|
15
|
+
$parcel$export($8f8a3e5d83c988b0$exports, "spectrum-Tray", () => $8f8a3e5d83c988b0$export$ce0704cd084c4f0d, (v) => $8f8a3e5d83c988b0$export$ce0704cd084c4f0d = v);
|
|
16
|
+
var $8f8a3e5d83c988b0$export$f8edeb62d7fed8c1;
|
|
17
|
+
var $8f8a3e5d83c988b0$export$e088717c213c31d7;
|
|
18
|
+
var $8f8a3e5d83c988b0$export$884f6b5065bdc41a;
|
|
19
|
+
var $8f8a3e5d83c988b0$export$69dafa24343974dd;
|
|
20
|
+
var $8f8a3e5d83c988b0$export$cb8eccd0f3639238;
|
|
21
|
+
var $8f8a3e5d83c988b0$export$4c0b1e44c3834c85;
|
|
22
|
+
var $8f8a3e5d83c988b0$export$35bea187ff802494;
|
|
23
|
+
var $8f8a3e5d83c988b0$export$a62dc1b6ab23a7bb;
|
|
24
|
+
var $8f8a3e5d83c988b0$export$ce0704cd084c4f0d;
|
|
25
|
+
$8f8a3e5d83c988b0$export$f8edeb62d7fed8c1 = `PDo2aW_react-spectrum-Modal`;
|
|
26
|
+
$8f8a3e5d83c988b0$export$e088717c213c31d7 = `PDo2aW_react-spectrum-Modal-wrapper`;
|
|
27
|
+
$8f8a3e5d83c988b0$export$884f6b5065bdc41a = `PDo2aW_react-spectrum-Popover`;
|
|
28
|
+
$8f8a3e5d83c988b0$export$69dafa24343974dd = `PDo2aW_react-spectrum-Tray`;
|
|
29
|
+
$8f8a3e5d83c988b0$export$cb8eccd0f3639238 = `PDo2aW_spectrum-Dialog-content`;
|
|
30
|
+
$8f8a3e5d83c988b0$export$4c0b1e44c3834c85 = `PDo2aW_spectrum-Modal`;
|
|
31
|
+
$8f8a3e5d83c988b0$export$35bea187ff802494 = `PDo2aW_spectrum-Modal-wrapper`;
|
|
32
|
+
$8f8a3e5d83c988b0$export$a62dc1b6ab23a7bb = `PDo2aW_spectrum-Popover`;
|
|
33
|
+
$8f8a3e5d83c988b0$export$ce0704cd084c4f0d = `PDo2aW_spectrum-Tray`;
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
export {$8f8a3e5d83c988b0$exports as default};
|
|
37
|
+
//# sourceMappingURL=overlays_css.module.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"mappings":";;;;;;;;;;;;;;;AAAA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AARA,4CAAyC,CAAC,2BAA2B,CAAC;AACtE,4CAAiD,CAAC,mCAAmC,CAAC;AACtF,4CAA2C,CAAC,6BAA6B,CAAC;AAC1E,4CAAwC,CAAC,0BAA0B,CAAC;AACpE,4CAA4C,CAAC,8BAA8B,CAAC;AAC5E,4CAAmC,CAAC,qBAAqB,CAAC;AAC1D,4CAA2C,CAAC,6BAA6B,CAAC;AAC1E,4CAAqC,CAAC,uBAAuB,CAAC;AAC9D,4CAAkC,CAAC,oBAAoB,CAAC","sources":["packages/@react-spectrum/menu/src/overlays.css"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n.spectrum-Popover {\n /* This makes the contents of popovers focusable immediately, without waiting\n a frame for animations to start. */\n &.react-spectrum-Popover {\n visibility: visible;\n }\n\n .spectrum-Dialog-content {\n max-height: initial;\n }\n}\n\n.spectrum-Modal-wrapper.react-spectrum-Modal-wrapper,\n.spectrum-Modal.react-spectrum-Modal {\n visibility: visible;\n}\n\n.spectrum-Tray.react-spectrum-Tray {\n visibility: visible;\n}\n"],"names":[],"version":3,"file":"overlays_css.module.js.map"}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
|
|
2
|
+
function $parcel$export(e, n, v, s) {
|
|
3
|
+
Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
$parcel$export(module.exports, "focus-ring", () => $16e1dca4664d0b1c$export$f39a09f249340e2a, (v) => $16e1dca4664d0b1c$export$f39a09f249340e2a = v);
|
|
7
|
+
$parcel$export(module.exports, "i18nFontFamily", () => $16e1dca4664d0b1c$export$8c4ee2c50c22c514, (v) => $16e1dca4664d0b1c$export$8c4ee2c50c22c514 = v);
|
|
8
|
+
$parcel$export(module.exports, "spectrum-overlay--open", () => $16e1dca4664d0b1c$export$a397eb58038aa381, (v) => $16e1dca4664d0b1c$export$a397eb58038aa381 = v);
|
|
9
|
+
$parcel$export(module.exports, "is-open", () => $16e1dca4664d0b1c$export$a9781837241c946d, (v) => $16e1dca4664d0b1c$export$a9781837241c946d = v);
|
|
10
|
+
$parcel$export(module.exports, "spectrum-overlay--bottom--open", () => $16e1dca4664d0b1c$export$a96755f239de61ee, (v) => $16e1dca4664d0b1c$export$a96755f239de61ee = v);
|
|
11
|
+
$parcel$export(module.exports, "is-open--bottom", () => $16e1dca4664d0b1c$export$1f160596ffe52357, (v) => $16e1dca4664d0b1c$export$1f160596ffe52357 = v);
|
|
12
|
+
$parcel$export(module.exports, "spectrum-overlay--left--open", () => $16e1dca4664d0b1c$export$a85c0c6b6cf8598c, (v) => $16e1dca4664d0b1c$export$a85c0c6b6cf8598c = v);
|
|
13
|
+
$parcel$export(module.exports, "is-open--left", () => $16e1dca4664d0b1c$export$d6106cb3acaf56ae, (v) => $16e1dca4664d0b1c$export$d6106cb3acaf56ae = v);
|
|
14
|
+
$parcel$export(module.exports, "spectrum-overlay--right--open", () => $16e1dca4664d0b1c$export$85aaa87e65e040bf, (v) => $16e1dca4664d0b1c$export$85aaa87e65e040bf = v);
|
|
15
|
+
$parcel$export(module.exports, "is-open--right", () => $16e1dca4664d0b1c$export$8935d072812c3169, (v) => $16e1dca4664d0b1c$export$8935d072812c3169 = v);
|
|
16
|
+
$parcel$export(module.exports, "spectrum-overlay--top--open", () => $16e1dca4664d0b1c$export$b9768db7ffc1bc2, (v) => $16e1dca4664d0b1c$export$b9768db7ffc1bc2 = v);
|
|
17
|
+
$parcel$export(module.exports, "is-open--top", () => $16e1dca4664d0b1c$export$cd4bf1e07ae86214, (v) => $16e1dca4664d0b1c$export$cd4bf1e07ae86214 = v);
|
|
18
|
+
$parcel$export(module.exports, "spectrum-FocusRing-ring", () => $16e1dca4664d0b1c$export$4109102f950813a6, (v) => $16e1dca4664d0b1c$export$4109102f950813a6 = v);
|
|
19
|
+
$parcel$export(module.exports, "spectrum-FocusRing", () => $16e1dca4664d0b1c$export$24c7f46a6e3605dd, (v) => $16e1dca4664d0b1c$export$24c7f46a6e3605dd = v);
|
|
20
|
+
$parcel$export(module.exports, "spectrum-FocusRing--quiet", () => $16e1dca4664d0b1c$export$2927016961429360, (v) => $16e1dca4664d0b1c$export$2927016961429360 = v);
|
|
21
|
+
$parcel$export(module.exports, "spectrum-overlay", () => $16e1dca4664d0b1c$export$39eed38e2296a1d6, (v) => $16e1dca4664d0b1c$export$39eed38e2296a1d6 = v);
|
|
22
|
+
$parcel$export(module.exports, "spectrum-Popover", () => $16e1dca4664d0b1c$export$a62dc1b6ab23a7bb, (v) => $16e1dca4664d0b1c$export$a62dc1b6ab23a7bb = v);
|
|
23
|
+
$parcel$export(module.exports, "spectrum-Popover--bottom", () => $16e1dca4664d0b1c$export$6a19b19b14780d4a, (v) => $16e1dca4664d0b1c$export$6a19b19b14780d4a = v);
|
|
24
|
+
$parcel$export(module.exports, "spectrum-Popover--dialog", () => $16e1dca4664d0b1c$export$cf634262e726cd19, (v) => $16e1dca4664d0b1c$export$cf634262e726cd19 = v);
|
|
25
|
+
$parcel$export(module.exports, "spectrum-Popover--left", () => $16e1dca4664d0b1c$export$79cc55906ac5b00, (v) => $16e1dca4664d0b1c$export$79cc55906ac5b00 = v);
|
|
26
|
+
$parcel$export(module.exports, "spectrum-Popover--right", () => $16e1dca4664d0b1c$export$5fc8b429396c9f58, (v) => $16e1dca4664d0b1c$export$5fc8b429396c9f58 = v);
|
|
27
|
+
$parcel$export(module.exports, "spectrum-Popover--top", () => $16e1dca4664d0b1c$export$f30becfb1df0cae4, (v) => $16e1dca4664d0b1c$export$f30becfb1df0cae4 = v);
|
|
28
|
+
$parcel$export(module.exports, "spectrum-Popover--withTip", () => $16e1dca4664d0b1c$export$d8b16c5377728262, (v) => $16e1dca4664d0b1c$export$d8b16c5377728262 = v);
|
|
29
|
+
$parcel$export(module.exports, "spectrum-Popover-tip", () => $16e1dca4664d0b1c$export$3100ec4dc1668df1, (v) => $16e1dca4664d0b1c$export$3100ec4dc1668df1 = v);
|
|
30
|
+
$parcel$export(module.exports, "spectrum-Popover-tip-triangle", () => $16e1dca4664d0b1c$export$ed733fa6cf19ab80, (v) => $16e1dca4664d0b1c$export$ed733fa6cf19ab80 = v);
|
|
31
|
+
var $16e1dca4664d0b1c$export$f39a09f249340e2a;
|
|
32
|
+
var $16e1dca4664d0b1c$export$8c4ee2c50c22c514;
|
|
33
|
+
var $16e1dca4664d0b1c$export$a397eb58038aa381;
|
|
34
|
+
var $16e1dca4664d0b1c$export$a9781837241c946d;
|
|
35
|
+
var $16e1dca4664d0b1c$export$a96755f239de61ee;
|
|
36
|
+
var $16e1dca4664d0b1c$export$1f160596ffe52357;
|
|
37
|
+
var $16e1dca4664d0b1c$export$a85c0c6b6cf8598c;
|
|
38
|
+
var $16e1dca4664d0b1c$export$d6106cb3acaf56ae;
|
|
39
|
+
var $16e1dca4664d0b1c$export$85aaa87e65e040bf;
|
|
40
|
+
var $16e1dca4664d0b1c$export$8935d072812c3169;
|
|
41
|
+
var $16e1dca4664d0b1c$export$b9768db7ffc1bc2;
|
|
42
|
+
var $16e1dca4664d0b1c$export$cd4bf1e07ae86214;
|
|
43
|
+
var $16e1dca4664d0b1c$export$4109102f950813a6;
|
|
44
|
+
var $16e1dca4664d0b1c$export$24c7f46a6e3605dd;
|
|
45
|
+
var $16e1dca4664d0b1c$export$2927016961429360;
|
|
46
|
+
var $16e1dca4664d0b1c$export$39eed38e2296a1d6;
|
|
47
|
+
var $16e1dca4664d0b1c$export$a62dc1b6ab23a7bb;
|
|
48
|
+
var $16e1dca4664d0b1c$export$6a19b19b14780d4a;
|
|
49
|
+
var $16e1dca4664d0b1c$export$cf634262e726cd19;
|
|
50
|
+
var $16e1dca4664d0b1c$export$79cc55906ac5b00;
|
|
51
|
+
var $16e1dca4664d0b1c$export$5fc8b429396c9f58;
|
|
52
|
+
var $16e1dca4664d0b1c$export$f30becfb1df0cae4;
|
|
53
|
+
var $16e1dca4664d0b1c$export$d8b16c5377728262;
|
|
54
|
+
var $16e1dca4664d0b1c$export$3100ec4dc1668df1;
|
|
55
|
+
var $16e1dca4664d0b1c$export$ed733fa6cf19ab80;
|
|
56
|
+
$16e1dca4664d0b1c$export$f39a09f249340e2a = `XUQvlW_focus-ring`;
|
|
57
|
+
$16e1dca4664d0b1c$export$8c4ee2c50c22c514 = `XUQvlW_i18nFontFamily`;
|
|
58
|
+
$16e1dca4664d0b1c$export$a397eb58038aa381 = `XUQvlW_spectrum-overlay--open`;
|
|
59
|
+
$16e1dca4664d0b1c$export$a9781837241c946d = `XUQvlW_is-open ${$16e1dca4664d0b1c$export$a397eb58038aa381}`;
|
|
60
|
+
$16e1dca4664d0b1c$export$a96755f239de61ee = `XUQvlW_spectrum-overlay--bottom--open`;
|
|
61
|
+
$16e1dca4664d0b1c$export$1f160596ffe52357 = `XUQvlW_is-open--bottom ${$16e1dca4664d0b1c$export$a96755f239de61ee}`;
|
|
62
|
+
$16e1dca4664d0b1c$export$a85c0c6b6cf8598c = `XUQvlW_spectrum-overlay--left--open`;
|
|
63
|
+
$16e1dca4664d0b1c$export$d6106cb3acaf56ae = `XUQvlW_is-open--left ${$16e1dca4664d0b1c$export$a85c0c6b6cf8598c}`;
|
|
64
|
+
$16e1dca4664d0b1c$export$85aaa87e65e040bf = `XUQvlW_spectrum-overlay--right--open`;
|
|
65
|
+
$16e1dca4664d0b1c$export$8935d072812c3169 = `XUQvlW_is-open--right ${$16e1dca4664d0b1c$export$85aaa87e65e040bf}`;
|
|
66
|
+
$16e1dca4664d0b1c$export$b9768db7ffc1bc2 = `XUQvlW_spectrum-overlay--top--open`;
|
|
67
|
+
$16e1dca4664d0b1c$export$cd4bf1e07ae86214 = `XUQvlW_is-open--top ${$16e1dca4664d0b1c$export$b9768db7ffc1bc2}`;
|
|
68
|
+
$16e1dca4664d0b1c$export$4109102f950813a6 = `XUQvlW_spectrum-FocusRing-ring`;
|
|
69
|
+
$16e1dca4664d0b1c$export$24c7f46a6e3605dd = `XUQvlW_spectrum-FocusRing ${$16e1dca4664d0b1c$export$4109102f950813a6}`;
|
|
70
|
+
$16e1dca4664d0b1c$export$2927016961429360 = `XUQvlW_spectrum-FocusRing--quiet`;
|
|
71
|
+
$16e1dca4664d0b1c$export$39eed38e2296a1d6 = `XUQvlW_spectrum-overlay`;
|
|
72
|
+
$16e1dca4664d0b1c$export$a62dc1b6ab23a7bb = `XUQvlW_spectrum-Popover ${$16e1dca4664d0b1c$export$39eed38e2296a1d6}`;
|
|
73
|
+
$16e1dca4664d0b1c$export$6a19b19b14780d4a = `XUQvlW_spectrum-Popover--bottom`;
|
|
74
|
+
$16e1dca4664d0b1c$export$cf634262e726cd19 = `XUQvlW_spectrum-Popover--dialog`;
|
|
75
|
+
$16e1dca4664d0b1c$export$79cc55906ac5b00 = `XUQvlW_spectrum-Popover--left`;
|
|
76
|
+
$16e1dca4664d0b1c$export$5fc8b429396c9f58 = `XUQvlW_spectrum-Popover--right`;
|
|
77
|
+
$16e1dca4664d0b1c$export$f30becfb1df0cae4 = `XUQvlW_spectrum-Popover--top`;
|
|
78
|
+
$16e1dca4664d0b1c$export$d8b16c5377728262 = `XUQvlW_spectrum-Popover--withTip`;
|
|
79
|
+
$16e1dca4664d0b1c$export$3100ec4dc1668df1 = `XUQvlW_spectrum-Popover-tip`;
|
|
80
|
+
$16e1dca4664d0b1c$export$ed733fa6cf19ab80 = `XUQvlW_spectrum-Popover-tip-triangle`;
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
//# sourceMappingURL=popover_vars_css.main.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AAxBA,4CAA+B,CAAC,iBAAiB,CAAC;AAClD,4CAAmC,CAAC,qBAAqB,CAAC;AAC1D,4CAA2C,CAAC,6BAA6B,CAAC;AAC1E,4CAA4B,CAAC,eAAe,EAAE,2CAA0C;AACxF,4CAAmD,CAAC,qCAAqC,CAAC;AAC1F,4CAAoC,CAAC,uBAAuB,EAAE,2CAAkD;AAChH,4CAAiD,CAAC,mCAAmC,CAAC;AACtF,4CAAkC,CAAC,qBAAqB,EAAE,2CAAgD;AAC1G,4CAAkD,CAAC,oCAAoC,CAAC;AACxF,4CAAmC,CAAC,sBAAsB,EAAE,2CAAiD;AAC7G,2CAAgD,CAAC,kCAAkC,CAAC;AACpF,4CAAiC,CAAC,oBAAoB,EAAE,0CAA+C;AACvG,4CAA4C,CAAC,8BAA8B,CAAC;AAC5E,4CAAuC,CAAC,0BAA0B,EAAE,2CAA2C;AAC/G,4CAA8C,CAAC,gCAAgC,CAAC;AAChF,4CAAqC,CAAC,uBAAuB,CAAC;AAC9D,4CAAqC,CAAC,wBAAwB,EAAE,2CAAoC;AACpG,4CAA6C,CAAC,+BAA+B,CAAC;AAC9E,4CAA6C,CAAC,+BAA+B,CAAC;AAC9E,2CAA2C,CAAC,6BAA6B,CAAC;AAC1E,4CAA4C,CAAC,8BAA8B,CAAC;AAC5E,4CAA0C,CAAC,4BAA4B,CAAC;AACxE,4CAA8C,CAAC,gCAAgC,CAAC;AAChF,4CAAyC,CAAC,2BAA2B,CAAC;AACtE,4CAAkD,CAAC,oCAAoC,CAAC","sources":["packages/@adobe/spectrum-css-temp/components/popover/vars.css"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n@import './index.css';\n@import './skin.css';\n"],"names":[],"version":3,"file":"popover_vars_css.main.js.map"}
|