UNPKG

9.62 kBJavaScriptView Raw
1"use strict";
2
3exports.__esModule = true;
4exports.GatsbyImageSharpSizes_withWebp_noBase64 = exports.GatsbyImageSharpSizes_noBase64 = exports.GatsbyImageSharpSizes_withWebp_tracedSVG = exports.GatsbyImageSharpSizes_withWebp = exports.GatsbyImageSharpSizes_tracedSVG = exports.GatsbyImageSharpSizes = exports.GatsbyImageSharpResolutions_withWebp_noBase64 = exports.GatsbyImageSharpResolutions_noBase64 = exports.GatsbyImageSharpResolutions_withWebp_tracedSVG = exports.GatsbyImageSharpResolutions_withWebp = exports.GatsbyImageSharpResolutions_tracedSVG = exports.GatsbyImageSharpResolutions = exports.GatsbyImageSharpFluid_withWebp_noBase64 = exports.GatsbyImageSharpFluid_noBase64 = exports.GatsbyImageSharpFluid_withWebp_tracedSVG = exports.GatsbyImageSharpFluid_withWebp = exports.GatsbyImageSharpFluid_tracedSVG = exports.GatsbyImageSharpFluidLimitPresentationSize = exports.GatsbyImageSharpFluid = exports.GatsbyImageSharpFixed_withWebp_noBase64 = exports.GatsbyImageSharpFixed_noBase64 = exports.GatsbyImageSharpFixed_withWebp_tracedSVG = exports.GatsbyImageSharpFixed_withWebp = exports.GatsbyImageSharpFixed_tracedSVG = exports.GatsbyImageSharpFixed = void 0;
5
6var _gatsby = require("gatsby");
7
8/* eslint-disable */
9
10/**
11 * The simplest set of fields for fixed sharp images
12 * @type {Fragment}
13 * @example
14 * childImageSharp {
15 * fixed {
16 * ...GatsbyImageSharpFixed
17 * # ^ identical to using the following fields:
18 * # base64
19 * # width
20 * # height
21 * # src
22 * # srcSet
23 * }
24 * }
25 */
26const GatsbyImageSharpFixed = (0, _gatsby.graphql)`
27 fragment GatsbyImageSharpFixed on ImageSharpFixed {
28 base64
29 width
30 height
31 src
32 srcSet
33 }
34`;
35/**
36 * Traced SVG fixed images
37 * @type {Fragment}
38 */
39
40exports.GatsbyImageSharpFixed = GatsbyImageSharpFixed;
41const GatsbyImageSharpFixed_tracedSVG = (0, _gatsby.graphql)`
42 fragment GatsbyImageSharpFixed_tracedSVG on ImageSharpFixed {
43 tracedSVG
44 width
45 height
46 src
47 srcSet
48 }
49`;
50/**
51 * Images using Webp for fixed images
52 * @type {Fragment}
53 */
54
55exports.GatsbyImageSharpFixed_tracedSVG = GatsbyImageSharpFixed_tracedSVG;
56const GatsbyImageSharpFixed_withWebp = (0, _gatsby.graphql)`
57 fragment GatsbyImageSharpFixed_withWebp on ImageSharpFixed {
58 base64
59 width
60 height
61 src
62 srcSet
63 srcWebp
64 srcSetWebp
65 }
66`;
67/**
68 * Traced SVG images using Webp for fixed images
69 * @type {Fragment}
70 */
71
72exports.GatsbyImageSharpFixed_withWebp = GatsbyImageSharpFixed_withWebp;
73const GatsbyImageSharpFixed_withWebp_tracedSVG = (0, _gatsby.graphql)`
74 fragment GatsbyImageSharpFixed_withWebp_tracedSVG on ImageSharpFixed {
75 tracedSVG
76 width
77 height
78 src
79 srcSet
80 srcWebp
81 srcSetWebp
82 }
83`;
84/**
85 * Fixed images without the blurred base64 image
86 * @type {Fragment}
87 */
88
89exports.GatsbyImageSharpFixed_withWebp_tracedSVG = GatsbyImageSharpFixed_withWebp_tracedSVG;
90const GatsbyImageSharpFixed_noBase64 = (0, _gatsby.graphql)`
91 fragment GatsbyImageSharpFixed_noBase64 on ImageSharpFixed {
92 width
93 height
94 src
95 srcSet
96 }
97`;
98/**
99 * Fixed images without the blurred base64 image preferring Webp
100 * @type {Fragment}
101 */
102
103exports.GatsbyImageSharpFixed_noBase64 = GatsbyImageSharpFixed_noBase64;
104const GatsbyImageSharpFixed_withWebp_noBase64 = (0, _gatsby.graphql)`
105 fragment GatsbyImageSharpFixed_withWebp_noBase64 on ImageSharpFixed {
106 width
107 height
108 src
109 srcSet
110 srcWebp
111 srcSetWebp
112 }
113`;
114/**
115 * The simplest set of fields for fluid images
116 * @type {Fragment}
117 */
118
119exports.GatsbyImageSharpFixed_withWebp_noBase64 = GatsbyImageSharpFixed_withWebp_noBase64;
120const GatsbyImageSharpFluid = (0, _gatsby.graphql)`
121 fragment GatsbyImageSharpFluid on ImageSharpFluid {
122 base64
123 aspectRatio
124 src
125 srcSet
126 sizes
127 }
128`;
129/**
130 * Presentation sizes to make sure a fluid container does not overflow
131 * @type {Fragment}
132 */
133
134exports.GatsbyImageSharpFluid = GatsbyImageSharpFluid;
135const GatsbyImageSharpFluidLimitPresentationSize = (0, _gatsby.graphql)`
136 fragment GatsbyImageSharpFluidLimitPresentationSize on ImageSharpFluid {
137 maxHeight: presentationHeight
138 maxWidth: presentationWidth
139 }
140`;
141/**
142 * Traced SVG fluid images
143 * @type {Fragment}
144 */
145
146exports.GatsbyImageSharpFluidLimitPresentationSize = GatsbyImageSharpFluidLimitPresentationSize;
147const GatsbyImageSharpFluid_tracedSVG = (0, _gatsby.graphql)`
148 fragment GatsbyImageSharpFluid_tracedSVG on ImageSharpFluid {
149 tracedSVG
150 aspectRatio
151 src
152 srcSet
153 sizes
154 }
155`;
156/**
157 * Fluid images that prefer Webp
158 * @type {Fragment}
159 */
160
161exports.GatsbyImageSharpFluid_tracedSVG = GatsbyImageSharpFluid_tracedSVG;
162const GatsbyImageSharpFluid_withWebp = (0, _gatsby.graphql)`
163 fragment GatsbyImageSharpFluid_withWebp on ImageSharpFluid {
164 base64
165 aspectRatio
166 src
167 srcSet
168 srcWebp
169 srcSetWebp
170 sizes
171 }
172`;
173/**
174 * Traced SVG fluid images that prefer Webp
175 * @type {Fragment}
176 */
177
178exports.GatsbyImageSharpFluid_withWebp = GatsbyImageSharpFluid_withWebp;
179const GatsbyImageSharpFluid_withWebp_tracedSVG = (0, _gatsby.graphql)`
180 fragment GatsbyImageSharpFluid_withWebp_tracedSVG on ImageSharpFluid {
181 tracedSVG
182 aspectRatio
183 src
184 srcSet
185 srcWebp
186 srcSetWebp
187 sizes
188 }
189`;
190/**
191 * Traced SVG fluid images without the blurred base64 image
192 * @type {Fragment}
193 */
194
195exports.GatsbyImageSharpFluid_withWebp_tracedSVG = GatsbyImageSharpFluid_withWebp_tracedSVG;
196const GatsbyImageSharpFluid_noBase64 = (0, _gatsby.graphql)`
197 fragment GatsbyImageSharpFluid_noBase64 on ImageSharpFluid {
198 aspectRatio
199 src
200 srcSet
201 sizes
202 }
203`;
204/**
205 * Traced SVG fluid images without the blurred base64 image that prefer Webp
206 * @type {Fragment}
207 */
208
209exports.GatsbyImageSharpFluid_noBase64 = GatsbyImageSharpFluid_noBase64;
210const GatsbyImageSharpFluid_withWebp_noBase64 = (0, _gatsby.graphql)`
211 fragment GatsbyImageSharpFluid_withWebp_noBase64 on ImageSharpFluid {
212 aspectRatio
213 src
214 srcSet
215 srcWebp
216 srcSetWebp
217 sizes
218 }
219`; // TODO: in v3 remove these legacy fragments
220
221exports.GatsbyImageSharpFluid_withWebp_noBase64 = GatsbyImageSharpFluid_withWebp_noBase64;
222const GatsbyImageSharpResolutions = (0, _gatsby.graphql)`
223 fragment GatsbyImageSharpResolutions on ImageSharpResolutions {
224 base64
225 width
226 height
227 src
228 srcSet
229 }
230`;
231exports.GatsbyImageSharpResolutions = GatsbyImageSharpResolutions;
232const GatsbyImageSharpResolutions_tracedSVG = (0, _gatsby.graphql)`
233 fragment GatsbyImageSharpResolutions_tracedSVG on ImageSharpResolutions {
234 tracedSVG
235 width
236 height
237 src
238 srcSet
239 }
240`;
241exports.GatsbyImageSharpResolutions_tracedSVG = GatsbyImageSharpResolutions_tracedSVG;
242const GatsbyImageSharpResolutions_withWebp = (0, _gatsby.graphql)`
243 fragment GatsbyImageSharpResolutions_withWebp on ImageSharpResolutions {
244 base64
245 width
246 height
247 src
248 srcSet
249 srcWebp
250 srcSetWebp
251 }
252`;
253exports.GatsbyImageSharpResolutions_withWebp = GatsbyImageSharpResolutions_withWebp;
254const GatsbyImageSharpResolutions_withWebp_tracedSVG = (0, _gatsby.graphql)`
255 fragment GatsbyImageSharpResolutions_withWebp_tracedSVG on ImageSharpResolutions {
256 tracedSVG
257 width
258 height
259 src
260 srcSet
261 srcWebp
262 srcSetWebp
263 }
264`;
265exports.GatsbyImageSharpResolutions_withWebp_tracedSVG = GatsbyImageSharpResolutions_withWebp_tracedSVG;
266const GatsbyImageSharpResolutions_noBase64 = (0, _gatsby.graphql)`
267 fragment GatsbyImageSharpResolutions_noBase64 on ImageSharpResolutions {
268 width
269 height
270 src
271 srcSet
272 }
273`;
274exports.GatsbyImageSharpResolutions_noBase64 = GatsbyImageSharpResolutions_noBase64;
275const GatsbyImageSharpResolutions_withWebp_noBase64 = (0, _gatsby.graphql)`
276 fragment GatsbyImageSharpResolutions_withWebp_noBase64 on ImageSharpResolutions {
277 width
278 height
279 src
280 srcSet
281 srcWebp
282 srcSetWebp
283 }
284`;
285exports.GatsbyImageSharpResolutions_withWebp_noBase64 = GatsbyImageSharpResolutions_withWebp_noBase64;
286const GatsbyImageSharpSizes = (0, _gatsby.graphql)`
287 fragment GatsbyImageSharpSizes on ImageSharpSizes {
288 base64
289 aspectRatio
290 src
291 srcSet
292 sizes
293 }
294`;
295exports.GatsbyImageSharpSizes = GatsbyImageSharpSizes;
296const GatsbyImageSharpSizes_tracedSVG = (0, _gatsby.graphql)`
297 fragment GatsbyImageSharpSizes_tracedSVG on ImageSharpSizes {
298 tracedSVG
299 aspectRatio
300 src
301 srcSet
302 sizes
303 }
304`;
305exports.GatsbyImageSharpSizes_tracedSVG = GatsbyImageSharpSizes_tracedSVG;
306const GatsbyImageSharpSizes_withWebp = (0, _gatsby.graphql)`
307 fragment GatsbyImageSharpSizes_withWebp on ImageSharpSizes {
308 base64
309 aspectRatio
310 src
311 srcSet
312 srcWebp
313 srcSetWebp
314 sizes
315 }
316`;
317exports.GatsbyImageSharpSizes_withWebp = GatsbyImageSharpSizes_withWebp;
318const GatsbyImageSharpSizes_withWebp_tracedSVG = (0, _gatsby.graphql)`
319 fragment GatsbyImageSharpSizes_withWebp_tracedSVG on ImageSharpSizes {
320 tracedSVG
321 aspectRatio
322 src
323 srcSet
324 srcWebp
325 srcSetWebp
326 sizes
327 }
328`;
329exports.GatsbyImageSharpSizes_withWebp_tracedSVG = GatsbyImageSharpSizes_withWebp_tracedSVG;
330const GatsbyImageSharpSizes_noBase64 = (0, _gatsby.graphql)`
331 fragment GatsbyImageSharpSizes_noBase64 on ImageSharpSizes {
332 aspectRatio
333 src
334 srcSet
335 sizes
336 }
337`;
338exports.GatsbyImageSharpSizes_noBase64 = GatsbyImageSharpSizes_noBase64;
339const GatsbyImageSharpSizes_withWebp_noBase64 = (0, _gatsby.graphql)`
340 fragment GatsbyImageSharpSizes_withWebp_noBase64 on ImageSharpSizes {
341 aspectRatio
342 src
343 srcSet
344 srcWebp
345 srcSetWebp
346 sizes
347 }
348`;
349exports.GatsbyImageSharpSizes_withWebp_noBase64 = GatsbyImageSharpSizes_withWebp_noBase64;
\No newline at end of file