fontdue-js 0.1.2 → 1.0.1

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.
@@ -0,0 +1,3 @@
1
+ import CharacterViewer from './dist/components/CharacterViewer';
2
+ export * from './dist/components/CharacterViewer';
3
+ export default CharacterViewer;
@@ -0,0 +1 @@
1
+ module.exports = require('./dist/components/CharacterViewer');
package/README.md CHANGED
@@ -5,7 +5,7 @@ This package exports [Fontdue.js](https://docs.fontdue.com/fontduejs) components
5
5
  ## Usage
6
6
 
7
7
  1. Wrap the root of your project with the [`FontdueProvider`](#fontdueprovider) component. For example in a Next.js app, add it to your `_app.tsx`.
8
- 2. Replace the `url` property with your Fontdue store URL.
8
+ 2. Include the `url` property with your Fontdue store URL.
9
9
  3. Render the [`StoreModal`](#storemodal) component so that is it available on every page.
10
10
  4. Import the `fontdue-js/fontdue.css` CSS file. (This example uses Next.js)
11
11
 
@@ -21,13 +21,11 @@ import 'fontdue-js/fontdue.css';
21
21
 
22
22
  function MyApp({ Component, pageProps }: AppProps) {
23
23
  return (
24
- <React.Fragment>
25
- <FontdueProvider url="https://example.fontdue.com" config={{}}>
26
- <Component {...pageProps} />
24
+ <FontdueProvider url="https://example.fontdue.com" config={{}}>
25
+ <Component {...pageProps} />
27
26
 
28
- <StoreModal />
29
- </FontdueProvider>
30
- </React.Fragment>
27
+ <StoreModal />
28
+ </FontdueProvider>
31
29
  );
32
30
  }
33
31
 
@@ -69,7 +67,9 @@ import StoreModal from 'fontdue-js/StoreModal';
69
67
 
70
68
  ## `BuyButton`
71
69
 
72
- Show a **Buy** button for a particular collection. When clicked, opens the StoreModal showing that collection.
70
+ A button which when clicked opens the Cart to the relevant collection, and selects the collection.
71
+
72
+ Renders a button with the text `Buy {collectionName}`
73
73
 
74
74
  ```tsx
75
75
  import BuyButton from 'fontdue-js/BuyButton';
@@ -78,11 +78,11 @@ import BuyButton from 'fontdue-js/BuyButton';
78
78
  | Prop | Description |
79
79
  | --- | --- |
80
80
  | `collectionId` or `collectionSlug` | (Required) `string` Collection identifier |
81
- | `collectionName` | (Optional) `string` Name to display as a suffix in the button: `Buy {collectionName}` |
81
+ | `collectionName` | (Optional) `string` The name to render in the button: `Buy {collectionName}` |
82
82
 
83
83
  ## `CartButton`
84
84
 
85
- A cart button. When clicked, it opens the StoreModal. If a user has items in their cart, it will show the current cart. Otherwise, it shows the index "Browse" page of the StoreModal.
85
+ A button to open the Store Modal. If the user has items in their cart, the button will navigate straight to the Cart screen. Otherwise it opens the fonts index.
86
86
 
87
87
  ```tsx
88
88
  import CartButton from 'fontdue-js/CartButton';
@@ -90,12 +90,24 @@ import CartButton from 'fontdue-js/CartButton';
90
90
 
91
91
  | Prop | Description |
92
92
  | --- | --- |
93
- | `buttonStyle` | (Optional) `'icon' \| 'inline'` Style of the button. Defaults to an unstyled button. |
94
- | `label` | (Optional) `string` Text label instead of "Cart" when `buttonStyle` is not `icon`. |
93
+ | `buttonStyle` | (Optional) `'icon' \| 'inline'` Button style. If left blank, the button is unstyled. |
94
+ | `label` | (Optional) `string` For non-icon style buttons, the text to render inside the button. Defaults to "Cart" |
95
+
96
+ ## `CharacterViewer`
97
+
98
+ An interactive character/glyph explorer.
99
+
100
+ ```tsx
101
+ import CharacterViewer from 'fontdue-js/CharacterViewer';
102
+ ```
103
+
104
+ | Prop | Description |
105
+ | --- | --- |
106
+ | `collectionId` or `collectionSlug` | (Required) `string` Identifier for collection |
95
107
 
96
108
  ## `TypeTesters`
97
109
 
98
- Displays a list of type testers for a collection, by pulling data from the Fontdue CMS for that collection.
110
+ A group of type tester components for a collection. You must first add content for the collection's type testers through the Fontdue dashboard.
99
111
 
100
112
  ```tsx
101
113
  import TypeTesters from 'fontdue-js/TypeTesters';
@@ -122,33 +134,33 @@ The props accepted for this compnenent will change and be documented thereafter.
122
134
  import TypeTester from 'fontdue-js/TypeTester';
123
135
  ```
124
136
 
125
- ## `NewsletterSignup`
137
+ ## `TestFontsForm`
126
138
 
127
- A newsletter signup form. Customers entering their information here simply adds them as a Customer in the Fontdue CMS.
139
+ Displays a form for users to enter their information and download test fonts. Make sure you have configured [Test Fonts](https://docs.fontdue.com/test-fonts) for this to work.
128
140
 
129
141
  ```tsx
130
- import NewsletterSignup from 'fontdue-js/NewsletterSignup';
142
+ import TestFontsForm from 'fontdue-js/TestFontsForm';
131
143
  ```
132
144
 
133
145
  | Prop | Description |
134
146
  | --- | --- |
135
- | `optInLabel` | (Required) `string` Label that appears with the checkbox required to be checked. |
136
- | `buttonLabel` | (Optional) `string` Label for the button. Defaults to "Subscribe" |
137
- | `optInCheckboxChecked` | (Optional) `boolean` Set the checkbox checked by default. |
147
+ | `agreementLabel` | (Optional) `string` Label for required checkbox. Defaults to the field "EULA agreement text" in your Fontdue Labels settings |
148
+ | `downloadLabel` | (Optional) `string` Download button label. Defaults to "Download test fonts" |
149
+ | `newsletterCheckboxChecked` | (Optional) `boolean` Set the newsletter opt-in checkbox checked by default |
138
150
 
139
- ## `TestFontsForm`
151
+ ## `NewsletterSignup`
140
152
 
141
- Displays a form for users to enter their information in order to download test fonts. Make sure you have configured [Test Fonts](https://docs.fontdue.com/test-fonts) for this to work.
153
+ A newsletter signup form. Customers entering their information here simply adds them as a Customer in the Fontdue CMS.
142
154
 
143
155
  ```tsx
144
- import TestFontsForm from 'fontdue-js/TestFontsForm';
156
+ import NewsletterSignup from 'fontdue-js/NewsletterSignup';
145
157
  ```
146
158
 
147
159
  | Prop | Description |
148
160
  | --- | --- |
149
- | `agreementLabel` | (Optional) `string` Label for required checkbox. Defaults to the field "EULA agreement text" in your Fontdue Labels settings |
150
- | `downloadLabel` | (Optional) `string` Download button label. Defaults to "Download test fonts" |
151
- | `newsletterCheckboxChecked` | (Optional) `boolean` Set the newsletter opt-in checkbox checked by default |
161
+ | `optInLabel` | (Required) `string` Label that appears with the checkbox required to be checked. |
162
+ | `buttonLabel` | (Optional) `string` Label for the button. Defaults to "Subscribe" |
163
+ | `optInCheckboxChecked` | (Optional) `boolean` Set the checkbox checked by default. |
152
164
 
153
165
  ## `useFontStyle`
154
166
 
@@ -0,0 +1,20 @@
1
+ import { ConcreteRequest } from "relay-runtime";
2
+ import { FragmentRefs } from "relay-runtime";
3
+ export declare type CharacterViewer_SlugQueryVariables = {
4
+ collectionSlug: string;
5
+ };
6
+ export declare type CharacterViewer_SlugQueryResponse = {
7
+ readonly viewer: {
8
+ readonly slug: {
9
+ readonly fontCollection: {
10
+ readonly " $fragmentRefs": FragmentRefs<"CharacterViewer_collection">;
11
+ } | null;
12
+ } | null;
13
+ } | null;
14
+ };
15
+ export declare type CharacterViewer_SlugQuery = {
16
+ readonly response: CharacterViewer_SlugQueryResponse;
17
+ readonly variables: CharacterViewer_SlugQueryVariables;
18
+ };
19
+ declare const node: ConcreteRequest;
20
+ export default node;
@@ -0,0 +1,289 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+
8
+ /* tslint:disable */
9
+
10
+ /* eslint-disable */
11
+ // @ts-nocheck
12
+
13
+ /*
14
+ query CharacterViewer_SlugQuery(
15
+ $collectionSlug: String!
16
+ ) {
17
+ viewer {
18
+ slug(name: $collectionSlug) {
19
+ fontCollection {
20
+ ...CharacterViewer_collection
21
+ id
22
+ }
23
+ id
24
+ }
25
+ id
26
+ }
27
+ }
28
+
29
+ fragment CharacterViewer_collection on FontCollection {
30
+ featureStyle {
31
+ id
32
+ }
33
+ id
34
+ name
35
+ fontStyles {
36
+ id
37
+ cssFamily
38
+ name
39
+ characterBlocks {
40
+ name
41
+ characters
42
+ }
43
+ featureCharacters {
44
+ feature
45
+ name
46
+ characters
47
+ }
48
+ }
49
+ children(collectionTypes: [FAMILY]) {
50
+ id
51
+ name
52
+ fontStyles {
53
+ id
54
+ cssFamily
55
+ name
56
+ characterBlocks {
57
+ name
58
+ characters
59
+ }
60
+ featureCharacters {
61
+ feature
62
+ name
63
+ characters
64
+ }
65
+ }
66
+ }
67
+ }
68
+ */
69
+ const node = function () {
70
+ var v0 = [{
71
+ "defaultValue": null,
72
+ "kind": "LocalArgument",
73
+ "name": "collectionSlug"
74
+ }],
75
+ v1 = [{
76
+ "kind": "Variable",
77
+ "name": "name",
78
+ "variableName": "collectionSlug"
79
+ }],
80
+ v2 = {
81
+ "alias": null,
82
+ "args": null,
83
+ "kind": "ScalarField",
84
+ "name": "id",
85
+ "storageKey": null
86
+ },
87
+ v3 = {
88
+ "alias": null,
89
+ "args": null,
90
+ "kind": "ScalarField",
91
+ "name": "name",
92
+ "storageKey": null
93
+ },
94
+ v4 = {
95
+ "alias": null,
96
+ "args": null,
97
+ "kind": "ScalarField",
98
+ "name": "characters",
99
+ "storageKey": null
100
+ },
101
+ v5 = {
102
+ "alias": null,
103
+ "args": null,
104
+ "concreteType": "FontStyle",
105
+ "kind": "LinkedField",
106
+ "name": "fontStyles",
107
+ "plural": true,
108
+ "selections": [v2
109
+ /*: any*/
110
+ , {
111
+ "alias": null,
112
+ "args": null,
113
+ "kind": "ScalarField",
114
+ "name": "cssFamily",
115
+ "storageKey": null
116
+ }, v3
117
+ /*: any*/
118
+ , {
119
+ "alias": null,
120
+ "args": null,
121
+ "concreteType": "CharacterBlock",
122
+ "kind": "LinkedField",
123
+ "name": "characterBlocks",
124
+ "plural": true,
125
+ "selections": [v3
126
+ /*: any*/
127
+ , v4
128
+ /*: any*/
129
+ ],
130
+ "storageKey": null
131
+ }, {
132
+ "alias": null,
133
+ "args": null,
134
+ "concreteType": "FeatureCharacters",
135
+ "kind": "LinkedField",
136
+ "name": "featureCharacters",
137
+ "plural": true,
138
+ "selections": [{
139
+ "alias": null,
140
+ "args": null,
141
+ "kind": "ScalarField",
142
+ "name": "feature",
143
+ "storageKey": null
144
+ }, v3
145
+ /*: any*/
146
+ , v4
147
+ /*: any*/
148
+ ],
149
+ "storageKey": null
150
+ }],
151
+ "storageKey": null
152
+ };
153
+ return {
154
+ "fragment": {
155
+ "argumentDefinitions": v0
156
+ /*: any*/
157
+ ,
158
+ "kind": "Fragment",
159
+ "metadata": null,
160
+ "name": "CharacterViewer_SlugQuery",
161
+ "selections": [{
162
+ "alias": null,
163
+ "args": null,
164
+ "concreteType": "Viewer",
165
+ "kind": "LinkedField",
166
+ "name": "viewer",
167
+ "plural": false,
168
+ "selections": [{
169
+ "alias": null,
170
+ "args": v1
171
+ /*: any*/
172
+ ,
173
+ "concreteType": "Slug",
174
+ "kind": "LinkedField",
175
+ "name": "slug",
176
+ "plural": false,
177
+ "selections": [{
178
+ "alias": null,
179
+ "args": null,
180
+ "concreteType": "FontCollection",
181
+ "kind": "LinkedField",
182
+ "name": "fontCollection",
183
+ "plural": false,
184
+ "selections": [{
185
+ "args": null,
186
+ "kind": "FragmentSpread",
187
+ "name": "CharacterViewer_collection"
188
+ }],
189
+ "storageKey": null
190
+ }],
191
+ "storageKey": null
192
+ }],
193
+ "storageKey": null
194
+ }],
195
+ "type": "RootQueryType",
196
+ "abstractKey": null
197
+ },
198
+ "kind": "Request",
199
+ "operation": {
200
+ "argumentDefinitions": v0
201
+ /*: any*/
202
+ ,
203
+ "kind": "Operation",
204
+ "name": "CharacterViewer_SlugQuery",
205
+ "selections": [{
206
+ "alias": null,
207
+ "args": null,
208
+ "concreteType": "Viewer",
209
+ "kind": "LinkedField",
210
+ "name": "viewer",
211
+ "plural": false,
212
+ "selections": [{
213
+ "alias": null,
214
+ "args": v1
215
+ /*: any*/
216
+ ,
217
+ "concreteType": "Slug",
218
+ "kind": "LinkedField",
219
+ "name": "slug",
220
+ "plural": false,
221
+ "selections": [{
222
+ "alias": null,
223
+ "args": null,
224
+ "concreteType": "FontCollection",
225
+ "kind": "LinkedField",
226
+ "name": "fontCollection",
227
+ "plural": false,
228
+ "selections": [{
229
+ "alias": null,
230
+ "args": null,
231
+ "concreteType": "FontStyle",
232
+ "kind": "LinkedField",
233
+ "name": "featureStyle",
234
+ "plural": false,
235
+ "selections": [v2
236
+ /*: any*/
237
+ ],
238
+ "storageKey": null
239
+ }, v2
240
+ /*: any*/
241
+ , v3
242
+ /*: any*/
243
+ , v5
244
+ /*: any*/
245
+ , {
246
+ "alias": null,
247
+ "args": [{
248
+ "kind": "Literal",
249
+ "name": "collectionTypes",
250
+ "value": ["FAMILY"]
251
+ }],
252
+ "concreteType": "FontCollection",
253
+ "kind": "LinkedField",
254
+ "name": "children",
255
+ "plural": true,
256
+ "selections": [v2
257
+ /*: any*/
258
+ , v3
259
+ /*: any*/
260
+ , v5
261
+ /*: any*/
262
+ ],
263
+ "storageKey": "children(collectionTypes:[\"FAMILY\"])"
264
+ }],
265
+ "storageKey": null
266
+ }, v2
267
+ /*: any*/
268
+ ],
269
+ "storageKey": null
270
+ }, v2
271
+ /*: any*/
272
+ ],
273
+ "storageKey": null
274
+ }]
275
+ },
276
+ "params": {
277
+ "cacheID": "f69a908fd095e2408ba06adeeb8cd0f0",
278
+ "id": null,
279
+ "metadata": {},
280
+ "name": "CharacterViewer_SlugQuery",
281
+ "operationKind": "query",
282
+ "text": "query CharacterViewer_SlugQuery(\n $collectionSlug: String!\n) {\n viewer {\n slug(name: $collectionSlug) {\n fontCollection {\n ...CharacterViewer_collection\n id\n }\n id\n }\n id\n }\n}\n\nfragment CharacterViewer_collection on FontCollection {\n featureStyle {\n id\n }\n id\n name\n fontStyles {\n id\n cssFamily\n name\n characterBlocks {\n name\n characters\n }\n featureCharacters {\n feature\n name\n characters\n }\n }\n children(collectionTypes: [FAMILY]) {\n id\n name\n fontStyles {\n id\n cssFamily\n name\n characterBlocks {\n name\n characters\n }\n featureCharacters {\n feature\n name\n characters\n }\n }\n }\n}\n"
283
+ }
284
+ };
285
+ }();
286
+
287
+ node.hash = 'de903e7c2640562aee374a900e089c9c';
288
+ var _default = node;
289
+ exports.default = _default;
@@ -7,6 +7,12 @@ export declare type TypeTesterStandalone_StyleQueryResponse = {
7
7
  readonly viewer: {
8
8
  readonly fontStyle: {
9
9
  readonly id: string;
10
+ readonly family: {
11
+ readonly id: string;
12
+ readonly parent: {
13
+ readonly id: string;
14
+ } | null;
15
+ } | null;
10
16
  } | null;
11
17
  } | null;
12
18
  };
@@ -18,6 +18,12 @@ query TypeTesterStandalone_StyleQuery(
18
18
  viewer {
19
19
  fontStyle(familyName: $familyName, styleName: $styleName) {
20
20
  id
21
+ family {
22
+ id
23
+ parent {
24
+ id
25
+ }
26
+ }
21
27
  }
22
28
  id
23
29
  }
@@ -57,7 +63,29 @@ const node = function () {
57
63
  "plural": false,
58
64
  "selections": [v1
59
65
  /*: any*/
60
- ],
66
+ , {
67
+ "alias": null,
68
+ "args": null,
69
+ "concreteType": "FontCollection",
70
+ "kind": "LinkedField",
71
+ "name": "family",
72
+ "plural": false,
73
+ "selections": [v1
74
+ /*: any*/
75
+ , {
76
+ "alias": null,
77
+ "args": null,
78
+ "concreteType": "FontCollection",
79
+ "kind": "LinkedField",
80
+ "name": "parent",
81
+ "plural": false,
82
+ "selections": [v1
83
+ /*: any*/
84
+ ],
85
+ "storageKey": null
86
+ }],
87
+ "storageKey": null
88
+ }],
61
89
  "storageKey": null
62
90
  };
63
91
  return {
@@ -106,16 +134,16 @@ const node = function () {
106
134
  }]
107
135
  },
108
136
  "params": {
109
- "cacheID": "0d9868456784e33a2e96e5e6c74d07c8",
137
+ "cacheID": "55ed0cd020e94e2c67fcbb7d3507fe25",
110
138
  "id": null,
111
139
  "metadata": {},
112
140
  "name": "TypeTesterStandalone_StyleQuery",
113
141
  "operationKind": "query",
114
- "text": "query TypeTesterStandalone_StyleQuery(\n $familyName: String!\n $styleName: String!\n) {\n viewer {\n fontStyle(familyName: $familyName, styleName: $styleName) {\n id\n }\n id\n }\n}\n"
142
+ "text": "query TypeTesterStandalone_StyleQuery(\n $familyName: String!\n $styleName: String!\n) {\n viewer {\n fontStyle(familyName: $familyName, styleName: $styleName) {\n id\n family {\n id\n parent {\n id\n }\n }\n }\n id\n }\n}\n"
115
143
  }
116
144
  };
117
145
  }();
118
146
 
119
- node.hash = 'aafc4541c04db8a72ac96c7d09e58490';
147
+ node.hash = '6b7470fc7c096c1adc484c7b3d32b126';
120
148
  var _default = node;
121
149
  exports.default = _default;
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  interface CharacterViewer_props {
3
- collectionId: string;
3
+ collectionId?: string;
4
+ collectionSlug?: string;
4
5
  }
5
6
  declare const CharacterViewerQueryRenderer: React.FC<CharacterViewer_props>;
6
7
  export default CharacterViewerQueryRenderer;
@@ -9,8 +9,6 @@ var _react = _interopRequireWildcard(require("react"));
9
9
 
10
10
  var _reactRelay = require("react-relay");
11
11
 
12
- var _reactStaticContainer = _interopRequireDefault(require("react-static-container"));
13
-
14
12
  var _resizeObserver = _interopRequireDefault(require("@react-hook/resize-observer"));
15
13
 
16
14
  var _utils = require("../../utils");
@@ -19,7 +17,7 @@ var _Select = _interopRequireDefault(require("../Select"));
19
17
 
20
18
  var _useFontStyle = _interopRequireDefault(require("../useFontStyle"));
21
19
 
22
- var _CharacterViewer_family, _CharacterViewer_collection, _CharacterViewer_Query;
20
+ var _CharacterViewer_family, _CharacterViewer_collection, _CharacterViewer_Query, _CharacterViewer_SlugQuery;
23
21
 
24
22
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
25
23
 
@@ -230,26 +228,54 @@ const CharacterViewer = (0, _reactRelay.createFragmentContainer)(CharacterViewer
230
228
 
231
229
  const CharacterViewerQueryRenderer = _ref5 => {
232
230
  let {
233
- collectionId
231
+ collectionId,
232
+ collectionSlug
234
233
  } = _ref5;
235
234
  const environment = (0, _reactRelay.useRelayEnvironment)();
236
- return /*#__PURE__*/_react.default.createElement(_reactRelay.QueryRenderer, {
237
- query: _CharacterViewer_Query !== void 0 ? _CharacterViewer_Query : (_CharacterViewer_Query = require("../../__generated__/CharacterViewer_Query.graphql"), _CharacterViewer_Query.hash && _CharacterViewer_Query.hash !== "10b58f0e5e086adbcd2a0d4cd44c442c" && console.error("The definition of 'CharacterViewer_Query' appears to have changed. Run `relay-compiler` to update the generated files to receive the expected data."), _CharacterViewer_Query),
238
- variables: {
239
- collectionId
240
- },
241
- environment: environment,
242
- render: _ref6 => {
243
- let {
244
- props
245
- } = _ref6;
246
- return /*#__PURE__*/_react.default.createElement(_reactStaticContainer.default, {
247
- shouldUpdate: props
248
- }, props !== null && props !== void 0 && props.node ? /*#__PURE__*/_react.default.createElement(CharacterViewer, {
249
- collection: props.node
250
- }) : null);
251
- }
252
- });
235
+
236
+ if (collectionId) {
237
+ return /*#__PURE__*/_react.default.createElement(_reactRelay.QueryRenderer, {
238
+ query: _CharacterViewer_Query !== void 0 ? _CharacterViewer_Query : (_CharacterViewer_Query = require("../../__generated__/CharacterViewer_Query.graphql"), _CharacterViewer_Query.hash && _CharacterViewer_Query.hash !== "10b58f0e5e086adbcd2a0d4cd44c442c" && console.error("The definition of 'CharacterViewer_Query' appears to have changed. Run `relay-compiler` to update the generated files to receive the expected data."), _CharacterViewer_Query),
239
+ variables: {
240
+ collectionId
241
+ },
242
+ environment: environment,
243
+ render: _ref6 => {
244
+ let {
245
+ props
246
+ } = _ref6;
247
+ const node = props === null || props === void 0 ? void 0 : props.node;
248
+ if (!node) return null;
249
+ return /*#__PURE__*/_react.default.createElement(CharacterViewer, {
250
+ collection: node
251
+ });
252
+ }
253
+ });
254
+ }
255
+
256
+ if (collectionSlug) {
257
+ return /*#__PURE__*/_react.default.createElement(_reactRelay.QueryRenderer, {
258
+ query: _CharacterViewer_SlugQuery !== void 0 ? _CharacterViewer_SlugQuery : (_CharacterViewer_SlugQuery = require("../../__generated__/CharacterViewer_SlugQuery.graphql"), _CharacterViewer_SlugQuery.hash && _CharacterViewer_SlugQuery.hash !== "de903e7c2640562aee374a900e089c9c" && console.error("The definition of 'CharacterViewer_SlugQuery' appears to have changed. Run `relay-compiler` to update the generated files to receive the expected data."), _CharacterViewer_SlugQuery),
259
+ variables: {
260
+ collectionSlug
261
+ },
262
+ environment: environment,
263
+ render: _ref7 => {
264
+ var _props$viewer, _props$viewer$slug;
265
+
266
+ let {
267
+ props
268
+ } = _ref7;
269
+ const collection = props === null || props === void 0 ? void 0 : (_props$viewer = props.viewer) === null || _props$viewer === void 0 ? void 0 : (_props$viewer$slug = _props$viewer.slug) === null || _props$viewer$slug === void 0 ? void 0 : _props$viewer$slug.fontCollection;
270
+ if (!collection) return null;
271
+ return /*#__PURE__*/_react.default.createElement(CharacterViewer, {
272
+ collection: collection
273
+ });
274
+ }
275
+ });
276
+ }
277
+
278
+ throw new Error('Unable to render CharacterViewer without a collectionId or collectionSlug');
253
279
  };
254
280
 
255
281
  var _default = CharacterViewerQueryRenderer;
@@ -13,8 +13,6 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
13
13
 
14
14
  function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
15
15
 
16
- const NBSP = '\xa0';
17
-
18
16
  const Select = _ref => {
19
17
  var _options$find;
20
18
 
@@ -27,7 +25,7 @@ const Select = _ref => {
27
25
  className: "select"
28
26
  }, /*#__PURE__*/_react.default.createElement("div", {
29
27
  className: "select__text"
30
- }, /*#__PURE__*/_react.default.createElement(_Icons.DownArrow, null), NBSP, (_options$find = options.find(_ref2 => {
28
+ }, /*#__PURE__*/_react.default.createElement(_Icons.DownArrow, null), (_options$find = options.find(_ref2 => {
31
29
  let {
32
30
  value: v
33
31
  } = _ref2;
@@ -37,14 +37,14 @@ const TypeTesterStandalone = _ref => {
37
37
  } = _ref;
38
38
  const environment = (0, _reactRelay.useRelayEnvironment)();
39
39
  return /*#__PURE__*/_react.default.createElement(_reactRelay.QueryRenderer, {
40
- query: _TypeTesterStandalone_StyleQuery !== void 0 ? _TypeTesterStandalone_StyleQuery : (_TypeTesterStandalone_StyleQuery = require("../../__generated__/TypeTesterStandalone_StyleQuery.graphql"), _TypeTesterStandalone_StyleQuery.hash && _TypeTesterStandalone_StyleQuery.hash !== "aafc4541c04db8a72ac96c7d09e58490" && console.error("The definition of 'TypeTesterStandalone_StyleQuery' appears to have changed. Run `relay-compiler` to update the generated files to receive the expected data."), _TypeTesterStandalone_StyleQuery),
40
+ query: _TypeTesterStandalone_StyleQuery !== void 0 ? _TypeTesterStandalone_StyleQuery : (_TypeTesterStandalone_StyleQuery = require("../../__generated__/TypeTesterStandalone_StyleQuery.graphql"), _TypeTesterStandalone_StyleQuery.hash && _TypeTesterStandalone_StyleQuery.hash !== "6b7470fc7c096c1adc484c7b3d32b126" && console.error("The definition of 'TypeTesterStandalone_StyleQuery' appears to have changed. Run `relay-compiler` to update the generated files to receive the expected data."), _TypeTesterStandalone_StyleQuery),
41
41
  variables: {
42
42
  familyName,
43
43
  styleName
44
44
  },
45
45
  environment: environment,
46
46
  render: _ref2 => {
47
- var _props$viewer$fontSty, _props$viewer, _props$viewer$fontSty2, _features$split;
47
+ var _props$viewer$fontSty, _props$viewer, _props$viewer$fontSty2, _features$split, _props$viewer$fontSty3, _props$viewer2, _props$viewer2$fontSt, _props$viewer2$fontSt2, _props$viewer2$fontSt3, _props$viewer3, _props$viewer3$fontSt, _props$viewer3$fontSt2;
48
48
 
49
49
  let {
50
50
  props
@@ -66,7 +66,7 @@ const TypeTesterStandalone = _ref => {
66
66
  fontStyleId: (_props$viewer$fontSty = (_props$viewer = props.viewer) === null || _props$viewer === void 0 ? void 0 : (_props$viewer$fontSty2 = _props$viewer.fontStyle) === null || _props$viewer$fontSty2 === void 0 ? void 0 : _props$viewer$fontSty2.id) !== null && _props$viewer$fontSty !== void 0 ? _props$viewer$fontSty : null,
67
67
  features: (_features$split = features === null || features === void 0 ? void 0 : features.split(',')) !== null && _features$split !== void 0 ? _features$split : [],
68
68
  direction: direction === 'rtl' ? 'rtl' : 'ltr',
69
- productId: "TODO",
69
+ productId: (_props$viewer$fontSty3 = (_props$viewer2 = props.viewer) === null || _props$viewer2 === void 0 ? void 0 : (_props$viewer2$fontSt = _props$viewer2.fontStyle) === null || _props$viewer2$fontSt === void 0 ? void 0 : (_props$viewer2$fontSt2 = _props$viewer2$fontSt.family) === null || _props$viewer2$fontSt2 === void 0 ? void 0 : (_props$viewer2$fontSt3 = _props$viewer2$fontSt2.parent) === null || _props$viewer2$fontSt3 === void 0 ? void 0 : _props$viewer2$fontSt3.id) !== null && _props$viewer$fontSty3 !== void 0 ? _props$viewer$fontSty3 : (_props$viewer3 = props.viewer) === null || _props$viewer3 === void 0 ? void 0 : (_props$viewer3$fontSt = _props$viewer3.fontStyle) === null || _props$viewer3$fontSt === void 0 ? void 0 : (_props$viewer3$fontSt2 = _props$viewer3$fontSt.family) === null || _props$viewer3$fontSt2 === void 0 ? void 0 : _props$viewer3$fontSt2.id,
70
70
  config: {
71
71
  groupEdit: false,
72
72
  buyButton: false
@@ -33,7 +33,7 @@ export interface TypeTesterConfig {
33
33
  }
34
34
  export interface TypeTesterBaseProps {
35
35
  id: string;
36
- productId: string;
36
+ productId?: string;
37
37
  direction: 'ltr' | 'rtl';
38
38
  onSelectFontStyleId: (value: string) => void;
39
39
  features?: readonly string[] | null;
@@ -133,7 +133,7 @@ const TypeTesterComponent = _ref => {
133
133
  })), config.toolsPosition === 'inline' && /*#__PURE__*/_react.default.createElement(_TypeTesterToolbar.default, {
134
134
  id: id,
135
135
  features: features
136
- }), config.selectButton && sku && /*#__PURE__*/_react.default.createElement("div", {
136
+ }), config.selectButton && sku && productId && /*#__PURE__*/_react.default.createElement("div", {
137
137
  className: "type-tester__select-button-wrapper",
138
138
  onMouseDown: e => e.preventDefault()
139
139
  }, /*#__PURE__*/_react.default.createElement("div", {
package/fontdue.css CHANGED
@@ -950,6 +950,7 @@ input:checked + .checkbox__icon {
950
950
  vertical-align: baseline;
951
951
  position: relative;
952
952
  bottom: -2px;
953
+ margin-right: 4px;
953
954
  }
954
955
 
955
956
  body[data-fontdue-store-modal=open] {
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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ACA;;AAGF;ENlJF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EM0II;EACA;EACA;;AN1IJ;EAEE;;AAOF;EACE;;AMmIA;EACE;;AAIJ;EACE;;AAIA;ENnKF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;;AAOF;EACE;;AM+IE;EACE;;AAGF;EACE;;AAGF;EACE;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;ANpMF;EMyLA;IAcI;;;AAGF;EACE;;AAGF;EACE;;AAIJ;EACE;EACA;;;AChOJ;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;;;ACrBN;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;;AhB1DA;EgBqDF;IAQI;IACA;;;;AAIJ;EhBtDE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;;AAOF;EACE;;;AgBoCJ;EhB1DE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;;AAOF;EACE;;;AgBwCJ;EACE;;;AAGF;EhBlEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;;AAOF;EACE;;AgB+CF;EACE;;;ACpFF;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;;;AAGF;AAAA;AAAA;ElBCE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EkBPA;EACA;EACA;EACA;EACA;EACA;EAaA;EACA;EACA;EACA;;AlBZA;AAAA;AAAA;AAAA;AAAA;EAEE;;AAOF;AAAA;AAAA;EACE;;AkBZF;AAAA;AAAA;EACE;EACA;EACA;;AAGF;AAAA;AAAA;EACE;;AASF;AAAA;AAAA;EACE;EACA;EACA;EACA;;AAGF;AAAA;AAAA;EACE;EACA;EACA;EACA;;;ACtDJ;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAIF;EACE;;;AClBF;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;;AtBDA;EsBHF;IAOI;;;;AAIJ;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AC5BF;EACE;EACA;EACA;;;AAGF;EvBSE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EuBjBA;EAEA;EACA;EACA;EACA;EACA;;AvBaA;EAEE;;AAOF;EACE;;AuBrBF;EACE;EACA;EACA;;AAGF;EACE;;;AAIJ;EACE;EACA;;;AC7BF;EACE;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;ExBIE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EwBZA;EACA;EACA;EACA;;AxBWA;EAEE;;AAOF;EACE;;AwBnBF;EACE;;AAGF;EACE;EACA;EACA;;;ACzBJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;;ACbJ;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;;AAEA;EACE;;;AAIJ;EACE;;;AAGF;EACE;EACA;;A1B/BA;E0B6BF;IAKI;;;;AAIJ;E1BgBE;EACA;EACA,c0BjBe;E1BkBf,e0BlBe;EACf;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;ACnDF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;;;ACbF;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":"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ACA;;AAGF;ENlJF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EM0II;EACA;EACA;;AN1IJ;EAEE;;AAOF;EACE;;AMmIA;EACE;;AAIJ;EACE;;AAIA;ENnKF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;;AAOF;EACE;;AM+IE;EACE;;AAGF;EACE;;AAGF;EACE;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;ANpMF;EMyLA;IAcI;;;AAGF;EACE;;AAGF;EACE;;AAIJ;EACE;EACA;;;AChOJ;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;;AhB1DA;EgBqDF;IAQI;IACA;;;;AAIJ;EhBtDE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;;AAOF;EACE;;;AgBoCJ;EhB1DE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;;AAOF;EACE;;;AgBwCJ;EACE;;;AAGF;EhBlEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;;AAOF;EACE;;AgB+CF;EACE;;;ACpFF;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;;;AAGF;AAAA;AAAA;ElBCE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EkBPA;EACA;EACA;EACA;EACA;EACA;EAaA;EACA;EACA;EACA;;AlBZA;AAAA;AAAA;AAAA;AAAA;EAEE;;AAOF;AAAA;AAAA;EACE;;AkBZF;AAAA;AAAA;EACE;EACA;EACA;;AAGF;AAAA;AAAA;EACE;;AASF;AAAA;AAAA;EACE;EACA;EACA;EACA;;AAGF;AAAA;AAAA;EACE;EACA;EACA;EACA;;;ACtDJ;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAIF;EACE;;;AClBF;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;;AtBDA;EsBHF;IAOI;;;;AAIJ;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AC5BF;EACE;EACA;EACA;;;AAGF;EvBSE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EuBjBA;EAEA;EACA;EACA;EACA;EACA;;AvBaA;EAEE;;AAOF;EACE;;AuBrBF;EACE;EACA;EACA;;AAGF;EACE;;;AAIJ;EACE;EACA;;;AC7BF;EACE;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;ExBIE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EwBZA;EACA;EACA;EACA;;AxBWA;EAEE;;AAOF;EACE;;AwBnBF;EACE;;AAGF;EACE;EACA;EACA;;;ACzBJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;;ACbJ;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;;AAEA;EACE;;;AAIJ;EACE;;;AAGF;EACE;EACA;;A1B/BA;E0B6BF;IAKI;;;;AAIJ;E1BgBE;EACA;EACA,c0BjBe;E1BkBf,e0BlBe;EACf;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;ACnDF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;;;ACbF;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": "0.1.2",
3
+ "version": "1.0.1",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build": "run-p build-js build-css build-ts-declarations",