fontdue-js 1.3.1 → 1.4.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.
Files changed (27) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/dist/__generated__/StoreModalFamily_collection.graphql.d.ts +4 -0
  3. package/dist/__generated__/StoreModalFamily_collection.graphql.js +18 -1
  4. package/dist/__generated__/StoreModalProductQuery.graphql.js +7 -2
  5. package/dist/__generated__/StoreModalStyleButton_fontStyle.graphql.d.ts +1 -0
  6. package/dist/__generated__/StoreModalStyleButton_fontStyle.graphql.js +35 -27
  7. package/dist/__generated__/productState_Query.graphql.d.ts +4 -0
  8. package/dist/__generated__/productState_Query.graphql.js +29 -78
  9. package/dist/__generated__/productState_bundle.graphql.d.ts +1 -0
  10. package/dist/__generated__/productState_bundle.graphql.js +4 -2
  11. package/dist/__generated__/productState_collection.graphql.d.ts +2 -0
  12. package/dist/__generated__/productState_collection.graphql.js +4 -2
  13. package/dist/__generated__/productState_node.graphql.d.ts +4 -0
  14. package/dist/__generated__/productState_node.graphql.js +3 -1
  15. package/dist/components/Root/productState.d.ts +1 -0
  16. package/dist/components/Root/productState.js +9 -2
  17. package/dist/components/StoreModal/StoreModalFamily.js +5 -4
  18. package/dist/components/StoreModal/StoreModalFamilyButton.js +1 -1
  19. package/dist/components/StoreModal/StoreModalStyleButton.js +5 -6
  20. package/dist/components/elements/StoreModalFamilyButton/index.js +2 -4
  21. package/dist/components/elements/StoreModalStyleButton/index.d.ts +1 -1
  22. package/dist/components/elements/StoreModalStyleButton/index.js +3 -3
  23. package/dist/utils.d.ts +2 -2
  24. package/dist/utils.js +5 -5
  25. package/fontdue.css +22 -11
  26. package/fontdue.css.map +1 -1
  27. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## 1.4.0
2
+
3
+ - StoreModal precart improvements
4
+ - show styles that don't have a price (since they'll be included with collection purchase)
5
+ - show collections as non-clickable headers when they don't have a price
6
+
7
+ ## 1.3.1
8
+
9
+ - Adjusts StoreModal layouts
10
+
1
11
  ## 1.3.0
2
12
 
3
13
  - Improved responsive layouts in the StoreModal
@@ -2,6 +2,10 @@ import { ReaderFragment } from "relay-runtime";
2
2
  import { FragmentRefs } from "relay-runtime";
3
3
  export declare type StoreModalFamily_collection = {
4
4
  readonly cssUrl: string | null;
5
+ readonly collectionType: string;
6
+ readonly sku: {
7
+ readonly id: string;
8
+ } | null;
5
9
  readonly bundles: ReadonlyArray<{
6
10
  readonly id: string;
7
11
  readonly fontStyles: ReadonlyArray<{
@@ -62,6 +62,23 @@ const node = function () {
62
62
  "kind": "ScalarField",
63
63
  "name": "cssUrl",
64
64
  "storageKey": null
65
+ }, {
66
+ "alias": null,
67
+ "args": null,
68
+ "kind": "ScalarField",
69
+ "name": "collectionType",
70
+ "storageKey": null
71
+ }, {
72
+ "alias": null,
73
+ "args": null,
74
+ "concreteType": "Sku",
75
+ "kind": "LinkedField",
76
+ "name": "sku",
77
+ "plural": false,
78
+ "selections": [v0
79
+ /*: any*/
80
+ ],
81
+ "storageKey": null
65
82
  }, {
66
83
  "alias": null,
67
84
  "args": null,
@@ -91,6 +108,6 @@ const node = function () {
91
108
  };
92
109
  }();
93
110
 
94
- node.hash = '0164fb7c07ce4174350e6a463723910e';
111
+ node.hash = 'ba6def0c7ad16af4a476e64ef4e1dcca';
95
112
  var _default = node;
96
113
  exports.default = _default;
@@ -85,6 +85,10 @@ fragment StoreModalFamilyButton_collection on FontCollection {
85
85
  fragment StoreModalFamily_collection on FontCollection {
86
86
  ...StoreModalFamilyButton_collection
87
87
  cssUrl
88
+ collectionType
89
+ sku {
90
+ id
91
+ }
88
92
  bundles {
89
93
  id
90
94
  fontStyles {
@@ -167,6 +171,7 @@ fragment StoreModalProductSummary_viewer on Viewer {
167
171
  }
168
172
 
169
173
  fragment StoreModalStyleButton_fontStyle on FontStyle {
174
+ id
170
175
  name
171
176
  sku {
172
177
  ...SKUPrice_sku
@@ -729,12 +734,12 @@ const node = function () {
729
734
  }]
730
735
  },
731
736
  "params": {
732
- "cacheID": "a57271e1ee37755b82a0e5fce9311b92",
737
+ "cacheID": "aded364bd29800c32be6e43a6caa779f",
733
738
  "id": null,
734
739
  "metadata": {},
735
740
  "name": "StoreModalProductQuery",
736
741
  "operationKind": "query",
737
- "text": "query StoreModalProductQuery(\n $productId: ID!\n) {\n collection: node(id: $productId) {\n __typename\n id\n ...StoreModalFamily_collection\n ... on FontCollection {\n children(collectionTypes: [FAMILY]) {\n id\n ...StoreModalFamily_collection\n }\n }\n }\n viewer {\n ...StoreModalProductLicenseSelection_viewer\n ...StoreModalProductSummary_viewer\n id\n }\n}\n\nfragment FontStyle_fontStyle on FontStyle {\n cssFamily\n name\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 StoreModalBundleButton_bundle on Bundle {\n name\n sku {\n ...SKUPrice_sku\n id\n }\n fontStyles {\n id\n ...FontStyle_fontStyle\n }\n}\n\nfragment StoreModalFamilyButton_collection on FontCollection {\n collectionType\n name\n sku {\n ...SKUPrice_sku\n id\n }\n parent {\n id\n }\n featureStyle {\n ...FontStyle_fontStyle\n id\n }\n totalStyles\n totalStylesPrice {\n ...Price_price\n }\n}\n\nfragment StoreModalFamily_collection on FontCollection {\n ...StoreModalFamilyButton_collection\n cssUrl\n bundles {\n id\n fontStyles {\n id\n cssFamily\n cssWeight\n cssStretch\n ...StoreModalStyleButton_fontStyle\n }\n ...StoreModalBundleButton_bundle\n }\n fontStyles {\n id\n cssFamily\n cssWeight\n cssStretch\n ...StoreModalStyleButton_fontStyle\n }\n}\n\nfragment StoreModalProductLicenseSelection_viewer on Viewer {\n licenses(licenseTypes: [RETAIL]) {\n id\n ...StoreModalProductLicense_license\n }\n}\n\nfragment StoreModalProductLicense_license on License {\n id\n url\n name\n defaultSelected\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 on Viewer {\n precart(skuIds: [], licenseOptions: []) {\n skus {\n price(licenseOptions: []) {\n amount\n }\n product {\n __typename\n ... on FontCollection {\n totalStyles\n totalStylesPrice(licenseOptions: []) {\n amount\n }\n }\n ... on Bundle {\n totalStyles\n totalStylesPrice(licenseOptions: []) {\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 StoreModalStyleButton_fontStyle on FontStyle {\n name\n sku {\n ...SKUPrice_sku\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"
742
+ "text": "query StoreModalProductQuery(\n $productId: ID!\n) {\n collection: node(id: $productId) {\n __typename\n id\n ...StoreModalFamily_collection\n ... on FontCollection {\n children(collectionTypes: [FAMILY]) {\n id\n ...StoreModalFamily_collection\n }\n }\n }\n viewer {\n ...StoreModalProductLicenseSelection_viewer\n ...StoreModalProductSummary_viewer\n id\n }\n}\n\nfragment FontStyle_fontStyle on FontStyle {\n cssFamily\n name\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 StoreModalBundleButton_bundle on Bundle {\n name\n sku {\n ...SKUPrice_sku\n id\n }\n fontStyles {\n id\n ...FontStyle_fontStyle\n }\n}\n\nfragment StoreModalFamilyButton_collection on FontCollection {\n collectionType\n name\n sku {\n ...SKUPrice_sku\n id\n }\n parent {\n id\n }\n featureStyle {\n ...FontStyle_fontStyle\n id\n }\n totalStyles\n totalStylesPrice {\n ...Price_price\n }\n}\n\nfragment StoreModalFamily_collection on FontCollection {\n ...StoreModalFamilyButton_collection\n cssUrl\n collectionType\n sku {\n id\n }\n bundles {\n id\n fontStyles {\n id\n cssFamily\n cssWeight\n cssStretch\n ...StoreModalStyleButton_fontStyle\n }\n ...StoreModalBundleButton_bundle\n }\n fontStyles {\n id\n cssFamily\n cssWeight\n cssStretch\n ...StoreModalStyleButton_fontStyle\n }\n}\n\nfragment StoreModalProductLicenseSelection_viewer on Viewer {\n licenses(licenseTypes: [RETAIL]) {\n id\n ...StoreModalProductLicense_license\n }\n}\n\nfragment StoreModalProductLicense_license on License {\n id\n url\n name\n defaultSelected\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 on Viewer {\n precart(skuIds: [], licenseOptions: []) {\n skus {\n price(licenseOptions: []) {\n amount\n }\n product {\n __typename\n ... on FontCollection {\n totalStyles\n totalStylesPrice(licenseOptions: []) {\n amount\n }\n }\n ... on Bundle {\n totalStyles\n totalStylesPrice(licenseOptions: []) {\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 StoreModalStyleButton_fontStyle on FontStyle {\n id\n name\n sku {\n ...SKUPrice_sku\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"
738
743
  }
739
744
  };
740
745
  }();
@@ -1,6 +1,7 @@
1
1
  import { ReaderFragment } from "relay-runtime";
2
2
  import { FragmentRefs } from "relay-runtime";
3
3
  export declare type StoreModalStyleButton_fontStyle = {
4
+ readonly id: string;
4
5
  readonly name: string;
5
6
  readonly sku: {
6
7
  readonly id: string;
@@ -9,44 +9,52 @@ exports.default = void 0;
9
9
 
10
10
  /* eslint-disable */
11
11
  // @ts-nocheck
12
- const node = {
13
- "argumentDefinitions": [],
14
- "kind": "Fragment",
15
- "metadata": null,
16
- "name": "StoreModalStyleButton_fontStyle",
17
- "selections": [{
12
+ const node = function () {
13
+ var v0 = {
18
14
  "alias": null,
19
15
  "args": null,
20
16
  "kind": "ScalarField",
21
- "name": "name",
17
+ "name": "id",
22
18
  "storageKey": null
23
- }, {
24
- "alias": null,
25
- "args": null,
26
- "concreteType": "Sku",
27
- "kind": "LinkedField",
28
- "name": "sku",
29
- "plural": false,
30
- "selections": [{
19
+ };
20
+ return {
21
+ "argumentDefinitions": [],
22
+ "kind": "Fragment",
23
+ "metadata": null,
24
+ "name": "StoreModalStyleButton_fontStyle",
25
+ "selections": [v0
26
+ /*: any*/
27
+ , {
31
28
  "alias": null,
32
29
  "args": null,
33
30
  "kind": "ScalarField",
34
- "name": "id",
31
+ "name": "name",
32
+ "storageKey": null
33
+ }, {
34
+ "alias": null,
35
+ "args": null,
36
+ "concreteType": "Sku",
37
+ "kind": "LinkedField",
38
+ "name": "sku",
39
+ "plural": false,
40
+ "selections": [v0
41
+ /*: any*/
42
+ , {
43
+ "args": null,
44
+ "kind": "FragmentSpread",
45
+ "name": "SKUPrice_sku"
46
+ }],
35
47
  "storageKey": null
36
48
  }, {
37
49
  "args": null,
38
50
  "kind": "FragmentSpread",
39
- "name": "SKUPrice_sku"
51
+ "name": "FontStyle_fontStyle"
40
52
  }],
41
- "storageKey": null
42
- }, {
43
- "args": null,
44
- "kind": "FragmentSpread",
45
- "name": "FontStyle_fontStyle"
46
- }],
47
- "type": "FontStyle",
48
- "abstractKey": null
49
- };
50
- node.hash = 'd09b160f8a911647b91d0a0885d84347';
53
+ "type": "FontStyle",
54
+ "abstractKey": null
55
+ };
56
+ }();
57
+
58
+ node.hash = '89e85cab35cfb1e88e83fcb01ba235ac';
51
59
  var _default = node;
52
60
  exports.default = _default;
@@ -14,6 +14,7 @@ export declare type productState_QueryResponse = {
14
14
  };
15
15
  } | null;
16
16
  readonly fontStyles: ReadonlyArray<{
17
+ readonly id: string;
17
18
  readonly sku: {
18
19
  readonly id: string;
19
20
  readonly price: {
@@ -31,6 +32,7 @@ export declare type productState_QueryResponse = {
31
32
  };
32
33
  } | null;
33
34
  readonly fontStyles: ReadonlyArray<{
35
+ readonly id: string;
34
36
  readonly sku: {
35
37
  readonly id: string;
36
38
  readonly price: {
@@ -49,6 +51,7 @@ export declare type productState_QueryResponse = {
49
51
  };
50
52
  } | null;
51
53
  readonly fontStyles: ReadonlyArray<{
54
+ readonly id: string;
52
55
  readonly sku: {
53
56
  readonly id: string;
54
57
  readonly price: {
@@ -66,6 +69,7 @@ export declare type productState_QueryResponse = {
66
69
  };
67
70
  } | null;
68
71
  readonly fontStyles: ReadonlyArray<{
72
+ readonly id: string;
69
73
  readonly sku: {
70
74
  readonly id: string;
71
75
  readonly price: {
@@ -27,13 +27,13 @@ query productState_Query(
27
27
  }
28
28
  }
29
29
  fontStyles {
30
+ id
30
31
  sku {
31
32
  id
32
33
  price {
33
34
  amount
34
35
  }
35
36
  }
36
- id
37
37
  }
38
38
  bundles {
39
39
  id
@@ -45,13 +45,13 @@ query productState_Query(
45
45
  }
46
46
  }
47
47
  fontStyles {
48
+ id
48
49
  sku {
49
50
  id
50
51
  price {
51
52
  amount
52
53
  }
53
54
  }
54
- id
55
55
  }
56
56
  }
57
57
  children(collectionTypes: [FAMILY]) {
@@ -64,13 +64,13 @@ query productState_Query(
64
64
  }
65
65
  }
66
66
  fontStyles {
67
+ id
67
68
  sku {
68
69
  id
69
70
  price {
70
71
  amount
71
72
  }
72
73
  }
73
- id
74
74
  }
75
75
  bundles {
76
76
  id
@@ -82,13 +82,13 @@ query productState_Query(
82
82
  }
83
83
  }
84
84
  fontStyles {
85
+ id
85
86
  sku {
86
87
  id
87
88
  price {
88
89
  amount
89
90
  }
90
91
  }
91
- id
92
92
  }
93
93
  }
94
94
  }
@@ -163,7 +163,9 @@ const node = function () {
163
163
  "kind": "LinkedField",
164
164
  "name": "fontStyles",
165
165
  "plural": true,
166
- "selections": [v5
166
+ "selections": [v3
167
+ /*: any*/
168
+ , v5
167
169
  /*: any*/
168
170
  ],
169
171
  "storageKey": null
@@ -186,31 +188,16 @@ const node = function () {
186
188
  ],
187
189
  "storageKey": null
188
190
  },
189
- v8 = [{
190
- "kind": "Literal",
191
- "name": "collectionTypes",
192
- "value": ["FAMILY"]
193
- }],
194
- v9 = {
195
- "alias": null,
196
- "args": null,
197
- "concreteType": "FontStyle",
198
- "kind": "LinkedField",
199
- "name": "fontStyles",
200
- "plural": true,
201
- "selections": [v5
202
- /*: any*/
203
- , v3
204
- /*: any*/
205
- ],
206
- "storageKey": null
207
- },
208
- v10 = {
191
+ v8 = {
209
192
  "alias": null,
210
- "args": null,
211
- "concreteType": "Bundle",
193
+ "args": [{
194
+ "kind": "Literal",
195
+ "name": "collectionTypes",
196
+ "value": ["FAMILY"]
197
+ }],
198
+ "concreteType": "FontCollection",
212
199
  "kind": "LinkedField",
213
- "name": "bundles",
200
+ "name": "children",
214
201
  "plural": true,
215
202
  "selections": [v3
216
203
  /*: any*/
@@ -218,10 +205,12 @@ const node = function () {
218
205
  /*: any*/
219
206
  , v5
220
207
  /*: any*/
221
- , v9
208
+ , v6
209
+ /*: any*/
210
+ , v7
222
211
  /*: any*/
223
212
  ],
224
- "storageKey": null
213
+ "storageKey": "children(collectionTypes:[\"FAMILY\"])"
225
214
  };
226
215
  return {
227
216
  "fragment": {
@@ -254,28 +243,9 @@ const node = function () {
254
243
  /*: any*/
255
244
  , v7
256
245
  /*: any*/
257
- , {
258
- "alias": null,
259
- "args": v8
260
- /*: any*/
261
- ,
262
- "concreteType": "FontCollection",
263
- "kind": "LinkedField",
264
- "name": "children",
265
- "plural": true,
266
- "selections": [v3
267
- /*: any*/
268
- , v4
269
- /*: any*/
270
- , v5
271
- /*: any*/
272
- , v6
273
- /*: any*/
274
- , v7
275
- /*: any*/
276
- ],
277
- "storageKey": "children(collectionTypes:[\"FAMILY\"])"
278
- }],
246
+ , v8
247
+ /*: any*/
248
+ ],
279
249
  "type": "FontCollection",
280
250
  "abstractKey": null
281
251
  }],
@@ -310,32 +280,13 @@ const node = function () {
310
280
  /*: any*/
311
281
  , v5
312
282
  /*: any*/
313
- , v9
283
+ , v6
284
+ /*: any*/
285
+ , v7
314
286
  /*: any*/
315
- , v10
287
+ , v8
316
288
  /*: any*/
317
- , {
318
- "alias": null,
319
- "args": v8
320
- /*: any*/
321
- ,
322
- "concreteType": "FontCollection",
323
- "kind": "LinkedField",
324
- "name": "children",
325
- "plural": true,
326
- "selections": [v3
327
- /*: any*/
328
- , v4
329
- /*: any*/
330
- , v5
331
- /*: any*/
332
- , v9
333
- /*: any*/
334
- , v10
335
- /*: any*/
336
- ],
337
- "storageKey": "children(collectionTypes:[\"FAMILY\"])"
338
- }],
289
+ ],
339
290
  "type": "FontCollection",
340
291
  "abstractKey": null
341
292
  }],
@@ -343,12 +294,12 @@ const node = function () {
343
294
  }]
344
295
  },
345
296
  "params": {
346
- "cacheID": "4ce2d0b31df6ab7cb7bf21b8ad5774ea",
297
+ "cacheID": "90025dc788ad02719883b403aa953c6d",
347
298
  "id": null,
348
299
  "metadata": {},
349
300
  "name": "productState_Query",
350
301
  "operationKind": "query",
351
- "text": "query productState_Query(\n $id: ID!\n) {\n node(id: $id) {\n __typename\n ... on FontCollection {\n __typename\n id\n name\n sku {\n id\n price {\n amount\n }\n }\n fontStyles {\n sku {\n id\n price {\n amount\n }\n }\n id\n }\n bundles {\n id\n name\n sku {\n id\n price {\n amount\n }\n }\n fontStyles {\n sku {\n id\n price {\n amount\n }\n }\n id\n }\n }\n children(collectionTypes: [FAMILY]) {\n id\n name\n sku {\n id\n price {\n amount\n }\n }\n fontStyles {\n sku {\n id\n price {\n amount\n }\n }\n id\n }\n bundles {\n id\n name\n sku {\n id\n price {\n amount\n }\n }\n fontStyles {\n sku {\n id\n price {\n amount\n }\n }\n id\n }\n }\n }\n }\n id\n }\n}\n"
302
+ "text": "query productState_Query(\n $id: ID!\n) {\n node(id: $id) {\n __typename\n ... on FontCollection {\n __typename\n id\n name\n sku {\n id\n price {\n amount\n }\n }\n fontStyles {\n id\n sku {\n id\n price {\n amount\n }\n }\n }\n bundles {\n id\n name\n sku {\n id\n price {\n amount\n }\n }\n fontStyles {\n id\n sku {\n id\n price {\n amount\n }\n }\n }\n }\n children(collectionTypes: [FAMILY]) {\n id\n name\n sku {\n id\n price {\n amount\n }\n }\n fontStyles {\n id\n sku {\n id\n price {\n amount\n }\n }\n }\n bundles {\n id\n name\n sku {\n id\n price {\n amount\n }\n }\n fontStyles {\n id\n sku {\n id\n price {\n amount\n }\n }\n }\n }\n }\n }\n id\n }\n}\n"
352
303
  }
353
304
  };
354
305
  }();
@@ -10,6 +10,7 @@ export declare type productState_bundle = {
10
10
  };
11
11
  } | null;
12
12
  readonly fontStyles: ReadonlyArray<{
13
+ readonly id: string;
13
14
  readonly sku: {
14
15
  readonly id: string;
15
16
  readonly price: {
@@ -68,7 +68,9 @@ const node = function () {
68
68
  "kind": "LinkedField",
69
69
  "name": "fontStyles",
70
70
  "plural": true,
71
- "selections": [v1
71
+ "selections": [v0
72
+ /*: any*/
73
+ , v1
72
74
  /*: any*/
73
75
  ],
74
76
  "storageKey": null
@@ -78,6 +80,6 @@ const node = function () {
78
80
  };
79
81
  }();
80
82
 
81
- node.hash = '8137d9a4dac9894f58f99bc56752cae0';
83
+ node.hash = 'fa38bbc9f2062a727da4f5062b362054';
82
84
  var _default = node;
83
85
  exports.default = _default;
@@ -10,6 +10,7 @@ export declare type productState_collection = {
10
10
  };
11
11
  } | null;
12
12
  readonly fontStyles: ReadonlyArray<{
13
+ readonly id: string;
13
14
  readonly sku: {
14
15
  readonly id: string;
15
16
  readonly price: {
@@ -27,6 +28,7 @@ export declare type productState_collection = {
27
28
  };
28
29
  } | null;
29
30
  readonly fontStyles: ReadonlyArray<{
31
+ readonly id: string;
30
32
  readonly sku: {
31
33
  readonly id: string;
32
34
  readonly price: {
@@ -58,7 +58,9 @@ const node = function () {
58
58
  "kind": "LinkedField",
59
59
  "name": "fontStyles",
60
60
  "plural": true,
61
- "selections": [v2
61
+ "selections": [v0
62
+ /*: any*/
63
+ , v2
62
64
  /*: any*/
63
65
  ],
64
66
  "storageKey": null
@@ -101,6 +103,6 @@ const node = function () {
101
103
  };
102
104
  }();
103
105
 
104
- node.hash = '988a02689d43b4d1419317bea02aeaa0';
106
+ node.hash = '90e56933f956c6773c0958284de81884';
105
107
  var _default = node;
106
108
  exports.default = _default;
@@ -10,6 +10,7 @@ export declare type productState_node = {
10
10
  };
11
11
  } | null;
12
12
  readonly fontStyles: ReadonlyArray<{
13
+ readonly id: string;
13
14
  readonly sku: {
14
15
  readonly id: string;
15
16
  readonly price: {
@@ -27,6 +28,7 @@ export declare type productState_node = {
27
28
  };
28
29
  } | null;
29
30
  readonly fontStyles: ReadonlyArray<{
31
+ readonly id: string;
30
32
  readonly sku: {
31
33
  readonly id: string;
32
34
  readonly price: {
@@ -45,6 +47,7 @@ export declare type productState_node = {
45
47
  };
46
48
  } | null;
47
49
  readonly fontStyles: ReadonlyArray<{
50
+ readonly id: string;
48
51
  readonly sku: {
49
52
  readonly id: string;
50
53
  readonly price: {
@@ -62,6 +65,7 @@ export declare type productState_node = {
62
65
  };
63
66
  } | null;
64
67
  readonly fontStyles: ReadonlyArray<{
68
+ readonly id: string;
65
69
  readonly sku: {
66
70
  readonly id: string;
67
71
  readonly price: {
@@ -58,7 +58,9 @@ const node = function () {
58
58
  "kind": "LinkedField",
59
59
  "name": "fontStyles",
60
60
  "plural": true,
61
- "selections": [v2
61
+ "selections": [v0
62
+ /*: any*/
63
+ , v2
62
64
  /*: any*/
63
65
  ],
64
66
  "storageKey": null
@@ -4,6 +4,7 @@ import { FontdueState, FontdueAction } from '../../reducer';
4
4
  export declare const populateProductState: (store: Store<FontdueState, FontdueAction>, environment: Environment, id: string) => import("relay-runtime").Subscription | undefined;
5
5
  export interface CollectionStyleSkus {
6
6
  fontStyleSkuIds: string[];
7
+ fontStyleIds: string[];
7
8
  childrenSkuIds: string[];
8
9
  name: string;
9
10
  }
@@ -12,8 +12,8 @@ var _utils = require("../../utils");
12
12
  var _productState_sku, _productState_collection, _productState_bundle, _productState_node, _productState_Query;
13
13
 
14
14
  _productState_sku !== void 0 ? _productState_sku : (_productState_sku = require("../../__generated__/productState_sku.graphql"), _productState_sku.hash && _productState_sku.hash !== "2cee6ddddc85699f0c90e2607c0634ef" && console.error("The definition of 'productState_sku' appears to have changed. Run `relay-compiler` to update the generated files to receive the expected data."), _productState_sku);
15
- _productState_collection !== void 0 ? _productState_collection : (_productState_collection = require("../../__generated__/productState_collection.graphql"), _productState_collection.hash && _productState_collection.hash !== "988a02689d43b4d1419317bea02aeaa0" && console.error("The definition of 'productState_collection' appears to have changed. Run `relay-compiler` to update the generated files to receive the expected data."), _productState_collection);
16
- _productState_bundle !== void 0 ? _productState_bundle : (_productState_bundle = require("../../__generated__/productState_bundle.graphql"), _productState_bundle.hash && _productState_bundle.hash !== "8137d9a4dac9894f58f99bc56752cae0" && console.error("The definition of 'productState_bundle' appears to have changed. Run `relay-compiler` to update the generated files to receive the expected data."), _productState_bundle);
15
+ _productState_collection !== void 0 ? _productState_collection : (_productState_collection = require("../../__generated__/productState_collection.graphql"), _productState_collection.hash && _productState_collection.hash !== "90e56933f956c6773c0958284de81884" && console.error("The definition of 'productState_collection' appears to have changed. Run `relay-compiler` to update the generated files to receive the expected data."), _productState_collection);
16
+ _productState_bundle !== void 0 ? _productState_bundle : (_productState_bundle = require("../../__generated__/productState_bundle.graphql"), _productState_bundle.hash && _productState_bundle.hash !== "fa38bbc9f2062a727da4f5062b362054" && console.error("The definition of 'productState_bundle' appears to have changed. Run `relay-compiler` to update the generated files to receive the expected data."), _productState_bundle);
17
17
  _productState_node !== void 0 ? _productState_node : (_productState_node = require("../../__generated__/productState_node.graphql"), _productState_node.hash && _productState_node.hash !== "aab1ef07e0192a0d22a4c300084d9d05" && console.error("The definition of 'productState_node' appears to have changed. Run `relay-compiler` to update the generated files to receive the expected data."), _productState_node);
18
18
  const query = _productState_Query !== void 0 ? _productState_Query : (_productState_Query = require("../../__generated__/productState_Query.graphql"), _productState_Query.hash && _productState_Query.hash !== "ac3292bae9a274139d5a525fd0162711" && console.error("The definition of 'productState_Query' appears to have changed. Run `relay-compiler` to update the generated files to receive the expected data."), _productState_Query);
19
19
 
@@ -76,8 +76,15 @@ const flattenSkuData = collection => {
76
76
  let collectionData = {};
77
77
 
78
78
  if (collection.sku) {
79
+ var _collection$fontStyle3, _collection$fontStyle4, _collection$children$2, _collection$children2;
80
+
79
81
  collectionData = {
80
82
  [collection.sku.id]: {
83
+ fontStyleIds: ((_collection$fontStyle3 = (_collection$fontStyle4 = collection.fontStyles) === null || _collection$fontStyle4 === void 0 ? void 0 : _collection$fontStyle4.map(style => style.id)) !== null && _collection$fontStyle3 !== void 0 ? _collection$fontStyle3 : []).concat('children' in collection ? (_collection$children$2 = (_collection$children2 = collection.children) === null || _collection$children2 === void 0 ? void 0 : _collection$children2.flatMap(child => {
84
+ var _child$fontStyles$map, _child$fontStyles;
85
+
86
+ return (_child$fontStyles$map = (_child$fontStyles = child.fontStyles) === null || _child$fontStyles === void 0 ? void 0 : _child$fontStyles.map(style => style.id)) !== null && _child$fontStyles$map !== void 0 ? _child$fontStyles$map : [];
87
+ })) !== null && _collection$children$2 !== void 0 ? _collection$children$2 : [] : []),
81
88
  fontStyleSkuIds: allSkus(collection, false, true).map(sku => sku.id),
82
89
  childrenSkuIds: allSkus(collection, true, false).map(sku => sku.id).filter(skuId => {
83
90
  var _collection$sku;
@@ -30,7 +30,7 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj &&
30
30
  // chunk items if they match condition, but only chunk if they match in
31
31
  // consecutive order. this prevents the list from being reordered
32
32
  function chunkConsecutiveBy(collection, compare) {
33
- return collection.reduce((acc, item, i) => {
33
+ return collection.reduce((acc, item) => {
34
34
  const last = acc[acc.length - 1];
35
35
 
36
36
  if (last && compare(last[0], item)) {
@@ -42,7 +42,7 @@ function chunkConsecutiveBy(collection, compare) {
42
42
  }
43
43
 
44
44
  const stylesGrouped = collection => {
45
- if (!collection.fontStyles) return null;
45
+ if (!collection.fontStyles) return [];
46
46
  return chunkConsecutiveBy(collection.fontStyles, (left, right) => left.cssFamily === right.cssFamily && left.cssWeight === right.cssWeight && left.cssStretch === right.cssStretch);
47
47
  };
48
48
 
@@ -54,6 +54,7 @@ const StoreModalFamily = _ref => {
54
54
  onSelect
55
55
  } = _ref;
56
56
  const fontStyles = (0, _react.useMemo)(() => stylesGrouped(collection), [collection]);
57
+ if ((fontStyles === null || fontStyles === void 0 ? void 0 : fontStyles.length) === 0 && collection.collectionType === 'superfamily' && !collection.sku) return null;
57
58
  return /*#__PURE__*/_react.default.createElement(_StoreModalFamily.default, null, {
58
59
  stylesheet: collection.cssUrl && /*#__PURE__*/_react.default.createElement(_Stylesheet.default, {
59
60
  href: collection.cssUrl
@@ -67,7 +68,7 @@ const StoreModalFamily = _ref => {
67
68
  bundle: bundle,
68
69
  onSelectSku: onSelect
69
70
  })),
70
- styleGroups: fontStyles === null || fontStyles === void 0 ? void 0 : fontStyles.map(group => group.map(fontStyle => /*#__PURE__*/_react.default.createElement(_StoreModalStyleButton.default, {
71
+ styleGroups: fontStyles.map(group => group.map(fontStyle => /*#__PURE__*/_react.default.createElement(_StoreModalStyleButton.default, {
71
72
  key: fontStyle.id,
72
73
  fontStyle: fontStyle,
73
74
  onSelectSku: onSelect
@@ -76,7 +77,7 @@ const StoreModalFamily = _ref => {
76
77
  };
77
78
 
78
79
  var _default = (0, _reactRelay.createFragmentContainer)(StoreModalFamily, {
79
- collection: _StoreModalFamily_collection !== void 0 ? _StoreModalFamily_collection : (_StoreModalFamily_collection = require("../../__generated__/StoreModalFamily_collection.graphql"), _StoreModalFamily_collection.hash && _StoreModalFamily_collection.hash !== "0164fb7c07ce4174350e6a463723910e" && console.error("The definition of 'StoreModalFamily_collection' appears to have changed. Run `relay-compiler` to update the generated files to receive the expected data."), _StoreModalFamily_collection)
80
+ collection: _StoreModalFamily_collection !== void 0 ? _StoreModalFamily_collection : (_StoreModalFamily_collection = require("../../__generated__/StoreModalFamily_collection.graphql"), _StoreModalFamily_collection.hash && _StoreModalFamily_collection.hash !== "ba6def0c7ad16af4a476e64ef4e1dcca" && console.error("The definition of 'StoreModalFamily_collection' appears to have changed. Run `relay-compiler` to update the generated files to receive the expected data."), _StoreModalFamily_collection)
80
81
  });
81
82
 
82
83
  exports.default = _default;
@@ -55,7 +55,7 @@ const FamilyButton = _ref => {
55
55
 
56
56
  return /*#__PURE__*/_react.default.createElement(_StoreModalFamilyButton.default, _extends({
57
57
  selected: selected,
58
- onClick: handleClick
58
+ onClick: collection.sku ? handleClick : undefined
59
59
  }, rest), {
60
60
  name: collection.featureStyle && /*#__PURE__*/_react.default.createElement(_FontStyle.default, {
61
61
  Component: "span",
@@ -34,8 +34,7 @@ const StoreModalStyleButton = _ref => {
34
34
  relay,
35
35
  ...rest
36
36
  } = _ref;
37
- if (!fontStyle.sku) return null;
38
- const selected = (0, _reactRedux.useSelector)((0, _reducer.isSelected)(fontStyle.sku.id));
37
+ const selected = (0, _reactRedux.useSelector)((0, _reducer.isSelected)(fontStyle.sku ? fontStyle.sku.id : fontStyle.id));
39
38
 
40
39
  const handleSelect = () => {
41
40
  if (!fontStyle.sku) return;
@@ -43,7 +42,7 @@ const StoreModalStyleButton = _ref => {
43
42
  };
44
43
 
45
44
  return /*#__PURE__*/_react.default.createElement(_StoreModalStyleButton.default, _extends({}, rest, {
46
- onClick: handleSelect,
45
+ onClick: fontStyle.sku ? handleSelect : undefined,
47
46
  selected: selected
48
47
  }), {
49
48
  aa: /*#__PURE__*/_react.default.createElement(_FontStyle.default, {
@@ -51,16 +50,16 @@ const StoreModalStyleButton = _ref => {
51
50
  Component: "span"
52
51
  }, "Aa"),
53
52
  name: fontStyle.name,
54
- price: /*#__PURE__*/_react.default.createElement(_SKUPrice.default, {
53
+ price: fontStyle.sku ? /*#__PURE__*/_react.default.createElement(_SKUPrice.default, {
55
54
  sku: fontStyle.sku,
56
55
  format: _Price.PriceFormat.Truncated,
57
56
  showCollectionSavings: !selected
58
- })
57
+ }) : null
59
58
  });
60
59
  };
61
60
 
62
61
  var _default = (0, _reactRelay.createFragmentContainer)(StoreModalStyleButton, {
63
- fontStyle: _StoreModalStyleButton_fontStyle !== void 0 ? _StoreModalStyleButton_fontStyle : (_StoreModalStyleButton_fontStyle = require("../../__generated__/StoreModalStyleButton_fontStyle.graphql"), _StoreModalStyleButton_fontStyle.hash && _StoreModalStyleButton_fontStyle.hash !== "d09b160f8a911647b91d0a0885d84347" && console.error("The definition of 'StoreModalStyleButton_fontStyle' appears to have changed. Run `relay-compiler` to update the generated files to receive the expected data."), _StoreModalStyleButton_fontStyle)
62
+ fontStyle: _StoreModalStyleButton_fontStyle !== void 0 ? _StoreModalStyleButton_fontStyle : (_StoreModalStyleButton_fontStyle = require("../../__generated__/StoreModalStyleButton_fontStyle.graphql"), _StoreModalStyleButton_fontStyle.hash && _StoreModalStyleButton_fontStyle.hash !== "89e85cab35cfb1e88e83fcb01ba235ac" && console.error("The definition of 'StoreModalStyleButton_fontStyle' appears to have changed. Run `relay-compiler` to update the generated files to receive the expected data."), _StoreModalStyleButton_fontStyle)
64
63
  });
65
64
 
66
65
  exports.default = _default;
@@ -27,14 +27,12 @@ const StoreModalFamilyButton = _ref => {
27
27
  },
28
28
  ...rest
29
29
  } = _ref;
30
- if (!price) return /*#__PURE__*/_react.default.createElement("div", {
31
- className: "store-modal__family-button__no-price"
32
- });
33
30
  return /*#__PURE__*/_react.default.createElement(_Button.default, _extends({
34
31
  onClick: onClick,
35
32
  className: (0, _classnames.default)('store-modal__family-button__button', className)
36
33
  }, rest, {
37
- "data-selected": selected
34
+ "data-selected": selected,
35
+ "data-clickable": Boolean(onClick)
38
36
  }), /*#__PURE__*/_react.default.createElement("div", {
39
37
  className: "store-modal__family-button__container"
40
38
  }, /*#__PURE__*/_react.default.createElement("div", {
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { ButtonProps } from '../../elements/Button';
2
+ import { ButtonProps } from '../Button';
3
3
  declare type StoreModalStyleButtonProps = ButtonProps & {
4
4
  selected: boolean;
5
5
  children: {
@@ -7,7 +7,7 @@ exports.default = void 0;
7
7
 
8
8
  var _react = _interopRequireDefault(require("react"));
9
9
 
10
- var _Button = _interopRequireDefault(require("../../elements/Button"));
10
+ var _Button = _interopRequireDefault(require("../Button"));
11
11
 
12
12
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
13
13
 
@@ -23,9 +23,9 @@ const StoreModalStyleButton = _ref => {
23
23
  },
24
24
  ...rest
25
25
  } = _ref;
26
- if (!price) return null;
27
26
  return /*#__PURE__*/_react.default.createElement(_Button.default, _extends({}, rest, {
28
- "data-selected": selected
27
+ "data-selected": selected,
28
+ "data-clickable": Boolean(rest.onClick)
29
29
  }), /*#__PURE__*/_react.default.createElement("span", {
30
30
  className: "store-modal__style-button__button"
31
31
  }, /*#__PURE__*/_react.default.createElement("span", {
package/dist/utils.d.ts CHANGED
@@ -3,10 +3,10 @@ import type { FontdueState } from './reducer';
3
3
  export declare const pluralize: (count: number, singular: string, plural?: string | undefined) => string;
4
4
  export declare function notEmpty<TValue>(value: TValue | null | undefined): value is TValue;
5
5
  export declare function kebabToCamel(str: string): string;
6
- export declare const collContainsSkuId: (coll: CollectionStyleSkus | undefined, skuId: string) => boolean;
6
+ export declare const collContainsSkuId: (coll: CollectionStyleSkus | undefined, skuIdOrStyleId: string) => boolean;
7
7
  interface CollectionSkuIdsDifferences {
8
8
  [collectionSkuId: string]: number;
9
9
  }
10
- export declare const isSelected: (skuId: string) => (state: FontdueState) => boolean;
10
+ export declare const isSelected: (skuIdOrStyleId: string) => (state: FontdueState) => boolean;
11
11
  export declare const collectionSkuIdsDifferences: (state: FontdueState, skuId: string) => CollectionSkuIdsDifferences;
12
12
  export {};
package/dist/utils.js CHANGED
@@ -27,17 +27,17 @@ function kebabToCamel(str) {
27
27
  } // where coll is a member of `collectionStyleSkus`;
28
28
 
29
29
 
30
- const collContainsSkuId = (coll, skuId) => {
30
+ const collContainsSkuId = (coll, skuIdOrStyleId) => {
31
31
  if (!coll) return false;
32
- return coll.childrenSkuIds.indexOf(skuId) >= 0 || coll.fontStyleSkuIds.indexOf(skuId) >= 0;
32
+ return coll.childrenSkuIds.indexOf(skuIdOrStyleId) >= 0 || coll.fontStyleSkuIds.indexOf(skuIdOrStyleId) >= 0 || coll.fontStyleIds.indexOf(skuIdOrStyleId) >= 0;
33
33
  };
34
34
 
35
35
  exports.collContainsSkuId = collContainsSkuId;
36
36
 
37
- const isSelected = skuId => state => {
37
+ const isSelected = skuIdOrStyleId => state => {
38
38
  // get the collections that contain this skuId as a fontStyle
39
- const collectionSkuIds = Object.keys(state.collectionStyleSkus).filter(collSkuId => collContainsSkuId(state.collectionStyleSkus[collSkuId], skuId));
40
- return state.selectedSkuIds[skuId] === true || collectionSkuIds.some(collSkuId => state.selectedSkuIds[collSkuId] === true);
39
+ const collectionSkuIds = Object.keys(state.collectionStyleSkus).filter(collSkuId => collContainsSkuId(state.collectionStyleSkus[collSkuId], skuIdOrStyleId));
40
+ return state.selectedSkuIds[skuIdOrStyleId] === true || collectionSkuIds.some(collSkuId => state.selectedSkuIds[collSkuId] === true);
41
41
  };
42
42
 
43
43
  exports.isSelected = isSelected;
package/fontdue.css CHANGED
@@ -820,6 +820,7 @@ div[data-component=TypeTesters] {
820
820
  text-align: center;
821
821
  border: 1px solid;
822
822
  margin-bottom: 16px;
823
+ white-space: pre;
823
824
  }
824
825
 
825
826
  .character-viewer__monitor__details {
@@ -1308,24 +1309,18 @@ body[data-fontdue-store-modal=open] {
1308
1309
  .store-modal__family__bundle-button:not(:disabled) {
1309
1310
  cursor: pointer;
1310
1311
  }
1311
- .store-modal__family__style-button:hover:not(:disabled),
1312
- .store-modal__family__family-button:hover:not(:disabled),
1313
- .store-modal__family__bundle-button:hover:not(:disabled) {
1314
- border-color: var(--button_hover_border-color);
1315
- background: var(--button_hover_background_color);
1316
- color: var(--button_hover_text_color);
1317
- }
1318
1312
  .store-modal__family__style-button:disabled,
1319
1313
  .store-modal__family__family-button:disabled,
1320
1314
  .store-modal__family__bundle-button:disabled {
1321
1315
  opacity: 0.5;
1322
1316
  }
1323
- .store-modal__family__style-button:hover:not(:disabled),
1324
- .store-modal__family__family-button:hover:not(:disabled),
1325
- .store-modal__family__bundle-button:hover:not(:disabled) {
1317
+ .store-modal__family__style-button[data-clickable=true]:hover:not(:disabled),
1318
+ .store-modal__family__family-button[data-clickable=true]:hover:not(:disabled),
1319
+ .store-modal__family__bundle-button[data-clickable=true]:hover:not(:disabled) {
1320
+ border-color: var(--button_hover_border-color);
1326
1321
  background: var(--button_hover_background_color);
1327
1322
  color: var(--button_hover_text_color);
1328
- box-shadow: 0 0 0 1px var(--button_hover_border_color);
1323
+ background: var(--button_hover_background_color);
1329
1324
  z-index: 1;
1330
1325
  }
1331
1326
  .store-modal__family__style-button[data-selected=true]:not(:disabled),
@@ -1336,6 +1331,22 @@ body[data-fontdue-store-modal=open] {
1336
1331
  color: var(--button_selected_text_color);
1337
1332
  z-index: 1;
1338
1333
  }
1334
+ .store-modal__family__style-button[data-selected=true]:not(:disabled):hover,
1335
+ .store-modal__family__family-button[data-selected=true]:not(:disabled):hover,
1336
+ .store-modal__family__bundle-button[data-selected=true]:not(:disabled):hover {
1337
+ background: var(--button_selected_background_color);
1338
+ }
1339
+ .store-modal__family__style-button[data-clickable=false],
1340
+ .store-modal__family__family-button[data-clickable=false],
1341
+ .store-modal__family__bundle-button[data-clickable=false] {
1342
+ cursor: auto;
1343
+ }
1344
+
1345
+ .store-modal__family__family-button[data-clickable=false] {
1346
+ padding-left: 0;
1347
+ padding-right: 0;
1348
+ box-shadow: none;
1349
+ }
1339
1350
 
1340
1351
  .store-modal__family-button__container {
1341
1352
  display: grid;
package/fontdue.css.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../assets/fontdue/styles/global/_fonts.scss","../assets/fontdue/styles/components/_buy-button.scss","../assets/fontdue/styles/_imports.scss","../assets/fontdue/styles/components/_cart-button.scss","../assets/fontdue/styles/components/_icon.scss","../assets/fontdue/styles/components/_newsletter-signup.scss","../assets/fontdue/styles/components/_test-fonts.scss","node_modules/draft-js/dist/Draft.css","../assets/fontdue/styles/components/_type-tester.scss","../assets/fontdue/styles/components/_type-tester-select.scss","../assets/fontdue/styles/components/_select-button.scss","../assets/fontdue/styles/components/_submit-button.scss","../assets/fontdue/styles/components/shared/_character-viewer.scss","../assets/fontdue/styles/components/shared/_checkbox.scss","../assets/fontdue/styles/components/shared/_select.scss","../assets/fontdue/styles/components/shared/_store-modal.scss","../assets/fontdue/styles/components/shared/store-modal/_button.scss","../assets/fontdue/styles/components/shared/store-modal/_cart.scss","../assets/fontdue/styles/components/shared/store-modal/_container.scss","../assets/fontdue/styles/components/shared/store-modal/_download.scss","../assets/fontdue/styles/components/shared/store-modal/_family.scss","../assets/fontdue/styles/components/shared/store-modal/_family-button.scss","../assets/fontdue/styles/components/shared/store-modal/_index-item.scss","../assets/fontdue/styles/components/shared/store-modal/_license-selection.scss","../assets/fontdue/styles/components/shared/store-modal/_page.scss","../assets/fontdue/styles/components/shared/store-modal/_product-summary.scss","../assets/fontdue/styles/components/shared/store-modal/_review-confirm.scss","../assets/fontdue/styles/components/shared/store-modal/_review-item.scss","../assets/fontdue/styles/components/shared/store-modal/_review.scss","../assets/fontdue/styles/components/shared/store-modal/_style-button.scss","../assets/fontdue/styles/components/shared/store-modal-extras/_empty-cart.scss","../assets/fontdue/styles/components/shared/store-modal-extras/_cart-additions.scss","../assets/fontdue/styles/components/shared/store-modal-extras/_cart-item.scss","../assets/fontdue/styles/components/shared/store-modal-extras/_cart.scss","../assets/fontdue/styles/components/shared/store-modal-extras/_checkout-modal.scss","../assets/fontdue/styles/components/shared/store-modal-extras/_react-select.scss","../assets/fontdue/styles/components/shared/store-modal-extras/_text-field.scss","../assets/fontdue/styles/components/shared/store-modal-extras/_variable-table-amounts.scss","../assets/fontdue/styles/components/shared/_test-mode-banner.scss"],"names":[],"mappings":"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CE;EACA;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EN1KF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EMkKI;EACA;EACA;;ANlKJ;EAEE;;AAOF;EACE;;AM2JA;EACE;;AAIJ;EACE;;AAGF;EACE;EACA;;ANlMF;EMgMA;IAKI;;;AAGF;ENlMF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;;AAOF;EACE;;AM8KE;EACE;;AAGF;EACE;;AAGF;EACE;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;ANnOF;EMwNA;IAcI;;;AAGF;EACE;;AAGF;EACE;;AAIJ;EACE;EACA;;;AC/PJ;EACE;;AAEA;EACE;;;ACFJ;EReE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;;AAOF;EACE;;AQlCF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;;ACxBN;ETeE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ESvBA;EACA;EACA;EACA;;ATsBA;EAEE;;AAOF;EACE;;AS9BF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;;ACRJ;EACE;;;AAGF;EACE;;;AAGF;AAAA;EAEE;EACA;EACA;EACA;;AAxBA;EAmBF;AAAA;IAQI;;;;AAIJ;AAAA;EAEE;;;AAjCA;EAoCF;AAAA;IAGI;;;;AAIJ;AAAA;EAEE;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;AAEA;EALF;IAMI;;EAEA;IACE;;;;AAKN;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;;AAKN;EACE;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;;;AAOF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AA9HF;EAiII;IAEE;IACA;IACA;;;;AC1IR;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EXMA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EWdE;EACA;EACA;EACA;;AXaF;EAEE;;AAOF;EACE;;AWpBF;EX8BA;EACA;EACA;EACA;EACA;EACA;EACA;EWlCE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAIJ;EACE;;;ACtCJ;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIA;EACE;EACA;EACA;EACA;EACA;;;ACtBN;EACE;;;ACCF;EdeE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EcvBA;EACA;EACA;EACA;;AdsBA;EAEE;;AAOF;EACE;;Ac9BF;EACE;EACA;EACA;;;AdPF;EeHF;IAEI;IACA;IACA;IACA;;;;AAIJ;AAAA;EAEE;;;AAGF;EfCE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EeTA;EACA;EACA;EACA;EACA;EACA;;AfMA;EAEE;;AAOF;EACE;;AedF;EACE;EACA;EACA;;AAGF;EACE;;;AC9BJ;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AhB7DF;EgBqDF;IAYI;IACA;;;;AAIJ;EACE;;;AAGF;EACE;;;AAIF;EhBnEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EgB2DA;;AhBzDA;EAEE;;AAOF;EACE;;;AgBkDJ;EhBxEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;;AAOF;EACE;;AgBqDF;EACE;;;AAIJ;EACE;;;AAGF;EhBpFE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EgB4EA;;AhB1EA;EAEE;;AAOF;EACE;;AgBkEF;EACE;;;ACvGF;EACE;;;AAIJ;EjBSE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EiBjBA;EACA;EACA;EACA;EACA;EACA;EACA;;AjBaA;EAEE;;AAOF;EACE;;AiBrBF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;;ACzBJ;EACE;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA;;AlBRA;EkBMF;IAII;;;;AAIJ;AAAA;AAAA;ElBFE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EkBJA;EACA;EACA;EACA;EACA;EACA;EAaA;EACA;EACA;EACA;;AlBfA;AAAA;AAAA;AAAA;AAAA;EAEE;;AAOF;AAAA;AAAA;EACE;;AkBTF;AAAA;AAAA;EACE;EACA;EACA;;AAGF;AAAA;AAAA;EACE;;AASF;AAAA;AAAA;EACE;EACA;EACA;EACA;;AAGF;AAAA;AAAA;EACE;EACA;EACA;EACA;;;ACzDJ;EACE;EACA;EACA;EACA;EACA;;AnBMA;EmBXF;IAQI;;;;AAIJ;EACE;EACA;;;AnBHA;EmBMF;AAAA;IAGI;;;;AAIJ;EACE;EACA;;AnBfA;EmBaF;IAKI;;;;AAIJ;EACE;;;AChCF;EpBeE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EoBvBA;EACA;EACA;EACA;EACA;EACA;;ApBoBA;EAEE;;AAOF;EACE;;;AoB3BJ;EACE;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AC9BA;EACE;;;AAIJ;EACE;;;AAGF;ErBKE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EqBbA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;ArBMA;EAEE;;AAOF;EACE;;AqBdF;EACE;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;;AAGF;EACE;EACA;EACA;;AAEA;EACE;;AAIF;EACE;EACA;;;AAIN;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;ArBtGA;EqB4FF;IAaI;IACA;IACA;;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;;;AAIJ;EACE;EACA;;;ACtIF;EACE;EACA;EACA;EACA;EACA;;AtBFA;EsBHF;IAQI;IACA;;;;AAIJ;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;ACxBF;EACE;EACA;EACA;;;AAGF;EvBSE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EuBjBA;EACA;EACA;EACA;EACA;EACA;;AvBcA;EAEE;;AAOF;EACE;;AuBtBF;EACE;EACA;EACA;;AAGF;EACE;;AvBnBF;EuBGF;IAoBI;IACA;;;;AAIJ;EACE;EACA;;;ACjCF;EACE;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;ExBIE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EwBZA;EACA;EACA;EACA;EACA;EACA;;AxBSA;EAEE;;AAOF;EACE;;AwBjBF;EACE;;AAGF;EACE;EACA;EACA;;;AC3BJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;;AAGF;EACE;;;ACnBJ;AACE;EACA;;;AAGF;E1BUE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;;AAOF;EACE;;A0B7BF;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A1BnBA;E0BUF;IAYI;;;AAGF;EACE;;;AAIJ;EACE;;;AAGF;EACE;EACA;EACA;;A1BrCA;E0BkCF;IAMI;;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AChEF;EACE;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;;;ACdF;EACE;EACA;;;ACGA;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;E7BJA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;E6BJE;EACA;EACA;EACA;;A7BGF;EAEE;;AAOF;EACE;;A6BXA;EACE;EACA;EACA;;AAIJ;EACE;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAGE;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAKN;E7BhDA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;E6BwCE;;A7BtCF;EAEE;;AAOF;EACE;;A6B8BA;EACE;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAIJ;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;;ACpHN;E9ByDE;EACA;EACA,c8BzDe;E9B0Df,e8B1De;EACf;EACA;EACA;EACA;;A9BHA;E8BHF;IASI;IACA;IACA;IACA;IACA;IACA;;;AAIA;EADF;IAEI,OAlBc;IAmBd;IACA;IACA;IACA;IACA;IACA;IACA;;;AAIJ;EACE;;AAGF;EACE;;AAGF;EACE;AAAkB;;AAGpB;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGE;EADF;IAEI,OAzDY;IA0DZ;IACA;;;A9BzDN;E8B4CA;IAkBI;IACA;;;AAGF;EACE;;A9BnEJ;E8BkEE;IAII;;;AAIJ;E9B9DF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;E8BsDI;EACA;;A9BrDJ;EAEE;;AAOF;EACE;;AA5BF;E8BoEE;IAMI;;;AAGF;EACE;;AAIJ;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;;A9B5FF;E8BuFA;IAQI;;;AAIJ;EACE;EACA;EACA;;AAGF;EACE;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;A9BjIN;E8BsHE;IAeI;;;AAGF;E9B5FJ;EACA;EACA;EACA;EACA;EACA;EACA;E8BwFM;EACA;EACA;EACA;EACA;;AAGF;E9BrGJ;EACA;EACA;EACA;EACA;EACA;EACA;;A8BmGI;EACE;EACA;EACA;;AAIJ;EACE;;AAGF;E9BpHF;EACA;EACA;EACA;EACA;EACA;EACA;E8BgHI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE,OA9KY;;AAiLd;EACE;;AAIJ;E9BxKF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAsBA;EACA;EACA;EACA;EACA;EACA;EACA;E8BqII;;A9B/JJ;EAEE;;AAOF;EACE;;A8BuJE;EACE;EACA;;AAKN;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;A9BxMJ;E8BgMA;IAYI;IACA;IACA;;;AAIJ;EACE;EACA;;A9BpNF;E8BkNA;IAKI;IACA;IACA;;;AAGF;E9BhNF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;E8BwMI;EACA;EACA;EACA;;A9BzMJ;EAEE;;AAOF;EACE;;A8BiME;EACE;EACA;;;ACvON;EACE;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;;AAIF;E/BHA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;E+BLE;EACA;;A/BMF;EAEE;;AAOF;EACE;;A+BdA;EACE;EACA;;AAIJ;EAEE;;;AAOF;AAAA;AAAA;EACE;;;ACtCF;EACE;;AAGF;EACE;;AAEA;EACE;;AAIJ;EACE;;AAGF;EhCwCA;EACA;EACA,cgCzCiB;EhC0CjB,egC1CiB;EACf;EACA;;AAGF;EACE;EACA;;AAEA;EACE;;AAIJ;EhCyBA;EACA;EACA,cgC1BiB;EhC2BjB,egC3BiB;EACf;EACA;;AhChCF;EgC6BA;IAMI;;;AAGF;EhC1BF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EgCkBI;EACA;EACA;;AhClBJ;EAEE;;AAOF;EACE;;AgCUE;EACE;;AAIJ;EACE;;AhClDJ;EgCiDE;IAII;;;AAIJ;EACE;EACA;;AAGF;EACE;EACA;;AAIJ;EACE;;AAEA;EACE;EACA;;AAEA;EACE;;AAIJ;EACE;;AAMF;EACE;;AAIJ;EACE;EACA;;AAGF;EhCrFA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EgC6EE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AhClFF;EAEE;;AAOF;EACE;;AgC0EA;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;AACE;EACA;;AAIJ;EACE;EACA;EACA;;AAIA;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;;ACrJN;EACE;AAEA;;AAEE;EACE;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;;AAGF;EACE;EACA;;AAGF;EAIE;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;;AAIJ;EACE;EACA;;;AChDJ;EACE;EACA;;;AAKE;EACE;;AAIJ;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAGF;ElCRA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EkCAE;EACA;EACA;;AlCAF;EAEE;;AkCAA;EACE;;AAIJ;EACE;;;ACrCJ;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;ACVF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;;AAIJ;EACE;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;;AAIJ;EACE;EACA;;;AAGF;EACE;;AACA;EACE","file":"fontdue.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../assets/fontdue/styles/global/_fonts.scss","../assets/fontdue/styles/components/_buy-button.scss","../assets/fontdue/styles/_imports.scss","../assets/fontdue/styles/components/_cart-button.scss","../assets/fontdue/styles/components/_icon.scss","../assets/fontdue/styles/components/_newsletter-signup.scss","../assets/fontdue/styles/components/_test-fonts.scss","node_modules/draft-js/dist/Draft.css","../assets/fontdue/styles/components/_type-tester.scss","../assets/fontdue/styles/components/_type-tester-select.scss","../assets/fontdue/styles/components/_select-button.scss","../assets/fontdue/styles/components/_submit-button.scss","../assets/fontdue/styles/components/shared/_character-viewer.scss","../assets/fontdue/styles/components/shared/_checkbox.scss","../assets/fontdue/styles/components/shared/_select.scss","../assets/fontdue/styles/components/shared/_store-modal.scss","../assets/fontdue/styles/components/shared/store-modal/_button.scss","../assets/fontdue/styles/components/shared/store-modal/_cart.scss","../assets/fontdue/styles/components/shared/store-modal/_container.scss","../assets/fontdue/styles/components/shared/store-modal/_download.scss","../assets/fontdue/styles/components/shared/store-modal/_family.scss","../assets/fontdue/styles/components/shared/store-modal/_family-button.scss","../assets/fontdue/styles/components/shared/store-modal/_index-item.scss","../assets/fontdue/styles/components/shared/store-modal/_license-selection.scss","../assets/fontdue/styles/components/shared/store-modal/_page.scss","../assets/fontdue/styles/components/shared/store-modal/_product-summary.scss","../assets/fontdue/styles/components/shared/store-modal/_review-confirm.scss","../assets/fontdue/styles/components/shared/store-modal/_review-item.scss","../assets/fontdue/styles/components/shared/store-modal/_review.scss","../assets/fontdue/styles/components/shared/store-modal/_style-button.scss","../assets/fontdue/styles/components/shared/store-modal-extras/_empty-cart.scss","../assets/fontdue/styles/components/shared/store-modal-extras/_cart-additions.scss","../assets/fontdue/styles/components/shared/store-modal-extras/_cart-item.scss","../assets/fontdue/styles/components/shared/store-modal-extras/_cart.scss","../assets/fontdue/styles/components/shared/store-modal-extras/_checkout-modal.scss","../assets/fontdue/styles/components/shared/store-modal-extras/_react-select.scss","../assets/fontdue/styles/components/shared/store-modal-extras/_text-field.scss","../assets/fontdue/styles/components/shared/store-modal-extras/_variable-table-amounts.scss","../assets/fontdue/styles/components/shared/_test-mode-banner.scss"],"names":[],"mappings":"AAEA;AAKI;EACE;EACA,aANI;EAOJ,YANG;EAOH,KAXA;EAYA;;AALF;EACE;EACA,aANI;EAOJ,YANG;EAOH,KAXA;EAYA;;AALF;EACE;EACA,aANI;EAOJ,YANG;EAOH,KAXA;EAYA;;AALF;EACE;EACA,aANI;EAOJ,YANG;EAOH,KAXA;EAYA;;ACVN;ECeE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EDvBA;EACA;EACA;EACA;EACA;;ACqBA;EAEE;;AAOF;EACE;;AD7BF;EACE;EACA;EACA;;;AEVF;EDcA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;;AAOF;EACE;;AC/BF;EACE;EACA;;AAGF;EACE;;AAGF;EACE;;;AClBJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;;ACRF;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;;;ACfJ;EACE;;;AAIA;EAIE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;;AAKF;EACE;;AAIJ;EACE;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;;;ACvDN;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQA;EAA2E;EAAe;;;AAAmB;EAAkD;;;AAA8C;EAAkB;;;AAAkB;EAA6B;EAAqC;EAAmC;EAAkB;;;AAAU;EAA0B;;;AAAkB;EAAuD;;;AAAgB;EAA2D;EAAO;;;AAAgB;EAAyD;;;AAAkB;EAA6D;EAAc;EAAkB;;;AAAW;EAAwD;;;AAAiB;EAA4D;EAAQ;;;AAAiB;EAAoC;EAAc;EAAkB;EAAW;;;AAAU;EAAwC;;;AAAc;EAA+B;;;AAAa;EAAgC;EAAkB;;;AAAqB;EAA8B;EAAc;;;AAAgB;EAA8B;EAAc;;;AAAiB;EAAkC;;;AAAc;EAAkC;;;AAAc;EAA0D;EAAc;;;AAAU;EAAkE;;;AAAkB;EAAkE;;;AAAmB;EAAkE;;;AAAgB;EAAkE;;;AAAiB;EAAkE;;;AAAkB;EAAkE;;;AAAmB;EAAkE;;;AAAgB;EAAkE;;;AAAiB;EAAkE;;;AAAkB;EAAkE;;;AAAmB;EAA4C;EAAuB;;;AAAkB;EAA4E;;;AAAqB;EAA4E;;;AAAuB;EAA0C;EAAqB;;;AAAkB;EAAkF;EAAW;EAAkB;EAAiB;;;AAAW;EAAkF;EAAkB;EAAY;EAAgB;;;AAAW;EAAiD;EAA0B;;;AAAsB;EAAiF;EAAsC;;;AAAsB;EAAiF;EAAsC;;;AAAsB;EAAiF;EAA0B;;;AAAsB;EAAiF;EAAsC;;;AAAsB;EAAgE;;;AAAkB;EAAgE;;;AAAkB;EAAgE;;;AAAkB;EAAgE;;;AAAkB;EAAgE;;;ACJ34H;EACE;EACA;;;AAGF;EAEE;EACA;EACA;EACA;;ANHA;EMFF;IAQI;IACA;;;AAGF;EACE;;AAGF;ENRA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EMAE;;ANEF;EAEE;;AAOF;EACE;;AA5BF;EMcA;IAKI;;;AAIJ;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EAEE;EACA;EACA;;AAGF;EAGE;EACA;;AAIJ;EACE;EACA;EACA;;AAGF;EN9DF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EMsDI;EACA;;ANrDJ;EAEE;;AMuDF;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGF;EAEE;EACA;;AN/FJ;EM+EA;IAoBI;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;ENzGF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EMiGI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;ANvGJ;EAEE;;AAOF;EACE;;AM+FE;EACE;;AAKN;EACE;;ANlIF;EMiIA;IAII;;;AAIJ;EACE;EACA;;AN3IF;EMyIA;IAKI;;;AAGF;EN3IF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;;AAOF;EACE;;AMyHA;EACE;EACA;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EN1KF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EMkKI;EACA;EACA;;ANlKJ;EAEE;;AAOF;EACE;;AM2JA;EACE;;AAIJ;EACE;;AAGF;EACE;EACA;;ANlMF;EMgMA;IAKI;;;AAGF;ENlMF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;;AAOF;EACE;;AM8KE;EACE;;AAGF;EACE;;AAGF;EACE;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;ANnOF;EMwNA;IAcI;;;AAGF;EACE;;AAGF;EACE;;AAIJ;EACE;EACA;;;AC/PJ;EACE;;AAEA;EACE;;;ACFJ;EReE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;;AAOF;EACE;;AQlCF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;;ACxBN;ETeE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ESvBA;EACA;EACA;EACA;;ATsBA;EAEE;;AAOF;EACE;;AS9BF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;;ACRJ;EACE;;;AAGF;EACE;;;AAGF;AAAA;EAEE;EACA;EACA;EACA;;AAxBA;EAmBF;AAAA;IAQI;;;;AAIJ;AAAA;EAEE;;;AAjCA;EAoCF;AAAA;IAGI;;;;AAIJ;AAAA;EAEE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;AAEA;EALF;IAMI;;EAEA;IACE;;;;AAKN;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;;AAKN;EACE;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;;;AAOF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AA/HF;EAkII;IAEE;IACA;IACA;;;;AC3IR;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EXMA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EWdE;EACA;EACA;EACA;;AXaF;EAEE;;AAOF;EACE;;AWpBF;EX8BA;EACA;EACA;EACA;EACA;EACA;EACA;EWlCE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAIJ;EACE;;;ACtCJ;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIA;EACE;EACA;EACA;EACA;EACA;;;ACtBN;EACE;;;ACCF;EdeE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EcvBA;EACA;EACA;EACA;;AdsBA;EAEE;;AAOF;EACE;;Ac9BF;EACE;EACA;EACA;;;AdPF;EeHF;IAEI;IACA;IACA;IACA;;;;AAIJ;AAAA;EAEE;;;AAGF;EfCE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EeTA;EACA;EACA;EACA;EACA;EACA;;AfMA;EAEE;;AAOF;EACE;;AedF;EACE;EACA;EACA;;AAGF;EACE;;;AC9BJ;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AhB7DF;EgBqDF;IAYI;IACA;;;;AAIJ;EACE;;;AAGF;EACE;;;AAIF;EhBnEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EgB2DA;;AhBzDA;EAEE;;AAOF;EACE;;;AgBkDJ;EhBxEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;;AAOF;EACE;;AgBqDF;EACE;;;AAIJ;EACE;;;AAGF;EhBpFE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EgB4EA;;AhB1EA;EAEE;;AAOF;EACE;;AgBkEF;EACE;;;ACvGF;EACE;;;AAIJ;EjBSE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EiBjBA;EACA;EACA;EACA;EACA;EACA;EACA;;AjBaA;EAEE;;AAOF;EACE;;AiBrBF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;;ACzBJ;EACE;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA;;AlBRA;EkBMF;IAII;;;;AAIJ;AAAA;AAAA;ElBFE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EkBJA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AlBHA;AAAA;AAAA;AAAA;AAAA;EAEE;;AAOF;AAAA;AAAA;EACE;;AkBLF;AAAA;AAAA;EACE;;AAGF;AAAA;AAAA;EACE;EACA;EACA;EACA;EACA;;AAGF;AAAA;AAAA;EACE;EACA;EACA;EACA;;AAEA;AAAA;AAAA;EACE;;AAIJ;AAAA;AAAA;EACE;;;AAIJ;EACE;EACA;EACA;;;ACjEF;EACE;EACA;EACA;EACA;EACA;;AnBMA;EmBXF;IAQI;;;;AAIJ;EACE;EACA;;;AnBHA;EmBMF;AAAA;IAGI;;;;AAIJ;EACE;EACA;;AnBfA;EmBaF;IAKI;;;;AAIJ;EACE;;;AChCF;EpBeE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EoBvBA;EACA;EACA;EACA;EACA;EACA;;ApBoBA;EAEE;;AAOF;EACE;;;AoB3BJ;EACE;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AC9BA;EACE;;;AAIJ;EACE;;;AAGF;ErBKE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EqBbA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;ArBMA;EAEE;;AAOF;EACE;;AqBdF;EACE;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;;AAGF;EACE;EACA;EACA;;AAEA;EACE;;AAIF;EACE;EACA;;;AAIN;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;ArBtGA;EqB4FF;IAaI;IACA;IACA;;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;;;AAIJ;EACE;EACA;;;ACtIF;EACE;EACA;EACA;EACA;EACA;;AtBFA;EsBHF;IAQI;IACA;;;;AAIJ;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;ACxBF;EACE;EACA;EACA;;;AAGF;EvBSE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EuBjBA;EACA;EACA;EACA;EACA;EACA;;AvBcA;EAEE;;AAOF;EACE;;AuBtBF;EACE;EACA;EACA;;AAGF;EACE;;AvBnBF;EuBGF;IAoBI;IACA;;;;AAIJ;EACE;EACA;;;ACjCF;EACE;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;ExBIE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EwBZA;EACA;EACA;EACA;EACA;EACA;;AxBSA;EAEE;;AAOF;EACE;;AwBjBF;EACE;;AAGF;EACE;EACA;EACA;;;AC3BJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;;AAGF;EACE;;;ACnBJ;AACE;EACA;;;AAGF;E1BUE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;;AAOF;EACE;;A0B7BF;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A1BnBA;E0BUF;IAYI;;;AAGF;EACE;;;AAIJ;EACE;;;AAGF;EACE;EACA;EACA;;A1BrCA;E0BkCF;IAMI;;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AChEF;EACE;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;;;ACdF;EACE;EACA;;;ACGA;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;E7BJA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;E6BJE;EACA;EACA;EACA;;A7BGF;EAEE;;AAOF;EACE;;A6BXA;EACE;EACA;EACA;;AAIJ;EACE;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAGE;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAKN;E7BhDA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;E6BwCE;;A7BtCF;EAEE;;AAOF;EACE;;A6B8BA;EACE;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAIJ;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;;ACpHN;E9ByDE;EACA;EACA,c8BzDe;E9B0Df,e8B1De;EACf;EACA;EACA;EACA;;A9BHA;E8BHF;IASI;IACA;IACA;IACA;IACA;IACA;;;AAIA;EADF;IAEI,OAlBc;IAmBd;IACA;IACA;IACA;IACA;IACA;IACA;;;AAIJ;EACE;;AAGF;EACE;;AAGF;EACE;AAAkB;;AAGpB;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGE;EADF;IAEI,OAzDY;IA0DZ;IACA;;;A9BzDN;E8B4CA;IAkBI;IACA;;;AAGF;EACE;;A9BnEJ;E8BkEE;IAII;;;AAIJ;E9B9DF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;E8BsDI;EACA;;A9BrDJ;EAEE;;AAOF;EACE;;AA5BF;E8BoEE;IAMI;;;AAGF;EACE;;AAIJ;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;;A9B5FF;E8BuFA;IAQI;;;AAIJ;EACE;EACA;EACA;;AAGF;EACE;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;A9BjIN;E8BsHE;IAeI;;;AAGF;E9B5FJ;EACA;EACA;EACA;EACA;EACA;EACA;E8BwFM;EACA;EACA;EACA;EACA;;AAGF;E9BrGJ;EACA;EACA;EACA;EACA;EACA;EACA;;A8BmGI;EACE;EACA;EACA;;AAIJ;EACE;;AAGF;E9BpHF;EACA;EACA;EACA;EACA;EACA;EACA;E8BgHI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE,OA9KY;;AAiLd;EACE;;AAIJ;E9BxKF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAsBA;EACA;EACA;EACA;EACA;EACA;EACA;E8BqII;;A9B/JJ;EAEE;;AAOF;EACE;;A8BuJE;EACE;EACA;;AAKN;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;A9BxMJ;E8BgMA;IAYI;IACA;IACA;;;AAIJ;EACE;EACA;;A9BpNF;E8BkNA;IAKI;IACA;IACA;;;AAGF;E9BhNF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;E8BwMI;EACA;EACA;EACA;;A9BzMJ;EAEE;;AAOF;EACE;;A8BiME;EACE;EACA;;;ACvON;EACE;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;;AAIF;E/BHA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;E+BLE;EACA;;A/BMF;EAEE;;AAOF;EACE;;A+BdA;EACE;EACA;;AAIJ;EAEE;;;AAOF;AAAA;AAAA;EACE;;;ACtCF;EACE;;AAGF;EACE;;AAEA;EACE;;AAIJ;EACE;;AAGF;EhCwCA;EACA;EACA,cgCzCiB;EhC0CjB,egC1CiB;EACf;EACA;;AAGF;EACE;EACA;;AAEA;EACE;;AAIJ;EhCyBA;EACA;EACA,cgC1BiB;EhC2BjB,egC3BiB;EACf;EACA;;AhChCF;EgC6BA;IAMI;;;AAGF;EhC1BF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EgCkBI;EACA;EACA;;AhClBJ;EAEE;;AAOF;EACE;;AgCUE;EACE;;AAIJ;EACE;;AhClDJ;EgCiDE;IAII;;;AAIJ;EACE;EACA;;AAGF;EACE;EACA;;AAIJ;EACE;;AAEA;EACE;EACA;;AAEA;EACE;;AAIJ;EACE;;AAMF;EACE;;AAIJ;EACE;EACA;;AAGF;EhCrFA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EgC6EE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AhClFF;EAEE;;AAOF;EACE;;AgC0EA;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;AACE;EACA;;AAIJ;EACE;EACA;EACA;;AAIA;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;;ACrJN;EACE;AAEA;;AAEE;EACE;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;;AAGF;EACE;EACA;;AAGF;EAIE;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;;AAIJ;EACE;EACA;;;AChDJ;EACE;EACA;;;AAKE;EACE;;AAIJ;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAGF;ElCRA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EkCAE;EACA;EACA;;AlCAF;EAEE;;AkCAA;EACE;;AAIJ;EACE;;;ACrCJ;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;ACVF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;;AAIJ;EACE;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;;AAIJ;EACE;EACA;;;AAGF;EACE;;AACA;EACE","file":"fontdue.css"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fontdue-js",
3
- "version": "1.3.1",
3
+ "version": "1.4.0",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build": "run-p build-js build-css build-ts-declarations",