@antscorp/antsomi-ui 1.3.3-beta.2 → 1.3.3-beta.4

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 (45) hide show
  1. package/dist/index.js +1 -1
  2. package/es/components/atoms/Flex/Flex.d.ts +2 -0
  3. package/es/components/atoms/Flex/Flex.js +1 -0
  4. package/es/components/atoms/Flex/index.d.ts +1 -0
  5. package/es/components/atoms/Flex/index.js +1 -0
  6. package/es/components/atoms/Input/Input.d.ts +11 -3
  7. package/es/components/atoms/Input/Input.js +3 -0
  8. package/es/components/atoms/index.d.ts +1 -0
  9. package/es/components/atoms/index.js +1 -0
  10. package/es/components/common/ConfigProvider/GlobalStyle.js +29 -1
  11. package/es/components/molecules/Collapse/Collapse.d.ts +3 -3
  12. package/es/components/molecules/Collapse/Collapse.js +9 -0
  13. package/es/components/molecules/FontFamilySelect/constants.d.ts +307 -0
  14. package/es/components/molecules/FontFamilySelect/constants.js +257 -0
  15. package/es/components/molecules/FontFamilySelect/index.d.ts +17 -0
  16. package/es/components/molecules/FontFamilySelect/index.js +53 -0
  17. package/es/components/molecules/FontSetting/index.d.ts +18 -0
  18. package/es/components/molecules/FontSetting/index.js +53 -0
  19. package/es/components/molecules/FontSetting/types.d.ts +22 -0
  20. package/es/components/molecules/FontSetting/types.js +1 -0
  21. package/es/components/molecules/FontWeightSelect/constants.d.ts +28 -0
  22. package/es/components/molecules/FontWeightSelect/constants.js +11 -0
  23. package/es/components/molecules/FontWeightSelect/index.d.ts +9 -0
  24. package/es/components/molecules/FontWeightSelect/index.js +39 -0
  25. package/es/components/molecules/Form/Form.d.ts +1 -0
  26. package/es/components/molecules/Form/Form.js +1 -0
  27. package/es/components/molecules/Form/index.d.ts +1 -0
  28. package/es/components/molecules/Form/index.js +1 -0
  29. package/es/components/molecules/Select/Select.d.ts +3 -0
  30. package/es/components/molecules/Select/Select.js +23 -2
  31. package/es/components/molecules/SettingWrapper/index.d.ts +1 -2
  32. package/es/components/molecules/SettingWrapperPopover/index.d.ts +16 -0
  33. package/es/components/molecules/SettingWrapperPopover/index.js +17 -0
  34. package/es/components/molecules/TextDecorationSelect/constants.d.ts +19 -0
  35. package/es/components/molecules/TextDecorationSelect/constants.js +26 -0
  36. package/es/components/molecules/TextDecorationSelect/index.d.ts +15 -0
  37. package/es/components/molecules/TextDecorationSelect/index.js +45 -0
  38. package/es/components/molecules/TextTransformSelect/constants.d.ts +13 -0
  39. package/es/components/molecules/TextTransformSelect/constants.js +19 -0
  40. package/es/components/molecules/TextTransformSelect/index.d.ts +9 -0
  41. package/es/components/molecules/TextTransformSelect/index.js +39 -0
  42. package/es/components/molecules/index.d.ts +8 -0
  43. package/es/components/molecules/index.js +7 -0
  44. package/es/constants/theme.js +18 -2
  45. package/package.json +1 -1
@@ -0,0 +1,2 @@
1
+ export { Flex } from 'antd';
2
+ export type { FlexProps } from 'antd';
@@ -0,0 +1 @@
1
+ export { Flex } from 'antd';
@@ -0,0 +1 @@
1
+ export * from './Flex';
@@ -0,0 +1 @@
1
+ export * from './Flex';
@@ -1,5 +1,6 @@
1
+ /// <reference types="hoist-non-react-statics" />
1
2
  import React, { ReactNode } from 'react';
2
- import { InputProps as AntdInputProps } from 'antd';
3
+ import { InputProps as AntdInputProps, Input as AntdInput } from 'antd';
3
4
  export interface InputProps extends AntdInputProps {
4
5
  noborder?: 'true' | 'false' | boolean;
5
6
  debounce?: number;
@@ -11,10 +12,17 @@ export interface InputProps extends AntdInputProps {
11
12
  errorMsg?: string;
12
13
  disableUndo?: boolean;
13
14
  }
14
- export declare const Input: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<AntdInputProps & React.RefAttributes<import("antd").InputRef>> & {
15
+ export declare const Input: string & import("styled-components").StyledComponentBase<React.ForwardRefExoticComponent<AntdInputProps & React.RefAttributes<import("antd").InputRef>> & {
15
16
  Group: React.FC<import("antd/es/input").GroupProps>;
16
17
  Search: React.ForwardRefExoticComponent<import("antd/es/input").SearchProps & React.RefAttributes<import("antd").InputRef>>;
17
18
  TextArea: React.ForwardRefExoticComponent<import("antd/es/input").TextAreaProps & React.RefAttributes<import("antd/es/input/TextArea").TextAreaRef>>;
18
19
  Password: React.ForwardRefExoticComponent<import("antd/es/input").PasswordProps & React.RefAttributes<import("antd").InputRef>>;
19
- }, any, InputProps, never>;
20
+ }, any, InputProps, never> & import("hoist-non-react-statics").NonReactStatics<React.ForwardRefExoticComponent<AntdInputProps & React.RefAttributes<import("antd").InputRef>> & {
21
+ Group: React.FC<import("antd/es/input").GroupProps>;
22
+ Search: React.ForwardRefExoticComponent<import("antd/es/input").SearchProps & React.RefAttributes<import("antd").InputRef>>;
23
+ TextArea: React.ForwardRefExoticComponent<import("antd/es/input").TextAreaProps & React.RefAttributes<import("antd/es/input/TextArea").TextAreaRef>>;
24
+ Password: React.ForwardRefExoticComponent<import("antd/es/input").PasswordProps & React.RefAttributes<import("antd").InputRef>>;
25
+ }, {}> & {
26
+ DefaultInput: typeof AntdInput;
27
+ };
20
28
  export declare const TextArea: React.ForwardRefExoticComponent<import("antd/es/input").TextAreaProps & React.RefAttributes<import("antd/es/input/TextArea").TextAreaRef>>;
@@ -13,6 +13,8 @@ var __rest = (this && this.__rest) || function (s, e) {
13
13
  /* eslint-disable react/destructuring-assignment */
14
14
  // Libraries
15
15
  import React, { useEffect, useMemo, useRef, useState } from 'react';
16
+ // Types
17
+ import { Input as AntdInput } from 'antd';
16
18
  // Components
17
19
  import { RequiredLabel, Text } from '@antscorp/antsomi-ui/es/components/atoms';
18
20
  // Utils
@@ -89,4 +91,5 @@ OriginInput.defaultProps = {
89
91
  };
90
92
  export const Input = OriginInput;
91
93
  Input.TextArea = StyledInput.TextArea;
94
+ Input.DefaultInput = AntdInput;
92
95
  export const { TextArea } = StyledInput;
@@ -30,4 +30,5 @@ export { Spin } from './Spin';
30
30
  export { Alert } from './Alert';
31
31
  export { ScrollBox } from './ScrollBox';
32
32
  export { Rate } from './Rate';
33
+ export * from './Flex';
33
34
  export type { SliderProps } from './Slider';
@@ -30,3 +30,4 @@ export { Spin } from './Spin';
30
30
  export { Alert } from './Alert';
31
31
  export { ScrollBox } from './ScrollBox';
32
32
  export { Rate } from './Rate';
33
+ export * from './Flex';
@@ -10,7 +10,7 @@ import { far } from '@fortawesome/free-regular-svg-icons';
10
10
  import { fab } from '@fortawesome/free-brands-svg-icons';
11
11
  library.add(fas, far, fab);
12
12
  export const GlobalStyle = () => {
13
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30;
13
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33;
14
14
  return (React.createElement(Global, { styles: css `
15
15
  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
16
16
 
@@ -486,5 +486,33 @@ export const GlobalStyle = () => {
486
486
  .ant-message {
487
487
  z-index: 999999 !important;
488
488
  }
489
+
490
+ /* Collapse */
491
+ .antsomi-collapse-header {
492
+ font-size: 14px;
493
+ }
494
+
495
+ .antsomi-collapse {
496
+ &.antsomi-collapse-borderless {
497
+ border-bottom: 1px solid ${(_31 = THEME.token) === null || _31 === void 0 ? void 0 : _31.gray5};
498
+ }
499
+
500
+ > .antsomi-collapse-item > .antsomi-collapse-header .antsomi-collapse-arrow {
501
+ transition: all 200ms;
502
+ }
503
+ }
504
+
505
+ /* Switch */
506
+ .antsomi-switch {
507
+ border: 2px solid ${(_32 = THEME.token) === null || _32 === void 0 ? void 0 : _32.colorPrimary} !important;
508
+
509
+ &.antsomi-switch-checked {
510
+ > .antsomi-switch-handle {
511
+ &::before {
512
+ background-color: ${(_33 = THEME.token) === null || _33 === void 0 ? void 0 : _33.bw0} !important;
513
+ }
514
+ }
515
+ }
516
+ }
489
517
  ` }));
490
518
  };
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
2
- export declare const Collapse: import("react").ForwardRefExoticComponent<import("antd").CollapseProps & import("react").RefAttributes<HTMLDivElement>> & {
3
- Panel: import("react").ForwardRefExoticComponent<import("antd").CollapsePanelProps & import("react").RefAttributes<HTMLDivElement>>;
1
+ import React from 'react';
2
+ export declare const Collapse: React.ForwardRefExoticComponent<import("antd").CollapseProps & React.RefAttributes<HTMLDivElement>> & {
3
+ Panel: React.ForwardRefExoticComponent<import("antd").CollapsePanelProps & React.RefAttributes<HTMLDivElement>>;
4
4
  };
@@ -1,2 +1,11 @@
1
+ // Libraries
2
+ import React from 'react';
1
3
  import { Collapse as AntdCollapse } from 'antd';
4
+ // Icons
5
+ import { Icon } from '../../atoms';
2
6
  export const Collapse = AntdCollapse;
7
+ Collapse.defaultProps = {
8
+ expandIcon({ isActive }) {
9
+ return (React.createElement(Icon, { type: "icon-ants-expand-more", size: 24, style: { transform: `rotate(${isActive ? -180 : 0}deg)`, color: '#666' } }));
10
+ },
11
+ };
@@ -0,0 +1,307 @@
1
+ export declare const OPTION_FONT_FAMILY: readonly [{
2
+ readonly label: "Arial";
3
+ readonly value: "Arial";
4
+ readonly style: {
5
+ readonly fontFamily: "Arial";
6
+ };
7
+ }, {
8
+ readonly label: "Sacramento";
9
+ readonly value: "Sacramento";
10
+ readonly style: {
11
+ readonly fontFamily: "Sacramento";
12
+ };
13
+ }, {
14
+ readonly label: "PT Serif";
15
+ readonly value: "PT Serif";
16
+ readonly style: {
17
+ readonly fontFamily: "PT Serif";
18
+ };
19
+ }, {
20
+ readonly label: "Georgia";
21
+ readonly value: "Georgia";
22
+ readonly style: {
23
+ readonly fontFamily: "Georgia";
24
+ };
25
+ }, {
26
+ readonly label: "Helvetica";
27
+ readonly value: "Helvetica";
28
+ readonly style: {
29
+ readonly fontFamily: "Helvetica";
30
+ };
31
+ }, {
32
+ readonly label: "Helvetica Neue";
33
+ readonly value: "Helvetica Neue";
34
+ readonly style: {
35
+ readonly fontFamily: "Helvetica Neue";
36
+ };
37
+ }, {
38
+ readonly label: "Lucida Grande";
39
+ readonly value: "Lucida Grande";
40
+ readonly style: {
41
+ readonly fontFamily: "Lucida Grande";
42
+ };
43
+ }, {
44
+ readonly label: "Tahoma";
45
+ readonly value: "Tahoma";
46
+ readonly style: {
47
+ readonly fontFamily: "Tahoma";
48
+ };
49
+ }, {
50
+ readonly label: "Times New Roman";
51
+ readonly value: "Times New Roman";
52
+ readonly style: {
53
+ readonly fontFamily: "Times New Roman";
54
+ };
55
+ }, {
56
+ readonly label: "Verdana";
57
+ readonly value: "Verdana";
58
+ readonly style: {
59
+ readonly fontFamily: "Verdana";
60
+ };
61
+ }, {
62
+ readonly label: "Abril Fatface";
63
+ readonly value: "Abril Fatface";
64
+ readonly style: {
65
+ readonly fontFamily: "Abril Fatface";
66
+ };
67
+ }, {
68
+ readonly label: "Aleo";
69
+ readonly value: "Aleo";
70
+ readonly style: {
71
+ readonly fontFamily: "Aleo";
72
+ };
73
+ }, {
74
+ readonly label: "Arvo";
75
+ readonly value: "arvo";
76
+ readonly style: {
77
+ readonly fontFamily: "Arvo";
78
+ };
79
+ }, {
80
+ readonly label: "Bitter";
81
+ readonly value: "bitter";
82
+ readonly style: {
83
+ readonly fontFamily: "Bitter";
84
+ };
85
+ }, {
86
+ readonly label: "Bree Serif";
87
+ readonly value: "Bree Serif";
88
+ readonly style: {
89
+ readonly fontFamily: "Bree Serif";
90
+ };
91
+ }, {
92
+ readonly label: "Cabin";
93
+ readonly value: "Cabin";
94
+ readonly style: {
95
+ readonly fontFamily: "Cabin";
96
+ };
97
+ }, {
98
+ readonly label: "Cookie";
99
+ readonly value: "Cookie";
100
+ readonly style: {
101
+ readonly fontFamily: "Cookie";
102
+ };
103
+ }, {
104
+ readonly label: "Delius Swash Caps";
105
+ readonly value: "Delius Swash Caps";
106
+ readonly style: {
107
+ readonly fontFamily: "Delius Swash Caps";
108
+ };
109
+ }, {
110
+ readonly label: "Dosis";
111
+ readonly value: "Dosis";
112
+ readonly style: {
113
+ readonly fontFamily: "Dosis";
114
+ };
115
+ }, {
116
+ readonly label: "Droid Sans";
117
+ readonly value: "Droid Sans";
118
+ readonly style: {
119
+ readonly fontFamily: "Droid Sans";
120
+ };
121
+ }, {
122
+ readonly label: "Droid Serif";
123
+ readonly value: "Droid Serif";
124
+ readonly style: {
125
+ readonly fontFamily: "Droid Serif";
126
+ };
127
+ }, {
128
+ readonly label: "EB Garamond";
129
+ readonly value: "EB Garamond";
130
+ readonly style: {
131
+ readonly fontFamily: "EB Garamond";
132
+ };
133
+ }, {
134
+ readonly label: "Josefin Slab";
135
+ readonly value: "Josefin Slab";
136
+ readonly style: {
137
+ readonly fontFamily: "Josefin Slab";
138
+ };
139
+ }, {
140
+ readonly label: "Just Another Hand";
141
+ readonly value: "Just Another Hand";
142
+ readonly style: {
143
+ readonly fontFamily: "Just Another Hand";
144
+ };
145
+ }, {
146
+ readonly label: "Lakki Reddy";
147
+ readonly value: "Lakki Reddy";
148
+ readonly style: {
149
+ readonly fontFamily: "Lakki Reddy";
150
+ };
151
+ }, {
152
+ readonly label: "Lato";
153
+ readonly value: "Lato";
154
+ readonly style: {
155
+ readonly fontFamily: "Lato";
156
+ };
157
+ }, {
158
+ readonly label: "Libre Baskerville";
159
+ readonly value: "Libre Baskerville";
160
+ readonly style: {
161
+ readonly fontFamily: "Libre Baskerville";
162
+ };
163
+ }, {
164
+ readonly label: "Lobster";
165
+ readonly value: "Lobster";
166
+ readonly style: {
167
+ readonly fontFamily: "Lobster";
168
+ };
169
+ }, {
170
+ readonly label: "Lora";
171
+ readonly value: "Lora";
172
+ readonly style: {
173
+ readonly fontFamily: "Lora";
174
+ };
175
+ }, {
176
+ readonly label: "Mali";
177
+ readonly value: "Mali";
178
+ readonly style: {
179
+ readonly fontFamily: "Mali";
180
+ };
181
+ }, {
182
+ readonly label: "Merriweather";
183
+ readonly value: "Merriweather";
184
+ readonly style: {
185
+ readonly fontFamily: "Merriweather";
186
+ };
187
+ }, {
188
+ readonly label: "Montserrat";
189
+ readonly value: "Montserrat";
190
+ readonly style: {
191
+ readonly fontFamily: "Montserrat";
192
+ };
193
+ }, {
194
+ readonly label: "Noto Sans";
195
+ readonly value: "Noto Sans";
196
+ readonly style: {
197
+ readonly fontFamily: "Noto Sans";
198
+ };
199
+ }, {
200
+ readonly label: "Noto Serif";
201
+ readonly value: "Noto Serif";
202
+ readonly style: {
203
+ readonly fontFamily: "Noto Serif";
204
+ };
205
+ }, {
206
+ readonly label: "Nunito";
207
+ readonly value: "Nunito";
208
+ readonly style: {
209
+ readonly fontFamily: "Nunito";
210
+ };
211
+ }, {
212
+ readonly label: "Open Sans";
213
+ readonly value: "Open Sans";
214
+ readonly style: {
215
+ readonly fontFamily: "Open Sans";
216
+ };
217
+ }, {
218
+ readonly label: "Oswald";
219
+ readonly value: "Oswald";
220
+ readonly style: {
221
+ readonly fontFamily: "Oswald";
222
+ };
223
+ }, {
224
+ readonly label: "Poppins";
225
+ readonly value: "Poppins";
226
+ readonly style: {
227
+ readonly fontFamily: "Poppins";
228
+ };
229
+ }, {
230
+ readonly label: "PT Sans";
231
+ readonly value: "PT Sans";
232
+ readonly style: {
233
+ readonly fontFamily: "PT Sans";
234
+ };
235
+ }, {
236
+ readonly label: "Pinyon Script";
237
+ readonly value: "Pinyon Script";
238
+ readonly style: {
239
+ readonly fontFamily: "Pinyon Script";
240
+ };
241
+ }, {
242
+ readonly label: "Playfair Display";
243
+ readonly value: "Playfair Display";
244
+ readonly style: {
245
+ readonly fontFamily: "Playfair Display";
246
+ };
247
+ }, {
248
+ readonly label: "Quicksand";
249
+ readonly value: "Quicksand";
250
+ readonly style: {
251
+ readonly fontFamily: "Quicksand";
252
+ };
253
+ }, {
254
+ readonly label: "Raleway";
255
+ readonly value: "Raleway";
256
+ readonly style: {
257
+ readonly fontFamily: "Raleway";
258
+ };
259
+ }, {
260
+ readonly label: "Righteous";
261
+ readonly value: "Righteous";
262
+ readonly style: {
263
+ readonly fontFamily: "Righteous";
264
+ };
265
+ }, {
266
+ readonly label: "Roboto Slab";
267
+ readonly value: "Roboto Slab";
268
+ readonly style: {
269
+ readonly fontFamily: "Roboto Slab";
270
+ };
271
+ }, {
272
+ readonly label: "Roboto";
273
+ readonly value: "Roboto";
274
+ readonly style: {
275
+ readonly fontFamily: "Roboto";
276
+ };
277
+ }, {
278
+ readonly label: "Rubik";
279
+ readonly value: "Rubik";
280
+ readonly style: {
281
+ readonly fontFamily: "Rubik";
282
+ };
283
+ }, {
284
+ readonly label: "Sarabun";
285
+ readonly value: "Sarabun";
286
+ readonly style: {
287
+ readonly fontFamily: "Sarabun";
288
+ };
289
+ }, {
290
+ readonly label: "Source Sans Pro";
291
+ readonly value: "Source Sans Pro";
292
+ readonly style: {
293
+ readonly fontFamily: "Source Sans Pro";
294
+ };
295
+ }, {
296
+ readonly label: "Ubuntu";
297
+ readonly value: "Ubuntu";
298
+ readonly style: {
299
+ readonly fontFamily: "Ubuntu";
300
+ };
301
+ }, {
302
+ readonly label: "Vollkorn";
303
+ readonly value: "Vollkorn";
304
+ readonly style: {
305
+ readonly fontFamily: "Vollkorn";
306
+ };
307
+ }];
@@ -0,0 +1,257 @@
1
+ export const OPTION_FONT_FAMILY = [
2
+ {
3
+ label: 'Arial',
4
+ value: 'Arial',
5
+ style: { fontFamily: 'Arial' },
6
+ },
7
+ {
8
+ label: 'Sacramento',
9
+ value: 'Sacramento',
10
+ style: { fontFamily: 'Sacramento' },
11
+ },
12
+ {
13
+ label: 'PT Serif',
14
+ value: 'PT Serif',
15
+ style: { fontFamily: 'PT Serif' },
16
+ },
17
+ {
18
+ label: 'Georgia',
19
+ value: 'Georgia',
20
+ style: { fontFamily: 'Georgia' },
21
+ },
22
+ {
23
+ label: 'Helvetica',
24
+ value: 'Helvetica',
25
+ style: { fontFamily: 'Helvetica' },
26
+ },
27
+ {
28
+ label: 'Helvetica Neue',
29
+ value: 'Helvetica Neue',
30
+ style: { fontFamily: 'Helvetica Neue' },
31
+ },
32
+ {
33
+ label: 'Lucida Grande',
34
+ value: 'Lucida Grande',
35
+ style: { fontFamily: 'Lucida Grande' },
36
+ },
37
+ {
38
+ label: 'Tahoma',
39
+ value: 'Tahoma',
40
+ style: { fontFamily: 'Tahoma' },
41
+ },
42
+ {
43
+ label: 'Times New Roman',
44
+ value: 'Times New Roman',
45
+ style: { fontFamily: 'Times New Roman' },
46
+ },
47
+ {
48
+ label: 'Verdana',
49
+ value: 'Verdana',
50
+ style: { fontFamily: 'Verdana' },
51
+ },
52
+ {
53
+ label: 'Abril Fatface',
54
+ value: 'Abril Fatface',
55
+ style: { fontFamily: 'Abril Fatface' },
56
+ },
57
+ {
58
+ label: 'Aleo',
59
+ value: 'Aleo',
60
+ style: { fontFamily: 'Aleo' },
61
+ },
62
+ {
63
+ label: 'Arvo',
64
+ value: 'arvo',
65
+ style: { fontFamily: 'Arvo' },
66
+ },
67
+ {
68
+ label: 'Bitter',
69
+ value: 'bitter',
70
+ style: { fontFamily: 'Bitter' },
71
+ },
72
+ {
73
+ label: 'Bree Serif',
74
+ value: 'Bree Serif',
75
+ style: { fontFamily: 'Bree Serif' },
76
+ },
77
+ {
78
+ label: 'Cabin',
79
+ value: 'Cabin',
80
+ style: { fontFamily: 'Cabin' },
81
+ },
82
+ {
83
+ label: 'Cookie',
84
+ value: 'Cookie',
85
+ style: { fontFamily: 'Cookie' },
86
+ },
87
+ {
88
+ label: 'Delius Swash Caps',
89
+ value: 'Delius Swash Caps',
90
+ style: { fontFamily: 'Delius Swash Caps' },
91
+ },
92
+ {
93
+ label: 'Dosis',
94
+ value: 'Dosis',
95
+ style: { fontFamily: 'Dosis' },
96
+ },
97
+ {
98
+ label: 'Droid Sans',
99
+ value: 'Droid Sans',
100
+ style: { fontFamily: 'Droid Sans' },
101
+ },
102
+ {
103
+ label: 'Droid Serif',
104
+ value: 'Droid Serif',
105
+ style: { fontFamily: 'Droid Serif' },
106
+ },
107
+ {
108
+ label: 'EB Garamond',
109
+ value: 'EB Garamond',
110
+ style: { fontFamily: 'EB Garamond' },
111
+ },
112
+ {
113
+ label: 'Josefin Slab',
114
+ value: 'Josefin Slab',
115
+ style: { fontFamily: 'Josefin Slab' },
116
+ },
117
+ {
118
+ label: 'Just Another Hand',
119
+ value: 'Just Another Hand',
120
+ style: { fontFamily: 'Just Another Hand' },
121
+ },
122
+ {
123
+ label: 'Lakki Reddy',
124
+ value: 'Lakki Reddy',
125
+ style: { fontFamily: 'Lakki Reddy' },
126
+ },
127
+ {
128
+ label: 'Lato',
129
+ value: 'Lato',
130
+ style: { fontFamily: 'Lato' },
131
+ },
132
+ {
133
+ label: 'Libre Baskerville',
134
+ value: 'Libre Baskerville',
135
+ style: { fontFamily: 'Libre Baskerville' },
136
+ },
137
+ {
138
+ label: 'Lobster',
139
+ value: 'Lobster',
140
+ style: { fontFamily: 'Lobster' },
141
+ },
142
+ {
143
+ label: 'Lora',
144
+ value: 'Lora',
145
+ style: { fontFamily: 'Lora' },
146
+ },
147
+ {
148
+ label: 'Mali',
149
+ value: 'Mali',
150
+ style: { fontFamily: 'Mali' },
151
+ },
152
+ {
153
+ label: 'Merriweather',
154
+ value: 'Merriweather',
155
+ style: { fontFamily: 'Merriweather' },
156
+ },
157
+ {
158
+ label: 'Montserrat',
159
+ value: 'Montserrat',
160
+ style: { fontFamily: 'Montserrat' },
161
+ },
162
+ {
163
+ label: 'Noto Sans',
164
+ value: 'Noto Sans',
165
+ style: { fontFamily: 'Noto Sans' },
166
+ },
167
+ {
168
+ label: 'Noto Serif',
169
+ value: 'Noto Serif',
170
+ style: { fontFamily: 'Noto Serif' },
171
+ },
172
+ {
173
+ label: 'Nunito',
174
+ value: 'Nunito',
175
+ style: { fontFamily: 'Nunito' },
176
+ },
177
+ {
178
+ label: 'Open Sans',
179
+ value: 'Open Sans',
180
+ style: { fontFamily: 'Open Sans' },
181
+ },
182
+ {
183
+ label: 'Oswald',
184
+ value: 'Oswald',
185
+ style: { fontFamily: 'Oswald' },
186
+ },
187
+ {
188
+ label: 'Poppins',
189
+ value: 'Poppins',
190
+ style: { fontFamily: 'Poppins' },
191
+ },
192
+ {
193
+ label: 'PT Sans',
194
+ value: 'PT Sans',
195
+ style: { fontFamily: 'PT Sans' },
196
+ },
197
+ {
198
+ label: 'Pinyon Script',
199
+ value: 'Pinyon Script',
200
+ style: { fontFamily: 'Pinyon Script' },
201
+ },
202
+ {
203
+ label: 'Playfair Display',
204
+ value: 'Playfair Display',
205
+ style: { fontFamily: 'Playfair Display' },
206
+ },
207
+ {
208
+ label: 'Quicksand',
209
+ value: 'Quicksand',
210
+ style: { fontFamily: 'Quicksand' },
211
+ },
212
+ {
213
+ label: 'Raleway',
214
+ value: 'Raleway',
215
+ style: { fontFamily: 'Raleway' },
216
+ },
217
+ {
218
+ label: 'Righteous',
219
+ value: 'Righteous',
220
+ style: { fontFamily: 'Righteous' },
221
+ },
222
+ {
223
+ label: 'Roboto Slab',
224
+ value: 'Roboto Slab',
225
+ style: { fontFamily: 'Roboto Slab' },
226
+ },
227
+ {
228
+ label: 'Roboto',
229
+ value: 'Roboto',
230
+ style: { fontFamily: 'Roboto' },
231
+ },
232
+ {
233
+ label: 'Rubik',
234
+ value: 'Rubik',
235
+ style: { fontFamily: 'Rubik' },
236
+ },
237
+ {
238
+ label: 'Sarabun',
239
+ value: 'Sarabun',
240
+ style: { fontFamily: 'Sarabun' },
241
+ },
242
+ {
243
+ label: 'Source Sans Pro',
244
+ value: 'Source Sans Pro',
245
+ style: { fontFamily: 'Source Sans Pro' },
246
+ },
247
+ {
248
+ label: 'Ubuntu',
249
+ value: 'Ubuntu',
250
+ style: { fontFamily: 'Ubuntu' },
251
+ },
252
+ {
253
+ label: 'Vollkorn',
254
+ value: 'Vollkorn',
255
+ style: { fontFamily: 'Vollkorn' },
256
+ },
257
+ ];