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
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @generated SignedSource<<53f2ef8fddf9d873b863be8f6810988e>>
|
|
3
|
+
* @lightSyntaxTransform
|
|
4
|
+
* @nogrep
|
|
5
|
+
*/
|
|
6
|
+
import { ReaderFragment } from 'relay-runtime';
|
|
7
|
+
import { FragmentRefs } from "relay-runtime";
|
|
8
|
+
export type StoreModalProductViewer$data = {
|
|
9
|
+
readonly endpoint: string | null;
|
|
10
|
+
readonly orderVariables: ReadonlyArray<{
|
|
11
|
+
readonly id: string;
|
|
12
|
+
readonly name: string;
|
|
13
|
+
readonly variableType: string;
|
|
14
|
+
}> | null;
|
|
15
|
+
readonly settings: {
|
|
16
|
+
readonly storeModalLicenseeClientDescription: string | null;
|
|
17
|
+
readonly storeModalLicenseeClientLabel: string | null;
|
|
18
|
+
readonly storeModalLicenseeSelfDescription: string | null;
|
|
19
|
+
readonly storeModalLicenseeSelfLabel: string | null;
|
|
20
|
+
readonly storeModalSelectFontsLabel: string | null;
|
|
21
|
+
readonly storeModalSelectLicenseeLabel: string | null;
|
|
22
|
+
readonly storeModalSelectLicensesLabel: string | null;
|
|
23
|
+
readonly storeModalSelectOrderVariablesLabel: string | null;
|
|
24
|
+
} | null;
|
|
25
|
+
readonly stripeAccountId: string | null;
|
|
26
|
+
readonly " $fragmentSpreads": FragmentRefs<"OrderVariableSelectionRedux_viewer" | "StoreModalProductSummary_viewer">;
|
|
27
|
+
readonly " $fragmentType": "StoreModalProductViewer";
|
|
28
|
+
};
|
|
29
|
+
export type StoreModalProductViewer$key = {
|
|
30
|
+
readonly " $data"?: StoreModalProductViewer$data;
|
|
31
|
+
readonly " $fragmentSpreads": FragmentRefs<"StoreModalProductViewer">;
|
|
32
|
+
};
|
|
33
|
+
declare const node: ReaderFragment;
|
|
34
|
+
export default node;
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @generated SignedSource<<53f2ef8fddf9d873b863be8f6810988e>>
|
|
3
|
+
* @lightSyntaxTransform
|
|
4
|
+
* @nogrep
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* tslint:disable */
|
|
8
|
+
/* eslint-disable */
|
|
9
|
+
// @ts-nocheck
|
|
10
|
+
|
|
11
|
+
const node = function () {
|
|
12
|
+
var v0 = {
|
|
13
|
+
"kind": "Variable",
|
|
14
|
+
"name": "orderVariables",
|
|
15
|
+
"variableName": "orderVariables"
|
|
16
|
+
},
|
|
17
|
+
v1 = [{
|
|
18
|
+
"kind": "Literal",
|
|
19
|
+
"name": "format",
|
|
20
|
+
"value": "HTML"
|
|
21
|
+
}];
|
|
22
|
+
return {
|
|
23
|
+
"argumentDefinitions": [{
|
|
24
|
+
"defaultValue": null,
|
|
25
|
+
"kind": "LocalArgument",
|
|
26
|
+
"name": "licenseOptions"
|
|
27
|
+
}, {
|
|
28
|
+
"defaultValue": null,
|
|
29
|
+
"kind": "LocalArgument",
|
|
30
|
+
"name": "orderVariables"
|
|
31
|
+
}],
|
|
32
|
+
"kind": "Fragment",
|
|
33
|
+
"metadata": null,
|
|
34
|
+
"name": "StoreModalProductViewer",
|
|
35
|
+
"selections": [{
|
|
36
|
+
"alias": null,
|
|
37
|
+
"args": null,
|
|
38
|
+
"kind": "ScalarField",
|
|
39
|
+
"name": "endpoint",
|
|
40
|
+
"storageKey": null
|
|
41
|
+
}, {
|
|
42
|
+
"alias": null,
|
|
43
|
+
"args": null,
|
|
44
|
+
"kind": "ScalarField",
|
|
45
|
+
"name": "stripeAccountId",
|
|
46
|
+
"storageKey": null
|
|
47
|
+
}, {
|
|
48
|
+
"args": [v0 /*: any*/],
|
|
49
|
+
"kind": "FragmentSpread",
|
|
50
|
+
"name": "OrderVariableSelectionRedux_viewer"
|
|
51
|
+
}, {
|
|
52
|
+
"args": [{
|
|
53
|
+
"kind": "Variable",
|
|
54
|
+
"name": "licenseOptions",
|
|
55
|
+
"variableName": "licenseOptions"
|
|
56
|
+
}, v0 /*: any*/],
|
|
57
|
+
"kind": "FragmentSpread",
|
|
58
|
+
"name": "StoreModalProductSummary_viewer"
|
|
59
|
+
}, {
|
|
60
|
+
"alias": null,
|
|
61
|
+
"args": null,
|
|
62
|
+
"concreteType": "OrderVariable",
|
|
63
|
+
"kind": "LinkedField",
|
|
64
|
+
"name": "orderVariables",
|
|
65
|
+
"plural": true,
|
|
66
|
+
"selections": [{
|
|
67
|
+
"alias": null,
|
|
68
|
+
"args": null,
|
|
69
|
+
"kind": "ScalarField",
|
|
70
|
+
"name": "id",
|
|
71
|
+
"storageKey": null
|
|
72
|
+
}, {
|
|
73
|
+
"alias": null,
|
|
74
|
+
"args": null,
|
|
75
|
+
"kind": "ScalarField",
|
|
76
|
+
"name": "variableType",
|
|
77
|
+
"storageKey": null
|
|
78
|
+
}, {
|
|
79
|
+
"alias": null,
|
|
80
|
+
"args": null,
|
|
81
|
+
"kind": "ScalarField",
|
|
82
|
+
"name": "name",
|
|
83
|
+
"storageKey": null
|
|
84
|
+
}],
|
|
85
|
+
"storageKey": null
|
|
86
|
+
}, {
|
|
87
|
+
"alias": null,
|
|
88
|
+
"args": null,
|
|
89
|
+
"concreteType": "Settings",
|
|
90
|
+
"kind": "LinkedField",
|
|
91
|
+
"name": "settings",
|
|
92
|
+
"plural": false,
|
|
93
|
+
"selections": [{
|
|
94
|
+
"alias": null,
|
|
95
|
+
"args": v1 /*: any*/,
|
|
96
|
+
"kind": "ScalarField",
|
|
97
|
+
"name": "storeModalSelectLicenseeLabel",
|
|
98
|
+
"storageKey": "storeModalSelectLicenseeLabel(format:\"HTML\")"
|
|
99
|
+
}, {
|
|
100
|
+
"alias": null,
|
|
101
|
+
"args": v1 /*: any*/,
|
|
102
|
+
"kind": "ScalarField",
|
|
103
|
+
"name": "storeModalLicenseeSelfLabel",
|
|
104
|
+
"storageKey": "storeModalLicenseeSelfLabel(format:\"HTML\")"
|
|
105
|
+
}, {
|
|
106
|
+
"alias": null,
|
|
107
|
+
"args": v1 /*: any*/,
|
|
108
|
+
"kind": "ScalarField",
|
|
109
|
+
"name": "storeModalLicenseeSelfDescription",
|
|
110
|
+
"storageKey": "storeModalLicenseeSelfDescription(format:\"HTML\")"
|
|
111
|
+
}, {
|
|
112
|
+
"alias": null,
|
|
113
|
+
"args": v1 /*: any*/,
|
|
114
|
+
"kind": "ScalarField",
|
|
115
|
+
"name": "storeModalLicenseeClientLabel",
|
|
116
|
+
"storageKey": "storeModalLicenseeClientLabel(format:\"HTML\")"
|
|
117
|
+
}, {
|
|
118
|
+
"alias": null,
|
|
119
|
+
"args": v1 /*: any*/,
|
|
120
|
+
"kind": "ScalarField",
|
|
121
|
+
"name": "storeModalLicenseeClientDescription",
|
|
122
|
+
"storageKey": "storeModalLicenseeClientDescription(format:\"HTML\")"
|
|
123
|
+
}, {
|
|
124
|
+
"alias": null,
|
|
125
|
+
"args": v1 /*: any*/,
|
|
126
|
+
"kind": "ScalarField",
|
|
127
|
+
"name": "storeModalSelectOrderVariablesLabel",
|
|
128
|
+
"storageKey": "storeModalSelectOrderVariablesLabel(format:\"HTML\")"
|
|
129
|
+
}, {
|
|
130
|
+
"alias": null,
|
|
131
|
+
"args": v1 /*: any*/,
|
|
132
|
+
"kind": "ScalarField",
|
|
133
|
+
"name": "storeModalSelectLicensesLabel",
|
|
134
|
+
"storageKey": "storeModalSelectLicensesLabel(format:\"HTML\")"
|
|
135
|
+
}, {
|
|
136
|
+
"alias": null,
|
|
137
|
+
"args": v1 /*: any*/,
|
|
138
|
+
"kind": "ScalarField",
|
|
139
|
+
"name": "storeModalSelectFontsLabel",
|
|
140
|
+
"storageKey": "storeModalSelectFontsLabel(format:\"HTML\")"
|
|
141
|
+
}],
|
|
142
|
+
"storageKey": null
|
|
143
|
+
}],
|
|
144
|
+
"type": "Viewer",
|
|
145
|
+
"abstractKey": null
|
|
146
|
+
};
|
|
147
|
+
}();
|
|
148
|
+
node.hash = "3d2fc7da461822a44bb26e9b3f1715fb";
|
|
149
|
+
export default node;
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @generated SignedSource<<
|
|
2
|
+
* @generated SignedSource<<e353dbbdbd1df9f59df10265093ec90d>>
|
|
3
3
|
* @lightSyntaxTransform
|
|
4
4
|
* @nogrep
|
|
5
5
|
*/
|
|
6
6
|
import { ConcreteRequest } from 'relay-runtime';
|
|
7
7
|
import { FragmentRefs } from "relay-runtime";
|
|
8
|
+
export type CustomerForm = "CHECKOUT" | "NEWSLETTER" | "TEST_FONTS" | "%future added value";
|
|
8
9
|
export type UpdateCustomerInput = {
|
|
9
10
|
email?: string | null;
|
|
11
|
+
form?: CustomerForm | null;
|
|
10
12
|
name?: string | null;
|
|
11
13
|
newsletterOptIn?: boolean | null;
|
|
12
14
|
recaptchaToken?: string | null;
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @generated SignedSource<<
|
|
2
|
+
* @generated SignedSource<<edcb25c3a566338103f3bf36298dd951>>
|
|
3
3
|
* @lightSyntaxTransform
|
|
4
4
|
* @nogrep
|
|
5
5
|
*/
|
|
6
6
|
import { ConcreteRequest } from 'relay-runtime';
|
|
7
7
|
import { FragmentRefs } from "relay-runtime";
|
|
8
|
+
export type CustomerForm = "CHECKOUT" | "NEWSLETTER" | "TEST_FONTS" | "%future added value";
|
|
8
9
|
export type UpdateCustomerInput = {
|
|
9
10
|
email?: string | null;
|
|
11
|
+
form?: CustomerForm | null;
|
|
10
12
|
name?: string | null;
|
|
11
13
|
newsletterOptIn?: boolean | null;
|
|
12
14
|
recaptchaToken?: string | null;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @generated SignedSource<<
|
|
2
|
+
* @generated SignedSource<<8305cb5372f579f7cc1943ea58d1c6f5>>
|
|
3
3
|
* @lightSyntaxTransform
|
|
4
4
|
* @nogrep
|
|
5
5
|
*/
|
|
@@ -106,10 +106,17 @@ const node = function () {
|
|
|
106
106
|
"alias": null,
|
|
107
107
|
"args": null,
|
|
108
108
|
"kind": "ScalarField",
|
|
109
|
-
"name": "
|
|
109
|
+
"name": "visibility",
|
|
110
110
|
"storageKey": null
|
|
111
111
|
},
|
|
112
112
|
v17 = {
|
|
113
|
+
"alias": null,
|
|
114
|
+
"args": null,
|
|
115
|
+
"kind": "ScalarField",
|
|
116
|
+
"name": "collectionType",
|
|
117
|
+
"storageKey": null
|
|
118
|
+
},
|
|
119
|
+
v18 = {
|
|
113
120
|
"alias": null,
|
|
114
121
|
"args": null,
|
|
115
122
|
"concreteType": "Sku",
|
|
@@ -128,14 +135,14 @@ const node = function () {
|
|
|
128
135
|
}],
|
|
129
136
|
"storageKey": null
|
|
130
137
|
},
|
|
131
|
-
|
|
138
|
+
v19 = {
|
|
132
139
|
"alias": null,
|
|
133
140
|
"args": null,
|
|
134
141
|
"kind": "ScalarField",
|
|
135
142
|
"name": "totalStyles",
|
|
136
143
|
"storageKey": null
|
|
137
144
|
},
|
|
138
|
-
|
|
145
|
+
v20 = {
|
|
139
146
|
"alias": null,
|
|
140
147
|
"args": [v11 /*: any*/],
|
|
141
148
|
"concreteType": "Money",
|
|
@@ -145,14 +152,14 @@ const node = function () {
|
|
|
145
152
|
"selections": v14 /*: any*/,
|
|
146
153
|
"storageKey": "totalStylesPrice(licenseOptions:[])"
|
|
147
154
|
},
|
|
148
|
-
|
|
155
|
+
v21 = {
|
|
149
156
|
"alias": null,
|
|
150
157
|
"args": null,
|
|
151
158
|
"concreteType": "FontCollection",
|
|
152
159
|
"kind": "LinkedField",
|
|
153
160
|
"name": "parent",
|
|
154
161
|
"plural": false,
|
|
155
|
-
"selections": [
|
|
162
|
+
"selections": [v16 /*: any*/, v6 /*: any*/, v7 /*: any*/, v17 /*: any*/, v18 /*: any*/, v19 /*: any*/, v20 /*: any*/],
|
|
156
163
|
"storageKey": null
|
|
157
164
|
};
|
|
158
165
|
return {
|
|
@@ -514,7 +521,7 @@ const node = function () {
|
|
|
514
521
|
"kind": "ScalarField",
|
|
515
522
|
"name": "typeTesterAxes",
|
|
516
523
|
"storageKey": null
|
|
517
|
-
},
|
|
524
|
+
}, v16 /*: any*/, v7 /*: any*/, v17 /*: any*/, v18 /*: any*/, v19 /*: any*/, v20 /*: any*/, v21 /*: any*/, {
|
|
518
525
|
"alias": "families",
|
|
519
526
|
"args": [{
|
|
520
527
|
"kind": "Literal",
|
|
@@ -525,7 +532,7 @@ const node = function () {
|
|
|
525
532
|
"kind": "LinkedField",
|
|
526
533
|
"name": "children",
|
|
527
534
|
"plural": true,
|
|
528
|
-
"selections": [v6 /*: any*/,
|
|
535
|
+
"selections": [v6 /*: any*/, v16 /*: any*/, v7 /*: any*/, v17 /*: any*/, v18 /*: any*/, v19 /*: any*/, v20 /*: any*/, v21 /*: any*/],
|
|
529
536
|
"storageKey": "children(collectionTypes:[\"FAMILY\"])"
|
|
530
537
|
}],
|
|
531
538
|
"type": "FontCollection",
|
|
@@ -535,12 +542,12 @@ const node = function () {
|
|
|
535
542
|
}]
|
|
536
543
|
},
|
|
537
544
|
"params": {
|
|
538
|
-
"cacheID": "
|
|
545
|
+
"cacheID": "3781b49236afa2e5d79e6d59778958e7",
|
|
539
546
|
"id": null,
|
|
540
547
|
"metadata": {},
|
|
541
548
|
"name": "TypeTestersIDQuery",
|
|
542
549
|
"operationKind": "query",
|
|
543
|
-
"text": "query TypeTestersIDQuery(\n $collectionId: ID!\n $tags: [String!]\n $excludeTags: [String!]\n) {\n collection: node(id: $collectionId) {\n __typename\n ...TypeTesters_collection_4Goyz5\n id\n }\n}\n\nfragment FontStyle_fontStyle on FontStyle {\n ...useFontStyle_fontStyle\n}\n\nfragment PriceBarSection_node_3BtHDv on FontCollection {\n id\n name\n collectionType\n sku {\n ...SelectButton_sku_3BtHDv\n id\n priceWithLicenseOptions: price(licenseOptions: [], orderVariables: []) {\n ...Price_price\n }\n }\n totalStyles\n totalStylesPrice(licenseOptions: []) {\n ...Price_price\n }\n}\n\nfragment PriceBar_node_3BtHDv on FontCollection {\n ...PriceBarSection_node_3BtHDv\n parent {\n ...PriceBarSection_node_3BtHDv\n id\n }\n}\n\nfragment Price_price on Money {\n amount\n currency\n}\n\nfragment SKUPrice_sku_3BtHDv on Sku {\n id\n price(licenseOptions: [], orderVariables: []) {\n amount\n ...Price_price\n }\n}\n\nfragment SelectButton_sku_3BtHDv on Sku {\n id\n ...SKUPrice_sku_3BtHDv\n}\n\nfragment TypeTesterFeaturesButton_fontStyle on FontStyle {\n ...useFeaturesData_fontStyle\n}\n\nfragment TypeTesterFeatures_fontStyle on FontStyle {\n ...useFeaturesData_fontStyle\n ...TypeTesterVariableAxes_fontStyle\n}\n\nfragment TypeTesterFloatingToolbar_testers on TypeTester {\n id\n fontStyle {\n ...TypeTesterToolbar_fontStyle\n ...TypeTesterFeatures_fontStyle\n id\n }\n}\n\nfragment TypeTesterStyleSelectData_fontStyle on FontStyle {\n id\n name\n supportedLanguages\n cssWeight\n cssStyle\n cssStretch\n variableInstances {\n name\n coordinates {\n axis\n value\n }\n }\n family {\n id\n name\n }\n}\n\nfragment TypeTesterToolbar_fontStyle on FontStyle {\n ...TypeTesterVariableAxes_fontStyle\n ...TypeTesterFeaturesButton_fontStyle\n}\n\nfragment TypeTesterVariableAxes_fontStyle on FontStyle {\n variableAxes {\n axis\n name\n minValue\n maxValue\n }\n}\n\nfragment TypeTester_fontStyle_3BtHDv on FontStyle {\n id\n ...TypeTesterFeatures_fontStyle\n ...TypeTesterStyleSelectData_fontStyle\n ...FontStyle_fontStyle\n ...TypeTesterVariableAxes_fontStyle\n ...TypeTesterToolbar_fontStyle\n sku {\n ...SelectButton_sku_3BtHDv\n ...SKUPrice_sku_3BtHDv\n id\n basePrice: price {\n amount\n }\n }\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 letterSpacing\n autofit\n direction\n alignment\n fontStyle {\n ...TypeTester_fontStyle_3BtHDv\n id\n family {\n id\n }\n }\n variableSettings {\n axis\n value\n }\n featureSettings {\n feature\n value\n }\n tags\n ...TypeTesterFloatingToolbar_testers\n }\n }\n }\n typeTesterFeatures\n typeTesterAxes\n id\n ...PriceBar_node_3BtHDv\n families: children(collectionTypes: [FAMILY]) {\n id\n ...PriceBar_node_3BtHDv\n }\n parent {\n id\n }\n}\n\nfragment useFeaturesData_fontStyle on FontStyle {\n fontFeatures {\n supportedFeatures\n featureNames {\n tag\n name\n }\n }\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"
|
|
550
|
+
"text": "query TypeTestersIDQuery(\n $collectionId: ID!\n $tags: [String!]\n $excludeTags: [String!]\n) {\n collection: node(id: $collectionId) {\n __typename\n ...TypeTesters_collection_4Goyz5\n id\n }\n}\n\nfragment FontStyle_fontStyle on FontStyle {\n ...useFontStyle_fontStyle\n}\n\nfragment PriceBarSection_node_3BtHDv on FontCollection {\n id\n name\n collectionType\n sku {\n ...SelectButton_sku_3BtHDv\n id\n priceWithLicenseOptions: price(licenseOptions: [], orderVariables: []) {\n ...Price_price\n }\n }\n totalStyles\n totalStylesPrice(licenseOptions: []) {\n ...Price_price\n }\n}\n\nfragment PriceBar_node_3BtHDv on FontCollection {\n visibility\n ...PriceBarSection_node_3BtHDv\n parent {\n visibility\n ...PriceBarSection_node_3BtHDv\n id\n }\n}\n\nfragment Price_price on Money {\n amount\n currency\n}\n\nfragment SKUPrice_sku_3BtHDv on Sku {\n id\n price(licenseOptions: [], orderVariables: []) {\n amount\n ...Price_price\n }\n}\n\nfragment SelectButton_sku_3BtHDv on Sku {\n id\n ...SKUPrice_sku_3BtHDv\n}\n\nfragment TypeTesterFeaturesButton_fontStyle on FontStyle {\n ...useFeaturesData_fontStyle\n}\n\nfragment TypeTesterFeatures_fontStyle on FontStyle {\n ...useFeaturesData_fontStyle\n ...TypeTesterVariableAxes_fontStyle\n}\n\nfragment TypeTesterFloatingToolbar_testers on TypeTester {\n id\n fontStyle {\n ...TypeTesterToolbar_fontStyle\n ...TypeTesterFeatures_fontStyle\n id\n }\n}\n\nfragment TypeTesterStyleSelectData_fontStyle on FontStyle {\n id\n name\n supportedLanguages\n cssWeight\n cssStyle\n cssStretch\n variableInstances {\n name\n coordinates {\n axis\n value\n }\n }\n family {\n id\n name\n }\n}\n\nfragment TypeTesterToolbar_fontStyle on FontStyle {\n ...TypeTesterVariableAxes_fontStyle\n ...TypeTesterFeaturesButton_fontStyle\n}\n\nfragment TypeTesterVariableAxes_fontStyle on FontStyle {\n variableAxes {\n axis\n name\n minValue\n maxValue\n }\n}\n\nfragment TypeTester_fontStyle_3BtHDv on FontStyle {\n id\n ...TypeTesterFeatures_fontStyle\n ...TypeTesterStyleSelectData_fontStyle\n ...FontStyle_fontStyle\n ...TypeTesterVariableAxes_fontStyle\n ...TypeTesterToolbar_fontStyle\n sku {\n ...SelectButton_sku_3BtHDv\n ...SKUPrice_sku_3BtHDv\n id\n basePrice: price {\n amount\n }\n }\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 letterSpacing\n autofit\n direction\n alignment\n fontStyle {\n ...TypeTester_fontStyle_3BtHDv\n id\n family {\n id\n }\n }\n variableSettings {\n axis\n value\n }\n featureSettings {\n feature\n value\n }\n tags\n ...TypeTesterFloatingToolbar_testers\n }\n }\n }\n typeTesterFeatures\n typeTesterAxes\n id\n ...PriceBar_node_3BtHDv\n families: children(collectionTypes: [FAMILY]) {\n id\n ...PriceBar_node_3BtHDv\n }\n parent {\n id\n }\n}\n\nfragment useFeaturesData_fontStyle on FontStyle {\n fontFeatures {\n supportedFeatures\n featureNames {\n tag\n name\n }\n }\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"
|
|
544
551
|
}
|
|
545
552
|
};
|
|
546
553
|
}();
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @generated SignedSource<<
|
|
2
|
+
* @generated SignedSource<<551f97bb5081048350ef9a1cf9c4dad2>>
|
|
3
3
|
* @lightSyntaxTransform
|
|
4
4
|
* @nogrep
|
|
5
5
|
*/
|
|
@@ -117,10 +117,17 @@ const node = function () {
|
|
|
117
117
|
"alias": null,
|
|
118
118
|
"args": null,
|
|
119
119
|
"kind": "ScalarField",
|
|
120
|
-
"name": "
|
|
120
|
+
"name": "visibility",
|
|
121
121
|
"storageKey": null
|
|
122
122
|
},
|
|
123
123
|
v20 = {
|
|
124
|
+
"alias": null,
|
|
125
|
+
"args": null,
|
|
126
|
+
"kind": "ScalarField",
|
|
127
|
+
"name": "collectionType",
|
|
128
|
+
"storageKey": null
|
|
129
|
+
},
|
|
130
|
+
v21 = {
|
|
124
131
|
"alias": null,
|
|
125
132
|
"args": null,
|
|
126
133
|
"concreteType": "Sku",
|
|
@@ -139,14 +146,14 @@ const node = function () {
|
|
|
139
146
|
}],
|
|
140
147
|
"storageKey": null
|
|
141
148
|
},
|
|
142
|
-
|
|
149
|
+
v22 = {
|
|
143
150
|
"alias": null,
|
|
144
151
|
"args": null,
|
|
145
152
|
"kind": "ScalarField",
|
|
146
153
|
"name": "totalStyles",
|
|
147
154
|
"storageKey": null
|
|
148
155
|
},
|
|
149
|
-
|
|
156
|
+
v23 = {
|
|
150
157
|
"alias": null,
|
|
151
158
|
"args": [v7 /*: any*/],
|
|
152
159
|
"concreteType": "Money",
|
|
@@ -156,14 +163,14 @@ const node = function () {
|
|
|
156
163
|
"selections": v17 /*: any*/,
|
|
157
164
|
"storageKey": null
|
|
158
165
|
},
|
|
159
|
-
|
|
166
|
+
v24 = {
|
|
160
167
|
"alias": null,
|
|
161
168
|
"args": null,
|
|
162
169
|
"concreteType": "FontCollection",
|
|
163
170
|
"kind": "LinkedField",
|
|
164
171
|
"name": "parent",
|
|
165
172
|
"plural": false,
|
|
166
|
-
"selections": [
|
|
173
|
+
"selections": [v19 /*: any*/, v10 /*: any*/, v11 /*: any*/, v20 /*: any*/, v21 /*: any*/, v22 /*: any*/, v23 /*: any*/],
|
|
167
174
|
"storageKey": null
|
|
168
175
|
};
|
|
169
176
|
return {
|
|
@@ -525,7 +532,7 @@ const node = function () {
|
|
|
525
532
|
"kind": "ScalarField",
|
|
526
533
|
"name": "typeTesterAxes",
|
|
527
534
|
"storageKey": null
|
|
528
|
-
},
|
|
535
|
+
}, v19 /*: any*/, v11 /*: any*/, v20 /*: any*/, v21 /*: any*/, v22 /*: any*/, v23 /*: any*/, v24 /*: any*/, {
|
|
529
536
|
"alias": "families",
|
|
530
537
|
"args": [{
|
|
531
538
|
"kind": "Literal",
|
|
@@ -536,7 +543,7 @@ const node = function () {
|
|
|
536
543
|
"kind": "LinkedField",
|
|
537
544
|
"name": "children",
|
|
538
545
|
"plural": true,
|
|
539
|
-
"selections": [v10 /*: any*/,
|
|
546
|
+
"selections": [v10 /*: any*/, v19 /*: any*/, v11 /*: any*/, v20 /*: any*/, v21 /*: any*/, v22 /*: any*/, v23 /*: any*/, v24 /*: any*/],
|
|
540
547
|
"storageKey": "children(collectionTypes:[\"FAMILY\"])"
|
|
541
548
|
}],
|
|
542
549
|
"type": "FontCollection",
|
|
@@ -546,12 +553,12 @@ const node = function () {
|
|
|
546
553
|
}]
|
|
547
554
|
},
|
|
548
555
|
"params": {
|
|
549
|
-
"cacheID": "
|
|
556
|
+
"cacheID": "22e26258e779ba680a78b474f7514a87",
|
|
550
557
|
"id": null,
|
|
551
558
|
"metadata": {},
|
|
552
559
|
"name": "TypeTestersRefetchQuery",
|
|
553
560
|
"operationKind": "query",
|
|
554
|
-
"text": "query TypeTestersRefetchQuery(\n $excludeTags: [String!] = null\n $licenseOptions: [LicenseOptionsSpec] = []\n $orderVariables: [OrderVariableSelectionInput!] = []\n $tags: [String!] = null\n $id: ID!\n) {\n node(id: $id) {\n __typename\n ...TypeTesters_collection_32it0Z\n id\n }\n}\n\nfragment FontStyle_fontStyle on FontStyle {\n ...useFontStyle_fontStyle\n}\n\nfragment PriceBarSection_node_4sncub on FontCollection {\n id\n name\n collectionType\n sku {\n ...SelectButton_sku_4sncub\n id\n priceWithLicenseOptions: price(licenseOptions: $licenseOptions, orderVariables: $orderVariables) {\n ...Price_price\n }\n }\n totalStyles\n totalStylesPrice(licenseOptions: $licenseOptions) {\n ...Price_price\n }\n}\n\nfragment PriceBar_node_4sncub on FontCollection {\n ...PriceBarSection_node_4sncub\n parent {\n ...PriceBarSection_node_4sncub\n id\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 SelectButton_sku_4sncub on Sku {\n id\n ...SKUPrice_sku_4sncub\n}\n\nfragment TypeTesterFeaturesButton_fontStyle on FontStyle {\n ...useFeaturesData_fontStyle\n}\n\nfragment TypeTesterFeatures_fontStyle on FontStyle {\n ...useFeaturesData_fontStyle\n ...TypeTesterVariableAxes_fontStyle\n}\n\nfragment TypeTesterFloatingToolbar_testers on TypeTester {\n id\n fontStyle {\n ...TypeTesterToolbar_fontStyle\n ...TypeTesterFeatures_fontStyle\n id\n }\n}\n\nfragment TypeTesterStyleSelectData_fontStyle on FontStyle {\n id\n name\n supportedLanguages\n cssWeight\n cssStyle\n cssStretch\n variableInstances {\n name\n coordinates {\n axis\n value\n }\n }\n family {\n id\n name\n }\n}\n\nfragment TypeTesterToolbar_fontStyle on FontStyle {\n ...TypeTesterVariableAxes_fontStyle\n ...TypeTesterFeaturesButton_fontStyle\n}\n\nfragment TypeTesterVariableAxes_fontStyle on FontStyle {\n variableAxes {\n axis\n name\n minValue\n maxValue\n }\n}\n\nfragment TypeTester_fontStyle_4sncub on FontStyle {\n id\n ...TypeTesterFeatures_fontStyle\n ...TypeTesterStyleSelectData_fontStyle\n ...FontStyle_fontStyle\n ...TypeTesterVariableAxes_fontStyle\n ...TypeTesterToolbar_fontStyle\n sku {\n ...SelectButton_sku_4sncub\n ...SKUPrice_sku_4sncub\n id\n basePrice: price {\n amount\n }\n }\n}\n\nfragment TypeTesters_collection_32it0Z on FontCollection {\n typeTesters(first: 999, tags: $tags, excludeTags: $excludeTags) {\n edges {\n node {\n id\n content\n size\n lineHeight\n letterSpacing\n autofit\n direction\n alignment\n fontStyle {\n ...TypeTester_fontStyle_4sncub\n id\n family {\n id\n }\n }\n variableSettings {\n axis\n value\n }\n featureSettings {\n feature\n value\n }\n tags\n ...TypeTesterFloatingToolbar_testers\n }\n }\n }\n typeTesterFeatures\n typeTesterAxes\n id\n ...PriceBar_node_4sncub\n families: children(collectionTypes: [FAMILY]) {\n id\n ...PriceBar_node_4sncub\n }\n parent {\n id\n }\n}\n\nfragment useFeaturesData_fontStyle on FontStyle {\n fontFeatures {\n supportedFeatures\n featureNames {\n tag\n name\n }\n }\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"
|
|
561
|
+
"text": "query TypeTestersRefetchQuery(\n $excludeTags: [String!] = null\n $licenseOptions: [LicenseOptionsSpec] = []\n $orderVariables: [OrderVariableSelectionInput!] = []\n $tags: [String!] = null\n $id: ID!\n) {\n node(id: $id) {\n __typename\n ...TypeTesters_collection_32it0Z\n id\n }\n}\n\nfragment FontStyle_fontStyle on FontStyle {\n ...useFontStyle_fontStyle\n}\n\nfragment PriceBarSection_node_4sncub on FontCollection {\n id\n name\n collectionType\n sku {\n ...SelectButton_sku_4sncub\n id\n priceWithLicenseOptions: price(licenseOptions: $licenseOptions, orderVariables: $orderVariables) {\n ...Price_price\n }\n }\n totalStyles\n totalStylesPrice(licenseOptions: $licenseOptions) {\n ...Price_price\n }\n}\n\nfragment PriceBar_node_4sncub on FontCollection {\n visibility\n ...PriceBarSection_node_4sncub\n parent {\n visibility\n ...PriceBarSection_node_4sncub\n id\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 SelectButton_sku_4sncub on Sku {\n id\n ...SKUPrice_sku_4sncub\n}\n\nfragment TypeTesterFeaturesButton_fontStyle on FontStyle {\n ...useFeaturesData_fontStyle\n}\n\nfragment TypeTesterFeatures_fontStyle on FontStyle {\n ...useFeaturesData_fontStyle\n ...TypeTesterVariableAxes_fontStyle\n}\n\nfragment TypeTesterFloatingToolbar_testers on TypeTester {\n id\n fontStyle {\n ...TypeTesterToolbar_fontStyle\n ...TypeTesterFeatures_fontStyle\n id\n }\n}\n\nfragment TypeTesterStyleSelectData_fontStyle on FontStyle {\n id\n name\n supportedLanguages\n cssWeight\n cssStyle\n cssStretch\n variableInstances {\n name\n coordinates {\n axis\n value\n }\n }\n family {\n id\n name\n }\n}\n\nfragment TypeTesterToolbar_fontStyle on FontStyle {\n ...TypeTesterVariableAxes_fontStyle\n ...TypeTesterFeaturesButton_fontStyle\n}\n\nfragment TypeTesterVariableAxes_fontStyle on FontStyle {\n variableAxes {\n axis\n name\n minValue\n maxValue\n }\n}\n\nfragment TypeTester_fontStyle_4sncub on FontStyle {\n id\n ...TypeTesterFeatures_fontStyle\n ...TypeTesterStyleSelectData_fontStyle\n ...FontStyle_fontStyle\n ...TypeTesterVariableAxes_fontStyle\n ...TypeTesterToolbar_fontStyle\n sku {\n ...SelectButton_sku_4sncub\n ...SKUPrice_sku_4sncub\n id\n basePrice: price {\n amount\n }\n }\n}\n\nfragment TypeTesters_collection_32it0Z on FontCollection {\n typeTesters(first: 999, tags: $tags, excludeTags: $excludeTags) {\n edges {\n node {\n id\n content\n size\n lineHeight\n letterSpacing\n autofit\n direction\n alignment\n fontStyle {\n ...TypeTester_fontStyle_4sncub\n id\n family {\n id\n }\n }\n variableSettings {\n axis\n value\n }\n featureSettings {\n feature\n value\n }\n tags\n ...TypeTesterFloatingToolbar_testers\n }\n }\n }\n typeTesterFeatures\n typeTesterAxes\n id\n ...PriceBar_node_4sncub\n families: children(collectionTypes: [FAMILY]) {\n id\n ...PriceBar_node_4sncub\n }\n parent {\n id\n }\n}\n\nfragment useFeaturesData_fontStyle on FontStyle {\n fontFeatures {\n supportedFeatures\n featureNames {\n tag\n name\n }\n }\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"
|
|
555
562
|
}
|
|
556
563
|
};
|
|
557
564
|
}();
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @generated SignedSource<<
|
|
2
|
+
* @generated SignedSource<<74bc65deb2919fbc5b30f5c4cc2d0352>>
|
|
3
3
|
* @lightSyntaxTransform
|
|
4
4
|
* @nogrep
|
|
5
5
|
*/
|
|
@@ -106,10 +106,17 @@ const node = function () {
|
|
|
106
106
|
"alias": null,
|
|
107
107
|
"args": null,
|
|
108
108
|
"kind": "ScalarField",
|
|
109
|
-
"name": "
|
|
109
|
+
"name": "visibility",
|
|
110
110
|
"storageKey": null
|
|
111
111
|
},
|
|
112
112
|
v17 = {
|
|
113
|
+
"alias": null,
|
|
114
|
+
"args": null,
|
|
115
|
+
"kind": "ScalarField",
|
|
116
|
+
"name": "collectionType",
|
|
117
|
+
"storageKey": null
|
|
118
|
+
},
|
|
119
|
+
v18 = {
|
|
113
120
|
"alias": null,
|
|
114
121
|
"args": null,
|
|
115
122
|
"concreteType": "Sku",
|
|
@@ -128,14 +135,14 @@ const node = function () {
|
|
|
128
135
|
}],
|
|
129
136
|
"storageKey": null
|
|
130
137
|
},
|
|
131
|
-
|
|
138
|
+
v19 = {
|
|
132
139
|
"alias": null,
|
|
133
140
|
"args": null,
|
|
134
141
|
"kind": "ScalarField",
|
|
135
142
|
"name": "totalStyles",
|
|
136
143
|
"storageKey": null
|
|
137
144
|
},
|
|
138
|
-
|
|
145
|
+
v20 = {
|
|
139
146
|
"alias": null,
|
|
140
147
|
"args": [v11 /*: any*/],
|
|
141
148
|
"concreteType": "Money",
|
|
@@ -145,14 +152,14 @@ const node = function () {
|
|
|
145
152
|
"selections": v14 /*: any*/,
|
|
146
153
|
"storageKey": "totalStylesPrice(licenseOptions:[])"
|
|
147
154
|
},
|
|
148
|
-
|
|
155
|
+
v21 = {
|
|
149
156
|
"alias": null,
|
|
150
157
|
"args": null,
|
|
151
158
|
"concreteType": "FontCollection",
|
|
152
159
|
"kind": "LinkedField",
|
|
153
160
|
"name": "parent",
|
|
154
161
|
"plural": false,
|
|
155
|
-
"selections": [
|
|
162
|
+
"selections": [v16 /*: any*/, v6 /*: any*/, v7 /*: any*/, v17 /*: any*/, v18 /*: any*/, v19 /*: any*/, v20 /*: any*/],
|
|
156
163
|
"storageKey": null
|
|
157
164
|
};
|
|
158
165
|
return {
|
|
@@ -538,7 +545,7 @@ const node = function () {
|
|
|
538
545
|
"kind": "ScalarField",
|
|
539
546
|
"name": "typeTesterAxes",
|
|
540
547
|
"storageKey": null
|
|
541
|
-
}, v6 /*: any*/,
|
|
548
|
+
}, v6 /*: any*/, v16 /*: any*/, v7 /*: any*/, v17 /*: any*/, v18 /*: any*/, v19 /*: any*/, v20 /*: any*/, v21 /*: any*/, {
|
|
542
549
|
"alias": "families",
|
|
543
550
|
"args": [{
|
|
544
551
|
"kind": "Literal",
|
|
@@ -549,7 +556,7 @@ const node = function () {
|
|
|
549
556
|
"kind": "LinkedField",
|
|
550
557
|
"name": "children",
|
|
551
558
|
"plural": true,
|
|
552
|
-
"selections": [v6 /*: any*/,
|
|
559
|
+
"selections": [v6 /*: any*/, v16 /*: any*/, v7 /*: any*/, v17 /*: any*/, v18 /*: any*/, v19 /*: any*/, v20 /*: any*/, v21 /*: any*/],
|
|
553
560
|
"storageKey": "children(collectionTypes:[\"FAMILY\"])"
|
|
554
561
|
}],
|
|
555
562
|
"storageKey": null
|
|
@@ -560,12 +567,12 @@ const node = function () {
|
|
|
560
567
|
}]
|
|
561
568
|
},
|
|
562
569
|
"params": {
|
|
563
|
-
"cacheID": "
|
|
570
|
+
"cacheID": "ecdebd386c7e92ffc4f1be6c9fca2502",
|
|
564
571
|
"id": null,
|
|
565
572
|
"metadata": {},
|
|
566
573
|
"name": "TypeTestersSlugQuery",
|
|
567
574
|
"operationKind": "query",
|
|
568
|
-
"text": "query TypeTestersSlugQuery(\n $collectionSlug: String!\n $tags: [String!]\n $excludeTags: [String!]\n) {\n viewer {\n slug(name: $collectionSlug) {\n collection: fontCollection {\n ...TypeTesters_collection_4Goyz5\n id\n }\n id\n }\n id\n }\n}\n\nfragment FontStyle_fontStyle on FontStyle {\n ...useFontStyle_fontStyle\n}\n\nfragment PriceBarSection_node_3BtHDv on FontCollection {\n id\n name\n collectionType\n sku {\n ...SelectButton_sku_3BtHDv\n id\n priceWithLicenseOptions: price(licenseOptions: [], orderVariables: []) {\n ...Price_price\n }\n }\n totalStyles\n totalStylesPrice(licenseOptions: []) {\n ...Price_price\n }\n}\n\nfragment PriceBar_node_3BtHDv on FontCollection {\n ...PriceBarSection_node_3BtHDv\n parent {\n ...PriceBarSection_node_3BtHDv\n id\n }\n}\n\nfragment Price_price on Money {\n amount\n currency\n}\n\nfragment SKUPrice_sku_3BtHDv on Sku {\n id\n price(licenseOptions: [], orderVariables: []) {\n amount\n ...Price_price\n }\n}\n\nfragment SelectButton_sku_3BtHDv on Sku {\n id\n ...SKUPrice_sku_3BtHDv\n}\n\nfragment TypeTesterFeaturesButton_fontStyle on FontStyle {\n ...useFeaturesData_fontStyle\n}\n\nfragment TypeTesterFeatures_fontStyle on FontStyle {\n ...useFeaturesData_fontStyle\n ...TypeTesterVariableAxes_fontStyle\n}\n\nfragment TypeTesterFloatingToolbar_testers on TypeTester {\n id\n fontStyle {\n ...TypeTesterToolbar_fontStyle\n ...TypeTesterFeatures_fontStyle\n id\n }\n}\n\nfragment TypeTesterStyleSelectData_fontStyle on FontStyle {\n id\n name\n supportedLanguages\n cssWeight\n cssStyle\n cssStretch\n variableInstances {\n name\n coordinates {\n axis\n value\n }\n }\n family {\n id\n name\n }\n}\n\nfragment TypeTesterToolbar_fontStyle on FontStyle {\n ...TypeTesterVariableAxes_fontStyle\n ...TypeTesterFeaturesButton_fontStyle\n}\n\nfragment TypeTesterVariableAxes_fontStyle on FontStyle {\n variableAxes {\n axis\n name\n minValue\n maxValue\n }\n}\n\nfragment TypeTester_fontStyle_3BtHDv on FontStyle {\n id\n ...TypeTesterFeatures_fontStyle\n ...TypeTesterStyleSelectData_fontStyle\n ...FontStyle_fontStyle\n ...TypeTesterVariableAxes_fontStyle\n ...TypeTesterToolbar_fontStyle\n sku {\n ...SelectButton_sku_3BtHDv\n ...SKUPrice_sku_3BtHDv\n id\n basePrice: price {\n amount\n }\n }\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 letterSpacing\n autofit\n direction\n alignment\n fontStyle {\n ...TypeTester_fontStyle_3BtHDv\n id\n family {\n id\n }\n }\n variableSettings {\n axis\n value\n }\n featureSettings {\n feature\n value\n }\n tags\n ...TypeTesterFloatingToolbar_testers\n }\n }\n }\n typeTesterFeatures\n typeTesterAxes\n id\n ...PriceBar_node_3BtHDv\n families: children(collectionTypes: [FAMILY]) {\n id\n ...PriceBar_node_3BtHDv\n }\n parent {\n id\n }\n}\n\nfragment useFeaturesData_fontStyle on FontStyle {\n fontFeatures {\n supportedFeatures\n featureNames {\n tag\n name\n }\n }\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"
|
|
575
|
+
"text": "query TypeTestersSlugQuery(\n $collectionSlug: String!\n $tags: [String!]\n $excludeTags: [String!]\n) {\n viewer {\n slug(name: $collectionSlug) {\n collection: fontCollection {\n ...TypeTesters_collection_4Goyz5\n id\n }\n id\n }\n id\n }\n}\n\nfragment FontStyle_fontStyle on FontStyle {\n ...useFontStyle_fontStyle\n}\n\nfragment PriceBarSection_node_3BtHDv on FontCollection {\n id\n name\n collectionType\n sku {\n ...SelectButton_sku_3BtHDv\n id\n priceWithLicenseOptions: price(licenseOptions: [], orderVariables: []) {\n ...Price_price\n }\n }\n totalStyles\n totalStylesPrice(licenseOptions: []) {\n ...Price_price\n }\n}\n\nfragment PriceBar_node_3BtHDv on FontCollection {\n visibility\n ...PriceBarSection_node_3BtHDv\n parent {\n visibility\n ...PriceBarSection_node_3BtHDv\n id\n }\n}\n\nfragment Price_price on Money {\n amount\n currency\n}\n\nfragment SKUPrice_sku_3BtHDv on Sku {\n id\n price(licenseOptions: [], orderVariables: []) {\n amount\n ...Price_price\n }\n}\n\nfragment SelectButton_sku_3BtHDv on Sku {\n id\n ...SKUPrice_sku_3BtHDv\n}\n\nfragment TypeTesterFeaturesButton_fontStyle on FontStyle {\n ...useFeaturesData_fontStyle\n}\n\nfragment TypeTesterFeatures_fontStyle on FontStyle {\n ...useFeaturesData_fontStyle\n ...TypeTesterVariableAxes_fontStyle\n}\n\nfragment TypeTesterFloatingToolbar_testers on TypeTester {\n id\n fontStyle {\n ...TypeTesterToolbar_fontStyle\n ...TypeTesterFeatures_fontStyle\n id\n }\n}\n\nfragment TypeTesterStyleSelectData_fontStyle on FontStyle {\n id\n name\n supportedLanguages\n cssWeight\n cssStyle\n cssStretch\n variableInstances {\n name\n coordinates {\n axis\n value\n }\n }\n family {\n id\n name\n }\n}\n\nfragment TypeTesterToolbar_fontStyle on FontStyle {\n ...TypeTesterVariableAxes_fontStyle\n ...TypeTesterFeaturesButton_fontStyle\n}\n\nfragment TypeTesterVariableAxes_fontStyle on FontStyle {\n variableAxes {\n axis\n name\n minValue\n maxValue\n }\n}\n\nfragment TypeTester_fontStyle_3BtHDv on FontStyle {\n id\n ...TypeTesterFeatures_fontStyle\n ...TypeTesterStyleSelectData_fontStyle\n ...FontStyle_fontStyle\n ...TypeTesterVariableAxes_fontStyle\n ...TypeTesterToolbar_fontStyle\n sku {\n ...SelectButton_sku_3BtHDv\n ...SKUPrice_sku_3BtHDv\n id\n basePrice: price {\n amount\n }\n }\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 letterSpacing\n autofit\n direction\n alignment\n fontStyle {\n ...TypeTester_fontStyle_3BtHDv\n id\n family {\n id\n }\n }\n variableSettings {\n axis\n value\n }\n featureSettings {\n feature\n value\n }\n tags\n ...TypeTesterFloatingToolbar_testers\n }\n }\n }\n typeTesterFeatures\n typeTesterAxes\n id\n ...PriceBar_node_3BtHDv\n families: children(collectionTypes: [FAMILY]) {\n id\n ...PriceBar_node_3BtHDv\n }\n parent {\n id\n }\n}\n\nfragment useFeaturesData_fontStyle on FontStyle {\n fontFeatures {\n supportedFeatures\n featureNames {\n tag\n name\n }\n }\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"
|
|
569
576
|
}
|
|
570
577
|
};
|
|
571
578
|
}();
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @generated SignedSource<<9ae3ba7e6860093c0576aa023d6951d2>>
|
|
3
|
+
* @lightSyntaxTransform
|
|
4
|
+
* @nogrep
|
|
5
|
+
*/
|
|
6
|
+
import { ConcreteRequest } from 'relay-runtime';
|
|
7
|
+
export type StorefrontEvent = "PAYMENT_INFO_ENTERED" | "PRODUCT_CUSTOMIZED" | "PRODUCT_VIEWED" | "%future added value";
|
|
8
|
+
export type TrackStorefrontEventInput = {
|
|
9
|
+
collectionId?: string | null;
|
|
10
|
+
event: StorefrontEvent;
|
|
11
|
+
licenseSelections?: ReadonlyArray<LicenseSelectionInput> | null;
|
|
12
|
+
tracking?: OrderTrackingInput | null;
|
|
13
|
+
};
|
|
14
|
+
export type LicenseSelectionInput = {
|
|
15
|
+
id?: string | null;
|
|
16
|
+
licenseId: string;
|
|
17
|
+
licenseOptionId?: string | null;
|
|
18
|
+
licenseVariableId?: string | null;
|
|
19
|
+
variableText?: string | null;
|
|
20
|
+
};
|
|
21
|
+
export type OrderTrackingInput = {
|
|
22
|
+
analyticsConsent?: boolean | null;
|
|
23
|
+
anonymousId?: string | null;
|
|
24
|
+
fbc?: string | null;
|
|
25
|
+
fbp?: string | null;
|
|
26
|
+
url?: string | null;
|
|
27
|
+
};
|
|
28
|
+
export type storefrontEventsTrackStorefrontEventMutation$variables = {
|
|
29
|
+
input: TrackStorefrontEventInput;
|
|
30
|
+
};
|
|
31
|
+
export type storefrontEventsTrackStorefrontEventMutation$data = {
|
|
32
|
+
readonly trackStorefrontEvent: {
|
|
33
|
+
readonly success: boolean;
|
|
34
|
+
} | null;
|
|
35
|
+
};
|
|
36
|
+
export type storefrontEventsTrackStorefrontEventMutation = {
|
|
37
|
+
response: storefrontEventsTrackStorefrontEventMutation$data;
|
|
38
|
+
variables: storefrontEventsTrackStorefrontEventMutation$variables;
|
|
39
|
+
};
|
|
40
|
+
declare const node: ConcreteRequest;
|
|
41
|
+
export default node;
|