fontdue-js 2.0.0-alpha6 → 2.0.0-alpha7

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.
Files changed (99) hide show
  1. package/dist/__generated__/CharacterViewerIDQuery.graphql.d.ts +21 -0
  2. package/dist/__generated__/CharacterViewerIDQuery.graphql.js +230 -0
  3. package/dist/__generated__/CharacterViewerSlugQuery.graphql.d.ts +25 -0
  4. package/dist/__generated__/CharacterViewerSlugQuery.graphql.js +257 -0
  5. package/dist/__generated__/NewsletterSignupQuery.graphql.d.ts +21 -0
  6. package/dist/__generated__/NewsletterSignupQuery.graphql.js +99 -0
  7. package/dist/__generated__/TypeTesterStandaloneQuery.graphql.d.ts +32 -0
  8. package/dist/__generated__/TypeTesterStandaloneQuery.graphql.js +385 -0
  9. package/dist/__generated__/TypeTestersIDQuery.graphql.d.ts +1 -2
  10. package/dist/__generated__/TypeTestersIDQuery.graphql.js +70 -107
  11. package/dist/__generated__/TypeTestersSlugQuery.graphql.d.ts +1 -2
  12. package/dist/__generated__/TypeTestersSlugQuery.graphql.js +70 -107
  13. package/dist/__generated__/TypeTesters_collection.graphql.d.ts +1 -1
  14. package/dist/__generated__/TypeTesters_collection.graphql.js +5 -14
  15. package/dist/components/BuyButton/BuyButton.server.d.ts +3 -0
  16. package/dist/components/BuyButton/BuyButton.server.js +39 -0
  17. package/dist/components/BuyButton/index.d.ts +11 -3
  18. package/dist/components/BuyButton/index.js +39 -13
  19. package/dist/components/BuyButton/index.server.d.ts +3 -0
  20. package/dist/components/BuyButton/index.server.js +37 -0
  21. package/dist/components/CartButton/index-server.d.ts +3 -0
  22. package/dist/components/CartButton/index-server.js +18 -0
  23. package/dist/components/CartButton/index.d.ts +9 -3
  24. package/dist/components/CartButton/index.js +22 -9
  25. package/dist/components/CartButton/index.server.d.ts +3 -0
  26. package/dist/components/CartButton/index.server.js +18 -0
  27. package/dist/components/CharacterViewer/index.d.ts +11 -3
  28. package/dist/components/CharacterViewer/index.js +88 -23
  29. package/dist/components/CharacterViewer/index.server.d.ts +3 -0
  30. package/dist/components/CharacterViewer/index.server.js +37 -0
  31. package/dist/components/FontdueProvider/FontdueProviderClientComponent.d.ts +14 -0
  32. package/dist/components/FontdueProvider/FontdueProviderClientComponent.js +44 -0
  33. package/dist/components/FontdueProvider/index.d.ts +3 -13
  34. package/dist/components/FontdueProvider/index.js +11 -31
  35. package/dist/components/FontdueProvider/index.server.d.ts +4 -0
  36. package/dist/components/FontdueProvider/index.server.js +27 -0
  37. package/dist/components/NewsletterSignup/index.d.ts +11 -3
  38. package/dist/components/NewsletterSignup/index.js +27 -12
  39. package/dist/components/NewsletterSignup/index.server.d.ts +3 -0
  40. package/dist/components/NewsletterSignup/index.server.js +18 -0
  41. package/dist/components/Precart/index.js +5 -3
  42. package/dist/components/PriceBar/PriceBarSection.js +3 -2
  43. package/dist/components/SKUPrice/index.js +4 -3
  44. package/dist/components/StoreModalProductSummary/index.js +3 -0
  45. package/dist/components/Stylesheet/index.js +1 -0
  46. package/dist/components/TestFontsForm/index.d.ts +7 -3
  47. package/dist/components/TestFontsForm/index.js +28 -11
  48. package/dist/components/TestFontsForm/index.server.d.ts +3 -0
  49. package/dist/components/TestFontsForm/index.server.js +18 -0
  50. package/dist/components/TestModeBanner/index.d.ts +6 -2
  51. package/dist/components/TestModeBanner/index.js +28 -10
  52. package/dist/components/TestModeBanner/index.server.d.ts +2 -0
  53. package/dist/components/TestModeBanner/index.server.js +17 -0
  54. package/dist/components/ThemeConfig/index.d.ts +6 -2
  55. package/dist/components/ThemeConfig/index.js +27 -10
  56. package/dist/components/ThemeConfig/index.server.d.ts +2 -0
  57. package/dist/components/ThemeConfig/index.server.js +17 -0
  58. package/dist/components/TypeTester/TypeTesterSlider.js +1 -1
  59. package/dist/components/TypeTester/TypeTesterStandalone.d.ts +12 -5
  60. package/dist/components/TypeTester/TypeTesterStandalone.js +43 -20
  61. package/dist/components/TypeTester/TypeTesterStandalone.server.d.ts +3 -0
  62. package/dist/components/TypeTester/TypeTesterStandalone.server.js +26 -0
  63. package/dist/components/TypeTesters/index.d.ts +11 -4
  64. package/dist/components/TypeTesters/index.js +50 -54
  65. package/dist/components/TypeTesters/index.server.d.ts +3 -0
  66. package/dist/components/TypeTesters/index.server.js +43 -0
  67. package/dist/fontdue.css +2656 -0
  68. package/dist/react-ranger.d.js +1 -0
  69. package/dist/react-ranger.js +306 -0
  70. package/dist/relay/environment.d.ts +10 -0
  71. package/dist/relay/environment.js +84 -0
  72. package/dist/relay/loadSerializableQuery.d.ts +7 -0
  73. package/dist/relay/loadSerializableQuery.js +19 -0
  74. package/dist/relay/useSerializablePreloadedQuery.d.ts +4 -0
  75. package/dist/relay/useSerializablePreloadedQuery.js +44 -0
  76. package/fontdue.css +0 -2
  77. package/package.json +43 -8
  78. package/BuyButton.d.ts +0 -3
  79. package/BuyButton.js +0 -1
  80. package/CartButton.d.ts +0 -3
  81. package/CartButton.js +0 -1
  82. package/CharacterViewer.d.ts +0 -3
  83. package/CharacterViewer.js +0 -1
  84. package/CustomerLoginForm.d.ts +0 -3
  85. package/CustomerLoginForm.js +0 -1
  86. package/FontdueProvider.d.ts +0 -3
  87. package/FontdueProvider.js +0 -1
  88. package/NewsletterSignup.d.ts +0 -3
  89. package/NewsletterSignup.js +0 -1
  90. package/StoreModal.d.ts +0 -3
  91. package/StoreModal.js +0 -1
  92. package/TestFontsForm.d.ts +0 -3
  93. package/TestFontsForm.js +0 -1
  94. package/TypeTester.d.ts +0 -3
  95. package/TypeTester.js +0 -1
  96. package/TypeTesters.d.ts +0 -3
  97. package/TypeTesters.js +0 -1
  98. package/useFontStyle.d.ts +0 -3
  99. package/useFontStyle.js +0 -1
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.default = void 0;
7
7
  /**
8
- * @generated SignedSource<<c246a302a5c0388d45807e623268de23>>
8
+ * @generated SignedSource<<909be9f617c199ac4262b87a1802971b>>
9
9
  * @lightSyntaxTransform
10
10
  * @nogrep
11
11
  */
@@ -26,196 +26,202 @@ const node = function () {
26
26
  "name": "excludeTags"
27
27
  },
28
28
  v2 = {
29
- "defaultValue": null,
30
- "kind": "LocalArgument",
31
- "name": "includePriceBar"
32
- },
33
- v3 = {
34
29
  "defaultValue": null,
35
30
  "kind": "LocalArgument",
36
31
  "name": "tags"
37
32
  },
38
- v4 = [{
33
+ v3 = [{
39
34
  "kind": "Variable",
40
35
  "name": "id",
41
36
  "variableName": "collectionId"
42
37
  }],
43
- v5 = {
38
+ v4 = {
44
39
  "kind": "Variable",
45
40
  "name": "excludeTags",
46
41
  "variableName": "excludeTags"
47
42
  },
48
- v6 = {
43
+ v5 = {
49
44
  "kind": "Variable",
50
45
  "name": "tags",
51
46
  "variableName": "tags"
52
47
  },
53
- v7 = {
48
+ v6 = {
54
49
  "kind": "Literal",
55
50
  "name": "collectionTypes",
56
51
  "value": ["FAMILY"]
57
52
  },
58
- v8 = {
53
+ v7 = {
59
54
  "kind": "Literal",
60
55
  "name": "first",
61
56
  "value": 999
62
57
  },
63
- v9 = {
58
+ v8 = {
64
59
  "alias": null,
65
60
  "args": null,
66
61
  "kind": "ScalarField",
67
62
  "name": "id",
68
63
  "storageKey": null
69
64
  },
70
- v10 = {
65
+ v9 = {
71
66
  "alias": null,
72
67
  "args": null,
73
68
  "kind": "ScalarField",
74
69
  "name": "name",
75
70
  "storageKey": null
76
71
  },
77
- v11 = {
72
+ v10 = {
78
73
  "alias": null,
79
74
  "args": null,
80
75
  "kind": "ScalarField",
81
76
  "name": "cssWeight",
82
77
  "storageKey": null
83
78
  },
84
- v12 = {
79
+ v11 = {
85
80
  "alias": null,
86
81
  "args": null,
87
82
  "kind": "ScalarField",
88
83
  "name": "cssStyle",
89
84
  "storageKey": null
90
85
  },
91
- v13 = {
86
+ v12 = {
92
87
  "alias": null,
93
88
  "args": null,
94
89
  "kind": "ScalarField",
95
90
  "name": "cssStretch",
96
91
  "storageKey": null
97
92
  },
98
- v14 = {
93
+ v13 = {
99
94
  "alias": null,
100
95
  "args": null,
101
96
  "kind": "ScalarField",
102
97
  "name": "axis",
103
98
  "storageKey": null
104
99
  },
105
- v15 = {
100
+ v14 = {
106
101
  "alias": null,
107
102
  "args": null,
108
103
  "kind": "ScalarField",
109
104
  "name": "value",
110
105
  "storageKey": null
111
106
  },
112
- v16 = [v14 /*: any*/, v15 /*: any*/],
113
- v17 = {
107
+ v15 = [v13 /*: any*/, v14 /*: any*/],
108
+ v16 = {
114
109
  "alias": null,
115
110
  "args": null,
116
111
  "concreteType": "VariableInstance",
117
112
  "kind": "LinkedField",
118
113
  "name": "variableInstances",
119
114
  "plural": true,
120
- "selections": [v10 /*: any*/, {
115
+ "selections": [v9 /*: any*/, {
121
116
  "alias": null,
122
117
  "args": null,
123
118
  "concreteType": "VariableSetting",
124
119
  "kind": "LinkedField",
125
120
  "name": "coordinates",
126
121
  "plural": true,
127
- "selections": v16 /*: any*/,
122
+ "selections": v15 /*: any*/,
128
123
  "storageKey": null
129
124
  }],
130
125
  "storageKey": null
131
126
  },
132
- v18 = [{
127
+ v17 = [{
133
128
  "kind": "Literal",
134
129
  "name": "licenseOptions",
135
130
  "value": [] /*: any*/
136
131
  }],
137
- v19 = {
132
+ v18 = {
138
133
  "alias": null,
139
134
  "args": null,
140
135
  "kind": "ScalarField",
141
136
  "name": "amount",
142
137
  "storageKey": null
143
138
  },
144
- v20 = [v19 /*: any*/, {
139
+ v19 = [v18 /*: any*/, {
145
140
  "alias": null,
146
141
  "args": null,
147
142
  "kind": "ScalarField",
148
143
  "name": "currency",
149
144
  "storageKey": null
150
145
  }],
151
- v21 = {
146
+ v20 = {
152
147
  "alias": null,
153
- "args": v18 /*: any*/,
148
+ "args": v17 /*: any*/,
154
149
  "concreteType": "Money",
155
150
  "kind": "LinkedField",
156
151
  "name": "price",
157
152
  "plural": false,
158
- "selections": v20 /*: any*/,
153
+ "selections": v19 /*: any*/,
159
154
  "storageKey": "price(licenseOptions:[])"
160
155
  },
161
- v22 = {
156
+ v21 = {
162
157
  "alias": null,
163
158
  "args": null,
164
159
  "concreteType": "Sku",
165
160
  "kind": "LinkedField",
166
161
  "name": "sku",
167
162
  "plural": false,
168
- "selections": [v9 /*: any*/, v21 /*: any*/, {
163
+ "selections": [v8 /*: any*/, v20 /*: any*/, {
169
164
  "alias": "basePrice",
170
165
  "args": null,
171
166
  "concreteType": "Money",
172
167
  "kind": "LinkedField",
173
168
  "name": "price",
174
169
  "plural": false,
175
- "selections": [v19 /*: any*/],
170
+ "selections": [v18 /*: any*/],
176
171
 
177
172
  "storageKey": null
178
173
  }],
179
174
  "storageKey": null
180
175
  },
181
- v23 = {
176
+ v22 = {
182
177
  "alias": null,
183
178
  "args": null,
184
179
  "kind": "ScalarField",
185
180
  "name": "collectionType",
186
181
  "storageKey": null
187
182
  },
188
- v24 = {
183
+ v23 = {
189
184
  "alias": null,
190
185
  "args": null,
191
186
  "concreteType": "Sku",
192
187
  "kind": "LinkedField",
193
188
  "name": "sku",
194
189
  "plural": false,
195
- "selections": [v9 /*: any*/, v21 /*: any*/],
190
+ "selections": [v8 /*: any*/, v20 /*: any*/],
196
191
 
197
192
  "storageKey": null
198
193
  },
199
- v25 = {
194
+ v24 = {
200
195
  "alias": null,
201
196
  "args": null,
202
197
  "kind": "ScalarField",
203
198
  "name": "totalStyles",
204
199
  "storageKey": null
205
200
  },
206
- v26 = {
201
+ v25 = {
207
202
  "alias": null,
208
- "args": v18 /*: any*/,
203
+ "args": v17 /*: any*/,
209
204
  "concreteType": "Money",
210
205
  "kind": "LinkedField",
211
206
  "name": "totalStylesPrice",
212
207
  "plural": false,
213
- "selections": v20 /*: any*/,
208
+ "selections": v19 /*: any*/,
214
209
  "storageKey": "totalStylesPrice(licenseOptions:[])"
210
+ },
211
+ v26 = {
212
+ "alias": null,
213
+ "args": null,
214
+ "concreteType": "FontCollection",
215
+ "kind": "LinkedField",
216
+ "name": "parent",
217
+ "plural": false,
218
+ "selections": [v8 /*: any*/, v9 /*: any*/, v22 /*: any*/, v23 /*: any*/, v24 /*: any*/, v25 /*: any*/],
219
+
220
+ "storageKey": null
215
221
  };
216
222
  return {
217
223
  "fragment": {
218
- "argumentDefinitions": [v0 /*: any*/, v1 /*: any*/, v2 /*: any*/, v3 /*: any*/],
224
+ "argumentDefinitions": [v0 /*: any*/, v1 /*: any*/, v2 /*: any*/],
219
225
 
220
226
  "kind": "Fragment",
221
227
  "metadata": null,
@@ -235,17 +241,13 @@ const node = function () {
235
241
  "storageKey": null
236
242
  }, {
237
243
  "alias": "collection",
238
- "args": v4 /*: any*/,
244
+ "args": v3 /*: any*/,
239
245
  "concreteType": null,
240
246
  "kind": "LinkedField",
241
247
  "name": "node",
242
248
  "plural": false,
243
249
  "selections": [{
244
- "args": [v5 /*: any*/, {
245
- "kind": "Variable",
246
- "name": "includePriceBar",
247
- "variableName": "includePriceBar"
248
- }, v6 /*: any*/],
250
+ "args": [v4 /*: any*/, v5 /*: any*/],
249
251
 
250
252
  "kind": "FragmentSpread",
251
253
  "name": "TypeTesters_collection"
@@ -257,7 +259,7 @@ const node = function () {
257
259
  },
258
260
  "kind": "Request",
259
261
  "operation": {
260
- "argumentDefinitions": [v0 /*: any*/, v2 /*: any*/, v3 /*: any*/, v1 /*: any*/],
262
+ "argumentDefinitions": [v0 /*: any*/, v2 /*: any*/, v1 /*: any*/],
261
263
 
262
264
  "kind": "Operation",
263
265
  "name": "TypeTestersIDQuery",
@@ -270,7 +272,7 @@ const node = function () {
270
272
  "plural": false,
271
273
  "selections": [{
272
274
  "alias": "families",
273
- "args": [v7 /*: any*/, v8 /*: any*/],
275
+ "args": [v6 /*: any*/, v7 /*: any*/],
274
276
 
275
277
  "concreteType": "FontCollectionConnection",
276
278
  "kind": "LinkedField",
@@ -290,7 +292,7 @@ const node = function () {
290
292
  "kind": "LinkedField",
291
293
  "name": "node",
292
294
  "plural": false,
293
- "selections": [v9 /*: any*/, v10 /*: any*/, {
295
+ "selections": [v8 /*: any*/, v9 /*: any*/, {
294
296
  "alias": null,
295
297
  "args": null,
296
298
  "kind": "ScalarField",
@@ -303,7 +305,7 @@ const node = function () {
303
305
  "kind": "LinkedField",
304
306
  "name": "fontStyles",
305
307
  "plural": true,
306
- "selections": [v9 /*: any*/, v10 /*: any*/, v11 /*: any*/, v12 /*: any*/, v13 /*: any*/, v17 /*: any*/],
308
+ "selections": [v8 /*: any*/, v9 /*: any*/, v10 /*: any*/, v11 /*: any*/, v12 /*: any*/, v16 /*: any*/],
307
309
 
308
310
  "storageKey": null
309
311
  }],
@@ -312,12 +314,12 @@ const node = function () {
312
314
  "storageKey": null
313
315
  }],
314
316
  "storageKey": "fontCollections(collectionTypes:[\"FAMILY\"],first:999)"
315
- }, v9 /*: any*/],
317
+ }, v8 /*: any*/],
316
318
 
317
319
  "storageKey": null
318
320
  }, {
319
321
  "alias": "collection",
320
- "args": v4 /*: any*/,
322
+ "args": v3 /*: any*/,
321
323
  "concreteType": null,
322
324
  "kind": "LinkedField",
323
325
  "name": "node",
@@ -328,11 +330,11 @@ const node = function () {
328
330
  "kind": "ScalarField",
329
331
  "name": "__typename",
330
332
  "storageKey": null
331
- }, v9 /*: any*/, {
333
+ }, v8 /*: any*/, {
332
334
  "kind": "InlineFragment",
333
335
  "selections": [{
334
336
  "alias": null,
335
- "args": [v5 /*: any*/, v8 /*: any*/, v6 /*: any*/],
337
+ "args": [v4 /*: any*/, v7 /*: any*/, v5 /*: any*/],
336
338
 
337
339
  "concreteType": "TypeTesterConnection",
338
340
  "kind": "LinkedField",
@@ -352,7 +354,7 @@ const node = function () {
352
354
  "kind": "LinkedField",
353
355
  "name": "node",
354
356
  "plural": false,
355
- "selections": [v9 /*: any*/, {
357
+ "selections": [v8 /*: any*/, {
356
358
  "alias": null,
357
359
  "args": null,
358
360
  "kind": "ScalarField",
@@ -383,14 +385,14 @@ const node = function () {
383
385
  "kind": "LinkedField",
384
386
  "name": "fontStyle",
385
387
  "plural": false,
386
- "selections": [v9 /*: any*/, {
388
+ "selections": [v8 /*: any*/, {
387
389
  "alias": null,
388
390
  "args": null,
389
391
  "concreteType": "VariableAxis",
390
392
  "kind": "LinkedField",
391
393
  "name": "variableAxes",
392
394
  "plural": true,
393
- "selections": [v14 /*: any*/, v10 /*: any*/, {
395
+ "selections": [v13 /*: any*/, v9 /*: any*/, {
394
396
  "alias": null,
395
397
  "args": null,
396
398
  "kind": "ScalarField",
@@ -440,14 +442,14 @@ const node = function () {
440
442
  "storageKey": null
441
443
  }],
442
444
  "storageKey": null
443
- }, v10 /*: any*/, v11 /*: any*/, v12 /*: any*/, v13 /*: any*/, v17 /*: any*/, {
445
+ }, v9 /*: any*/, v10 /*: any*/, v11 /*: any*/, v12 /*: any*/, v16 /*: any*/, {
444
446
  "alias": null,
445
447
  "args": null,
446
448
  "concreteType": "FontCollection",
447
449
  "kind": "LinkedField",
448
450
  "name": "family",
449
451
  "plural": false,
450
- "selections": [v10 /*: any*/, v9 /*: any*/, {
452
+ "selections": [v9 /*: any*/, v8 /*: any*/, {
451
453
  "alias": null,
452
454
  "args": null,
453
455
  "kind": "ScalarField",
@@ -461,14 +463,14 @@ const node = function () {
461
463
  "kind": "ScalarField",
462
464
  "name": "cssFamily",
463
465
  "storageKey": null
464
- }, v22 /*: any*/, {
466
+ }, v21 /*: any*/, {
465
467
  "alias": null,
466
468
  "args": null,
467
469
  "concreteType": "FontCollection",
468
470
  "kind": "LinkedField",
469
471
  "name": "fontCollections",
470
472
  "plural": true,
471
- "selections": [v22 /*: any*/, v9 /*: any*/],
473
+ "selections": [v21 /*: any*/, v8 /*: any*/],
472
474
 
473
475
  "storageKey": null
474
476
  }],
@@ -480,7 +482,7 @@ const node = function () {
480
482
  "kind": "LinkedField",
481
483
  "name": "variableSettings",
482
484
  "plural": true,
483
- "selections": v16 /*: any*/,
485
+ "selections": v15 /*: any*/,
484
486
  "storageKey": null
485
487
  }, {
486
488
  "alias": null,
@@ -495,7 +497,7 @@ const node = function () {
495
497
  "kind": "ScalarField",
496
498
  "name": "feature",
497
499
  "storageKey": null
498
- }, v15 /*: any*/],
500
+ }, v14 /*: any*/],
499
501
 
500
502
  "storageKey": null
501
503
  }],
@@ -516,56 +518,17 @@ const node = function () {
516
518
  "kind": "ScalarField",
517
519
  "name": "typeTesterAxes",
518
520
  "storageKey": null
519
- }, {
521
+ }, v9 /*: any*/, v22 /*: any*/, v23 /*: any*/, v24 /*: any*/, v25 /*: any*/, v26 /*: any*/, {
520
522
  "alias": "families",
521
- "args": [v7 /*: any*/],
523
+ "args": [v6 /*: any*/],
522
524
 
523
525
  "concreteType": "FontCollection",
524
526
  "kind": "LinkedField",
525
527
  "name": "children",
526
528
  "plural": true,
527
- "selections": [v9 /*: any*/, {
528
- "condition": "includePriceBar",
529
- "kind": "Condition",
530
- "passingValue": true,
531
- "selections": [v10 /*: any*/, v23 /*: any*/, v24 /*: any*/, v25 /*: any*/, v26 /*: any*/, {
532
- "alias": null,
533
- "args": null,
534
- "concreteType": "FontCollection",
535
- "kind": "LinkedField",
536
- "name": "parent",
537
- "plural": false,
538
- "selections": [v9 /*: any*/, v10 /*: any*/, v23 /*: any*/, v24 /*: any*/, v25 /*: any*/, v26 /*: any*/],
529
+ "selections": [v8 /*: any*/, v9 /*: any*/, v22 /*: any*/, v23 /*: any*/, v24 /*: any*/, v25 /*: any*/, v26 /*: any*/],
539
530
 
540
- "storageKey": null
541
- }]
542
- }],
543
531
  "storageKey": "children(collectionTypes:[\"FAMILY\"])"
544
- }, {
545
- "alias": null,
546
- "args": null,
547
- "concreteType": "FontCollection",
548
- "kind": "LinkedField",
549
- "name": "parent",
550
- "plural": false,
551
- "selections": [v9 /*: any*/],
552
-
553
- "storageKey": null
554
- }, {
555
- "condition": "includePriceBar",
556
- "kind": "Condition",
557
- "passingValue": true,
558
- "selections": [v10 /*: any*/, v23 /*: any*/, v24 /*: any*/, v25 /*: any*/, v26 /*: any*/, {
559
- "alias": null,
560
- "args": null,
561
- "concreteType": "FontCollection",
562
- "kind": "LinkedField",
563
- "name": "parent",
564
- "plural": false,
565
- "selections": [v10 /*: any*/, v23 /*: any*/, v24 /*: any*/, v25 /*: any*/, v26 /*: any*/],
566
-
567
- "storageKey": null
568
- }]
569
532
  }],
570
533
  "type": "FontCollection",
571
534
  "abstractKey": null
@@ -574,15 +537,15 @@ const node = function () {
574
537
  }]
575
538
  },
576
539
  "params": {
577
- "cacheID": "bae741ffcfe566faa3e2c7e95a690c06",
540
+ "cacheID": "201b12566d89606ba3084b95513b48a8",
578
541
  "id": null,
579
542
  "metadata": {},
580
543
  "name": "TypeTestersIDQuery",
581
544
  "operationKind": "query",
582
- "text": "query TypeTestersIDQuery(\n $collectionId: ID!\n $includePriceBar: Boolean!\n $tags: [String!]\n $excludeTags: [String!]\n) {\n viewer {\n ...TypeTesters_viewer\n id\n }\n collection: node(id: $collectionId) {\n __typename\n ...TypeTesters_collection_12wzh\n id\n }\n}\n\nfragment FontStyle_fontStyle on FontStyle {\n cssFamily\n name\n}\n\nfragment PriceBarSection_node on FontCollection {\n id\n name\n collectionType\n sku {\n ...SelectButton_sku_2AMk59\n id\n price(licenseOptions: []) {\n ...Price_price\n }\n }\n totalStyles\n totalStylesPrice(licenseOptions: []) {\n ...Price_price\n }\n}\n\nfragment PriceBar_node on FontCollection {\n ...PriceBarSection_node\n parent {\n ...PriceBarSection_node\n id\n }\n}\n\nfragment Price_price on Money {\n amount\n currency\n}\n\nfragment SKUPrice_sku on Sku {\n id\n price(licenseOptions: []) {\n amount\n ...Price_price\n }\n}\n\nfragment SKUPrice_sku_2AMk59 on Sku {\n id\n price(licenseOptions: []) {\n amount\n ...Price_price\n }\n}\n\nfragment SelectButton_sku on Sku {\n id\n ...SKUPrice_sku_2AMk59\n}\n\nfragment SelectButton_sku_2AMk59 on Sku {\n id\n ...SKUPrice_sku_2AMk59\n}\n\nfragment TypeTesterFeatures_fontStyle on FontStyle {\n ...useFeaturesData_fontStyle\n}\n\nfragment TypeTesterFloatingToolbar_testers on TypeTester {\n id\n fontStyle {\n ...useFeaturesData_fontStyle\n ...TypeTesterFeatures_fontStyle\n id\n }\n}\n\nfragment TypeTesterStyleSelectData_fontStyle on FontStyle {\n id\n name\n cssWeight\n cssStyle\n cssStretch\n variableInstances {\n name\n coordinates {\n axis\n value\n }\n }\n family {\n name\n id\n }\n}\n\nfragment TypeTesterStyleSelectData_viewer on Viewer {\n families: fontCollections(collectionTypes: [FAMILY], first: 999) {\n edges {\n node {\n id\n name\n isVariableFont\n fontStyles {\n id\n name\n cssWeight\n cssStyle\n cssStretch\n variableInstances {\n name\n coordinates {\n axis\n value\n }\n }\n }\n }\n }\n }\n}\n\nfragment TypeTester_fontStyle on FontStyle {\n id\n ...TypeTesterFeatures_fontStyle\n ...TypeTesterStyleSelectData_fontStyle\n ...FontStyle_fontStyle\n ...useFeaturesData_fontStyle\n family {\n cssUrl\n id\n }\n sku {\n ...SelectButton_sku\n ...SKUPrice_sku\n id\n basePrice: price {\n amount\n }\n }\n fontCollections {\n sku {\n ...SelectButton_sku\n ...SKUPrice_sku\n id\n basePrice: price {\n amount\n }\n }\n id\n }\n}\n\nfragment TypeTester_viewer on Viewer {\n ...TypeTesterStyleSelectData_viewer\n}\n\nfragment TypeTesters_collection_12wzh on FontCollection {\n typeTesters(first: 999, tags: $tags, excludeTags: $excludeTags) {\n edges {\n node {\n id\n content\n size\n lineHeight\n direction\n fontStyle {\n ...TypeTester_fontStyle\n id\n family {\n id\n }\n }\n variableSettings {\n axis\n value\n }\n featureSettings {\n feature\n value\n }\n ...TypeTesterFloatingToolbar_testers\n }\n }\n }\n typeTesterFeatures\n typeTesterAxes\n id\n ...PriceBar_node @include(if: $includePriceBar)\n families: children(collectionTypes: [FAMILY]) {\n id\n ...PriceBar_node @include(if: $includePriceBar)\n }\n parent {\n id\n }\n}\n\nfragment TypeTesters_viewer on Viewer {\n ...TypeTester_viewer\n}\n\nfragment useFeaturesData_fontStyle on FontStyle {\n variableAxes {\n axis\n name\n minValue\n maxValue\n }\n fontFeatures {\n supportedFeatures\n stylisticSetNames {\n featureName\n humanName\n }\n }\n}\n"
545
+ "text": "query TypeTestersIDQuery(\n $collectionId: ID!\n $tags: [String!]\n $excludeTags: [String!]\n) {\n viewer {\n ...TypeTesters_viewer\n id\n }\n collection: node(id: $collectionId) {\n __typename\n ...TypeTesters_collection_4Goyz5\n id\n }\n}\n\nfragment FontStyle_fontStyle on FontStyle {\n cssFamily\n name\n}\n\nfragment PriceBarSection_node on FontCollection {\n id\n name\n collectionType\n sku {\n ...SelectButton_sku_2AMk59\n id\n price(licenseOptions: []) {\n ...Price_price\n }\n }\n totalStyles\n totalStylesPrice(licenseOptions: []) {\n ...Price_price\n }\n}\n\nfragment PriceBar_node on FontCollection {\n ...PriceBarSection_node\n parent {\n ...PriceBarSection_node\n id\n }\n}\n\nfragment Price_price on Money {\n amount\n currency\n}\n\nfragment SKUPrice_sku on Sku {\n id\n price(licenseOptions: []) {\n amount\n ...Price_price\n }\n}\n\nfragment SKUPrice_sku_2AMk59 on Sku {\n id\n price(licenseOptions: []) {\n amount\n ...Price_price\n }\n}\n\nfragment SelectButton_sku on Sku {\n id\n ...SKUPrice_sku_2AMk59\n}\n\nfragment SelectButton_sku_2AMk59 on Sku {\n id\n ...SKUPrice_sku_2AMk59\n}\n\nfragment TypeTesterFeatures_fontStyle on FontStyle {\n ...useFeaturesData_fontStyle\n}\n\nfragment TypeTesterFloatingToolbar_testers on TypeTester {\n id\n fontStyle {\n ...useFeaturesData_fontStyle\n ...TypeTesterFeatures_fontStyle\n id\n }\n}\n\nfragment TypeTesterStyleSelectData_fontStyle on FontStyle {\n id\n name\n cssWeight\n cssStyle\n cssStretch\n variableInstances {\n name\n coordinates {\n axis\n value\n }\n }\n family {\n name\n id\n }\n}\n\nfragment TypeTesterStyleSelectData_viewer on Viewer {\n families: fontCollections(collectionTypes: [FAMILY], first: 999) {\n edges {\n node {\n id\n name\n isVariableFont\n fontStyles {\n id\n name\n cssWeight\n cssStyle\n cssStretch\n variableInstances {\n name\n coordinates {\n axis\n value\n }\n }\n }\n }\n }\n }\n}\n\nfragment TypeTester_fontStyle on FontStyle {\n id\n ...TypeTesterFeatures_fontStyle\n ...TypeTesterStyleSelectData_fontStyle\n ...FontStyle_fontStyle\n ...useFeaturesData_fontStyle\n family {\n cssUrl\n id\n }\n sku {\n ...SelectButton_sku\n ...SKUPrice_sku\n id\n basePrice: price {\n amount\n }\n }\n fontCollections {\n sku {\n ...SelectButton_sku\n ...SKUPrice_sku\n id\n basePrice: price {\n amount\n }\n }\n id\n }\n}\n\nfragment TypeTester_viewer on Viewer {\n ...TypeTesterStyleSelectData_viewer\n}\n\nfragment TypeTesters_collection_4Goyz5 on FontCollection {\n typeTesters(first: 999, tags: $tags, excludeTags: $excludeTags) {\n edges {\n node {\n id\n content\n size\n lineHeight\n direction\n fontStyle {\n ...TypeTester_fontStyle\n id\n family {\n id\n }\n }\n variableSettings {\n axis\n value\n }\n featureSettings {\n feature\n value\n }\n ...TypeTesterFloatingToolbar_testers\n }\n }\n }\n typeTesterFeatures\n typeTesterAxes\n id\n ...PriceBar_node\n families: children(collectionTypes: [FAMILY]) {\n id\n ...PriceBar_node\n }\n parent {\n id\n }\n}\n\nfragment TypeTesters_viewer on Viewer {\n ...TypeTester_viewer\n}\n\nfragment useFeaturesData_fontStyle on FontStyle {\n variableAxes {\n axis\n name\n minValue\n maxValue\n }\n fontFeatures {\n supportedFeatures\n stylisticSetNames {\n featureName\n humanName\n }\n }\n}\n"
583
546
  }
584
547
  };
585
548
  }();
586
- node.hash = "735b87edba7dd12a961b1686398b8cd3";
549
+ node.hash = "f62d86e50379a25ca0a8eb10812704c2";
587
550
  var _default = node;
588
551
  exports.default = _default;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @generated SignedSource<<99d0643a5d6ed4fd8bab8c54a0a20689>>
2
+ * @generated SignedSource<<f5c5e5a1071171464fb637676ecd406a>>
3
3
  * @lightSyntaxTransform
4
4
  * @nogrep
5
5
  */
@@ -8,7 +8,6 @@ import { FragmentRefs } from "relay-runtime";
8
8
  export type TypeTestersSlugQuery$variables = {
9
9
  collectionSlug: string;
10
10
  excludeTags?: ReadonlyArray<string> | null;
11
- includePriceBar: boolean;
12
11
  tags?: ReadonlyArray<string> | null;
13
12
  };
14
13
  export type TypeTestersSlugQuery$data = {