fontdue-js 3.5.1 → 3.7.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/CHANGELOG.md +19 -0
- package/README.md +2 -0
- package/dist/__generated__/CheckoutUpdateCustomerMutation.graphql.d.ts +3 -1
- package/dist/__generated__/CheckoutUpdateCustomerMutation.graphql.js +1 -1
- package/dist/__generated__/CustomerSignInRequestLoginCodeMutation.graphql.d.ts +24 -0
- package/dist/__generated__/CustomerSignInRequestLoginCodeMutation.graphql.js +71 -0
- package/dist/__generated__/CustomerSignInVerifyLoginCodeMutation.graphql.d.ts +30 -0
- package/dist/__generated__/CustomerSignInVerifyLoginCodeMutation.graphql.js +98 -0
- package/dist/__generated__/FontFamiliesQuery.graphql.d.ts +4 -1
- package/dist/__generated__/FontFamiliesQuery.graphql.js +46 -39
- package/dist/__generated__/NewsletterSignupUpdateCustomerMutation.graphql.d.ts +3 -1
- package/dist/__generated__/NewsletterSignupUpdateCustomerMutation.graphql.js +1 -1
- package/dist/__generated__/PriceBar_node.graphql.d.ts +4 -1
- package/dist/__generated__/PriceBar_node.graphql.js +23 -16
- package/dist/__generated__/StoreModalFamily_collection.graphql.d.ts +3 -2
- package/dist/__generated__/StoreModalFamily_collection.graphql.js +3 -3
- package/dist/__generated__/StoreModalIndexPaginationQuery.graphql.d.ts +23 -0
- package/dist/__generated__/StoreModalIndexPaginationQuery.graphql.js +303 -0
- package/dist/__generated__/StoreModalIndexQuery.graphql.d.ts +4 -9
- package/dist/__generated__/StoreModalIndexQuery.graphql.js +90 -53
- package/dist/__generated__/StoreModalIndex_viewer.graphql.d.ts +24 -0
- package/dist/__generated__/StoreModalIndex_viewer.graphql.js +134 -0
- package/dist/__generated__/StoreModalProductContent_collection.graphql.d.ts +4 -1
- package/dist/__generated__/StoreModalProductContent_collection.graphql.js +12 -5
- package/dist/__generated__/StoreModalProductLicenseSelection_collection.graphql.d.ts +2 -1
- package/dist/__generated__/StoreModalProductLicenseSelection_collection.graphql.js +27 -24
- package/dist/__generated__/StoreModalProductQuery.graphql.d.ts +2 -19
- package/dist/__generated__/StoreModalProductQuery.graphql.js +143 -174
- package/dist/__generated__/StoreModalProductRefetchQuery.graphql.d.ts +1 -1
- package/dist/__generated__/StoreModalProductRefetchQuery.graphql.js +54 -53
- package/dist/__generated__/StoreModalProductSlugQuery.graphql.d.ts +38 -0
- package/dist/__generated__/StoreModalProductSlugQuery.graphql.js +750 -0
- package/dist/__generated__/StoreModalProductViewer.graphql.d.ts +34 -0
- package/dist/__generated__/StoreModalProductViewer.graphql.js +149 -0
- package/dist/__generated__/StoreModalUnifiedCheckoutUpdateCustomerMutation.graphql.d.ts +3 -1
- package/dist/__generated__/StoreModalUnifiedCheckoutUpdateCustomerMutation.graphql.js +1 -1
- package/dist/__generated__/TestFontsFormUpdateCustomerMutation.graphql.d.ts +3 -1
- package/dist/__generated__/TestFontsFormUpdateCustomerMutation.graphql.js +1 -1
- package/dist/__generated__/TypeTestersIDQuery.graphql.d.ts +1 -1
- package/dist/__generated__/TypeTestersIDQuery.graphql.js +17 -10
- package/dist/__generated__/TypeTestersRefetchQuery.graphql.d.ts +1 -1
- package/dist/__generated__/TypeTestersRefetchQuery.graphql.js +17 -10
- package/dist/__generated__/TypeTestersSlugQuery.graphql.d.ts +1 -1
- package/dist/__generated__/TypeTestersSlugQuery.graphql.js +17 -10
- package/dist/__generated__/storefrontEventsTrackStorefrontEventMutation.graphql.d.ts +41 -0
- package/dist/__generated__/storefrontEventsTrackStorefrontEventMutation.graphql.js +65 -0
- package/dist/__generated__/useCurrentCustomerQuery.graphql.d.ts +23 -0
- package/dist/__generated__/{ServerConfigProviderQuery.graphql.js → useCurrentCustomerQuery.graphql.js} +24 -39
- package/dist/__tests__/bundleSelectionOrder.test.js +92 -0
- package/dist/__tests__/collectionBundleSelection.test.js +441 -1446
- package/dist/__tests__/customerSession.test.js +456 -0
- package/dist/__tests__/infiniteScroll.test.js +180 -0
- package/dist/__tests__/licenseExclusions.test.js +2 -1
- package/dist/__tests__/storeModalRoutes.test.js +118 -0
- package/dist/__tests__/storefrontEvents.test.js +167 -0
- package/dist/__tests__/stripeElements.test.js +173 -0
- package/dist/__tests__/typeTesterAutofitFeatures.test.js +138 -0
- package/dist/__tests__/typeTesterInitialSize.test.js +82 -0
- package/dist/__tests__/typeTesterTruncate.test.js +218 -0
- package/dist/auth/session.d.ts +42 -0
- package/dist/auth/session.js +139 -0
- package/dist/auth/tokenStore.d.ts +61 -0
- package/dist/auth/tokenStore.js +162 -0
- package/dist/components/Cart/Checkout.js +19 -9
- package/dist/components/Cart/storefrontEvents.d.ts +34 -0
- package/dist/components/Cart/storefrontEvents.js +138 -0
- package/dist/components/ConfigContext.d.ts +2 -2
- package/dist/components/CustomerSignIn/index.d.ts +33 -0
- package/dist/components/CustomerSignIn/index.js +170 -0
- package/dist/components/FontFamilies/index.js +4 -3
- package/dist/components/NewsletterSignup/index.js +5 -1
- package/dist/components/Precart/index.js +6 -0
- package/dist/components/PriceBar/index.js +5 -3
- package/dist/components/Root/index.js +4 -34
- package/dist/components/Root/productState.d.ts +2 -8
- package/dist/components/Root/productState.js +46 -57
- package/dist/components/SKUPrice/index.js +7 -8
- package/dist/components/StoreModal/StoreModalFamily.js +4 -2
- package/dist/components/StoreModal/StoreModalIndex.js +48 -7
- package/dist/components/StoreModal/StoreModalProduct.d.ts +5 -1
- package/dist/components/StoreModal/StoreModalProduct.js +69 -16
- package/dist/components/StoreModal/index.js +14 -14
- package/dist/components/StoreModal/routes.js +9 -1
- package/dist/components/StoreModalProductLicenseSelection/StoreModalProductLicense.d.ts +2 -1
- package/dist/components/StoreModalProductLicenseSelection/StoreModalProductLicense.js +8 -3
- package/dist/components/StoreModalProductLicenseSelection/index.js +3 -2
- package/dist/components/TestFontsForm/index.js +5 -1
- package/dist/components/TypeTester/TypeTesterContent.js +9 -2
- package/dist/components/TypeTester/TypeTesterContext.js +17 -4
- package/dist/components/TypeTester/TypeTesterFitter.js +7 -2
- package/dist/components/TypeTester/TypeTesterStandalone.d.ts +2 -0
- package/dist/components/TypeTester/TypeTesterStandalone.js +2 -0
- package/dist/components/TypeTester/TypeTesterStandaloneElement.d.ts +1 -0
- package/dist/components/TypeTester/TypeTesterStandaloneElement.js +4 -1
- package/dist/components/TypeTester/TypeTesterVariableAxes.js +16 -10
- package/dist/components/TypeTester/index.d.ts +3 -1
- package/dist/components/TypeTester/index.js +2 -1
- package/dist/components/TypeTester/truncate.d.ts +12 -0
- package/dist/components/TypeTester/truncate.js +95 -0
- package/dist/components/TypeTester/useTypeTesterStyler.d.ts +3 -1
- package/dist/components/TypeTester/useTypeTesterStyler.js +36 -7
- package/dist/components/TypeTesters/TypeTestersElement.d.ts +2 -1
- package/dist/components/TypeTesters/TypeTestersElement.js +4 -1
- package/dist/components/TypeTesters/index.d.ts +2 -0
- package/dist/components/elements/StoreModalContainer/StoreModalContainerContext.d.ts +1 -0
- package/dist/components/elements/StoreModalContainer/index.js +9 -4
- package/dist/components/elements/StoreModalIndexLoadMore/index.d.ts +8 -0
- package/dist/components/elements/StoreModalIndexLoadMore/index.js +21 -0
- package/dist/components/elements/StoreModalUnifiedCheckout.d.ts +1 -1
- package/dist/components/elements/StoreModalUnifiedCheckout.js +20 -17
- package/dist/components/useInfiniteScroll.d.ts +28 -0
- package/dist/components/useInfiniteScroll.js +50 -0
- package/dist/fontdue.css +63 -0
- package/dist/hooks/useAutofit.d.ts +2 -1
- package/dist/hooks/useAutofit.js +10 -4
- package/dist/hooks/useCurrentCustomer.d.ts +34 -0
- package/dist/hooks/useCurrentCustomer.js +93 -0
- package/dist/reducer.d.ts +5 -5
- package/dist/reducer.js +9 -87
- package/dist/relay/environment.js +91 -50
- package/dist/selection.d.ts +40 -0
- package/dist/selection.js +494 -0
- package/dist/storeModalRoutes.d.ts +38 -0
- package/dist/storeModalRoutes.js +110 -0
- package/dist/stripeElements.d.ts +18 -0
- package/dist/stripeElements.js +49 -0
- package/dist/utils.d.ts +1 -12
- package/dist/utils.js +1 -36
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/dist/__generated__/NodePasswordFormIDQuery.graphql.d.ts +0 -21
- package/dist/__generated__/NodePasswordFormIDQuery.graphql.js +0 -86
- package/dist/__generated__/NodePasswordFormSlugQuery.graphql.d.ts +0 -25
- package/dist/__generated__/NodePasswordFormSlugQuery.graphql.js +0 -108
- package/dist/__generated__/ServerConfigProviderQuery.graphql.d.ts +0 -24
- package/dist/__generated__/TestModeBannerQuery.graphql.d.ts +0 -20
- package/dist/__generated__/TestModeBannerQuery.graphql.js +0 -87
- package/dist/__generated__/ThemeConfigQuery.graphql.d.ts +0 -20
- package/dist/__generated__/ThemeConfigQuery.graphql.js +0 -87
- package/dist/components/CartButton/index.server.d.ts +0 -3
- package/dist/components/CartButton/index.server.js +0 -18
- package/dist/components/CorsErrorModal.d.ts +0 -1
- package/dist/components/CorsErrorModal.js +0 -92
- package/dist/components/FontdueProvider/FontdueProviderClientComponent.d.ts +0 -14
- package/dist/components/FontdueProvider/FontdueProviderClientComponent.js +0 -61
- package/dist/components/ThemeConfig/index.server.d.ts +0 -2
- package/dist/components/ThemeConfig/index.server.js +0 -17
- package/dist/components/TypeTester/features.d.ts +0 -5
- package/dist/components/TypeTester/features.js +0 -143
- package/dist/data/unicodeData.d.ts +0 -4
- package/dist/data/unicodeData.js +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @generated SignedSource<<
|
|
2
|
+
* @generated SignedSource<<8a2e025b087794002dfd85f1cf562386>>
|
|
3
3
|
* @lightSyntaxTransform
|
|
4
4
|
* @nogrep
|
|
5
5
|
*/
|
|
@@ -51,128 +51,52 @@ const node = function () {
|
|
|
51
51
|
"alias": null,
|
|
52
52
|
"args": null,
|
|
53
53
|
"kind": "ScalarField",
|
|
54
|
-
"name": "
|
|
54
|
+
"name": "__typename",
|
|
55
55
|
"storageKey": null
|
|
56
56
|
},
|
|
57
57
|
v9 = {
|
|
58
58
|
"alias": null,
|
|
59
59
|
"args": null,
|
|
60
60
|
"kind": "ScalarField",
|
|
61
|
-
"name": "
|
|
61
|
+
"name": "visibility",
|
|
62
62
|
"storageKey": null
|
|
63
63
|
},
|
|
64
64
|
v10 = {
|
|
65
65
|
"alias": null,
|
|
66
66
|
"args": null,
|
|
67
67
|
"kind": "ScalarField",
|
|
68
|
-
"name": "
|
|
68
|
+
"name": "isVariableFont",
|
|
69
69
|
"storageKey": null
|
|
70
70
|
},
|
|
71
71
|
v11 = {
|
|
72
72
|
"alias": null,
|
|
73
73
|
"args": null,
|
|
74
74
|
"kind": "ScalarField",
|
|
75
|
-
"name": "
|
|
75
|
+
"name": "collectionType",
|
|
76
76
|
"storageKey": null
|
|
77
77
|
},
|
|
78
78
|
v12 = {
|
|
79
|
-
"kind": "Literal",
|
|
80
|
-
"name": "format",
|
|
81
|
-
"value": "HTML"
|
|
82
|
-
},
|
|
83
|
-
v13 = [v12 /*: any*/],
|
|
84
|
-
v14 = {
|
|
85
|
-
"alias": null,
|
|
86
|
-
"args": v13 /*: any*/,
|
|
87
|
-
"kind": "ScalarField",
|
|
88
|
-
"name": "storeModalSelectLicenseeLabel",
|
|
89
|
-
"storageKey": "storeModalSelectLicenseeLabel(format:\"HTML\")"
|
|
90
|
-
},
|
|
91
|
-
v15 = {
|
|
92
|
-
"alias": null,
|
|
93
|
-
"args": v13 /*: any*/,
|
|
94
|
-
"kind": "ScalarField",
|
|
95
|
-
"name": "storeModalLicenseeSelfLabel",
|
|
96
|
-
"storageKey": "storeModalLicenseeSelfLabel(format:\"HTML\")"
|
|
97
|
-
},
|
|
98
|
-
v16 = {
|
|
99
|
-
"alias": null,
|
|
100
|
-
"args": v13 /*: any*/,
|
|
101
|
-
"kind": "ScalarField",
|
|
102
|
-
"name": "storeModalLicenseeSelfDescription",
|
|
103
|
-
"storageKey": "storeModalLicenseeSelfDescription(format:\"HTML\")"
|
|
104
|
-
},
|
|
105
|
-
v17 = {
|
|
106
|
-
"alias": null,
|
|
107
|
-
"args": v13 /*: any*/,
|
|
108
|
-
"kind": "ScalarField",
|
|
109
|
-
"name": "storeModalLicenseeClientLabel",
|
|
110
|
-
"storageKey": "storeModalLicenseeClientLabel(format:\"HTML\")"
|
|
111
|
-
},
|
|
112
|
-
v18 = {
|
|
113
|
-
"alias": null,
|
|
114
|
-
"args": v13 /*: any*/,
|
|
115
|
-
"kind": "ScalarField",
|
|
116
|
-
"name": "storeModalLicenseeClientDescription",
|
|
117
|
-
"storageKey": "storeModalLicenseeClientDescription(format:\"HTML\")"
|
|
118
|
-
},
|
|
119
|
-
v19 = {
|
|
120
|
-
"alias": null,
|
|
121
|
-
"args": v13 /*: any*/,
|
|
122
|
-
"kind": "ScalarField",
|
|
123
|
-
"name": "storeModalSelectOrderVariablesLabel",
|
|
124
|
-
"storageKey": "storeModalSelectOrderVariablesLabel(format:\"HTML\")"
|
|
125
|
-
},
|
|
126
|
-
v20 = {
|
|
127
|
-
"alias": null,
|
|
128
|
-
"args": v13 /*: any*/,
|
|
129
|
-
"kind": "ScalarField",
|
|
130
|
-
"name": "storeModalSelectLicensesLabel",
|
|
131
|
-
"storageKey": "storeModalSelectLicensesLabel(format:\"HTML\")"
|
|
132
|
-
},
|
|
133
|
-
v21 = {
|
|
134
|
-
"alias": null,
|
|
135
|
-
"args": v13 /*: any*/,
|
|
136
|
-
"kind": "ScalarField",
|
|
137
|
-
"name": "storeModalSelectFontsLabel",
|
|
138
|
-
"storageKey": "storeModalSelectFontsLabel(format:\"HTML\")"
|
|
139
|
-
},
|
|
140
|
-
v22 = {
|
|
141
|
-
"alias": null,
|
|
142
|
-
"args": null,
|
|
143
|
-
"kind": "ScalarField",
|
|
144
|
-
"name": "__typename",
|
|
145
|
-
"storageKey": null
|
|
146
|
-
},
|
|
147
|
-
v23 = {
|
|
148
79
|
"alias": null,
|
|
149
80
|
"args": null,
|
|
150
81
|
"kind": "ScalarField",
|
|
151
|
-
"name": "
|
|
152
|
-
"storageKey": null
|
|
153
|
-
},
|
|
154
|
-
v24 = {
|
|
155
|
-
"alias": null,
|
|
156
|
-
"args": null,
|
|
157
|
-
"kind": "ScalarField",
|
|
158
|
-
"name": "collectionType",
|
|
82
|
+
"name": "name",
|
|
159
83
|
"storageKey": null
|
|
160
84
|
},
|
|
161
|
-
|
|
85
|
+
v13 = {
|
|
162
86
|
"alias": null,
|
|
163
87
|
"args": null,
|
|
164
88
|
"kind": "ScalarField",
|
|
165
89
|
"name": "amount",
|
|
166
90
|
"storageKey": null
|
|
167
91
|
},
|
|
168
|
-
|
|
92
|
+
v14 = [v13 /*: any*/, {
|
|
169
93
|
"alias": null,
|
|
170
94
|
"args": null,
|
|
171
95
|
"kind": "ScalarField",
|
|
172
96
|
"name": "currency",
|
|
173
97
|
"storageKey": null
|
|
174
98
|
}],
|
|
175
|
-
|
|
99
|
+
v15 = {
|
|
176
100
|
"alias": null,
|
|
177
101
|
"args": null,
|
|
178
102
|
"concreteType": "Sku",
|
|
@@ -186,44 +110,44 @@ const node = function () {
|
|
|
186
110
|
"kind": "LinkedField",
|
|
187
111
|
"name": "price",
|
|
188
112
|
"plural": false,
|
|
189
|
-
"selections":
|
|
113
|
+
"selections": v14 /*: any*/,
|
|
190
114
|
"storageKey": null
|
|
191
115
|
}],
|
|
192
116
|
"storageKey": null
|
|
193
117
|
},
|
|
194
|
-
|
|
195
|
-
|
|
118
|
+
v16 = [v4 /*: any*/],
|
|
119
|
+
v17 = {
|
|
196
120
|
"alias": null,
|
|
197
121
|
"args": null,
|
|
198
122
|
"concreteType": "FontCollection",
|
|
199
123
|
"kind": "LinkedField",
|
|
200
124
|
"name": "parent",
|
|
201
125
|
"plural": false,
|
|
202
|
-
"selections":
|
|
126
|
+
"selections": v16 /*: any*/,
|
|
203
127
|
"storageKey": null
|
|
204
128
|
},
|
|
205
|
-
|
|
129
|
+
v18 = {
|
|
206
130
|
"alias": null,
|
|
207
131
|
"args": null,
|
|
208
132
|
"kind": "ScalarField",
|
|
209
133
|
"name": "cssFamily",
|
|
210
134
|
"storageKey": null
|
|
211
135
|
},
|
|
212
|
-
|
|
136
|
+
v19 = {
|
|
213
137
|
"alias": null,
|
|
214
138
|
"args": null,
|
|
215
139
|
"kind": "ScalarField",
|
|
216
140
|
"name": "url",
|
|
217
141
|
"storageKey": null
|
|
218
142
|
},
|
|
219
|
-
|
|
143
|
+
v20 = {
|
|
220
144
|
"alias": null,
|
|
221
145
|
"args": null,
|
|
222
146
|
"concreteType": "WebfontSource",
|
|
223
147
|
"kind": "LinkedField",
|
|
224
148
|
"name": "webfontSources",
|
|
225
149
|
"plural": true,
|
|
226
|
-
"selections": [
|
|
150
|
+
"selections": [v19 /*: any*/, {
|
|
227
151
|
"alias": null,
|
|
228
152
|
"args": null,
|
|
229
153
|
"kind": "ScalarField",
|
|
@@ -238,7 +162,7 @@ const node = function () {
|
|
|
238
162
|
}],
|
|
239
163
|
"storageKey": null
|
|
240
164
|
},
|
|
241
|
-
|
|
165
|
+
v21 = {
|
|
242
166
|
"alias": null,
|
|
243
167
|
"args": null,
|
|
244
168
|
"concreteType": "VerticalMetrics",
|
|
@@ -278,67 +202,67 @@ const node = function () {
|
|
|
278
202
|
}],
|
|
279
203
|
"storageKey": null
|
|
280
204
|
},
|
|
281
|
-
|
|
205
|
+
v22 = {
|
|
282
206
|
"alias": null,
|
|
283
207
|
"args": null,
|
|
284
208
|
"kind": "ScalarField",
|
|
285
209
|
"name": "supportedLanguages",
|
|
286
210
|
"storageKey": null
|
|
287
211
|
},
|
|
288
|
-
|
|
212
|
+
v23 = {
|
|
289
213
|
"alias": null,
|
|
290
214
|
"args": null,
|
|
291
215
|
"concreteType": "FontStyle",
|
|
292
216
|
"kind": "LinkedField",
|
|
293
217
|
"name": "featureStyle",
|
|
294
218
|
"plural": false,
|
|
295
|
-
"selections": [
|
|
219
|
+
"selections": [v18 /*: any*/, v12 /*: any*/, v20 /*: any*/, v21 /*: any*/, v22 /*: any*/, v4 /*: any*/],
|
|
296
220
|
"storageKey": null
|
|
297
221
|
},
|
|
298
|
-
|
|
222
|
+
v24 = {
|
|
299
223
|
"alias": null,
|
|
300
224
|
"args": null,
|
|
301
225
|
"kind": "ScalarField",
|
|
302
226
|
"name": "totalStyles",
|
|
303
227
|
"storageKey": null
|
|
304
228
|
},
|
|
305
|
-
|
|
229
|
+
v25 = {
|
|
306
230
|
"alias": null,
|
|
307
231
|
"args": null,
|
|
308
232
|
"concreteType": "Money",
|
|
309
233
|
"kind": "LinkedField",
|
|
310
234
|
"name": "totalStylesPrice",
|
|
311
235
|
"plural": false,
|
|
312
|
-
"selections":
|
|
236
|
+
"selections": v14 /*: any*/,
|
|
313
237
|
"storageKey": null
|
|
314
238
|
},
|
|
315
|
-
|
|
239
|
+
v26 = [{
|
|
316
240
|
"kind": "Literal",
|
|
317
241
|
"name": "collectionTypes",
|
|
318
242
|
"value": ["FAMILY"]
|
|
319
243
|
}],
|
|
320
|
-
|
|
244
|
+
v27 = {
|
|
321
245
|
"alias": null,
|
|
322
246
|
"args": null,
|
|
323
247
|
"kind": "ScalarField",
|
|
324
248
|
"name": "cssWeight",
|
|
325
249
|
"storageKey": null
|
|
326
250
|
},
|
|
327
|
-
|
|
251
|
+
v28 = {
|
|
328
252
|
"alias": null,
|
|
329
253
|
"args": null,
|
|
330
254
|
"kind": "ScalarField",
|
|
331
255
|
"name": "cssStretch",
|
|
332
256
|
"storageKey": null
|
|
333
257
|
},
|
|
334
|
-
|
|
258
|
+
v29 = {
|
|
335
259
|
"alias": null,
|
|
336
260
|
"args": null,
|
|
337
261
|
"concreteType": "VariableInstance",
|
|
338
262
|
"kind": "LinkedField",
|
|
339
263
|
"name": "variableInstances",
|
|
340
264
|
"plural": true,
|
|
341
|
-
"selections": [
|
|
265
|
+
"selections": [v12 /*: any*/, {
|
|
342
266
|
"alias": null,
|
|
343
267
|
"args": null,
|
|
344
268
|
"concreteType": "VariableSetting",
|
|
@@ -362,56 +286,63 @@ const node = function () {
|
|
|
362
286
|
}],
|
|
363
287
|
"storageKey": null
|
|
364
288
|
},
|
|
365
|
-
|
|
289
|
+
v30 = {
|
|
366
290
|
"alias": null,
|
|
367
291
|
"args": null,
|
|
368
292
|
"concreteType": "Bundle",
|
|
369
293
|
"kind": "LinkedField",
|
|
370
294
|
"name": "bundles",
|
|
371
295
|
"plural": true,
|
|
372
|
-
"selections": [v4 /*: any*/, {
|
|
373
|
-
"alias": null,
|
|
374
|
-
"args": null,
|
|
375
|
-
"kind": "ScalarField",
|
|
376
|
-
"name": "hidden",
|
|
377
|
-
"storageKey": null
|
|
378
|
-
}, {
|
|
296
|
+
"selections": [v4 /*: any*/, v9 /*: any*/, {
|
|
379
297
|
"alias": null,
|
|
380
298
|
"args": null,
|
|
381
299
|
"concreteType": "FontStyle",
|
|
382
300
|
"kind": "LinkedField",
|
|
383
301
|
"name": "fontStyles",
|
|
384
302
|
"plural": true,
|
|
385
|
-
"selections": [v4 /*: any*/,
|
|
303
|
+
"selections": [v4 /*: any*/, v18 /*: any*/, v27 /*: any*/, v28 /*: any*/, v12 /*: any*/, v22 /*: any*/, v29 /*: any*/, v15 /*: any*/, v20 /*: any*/, v21 /*: any*/],
|
|
386
304
|
"storageKey": null
|
|
387
|
-
},
|
|
305
|
+
}, v12 /*: any*/, v15 /*: any*/],
|
|
388
306
|
"storageKey": null
|
|
389
307
|
},
|
|
390
|
-
|
|
308
|
+
v31 = {
|
|
391
309
|
"alias": null,
|
|
392
310
|
"args": null,
|
|
393
311
|
"concreteType": "FontStyle",
|
|
394
312
|
"kind": "LinkedField",
|
|
395
313
|
"name": "fontStyles",
|
|
396
314
|
"plural": true,
|
|
397
|
-
"selections": [v4 /*: any*/,
|
|
315
|
+
"selections": [v4 /*: any*/, v18 /*: any*/, v27 /*: any*/, v28 /*: any*/, {
|
|
398
316
|
"alias": null,
|
|
399
317
|
"args": null,
|
|
400
318
|
"kind": "ScalarField",
|
|
401
319
|
"name": "cssStyle",
|
|
402
320
|
"storageKey": null
|
|
403
|
-
},
|
|
321
|
+
}, v12 /*: any*/, v22 /*: any*/, v29 /*: any*/, v15 /*: any*/, v20 /*: any*/, v21 /*: any*/],
|
|
322
|
+
"storageKey": null
|
|
323
|
+
},
|
|
324
|
+
v32 = {
|
|
325
|
+
"kind": "Literal",
|
|
326
|
+
"name": "format",
|
|
327
|
+
"value": "HTML"
|
|
328
|
+
},
|
|
329
|
+
v33 = [v32 /*: any*/],
|
|
330
|
+
v34 = {
|
|
331
|
+
"alias": null,
|
|
332
|
+
"args": null,
|
|
333
|
+
"kind": "ScalarField",
|
|
334
|
+
"name": "variableType",
|
|
404
335
|
"storageKey": null
|
|
405
336
|
},
|
|
406
|
-
|
|
407
|
-
|
|
337
|
+
v35 = [v13 /*: any*/],
|
|
338
|
+
v36 = [v24 /*: any*/, {
|
|
408
339
|
"alias": null,
|
|
409
340
|
"args": v7 /*: any*/,
|
|
410
341
|
"concreteType": "Money",
|
|
411
342
|
"kind": "LinkedField",
|
|
412
343
|
"name": "totalStylesPrice",
|
|
413
344
|
"plural": false,
|
|
414
|
-
"selections":
|
|
345
|
+
"selections": v35 /*: any*/,
|
|
415
346
|
"storageKey": null
|
|
416
347
|
}];
|
|
417
348
|
return {
|
|
@@ -440,32 +371,10 @@ const node = function () {
|
|
|
440
371
|
"kind": "LinkedField",
|
|
441
372
|
"name": "viewer",
|
|
442
373
|
"plural": false,
|
|
443
|
-
"selections": [
|
|
444
|
-
"args": [v6 /*: any*/],
|
|
445
|
-
"kind": "FragmentSpread",
|
|
446
|
-
"name": "OrderVariableSelectionRedux_viewer"
|
|
447
|
-
}, {
|
|
374
|
+
"selections": [{
|
|
448
375
|
"args": v7 /*: any*/,
|
|
449
376
|
"kind": "FragmentSpread",
|
|
450
|
-
"name": "
|
|
451
|
-
}, {
|
|
452
|
-
"alias": null,
|
|
453
|
-
"args": null,
|
|
454
|
-
"concreteType": "OrderVariable",
|
|
455
|
-
"kind": "LinkedField",
|
|
456
|
-
"name": "orderVariables",
|
|
457
|
-
"plural": true,
|
|
458
|
-
"selections": [v4 /*: any*/, v10 /*: any*/, v11 /*: any*/],
|
|
459
|
-
"storageKey": null
|
|
460
|
-
}, {
|
|
461
|
-
"alias": null,
|
|
462
|
-
"args": null,
|
|
463
|
-
"concreteType": "Settings",
|
|
464
|
-
"kind": "LinkedField",
|
|
465
|
-
"name": "settings",
|
|
466
|
-
"plural": false,
|
|
467
|
-
"selections": [v14 /*: any*/, v15 /*: any*/, v16 /*: any*/, v17 /*: any*/, v18 /*: any*/, v19 /*: any*/, v20 /*: any*/, v21 /*: any*/],
|
|
468
|
-
"storageKey": null
|
|
377
|
+
"name": "StoreModalProductViewer"
|
|
469
378
|
}],
|
|
470
379
|
"storageKey": null
|
|
471
380
|
}],
|
|
@@ -484,39 +393,39 @@ const node = function () {
|
|
|
484
393
|
"kind": "LinkedField",
|
|
485
394
|
"name": "node",
|
|
486
395
|
"plural": false,
|
|
487
|
-
"selections": [
|
|
396
|
+
"selections": [v8 /*: any*/, v4 /*: any*/, {
|
|
488
397
|
"kind": "TypeDiscriminator",
|
|
489
398
|
"abstractKey": "__isNode"
|
|
490
399
|
}, {
|
|
491
400
|
"kind": "InlineFragment",
|
|
492
|
-
"selections": [
|
|
401
|
+
"selections": [v9 /*: any*/, v10 /*: any*/, v11 /*: any*/, v12 /*: any*/, v15 /*: any*/, v17 /*: any*/, v23 /*: any*/, v24 /*: any*/, v25 /*: any*/, {
|
|
493
402
|
"alias": null,
|
|
494
|
-
"args":
|
|
403
|
+
"args": v26 /*: any*/,
|
|
495
404
|
"concreteType": "FontCollection",
|
|
496
405
|
"kind": "LinkedField",
|
|
497
406
|
"name": "children",
|
|
498
407
|
"plural": true,
|
|
499
|
-
"selections": [
|
|
408
|
+
"selections": [v10 /*: any*/, v24 /*: any*/, v4 /*: any*/, v9 /*: any*/, v11 /*: any*/, v12 /*: any*/, v15 /*: any*/, v17 /*: any*/, v23 /*: any*/, v25 /*: any*/, {
|
|
500
409
|
"alias": null,
|
|
501
|
-
"args":
|
|
410
|
+
"args": v26 /*: any*/,
|
|
502
411
|
"concreteType": "FontCollection",
|
|
503
412
|
"kind": "LinkedField",
|
|
504
413
|
"name": "children",
|
|
505
414
|
"plural": true,
|
|
506
|
-
"selections": [
|
|
415
|
+
"selections": [v10 /*: any*/, v24 /*: any*/, v4 /*: any*/],
|
|
507
416
|
"storageKey": "children(collectionTypes:[\"FAMILY\"])"
|
|
508
|
-
},
|
|
417
|
+
}, v30 /*: any*/, v31 /*: any*/],
|
|
509
418
|
"storageKey": "children(collectionTypes:[\"FAMILY\"])"
|
|
510
|
-
},
|
|
419
|
+
}, v30 /*: any*/, v31 /*: any*/, {
|
|
511
420
|
"alias": null,
|
|
512
421
|
"args": null,
|
|
513
422
|
"concreteType": "License",
|
|
514
423
|
"kind": "LinkedField",
|
|
515
424
|
"name": "licenses",
|
|
516
425
|
"plural": true,
|
|
517
|
-
"selections": [v4 /*: any*/,
|
|
426
|
+
"selections": [v4 /*: any*/, v19 /*: any*/, v12 /*: any*/, {
|
|
518
427
|
"alias": null,
|
|
519
|
-
"args":
|
|
428
|
+
"args": v33 /*: any*/,
|
|
520
429
|
"kind": "ScalarField",
|
|
521
430
|
"name": "description",
|
|
522
431
|
"storageKey": "description(format:\"HTML\")"
|
|
@@ -533,7 +442,7 @@ const node = function () {
|
|
|
533
442
|
"kind": "LinkedField",
|
|
534
443
|
"name": "excludedLicenses",
|
|
535
444
|
"plural": true,
|
|
536
|
-
"selections":
|
|
445
|
+
"selections": v16 /*: any*/,
|
|
537
446
|
"storageKey": null
|
|
538
447
|
}, {
|
|
539
448
|
"alias": "variables",
|
|
@@ -542,7 +451,7 @@ const node = function () {
|
|
|
542
451
|
"kind": "LinkedField",
|
|
543
452
|
"name": "licenseVariables",
|
|
544
453
|
"plural": true,
|
|
545
|
-
"selections": [v4 /*: any*/,
|
|
454
|
+
"selections": [v4 /*: any*/, v12 /*: any*/, v34 /*: any*/, {
|
|
546
455
|
"alias": null,
|
|
547
456
|
"args": null,
|
|
548
457
|
"kind": "ScalarField",
|
|
@@ -555,7 +464,7 @@ const node = function () {
|
|
|
555
464
|
"kind": "LinkedField",
|
|
556
465
|
"name": "licenseOptions",
|
|
557
466
|
"plural": true,
|
|
558
|
-
"selections": [v4 /*: any*/,
|
|
467
|
+
"selections": [v4 /*: any*/, v12 /*: any*/, v13 /*: any*/, {
|
|
559
468
|
"alias": null,
|
|
560
469
|
"args": null,
|
|
561
470
|
"kind": "ScalarField",
|
|
@@ -579,16 +488,28 @@ const node = function () {
|
|
|
579
488
|
"kind": "LinkedField",
|
|
580
489
|
"name": "viewer",
|
|
581
490
|
"plural": false,
|
|
582
|
-
"selections": [
|
|
491
|
+
"selections": [{
|
|
492
|
+
"alias": null,
|
|
493
|
+
"args": null,
|
|
494
|
+
"kind": "ScalarField",
|
|
495
|
+
"name": "endpoint",
|
|
496
|
+
"storageKey": null
|
|
497
|
+
}, {
|
|
498
|
+
"alias": null,
|
|
499
|
+
"args": null,
|
|
500
|
+
"kind": "ScalarField",
|
|
501
|
+
"name": "stripeAccountId",
|
|
502
|
+
"storageKey": null
|
|
503
|
+
}, {
|
|
583
504
|
"alias": null,
|
|
584
505
|
"args": null,
|
|
585
506
|
"concreteType": "OrderVariable",
|
|
586
507
|
"kind": "LinkedField",
|
|
587
508
|
"name": "orderVariables",
|
|
588
509
|
"plural": true,
|
|
589
|
-
"selections": [v4 /*: any*/,
|
|
510
|
+
"selections": [v4 /*: any*/, v12 /*: any*/, v34 /*: any*/, {
|
|
590
511
|
"alias": null,
|
|
591
|
-
"args": [
|
|
512
|
+
"args": [v32 /*: any*/, v6 /*: any*/],
|
|
592
513
|
"kind": "ScalarField",
|
|
593
514
|
"name": "description",
|
|
594
515
|
"storageKey": null
|
|
@@ -599,7 +520,7 @@ const node = function () {
|
|
|
599
520
|
"kind": "LinkedField",
|
|
600
521
|
"name": "orderVariableOptions",
|
|
601
522
|
"plural": true,
|
|
602
|
-
"selections": [v4 /*: any*/,
|
|
523
|
+
"selections": [v4 /*: any*/, v13 /*: any*/],
|
|
603
524
|
"storageKey": null
|
|
604
525
|
}],
|
|
605
526
|
"storageKey": null
|
|
@@ -616,7 +537,7 @@ const node = function () {
|
|
|
616
537
|
"kind": "ScalarField",
|
|
617
538
|
"name": "code",
|
|
618
539
|
"storageKey": null
|
|
619
|
-
},
|
|
540
|
+
}, v12 /*: any*/],
|
|
620
541
|
"storageKey": null
|
|
621
542
|
}, {
|
|
622
543
|
"alias": null,
|
|
@@ -652,7 +573,55 @@ const node = function () {
|
|
|
652
573
|
"storageKey": null
|
|
653
574
|
}],
|
|
654
575
|
"storageKey": null
|
|
655
|
-
},
|
|
576
|
+
}, {
|
|
577
|
+
"alias": null,
|
|
578
|
+
"args": v33 /*: any*/,
|
|
579
|
+
"kind": "ScalarField",
|
|
580
|
+
"name": "storeModalSelectLicenseeLabel",
|
|
581
|
+
"storageKey": "storeModalSelectLicenseeLabel(format:\"HTML\")"
|
|
582
|
+
}, {
|
|
583
|
+
"alias": null,
|
|
584
|
+
"args": v33 /*: any*/,
|
|
585
|
+
"kind": "ScalarField",
|
|
586
|
+
"name": "storeModalLicenseeSelfLabel",
|
|
587
|
+
"storageKey": "storeModalLicenseeSelfLabel(format:\"HTML\")"
|
|
588
|
+
}, {
|
|
589
|
+
"alias": null,
|
|
590
|
+
"args": v33 /*: any*/,
|
|
591
|
+
"kind": "ScalarField",
|
|
592
|
+
"name": "storeModalLicenseeSelfDescription",
|
|
593
|
+
"storageKey": "storeModalLicenseeSelfDescription(format:\"HTML\")"
|
|
594
|
+
}, {
|
|
595
|
+
"alias": null,
|
|
596
|
+
"args": v33 /*: any*/,
|
|
597
|
+
"kind": "ScalarField",
|
|
598
|
+
"name": "storeModalLicenseeClientLabel",
|
|
599
|
+
"storageKey": "storeModalLicenseeClientLabel(format:\"HTML\")"
|
|
600
|
+
}, {
|
|
601
|
+
"alias": null,
|
|
602
|
+
"args": v33 /*: any*/,
|
|
603
|
+
"kind": "ScalarField",
|
|
604
|
+
"name": "storeModalLicenseeClientDescription",
|
|
605
|
+
"storageKey": "storeModalLicenseeClientDescription(format:\"HTML\")"
|
|
606
|
+
}, {
|
|
607
|
+
"alias": null,
|
|
608
|
+
"args": v33 /*: any*/,
|
|
609
|
+
"kind": "ScalarField",
|
|
610
|
+
"name": "storeModalSelectOrderVariablesLabel",
|
|
611
|
+
"storageKey": "storeModalSelectOrderVariablesLabel(format:\"HTML\")"
|
|
612
|
+
}, {
|
|
613
|
+
"alias": null,
|
|
614
|
+
"args": v33 /*: any*/,
|
|
615
|
+
"kind": "ScalarField",
|
|
616
|
+
"name": "storeModalSelectLicensesLabel",
|
|
617
|
+
"storageKey": "storeModalSelectLicensesLabel(format:\"HTML\")"
|
|
618
|
+
}, {
|
|
619
|
+
"alias": null,
|
|
620
|
+
"args": v33 /*: any*/,
|
|
621
|
+
"kind": "ScalarField",
|
|
622
|
+
"name": "storeModalSelectFontsLabel",
|
|
623
|
+
"storageKey": "storeModalSelectFontsLabel(format:\"HTML\")"
|
|
624
|
+
}],
|
|
656
625
|
"storageKey": null
|
|
657
626
|
}, {
|
|
658
627
|
"alias": null,
|
|
@@ -700,7 +669,7 @@ const node = function () {
|
|
|
700
669
|
"kind": "LinkedField",
|
|
701
670
|
"name": "price",
|
|
702
671
|
"plural": false,
|
|
703
|
-
"selections":
|
|
672
|
+
"selections": v35 /*: any*/,
|
|
704
673
|
"storageKey": null
|
|
705
674
|
}, {
|
|
706
675
|
"alias": null,
|
|
@@ -709,24 +678,24 @@ const node = function () {
|
|
|
709
678
|
"kind": "LinkedField",
|
|
710
679
|
"name": "product",
|
|
711
680
|
"plural": false,
|
|
712
|
-
"selections": [
|
|
681
|
+
"selections": [v8 /*: any*/, {
|
|
713
682
|
"kind": "InlineFragment",
|
|
714
|
-
"selections":
|
|
683
|
+
"selections": v36 /*: any*/,
|
|
715
684
|
"type": "FontCollection",
|
|
716
685
|
"abstractKey": null
|
|
717
686
|
}, {
|
|
718
687
|
"kind": "InlineFragment",
|
|
719
|
-
"selections":
|
|
688
|
+
"selections": v36 /*: any*/,
|
|
720
689
|
"type": "Bundle",
|
|
721
690
|
"abstractKey": null
|
|
722
691
|
}, {
|
|
723
692
|
"kind": "InlineFragment",
|
|
724
|
-
"selections":
|
|
693
|
+
"selections": v36 /*: any*/,
|
|
725
694
|
"type": "CollectionBundle",
|
|
726
695
|
"abstractKey": null
|
|
727
696
|
}, {
|
|
728
697
|
"kind": "InlineFragment",
|
|
729
|
-
"selections":
|
|
698
|
+
"selections": v16 /*: any*/,
|
|
730
699
|
"type": "Node",
|
|
731
700
|
"abstractKey": "__isNode"
|
|
732
701
|
}],
|
|
@@ -740,7 +709,7 @@ const node = function () {
|
|
|
740
709
|
"kind": "LinkedField",
|
|
741
710
|
"name": "subtotal",
|
|
742
711
|
"plural": false,
|
|
743
|
-
"selections":
|
|
712
|
+
"selections": v14 /*: any*/,
|
|
744
713
|
"storageKey": null
|
|
745
714
|
}],
|
|
746
715
|
"storageKey": null
|
|
@@ -749,14 +718,14 @@ const node = function () {
|
|
|
749
718
|
}]
|
|
750
719
|
},
|
|
751
720
|
"params": {
|
|
752
|
-
"cacheID": "
|
|
721
|
+
"cacheID": "fb1495e3bb49944d0f3570afc38ae2ef",
|
|
753
722
|
"id": null,
|
|
754
723
|
"metadata": {},
|
|
755
724
|
"name": "StoreModalProductQuery",
|
|
756
725
|
"operationKind": "query",
|
|
757
|
-
"text": "query StoreModalProductQuery(\n $productId: ID!\n $licenseOptions: [LicenseOptionsSpec]!\n $orderVariables: [OrderVariableSelectionInput!]\n) {\n collection: node(id: $productId) {\n __typename\n id\n ...StoreModalProductContent_collection_4sncub\n }\n viewer {\n
|
|
726
|
+
"text": "query StoreModalProductQuery(\n $productId: ID!\n $licenseOptions: [LicenseOptionsSpec]!\n $orderVariables: [OrderVariableSelectionInput!]\n) {\n collection: node(id: $productId) {\n __typename\n id\n ...StoreModalProductContent_collection_4sncub\n }\n viewer {\n ...StoreModalProductViewer_4sncub\n id\n }\n}\n\nfragment FontStyle_fontStyle on FontStyle {\n ...useFontStyle_fontStyle\n}\n\nfragment OrderVariableSelectionRedux_viewer_2ZguDv on Viewer {\n ...OrderVariableSelection_variables_2ZguDv\n detectedCountry\n orderVariables {\n id\n variableType\n }\n}\n\nfragment OrderVariableSelection_variables_2ZguDv on Viewer {\n orderVariables {\n id\n name\n variableType\n description(format: HTML, orderVariables: $orderVariables)\n orderVariableOptions {\n id\n amount\n }\n }\n countries {\n code\n name\n }\n}\n\nfragment Price_price on Money {\n amount\n currency\n}\n\nfragment SKUPrice_sku_4sncub on Sku {\n id\n price(licenseOptions: $licenseOptions, orderVariables: $orderVariables) {\n amount\n ...Price_price\n }\n}\n\nfragment StoreModalBundleButton_bundle_4sncub on Bundle {\n id\n name\n sku {\n ...SKUPrice_sku_4sncub\n id\n }\n fontStyles {\n id\n ...FontStyle_fontStyle\n }\n}\n\nfragment StoreModalFamilyButton_collection_4sncub on FontCollection {\n isVariableFont\n collectionType\n name\n sku {\n ...SKUPrice_sku_4sncub\n id\n }\n parent {\n id\n }\n featureStyle {\n ...FontStyle_fontStyle\n supportedLanguages\n id\n }\n totalStyles\n totalStylesPrice {\n ...Price_price\n }\n ...useTotalStyles_fontCollection\n}\n\nfragment StoreModalFamily_collection_4sncub on FontCollection {\n ...StoreModalFamilyButton_collection_4sncub\n collectionType\n sku {\n id\n }\n isVariableFont\n bundles {\n id\n visibility\n fontStyles {\n id\n cssFamily\n cssWeight\n cssStretch\n ...StoreModalStyleButton_fontStyle_4sncub\n }\n ...StoreModalBundleButton_bundle_4sncub\n }\n fontStyles {\n id\n cssFamily\n cssWeight\n cssStretch\n cssStyle\n ...StoreModalStyleButton_fontStyle_4sncub\n }\n}\n\nfragment StoreModalProductContent_collection_4sncub on Node {\n __isNode: __typename\n ... on FontCollection {\n id\n visibility\n ...StoreModalFamily_collection_4sncub\n ...StoreModalProductLicenseSelection_collection\n children(collectionTypes: [FAMILY]) {\n id\n visibility\n ...StoreModalFamily_collection_4sncub\n }\n }\n id\n}\n\nfragment StoreModalProductLicenseSelection_collection on FontCollection {\n id\n licenses {\n id\n ...StoreModalProductLicense_license\n }\n}\n\nfragment StoreModalProductLicense_license on License {\n id\n url\n name\n description(format: HTML)\n defaultSelected\n excludedLicenses {\n id\n }\n variables: licenseVariables {\n id\n name\n variableType\n ...VariableTableAmounts_variable\n options: licenseOptions {\n id\n name\n amount\n ...VariableTableAmounts_option\n }\n }\n}\n\nfragment StoreModalProductSummary_viewer_4sncub on Viewer {\n settings {\n taxSystem\n stripeTaxSettings {\n taxBehavior\n }\n }\n taxCollections {\n taxName\n inclusive\n }\n orderVariables {\n id\n variableType\n name\n }\n precart(skuIds: [], licenseOptions: $licenseOptions, orderVariables: $orderVariables) {\n skus {\n price(licenseOptions: $licenseOptions, orderVariables: $orderVariables) {\n amount\n }\n product {\n __typename\n ... on FontCollection {\n totalStyles\n totalStylesPrice(licenseOptions: $licenseOptions, orderVariables: $orderVariables) {\n amount\n }\n }\n ... on Bundle {\n totalStyles\n totalStylesPrice(licenseOptions: $licenseOptions, orderVariables: $orderVariables) {\n amount\n }\n }\n ... on CollectionBundle {\n totalStyles\n totalStylesPrice(licenseOptions: $licenseOptions, orderVariables: $orderVariables) {\n amount\n }\n }\n ... on Node {\n __isNode: __typename\n id\n }\n }\n id\n }\n subtotal {\n ...Price_price\n amount\n currency\n }\n }\n}\n\nfragment StoreModalProductViewer_4sncub on Viewer {\n endpoint\n stripeAccountId\n ...OrderVariableSelectionRedux_viewer_2ZguDv\n ...StoreModalProductSummary_viewer_4sncub\n orderVariables {\n id\n variableType\n name\n }\n settings {\n storeModalSelectLicenseeLabel(format: HTML)\n storeModalLicenseeSelfLabel(format: HTML)\n storeModalLicenseeSelfDescription(format: HTML)\n storeModalLicenseeClientLabel(format: HTML)\n storeModalLicenseeClientDescription(format: HTML)\n storeModalSelectOrderVariablesLabel(format: HTML)\n storeModalSelectLicensesLabel(format: HTML)\n storeModalSelectFontsLabel(format: HTML)\n }\n}\n\nfragment StoreModalStyleButton_fontStyle_4sncub on FontStyle {\n id\n name\n supportedLanguages\n variableInstances {\n name\n coordinates {\n axis\n value\n }\n }\n sku {\n ...SKUPrice_sku_4sncub\n id\n }\n ...FontStyle_fontStyle\n}\n\nfragment VariableTableAmounts_option on LicenseOption {\n amounts\n}\n\nfragment VariableTableAmounts_variable on LicenseVariable {\n units\n}\n\nfragment useFontStyle_fontStyle on FontStyle {\n cssFamily\n name\n webfontSources {\n url\n format\n tech\n }\n verticalMetrics {\n unitsPerEm\n ascender\n descender\n lineGap\n avgCharWidth\n }\n}\n\nfragment useTotalStyles_fontCollection on FontCollection {\n isVariableFont\n totalStyles\n children(collectionTypes: [FAMILY]) {\n isVariableFont\n totalStyles\n id\n }\n}\n"
|
|
758
727
|
}
|
|
759
728
|
};
|
|
760
729
|
}();
|
|
761
|
-
node.hash = "
|
|
730
|
+
node.hash = "e3ca6ec04f2df35aa68baf439c70cf42";
|
|
762
731
|
export default node;
|