coolcare-lite-scada-component 1.0.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 (471) hide show
  1. package/README.md +21 -0
  2. package/es/app.js +52 -0
  3. package/es/componentIndex.js +7 -0
  4. package/es/components/BoxShadowPicker/index.css +22 -0
  5. package/es/components/BoxShadowPicker/index.js +114 -0
  6. package/es/components/BoxShadowPicker/index.less.d.ts +9 -0
  7. package/es/components/Button/index.js +6 -0
  8. package/es/components/ColorPalette/index.js +12 -0
  9. package/es/components/ColorPicker/index.css +38 -0
  10. package/es/components/ColorPicker/index.js +103 -0
  11. package/es/components/ColorPicker/util.js +31 -0
  12. package/es/components/DeviceSelect/DeviceTable.js +320 -0
  13. package/es/components/DeviceSelect/index.css +6 -0
  14. package/es/components/DeviceSelect/index.js +112 -0
  15. package/es/components/DialogExpression/ImagePicker/index.css +13 -0
  16. package/es/components/DialogExpression/ImagePicker/index.js +44 -0
  17. package/es/components/DialogExpression/index.css +9 -0
  18. package/es/components/DialogExpression/index.js +270 -0
  19. package/es/components/DialogHistory/index.css +10 -0
  20. package/es/components/DialogHistory/index.js +383 -0
  21. package/es/components/DialogIconPicker/data.js +179 -0
  22. package/es/components/DialogIconPicker/index.css +30 -0
  23. package/es/components/DialogIconPicker/index.js +101 -0
  24. package/es/components/DialogImagePicker/Gallery/index.css +0 -0
  25. package/es/components/DialogImagePicker/Gallery/index.js +96 -0
  26. package/es/components/DialogImagePicker/GroupPanel/index.css +3 -0
  27. package/es/components/DialogImagePicker/GroupPanel/index.js +89 -0
  28. package/es/components/DialogImagePicker/index.css +25 -0
  29. package/es/components/DialogImagePicker/index.js +85 -0
  30. package/es/components/DialogPointWrite/PointItem.js +91 -0
  31. package/es/components/DialogPointWrite/index.js +124 -0
  32. package/es/components/ECharts/index.css +5 -0
  33. package/es/components/ECharts/index.js +94 -0
  34. package/es/components/ExpressionFormat/index.css +22 -0
  35. package/es/components/ExpressionFormat/index.js +50 -0
  36. package/es/components/FontFamilySelect/index.js +25 -0
  37. package/es/components/FontFamilySelect/list.js +2194 -0
  38. package/es/components/FontStyleForm/index.css +3 -0
  39. package/es/components/FontStyleForm/index.js +170 -0
  40. package/es/components/FormBindPoint/FreedomScene.js +207 -0
  41. package/es/components/FormBindPoint/ProductionOrDeviceScene.js +172 -0
  42. package/es/components/FormBindPoint/index.css +0 -0
  43. package/es/components/FormBindPoint/index.js +17 -0
  44. package/es/components/FormIconSelect/index.js +62 -0
  45. package/es/components/FormNodeData/index.js +82 -0
  46. package/es/components/FormNodeData/utils/valueUtil.js +8 -0
  47. package/es/components/Icon/index.js +6 -0
  48. package/es/components/ImageUploader/index.js +172 -0
  49. package/es/components/LockBtn/index.css +4 -0
  50. package/es/components/LockBtn/index.js +45 -0
  51. package/es/components/Margin_Padding/index.css +3 -0
  52. package/es/components/Margin_Padding/index.js +155 -0
  53. package/es/components/MouseTooltip/index.css +7 -0
  54. package/es/components/MouseTooltip/index.js +57 -0
  55. package/es/components/NeedBindPointHint/index.css +12 -0
  56. package/es/components/NeedBindPointHint/index.js +15 -0
  57. package/es/components/PaddingPicker/index.css +22 -0
  58. package/es/components/PaddingPicker/index.js +95 -0
  59. package/es/components/PageLoading/index.css +29 -0
  60. package/es/components/PageLoading/index.js +30 -0
  61. package/es/components/PointEnumNameFormat/index.css +4 -0
  62. package/es/components/PointEnumNameFormat/index.js +9 -0
  63. package/es/components/PointInfoTip/index.css +3 -0
  64. package/es/components/PointInfoTip/index.js +193 -0
  65. package/es/components/PointSelect/DevicePointTable.js +128 -0
  66. package/es/components/PointSelect/ProductPointTable.js +98 -0
  67. package/es/components/PointSelect/index.css +9 -0
  68. package/es/components/PointSelect/index.js +278 -0
  69. package/es/components/Prompt/index.js +126 -0
  70. package/es/components/SliderWithInput/index.css +11 -0
  71. package/es/components/SliderWithInput/index.js +67 -0
  72. package/es/components/Switch/index.js +69 -0
  73. package/es/components/TranslateButton/index.js +26 -0
  74. package/es/constant.js +16 -0
  75. package/es/edge/EdgeLinePort/PropsSet/Flow.js +173 -0
  76. package/es/edge/EdgeLinePort/PropsSet/Line.js +73 -0
  77. package/es/edge/EdgeLinePort/PropsSet/Marker.js +81 -0
  78. package/es/edge/EdgeLinePort/PropsSet/index.js +25 -0
  79. package/es/edge/EdgeLinePort/index.js +91 -0
  80. package/es/edge/EdgePipe/PropsSet/Flow.js +173 -0
  81. package/es/edge/EdgePipe/PropsSet/Pipe.js +73 -0
  82. package/es/edge/EdgePipe/PropsSet/index.js +34 -0
  83. package/es/edge/EdgePipe/index.css +10 -0
  84. package/es/edge/EdgePipe/index.js +181 -0
  85. package/es/edge/register.js +6 -0
  86. package/es/element/BasicShape/Circle/index.js +81 -0
  87. package/es/element/BasicShape/CommentBox/index.js +77 -0
  88. package/es/element/BasicShape/CommentBox2/index.js +78 -0
  89. package/es/element/BasicShape/Ellipse/index.js +80 -0
  90. package/es/element/BasicShape/Heart/index.js +75 -0
  91. package/es/element/BasicShape/Lightning/index.js +75 -0
  92. package/es/element/BasicShape/PropsForm/index.css +0 -0
  93. package/es/element/BasicShape/PropsForm/index.js +80 -0
  94. package/es/element/BasicShape/Rectangle/index.js +78 -0
  95. package/es/element/BasicShape/Star/index.js +75 -0
  96. package/es/element/BorderBox/BorderBox1/Component.js +74 -0
  97. package/es/element/BorderBox/BorderBox1/index.css +27 -0
  98. package/es/element/BorderBox/BorderBox1/index.js +51 -0
  99. package/es/element/BorderBox/BorderBox10/Component.js +61 -0
  100. package/es/element/BorderBox/BorderBox10/index.css +28 -0
  101. package/es/element/BorderBox/BorderBox10/index.js +51 -0
  102. package/es/element/BorderBox/BorderBox12/Component.js +109 -0
  103. package/es/element/BorderBox/BorderBox12/index.css +17 -0
  104. package/es/element/BorderBox/BorderBox12/index.js +51 -0
  105. package/es/element/BorderBox/BorderBox13/Component.js +55 -0
  106. package/es/element/BorderBox/BorderBox13/index.css +17 -0
  107. package/es/element/BorderBox/BorderBox13/index.js +51 -0
  108. package/es/element/BorderBox/BorderBox2/Component.js +65 -0
  109. package/es/element/BorderBox/BorderBox2/index.css +21 -0
  110. package/es/element/BorderBox/BorderBox2/index.js +51 -0
  111. package/es/element/BorderBox/BorderBox3/Component.js +55 -0
  112. package/es/element/BorderBox/BorderBox3/index.css +26 -0
  113. package/es/element/BorderBox/BorderBox3/index.js +51 -0
  114. package/es/element/BorderBox/BorderBox4/Component.js +81 -0
  115. package/es/element/BorderBox/BorderBox4/index.css +66 -0
  116. package/es/element/BorderBox/BorderBox4/index.js +51 -0
  117. package/es/element/BorderBox/BorderBox5/Component.js +65 -0
  118. package/es/element/BorderBox/BorderBox5/index.css +35 -0
  119. package/es/element/BorderBox/BorderBox5/index.js +51 -0
  120. package/es/element/BorderBox/BorderBox6/Component.js +95 -0
  121. package/es/element/BorderBox/BorderBox6/index.css +21 -0
  122. package/es/element/BorderBox/BorderBox6/index.js +51 -0
  123. package/es/element/BorderBox/BorderBox7/Component.js +70 -0
  124. package/es/element/BorderBox/BorderBox7/index.css +27 -0
  125. package/es/element/BorderBox/BorderBox7/index.js +51 -0
  126. package/es/element/BorderBox/BorderBox8/Component.js +113 -0
  127. package/es/element/BorderBox/BorderBox8/index.css +17 -0
  128. package/es/element/BorderBox/BorderBox8/index.js +51 -0
  129. package/es/element/BorderBox/BorderBox9/Component.js +137 -0
  130. package/es/element/BorderBox/BorderBox9/index.css +17 -0
  131. package/es/element/BorderBox/BorderBox9/index.js +51 -0
  132. package/es/element/BorderBox/PropsSet/ColorSet.js +60 -0
  133. package/es/element/BorderBox/PropsSet/index.js +21 -0
  134. package/es/element/BorderBox/util/index.js +7 -0
  135. package/es/element/BorderBox/util/typings.d.ts +9 -0
  136. package/es/element/Decoration/Decoration1/Component.js +126 -0
  137. package/es/element/Decoration/Decoration1/index.css +7 -0
  138. package/es/element/Decoration/Decoration1/index.js +51 -0
  139. package/es/element/Decoration/Decoration10/Component.js +171 -0
  140. package/es/element/Decoration/Decoration10/index.css +5 -0
  141. package/es/element/Decoration/Decoration10/index.js +51 -0
  142. package/es/element/Decoration/Decoration2/Component.js +81 -0
  143. package/es/element/Decoration/Decoration2/index.css +10 -0
  144. package/es/element/Decoration/Decoration2/index.js +51 -0
  145. package/es/element/Decoration/Decoration3/Component.js +81 -0
  146. package/es/element/Decoration/Decoration3/index.css +7 -0
  147. package/es/element/Decoration/Decoration3/index.js +51 -0
  148. package/es/element/Decoration/Decoration4/Component.js +54 -0
  149. package/es/element/Decoration/Decoration4/index.css +43 -0
  150. package/es/element/Decoration/Decoration4/index.js +51 -0
  151. package/es/element/Decoration/Decoration5/Component.js +86 -0
  152. package/es/element/Decoration/Decoration5/index.css +4 -0
  153. package/es/element/Decoration/Decoration5/index.js +51 -0
  154. package/es/element/Decoration/Decoration6/Component.js +120 -0
  155. package/es/element/Decoration/Decoration6/index.css +7 -0
  156. package/es/element/Decoration/Decoration6/index.js +51 -0
  157. package/es/element/Decoration/Decoration8/Component.js +62 -0
  158. package/es/element/Decoration/Decoration8/index.css +5 -0
  159. package/es/element/Decoration/Decoration8/index.js +51 -0
  160. package/es/element/Decoration/PropsSet/ColorSet.js +60 -0
  161. package/es/element/Decoration/PropsSet/index.js +21 -0
  162. package/es/element/Decoration/util/index.js +33 -0
  163. package/es/element/Decoration/util/typings.d.ts +9 -0
  164. package/es/element/EleButton/Component.js +49 -0
  165. package/es/element/EleButton/PropsSet/TextPropsSet/index.js +27 -0
  166. package/es/element/EleButton/PropsSet/index.js +25 -0
  167. package/es/element/EleButton/index.css +15 -0
  168. package/es/element/EleButton/index.js +66 -0
  169. package/es/element/EleClock/Component.js +60 -0
  170. package/es/element/EleClock/PropsSet/index.js +46 -0
  171. package/es/element/EleClock/index.css +7 -0
  172. package/es/element/EleClock/index.js +55 -0
  173. package/es/element/EleContainer/Component.js +22 -0
  174. package/es/element/EleContainer/PropsSet/OtherPropsSet/index.js +63 -0
  175. package/es/element/EleContainer/PropsSet/index.js +29 -0
  176. package/es/element/EleContainer/index.css +4 -0
  177. package/es/element/EleContainer/index.js +54 -0
  178. package/es/element/EleDeviceName/Component.js +81 -0
  179. package/es/element/EleDeviceName/PropsSet/FormBindDevice/index.js +52 -0
  180. package/es/element/EleDeviceName/PropsSet/index.js +26 -0
  181. package/es/element/EleDeviceName/index.css +11 -0
  182. package/es/element/EleDeviceName/index.js +57 -0
  183. package/es/element/EleDeviceState/Component.js +103 -0
  184. package/es/element/EleDeviceState/PropsSet/FormBindDevice/index.js +53 -0
  185. package/es/element/EleDeviceState/PropsSet/index.js +26 -0
  186. package/es/element/EleDeviceState/index.css +13 -0
  187. package/es/element/EleDeviceState/index.js +62 -0
  188. package/es/element/EleDeviceUpdateTime/Component.js +94 -0
  189. package/es/element/EleDeviceUpdateTime/PropsSet/FormBindDateFormat/index.js +32 -0
  190. package/es/element/EleDeviceUpdateTime/PropsSet/FormBindDevice/index.js +52 -0
  191. package/es/element/EleDeviceUpdateTime/PropsSet/index.js +27 -0
  192. package/es/element/EleDeviceUpdateTime/index.css +9 -0
  193. package/es/element/EleDeviceUpdateTime/index.js +57 -0
  194. package/es/element/EleFan/Component.js +74 -0
  195. package/es/element/EleFan/PropsSet/FormBindDevice/index.js +46 -0
  196. package/es/element/EleFan/PropsSet/FormBindPoint/FaultQuestion.js +18 -0
  197. package/es/element/EleFan/PropsSet/FormBindPoint/FrostQuestion.js +18 -0
  198. package/es/element/EleFan/PropsSet/FormBindPoint/RefrigerationQuestion.js +18 -0
  199. package/es/element/EleFan/PropsSet/FormBindPoint/SwitchQuestion.js +12 -0
  200. package/es/element/EleFan/PropsSet/FormBindPoint/index.js +519 -0
  201. package/es/element/EleFan/PropsSet/index.js +66 -0
  202. package/es/element/EleFan/Tooltip.js +8 -0
  203. package/es/element/EleFan/index.css +25 -0
  204. package/es/element/EleFan/index.js +113 -0
  205. package/es/element/EleFanBySvg/PropsSet/FormBindPoint/FaultQuestion.js +18 -0
  206. package/es/element/EleFanBySvg/PropsSet/FormBindPoint/FrostQuestion.js +18 -0
  207. package/es/element/EleFanBySvg/PropsSet/FormBindPoint/RefrigerationQuestion.js +18 -0
  208. package/es/element/EleFanBySvg/PropsSet/FormBindPoint/SwitchQuestion.js +12 -0
  209. package/es/element/EleFanBySvg/PropsSet/FormBindPoint/index.js +473 -0
  210. package/es/element/EleFanBySvg/PropsSet/index.js +25 -0
  211. package/es/element/EleFanBySvg/Tooltip.js +8 -0
  212. package/es/element/EleFanBySvg/index.js +320 -0
  213. package/es/element/EleGauge/Component.js +128 -0
  214. package/es/element/EleGauge/PropsSet/OtherPropsSet/index.js +92 -0
  215. package/es/element/EleGauge/PropsSet/index.js +29 -0
  216. package/es/element/EleGauge/index.css +7 -0
  217. package/es/element/EleGauge/index.js +66 -0
  218. package/es/element/EleIcon/Component.js +53 -0
  219. package/es/element/EleIcon/PropsSet/IconPropsSet/index.js +105 -0
  220. package/es/element/EleIcon/PropsSet/index.js +29 -0
  221. package/es/element/EleIcon/index.css +13 -0
  222. package/es/element/EleIcon/index.js +58 -0
  223. package/es/element/EleImage/PropsSet/ImagePropsSet/index.js +56 -0
  224. package/es/element/EleImage/PropsSet/index.js +21 -0
  225. package/es/element/EleImage/index.js +61 -0
  226. package/es/element/EleIndicatorLight/Component.js +57 -0
  227. package/es/element/EleIndicatorLight/PropsSet/ColorPropsSet/index.js +63 -0
  228. package/es/element/EleIndicatorLight/PropsSet/index.js +29 -0
  229. package/es/element/EleIndicatorLight/index.css +4 -0
  230. package/es/element/EleIndicatorLight/index.js +66 -0
  231. package/es/element/ElePointImage/Component.js +60 -0
  232. package/es/element/ElePointImage/PropsSet/ImagePropsSet/index.js +84 -0
  233. package/es/element/ElePointImage/PropsSet/index.js +29 -0
  234. package/es/element/ElePointImage/index.css +9 -0
  235. package/es/element/ElePointImage/index.js +58 -0
  236. package/es/element/ElePointList/Component.js +142 -0
  237. package/es/element/ElePointList/PropsSet/index.js +25 -0
  238. package/es/element/ElePointList/index.css +22 -0
  239. package/es/element/ElePointList/index.js +67 -0
  240. package/es/element/ElePointState/Component.js +71 -0
  241. package/es/element/ElePointState/PropsSet/IconPropsSet/index.js +140 -0
  242. package/es/element/ElePointState/PropsSet/index.js +29 -0
  243. package/es/element/ElePointState/index.css +10 -0
  244. package/es/element/ElePointState/index.js +60 -0
  245. package/es/element/ElePointValue/Component.js +79 -0
  246. package/es/element/ElePointValue/PropsSet/GlobalPropSet/index.js +60 -0
  247. package/es/element/ElePointValue/PropsSet/TitlePropsSet/index.js +42 -0
  248. package/es/element/ElePointValue/PropsSet/UnitPropsSet/index.js +54 -0
  249. package/es/element/ElePointValue/PropsSet/ValuePropsSet/index.js +119 -0
  250. package/es/element/ElePointValue/PropsSet/index.js +41 -0
  251. package/es/element/ElePointValue/index.css +30 -0
  252. package/es/element/ElePointValue/index.js +63 -0
  253. package/es/element/EleShine/Component.js +61 -0
  254. package/es/element/EleShine/PropsSet/OtherPropsSet/index.js +63 -0
  255. package/es/element/EleShine/PropsSet/index.js +29 -0
  256. package/es/element/EleShine/index.css +15 -0
  257. package/es/element/EleShine/index.js +70 -0
  258. package/es/element/EleState/Tooltip.js +8 -0
  259. package/es/element/EleState/index.js +115 -0
  260. package/es/element/EleSvg/index.js +35 -0
  261. package/es/element/EleSwitch/Component.js +66 -0
  262. package/es/element/EleSwitch/PropsSet/OtherPropsSet/index.js +49 -0
  263. package/es/element/EleSwitch/PropsSet/index.js +25 -0
  264. package/es/element/EleSwitch/index.css +6 -0
  265. package/es/element/EleSwitch/index.js +62 -0
  266. package/es/element/EleText/Component.js +19 -0
  267. package/es/element/EleText/index.css +6 -0
  268. package/es/element/EleText/index.js +69 -0
  269. package/es/element/PipeNodes/NodeBL/index.js +74 -0
  270. package/es/element/PipeNodes/NodeBR/index.js +75 -0
  271. package/es/element/PipeNodes/NodeBottom/index.js +82 -0
  272. package/es/element/PipeNodes/NodeCenter/index.js +89 -0
  273. package/es/element/PipeNodes/NodeHorizontal/index.js +72 -0
  274. package/es/element/PipeNodes/NodeLeft/index.js +81 -0
  275. package/es/element/PipeNodes/NodeRight/index.js +81 -0
  276. package/es/element/PipeNodes/NodeTL/index.js +74 -0
  277. package/es/element/PipeNodes/NodeTL.TEMP/index.js +151 -0
  278. package/es/element/PipeNodes/NodeTR/index.js +74 -0
  279. package/es/element/PipeNodes/NodeTop/index.js +81 -0
  280. package/es/element/PipeNodes/NodeVertical/index.js +72 -0
  281. package/es/element/PipeNodes/portStyle.js +18 -0
  282. package/es/element/PointCard/PointCard1/Component.js +97 -0
  283. package/es/element/PointCard/PointCard1/PropsSet/IconPropsSet/index.js +147 -0
  284. package/es/element/PointCard/PointCard1/PropsSet/PointValuePropsSet/index.js +120 -0
  285. package/es/element/PointCard/PointCard1/PropsSet/TitlePropsSet/index.js +43 -0
  286. package/es/element/PointCard/PointCard1/PropsSet/index.js +37 -0
  287. package/es/element/PointCard/PointCard1/index.css +44 -0
  288. package/es/element/PointCard/PointCard1/index.js +88 -0
  289. package/es/element/PointCard/PointCard2/Component/PointItem.js +87 -0
  290. package/es/element/PointCard/PointCard2/Component/PointItemPlaceholder.js +33 -0
  291. package/es/element/PointCard/PointCard2/Component/index.css +30 -0
  292. package/es/element/PointCard/PointCard2/Component/index.js +53 -0
  293. package/es/element/PointCard/PointCard2/PropsSet/GlobalPropSet/index.js +14 -0
  294. package/es/element/PointCard/PointCard2/PropsSet/IconPropsSet/index.js +32 -0
  295. package/es/element/PointCard/PointCard2/PropsSet/PointItemSetDrawer/index.css +7 -0
  296. package/es/element/PointCard/PointCard2/PropsSet/PointItemSetDrawer/index.js +175 -0
  297. package/es/element/PointCard/PointCard2/PropsSet/TitlePropsSet/index.js +31 -0
  298. package/es/element/PointCard/PointCard2/PropsSet/index.js +52 -0
  299. package/es/element/PointCard/PointCard2/index.js +79 -0
  300. package/es/element/PointCard/PointCard3/Component.js +107 -0
  301. package/es/element/PointCard/PointCard3/PropsSet/IconPropsSet/index.js +178 -0
  302. package/es/element/PointCard/PointCard3/PropsSet/TitlePropsSet/index.js +43 -0
  303. package/es/element/PointCard/PointCard3/PropsSet/index.js +33 -0
  304. package/es/element/PointCard/PointCard3/index.css +26 -0
  305. package/es/element/PointCard/PointCard3/index.js +79 -0
  306. package/es/element/PointCard/PointListCard/Component.js +169 -0
  307. package/es/element/PointCard/PointListCard/PropsSet/GlobalPropSet/index.js +14 -0
  308. package/es/element/PointCard/PointListCard/PropsSet/LabelPropsSet/index.js +31 -0
  309. package/es/element/PointCard/PointListCard/PropsSet/TitlePropsSet/index.js +43 -0
  310. package/es/element/PointCard/PointListCard/PropsSet/ValuePropsSet/index.js +31 -0
  311. package/es/element/PointCard/PointListCard/PropsSet/index.js +41 -0
  312. package/es/element/PointCard/PointListCard/index.css +24 -0
  313. package/es/element/PointCard/PointListCard/index.js +87 -0
  314. package/es/element/PointControl/PointControl1/Component.js +110 -0
  315. package/es/element/PointControl/PointControl1/PropsSet/GlobalPropsSet/index.js +16 -0
  316. package/es/element/PointControl/PointControl1/PropsSet/PointValuePropsSet/index.js +31 -0
  317. package/es/element/PointControl/PointControl1/PropsSet/TitlePropsSet/index.js +43 -0
  318. package/es/element/PointControl/PointControl1/PropsSet/index.js +33 -0
  319. package/es/element/PointControl/PointControl1/index.css +21 -0
  320. package/es/element/PointControl/PointControl1/index.js +83 -0
  321. package/es/element/PointControl/PointControl3/Component.js +123 -0
  322. package/es/element/PointControl/PointControl3/PropsSet/IconPropsSet/index.js +147 -0
  323. package/es/element/PointControl/PointControl3/PropsSet/SubTitlePropsSet/index.js +53 -0
  324. package/es/element/PointControl/PointControl3/PropsSet/SwitchPropsSet/index.js +49 -0
  325. package/es/element/PointControl/PointControl3/PropsSet/TitlePropsSet/index.js +43 -0
  326. package/es/element/PointControl/PointControl3/PropsSet/index.js +41 -0
  327. package/es/element/PointControl/PointControl3/index.css +8 -0
  328. package/es/element/PointControl/PointControl3/index.js +94 -0
  329. package/es/element/nodeBase.js +48 -0
  330. package/es/element/reactShapeBase.js +47 -0
  331. package/es/element/register.js +131 -0
  332. package/es/element/type.d.ts +143 -0
  333. package/es/element/utils/getValueByExpression.js +22 -0
  334. package/es/element/utils/handleEleEvent.js +60 -0
  335. package/es/element/utils/index.js +4 -0
  336. package/es/element/utils/pointWrite.js +197 -0
  337. package/es/element/utils/shapeReactComponentShouldUpdate.js +7 -0
  338. package/es/global.css +162 -0
  339. package/es/graph/graphCore.js +501 -0
  340. package/es/graph/tools/ToolTipTool.js +139 -0
  341. package/es/graph/tools/registerX6Tool.js +1 -0
  342. package/es/hooks/index.js +7 -0
  343. package/es/hooks/useCMDKey.js +19 -0
  344. package/es/hooks/useEleEventHandle.js +36 -0
  345. package/es/hooks/useFirstMountState.js +9 -0
  346. package/es/hooks/useForceUpdate.js +23 -0
  347. package/es/hooks/useMittNamespace.js +7 -0
  348. package/es/hooks/usePointWatch.js +30 -0
  349. package/es/hooks/useQuery.js +6 -0
  350. package/es/models/useEditor.js +185 -0
  351. package/es/models/useElePanel.js +23 -0
  352. package/es/pages/display/Player/index.css +15 -0
  353. package/es/pages/display/Player/index.js +434 -0
  354. package/es/pages/display/components/Empty/index.css +9 -0
  355. package/es/pages/display/components/Empty/index.js +22 -0
  356. package/es/pages/display/components/Tools/index.js +86 -0
  357. package/es/pages/display/index.css +4 -0
  358. package/es/pages/display/index.js +231 -0
  359. package/es/pages/document.ejs +77 -0
  360. package/es/pages/editor/Palette/PaletteDropdown/index.css +9 -0
  361. package/es/pages/editor/Palette/PaletteDropdown/index.js +178 -0
  362. package/es/pages/editor/Palette/index.css +13 -0
  363. package/es/pages/editor/Palette/index.js +86 -0
  364. package/es/pages/editor/PanelLeft/BasicShapeList/index.js +32 -0
  365. package/es/pages/editor/PanelLeft/BasicShapeList/listData.js +63 -0
  366. package/es/pages/editor/PanelLeft/BorderBoxEleList/index.css +9 -0
  367. package/es/pages/editor/PanelLeft/BorderBoxEleList/index.js +19 -0
  368. package/es/pages/editor/PanelLeft/BorderBoxEleList/index.less.d.ts +7 -0
  369. package/es/pages/editor/PanelLeft/BorderBoxEleList/listData.js +49 -0
  370. package/es/pages/editor/PanelLeft/DecorationEleList/index.css +12 -0
  371. package/es/pages/editor/PanelLeft/DecorationEleList/index.js +21 -0
  372. package/es/pages/editor/PanelLeft/DecorationEleList/index.less.d.ts +7 -0
  373. package/es/pages/editor/PanelLeft/DecorationEleList/listData.js +65 -0
  374. package/es/pages/editor/PanelLeft/GroupManageDialog/index.css +32 -0
  375. package/es/pages/editor/PanelLeft/GroupManageDialog/index.js +300 -0
  376. package/es/pages/editor/PanelLeft/ImgConfigDialog/index.css +0 -0
  377. package/es/pages/editor/PanelLeft/ImgConfigDialog/index.js +220 -0
  378. package/es/pages/editor/PanelLeft/ImgGroup/index.css +62 -0
  379. package/es/pages/editor/PanelLeft/ImgGroup/index.js +317 -0
  380. package/es/pages/editor/PanelLeft/MetaEleList/index.js +37 -0
  381. package/es/pages/editor/PanelLeft/MetaEleList/listData.js +88 -0
  382. package/es/pages/editor/PanelLeft/MineImgGroup/index.css +0 -0
  383. package/es/pages/editor/PanelLeft/MineImgGroup/index.js +163 -0
  384. package/es/pages/editor/PanelLeft/PipeEleList/index.css +0 -0
  385. package/es/pages/editor/PanelLeft/PipeEleList/index.js +33 -0
  386. package/es/pages/editor/PanelLeft/PipeEleList/listData.js +69 -0
  387. package/es/pages/editor/PanelLeft/PointCardEleList/index.js +31 -0
  388. package/es/pages/editor/PanelLeft/PointCardEleList/listData.js +37 -0
  389. package/es/pages/editor/PanelLeft/RecommendEleList/index.js +37 -0
  390. package/es/pages/editor/PanelLeft/RecommendEleList/listData.js +27 -0
  391. package/es/pages/editor/PanelLeft/SystemImgGroupList/index.css +6 -0
  392. package/es/pages/editor/PanelLeft/SystemImgGroupList/index.js +119 -0
  393. package/es/pages/editor/PanelLeft/index.css +100 -0
  394. package/es/pages/editor/PanelLeft/index.js +200 -0
  395. package/es/pages/editor/PanelLeft/index.less.d.ts +11 -0
  396. package/es/pages/editor/PanelRight/components/FormBindEvent/index.js +202 -0
  397. package/es/pages/editor/PanelRight/components/FormEleBorderStyle/index.js +145 -0
  398. package/es/pages/editor/PanelRight/components/FormEleLayout/index.css +8 -0
  399. package/es/pages/editor/PanelRight/components/FormEleLayout/index.js +214 -0
  400. package/es/pages/editor/PanelRight/components/FormElePadding/index.js +11 -0
  401. package/es/pages/editor/PanelRight/components/FormFillStyle/index.js +92 -0
  402. package/es/pages/editor/PanelRight/components/FormFontStyle/index.js +186 -0
  403. package/es/pages/editor/PanelRight/components/FormLayer/index.js +222 -0
  404. package/es/pages/editor/PanelRight/index.css +26 -0
  405. package/es/pages/editor/PanelRight/index.js +164 -0
  406. package/es/pages/editor/PanelRight/index.less.d.ts +7 -0
  407. package/es/pages/editor/PanelTop/FullScreen/index.js +31 -0
  408. package/es/pages/editor/PanelTop/HistoryControl/index.js +78 -0
  409. package/es/pages/editor/PanelTop/HotKeyDescribe/index.css +35 -0
  410. package/es/pages/editor/PanelTop/HotKeyDescribe/index.js +114 -0
  411. package/es/pages/editor/PanelTop/HotKeyDescribe/index.less.d.ts +10 -0
  412. package/es/pages/editor/PanelTop/Save/index.js +179 -0
  413. package/es/pages/editor/PanelTop/ZoomControl/index.css +0 -0
  414. package/es/pages/editor/PanelTop/ZoomControl/index.js +100 -0
  415. package/es/pages/editor/PanelTop/index.css +57 -0
  416. package/es/pages/editor/PanelTop/index.js +321 -0
  417. package/es/pages/editor/index.css +39 -0
  418. package/es/pages/editor/index.js +298 -0
  419. package/es/provider/index.js +2 -0
  420. package/es/provider/mittMeat.js +4 -0
  421. package/es/services/common/Uploader.js +45 -0
  422. package/es/services/common/index.js +8 -0
  423. package/es/services/common/typings.d.ts +15 -0
  424. package/es/services/gateway/CompanyConfiguration.js +87 -0
  425. package/es/services/gateway/Device.js +437 -0
  426. package/es/services/gateway/DeviceAuthorizationApply.js +111 -0
  427. package/es/services/gateway/DeviceGroup.js +137 -0
  428. package/es/services/gateway/Gateway.js +442 -0
  429. package/es/services/gateway/GatewayGroup.js +112 -0
  430. package/es/services/gateway/Point.js +137 -0
  431. package/es/services/gateway/UserDevice.js +112 -0
  432. package/es/services/gateway/index.js +22 -0
  433. package/es/services/gateway/typings.d.ts +1674 -0
  434. package/es/services/master/Func.js +33 -0
  435. package/es/services/master/Role.js +153 -0
  436. package/es/services/master/User.js +244 -0
  437. package/es/services/master/index.js +12 -0
  438. package/es/services/master/typings.d.ts +362 -0
  439. package/es/services/product/ConfigurationImg.js +87 -0
  440. package/es/services/product/ConfigurationImgGroup.js +87 -0
  441. package/es/services/product/DeviceType.js +37 -0
  442. package/es/services/product/Identifier.js +33 -0
  443. package/es/services/product/PointEnum.js +87 -0
  444. package/es/services/product/PointGroup.js +112 -0
  445. package/es/services/product/Product.js +351 -0
  446. package/es/services/product/ProductCompany.js +183 -0
  447. package/es/services/product/index.js +22 -0
  448. package/es/services/product/typings.d.ts +1045 -0
  449. package/es/services/project/ProjectGateway.js +62 -0
  450. package/es/services/project/ProjectResource.js +205 -0
  451. package/es/services/project/ProjectRole.js +302 -0
  452. package/es/services/project/ProjectUserPermission.js +217 -0
  453. package/es/services/project/Subarea.js +236 -0
  454. package/es/services/project/UserSubarea.js +62 -0
  455. package/es/services/project/index.js +18 -0
  456. package/es/services/project/typings.d.ts +1609 -0
  457. package/es/services/request.js +196 -0
  458. package/es/shims.x6.d.ts +15 -0
  459. package/es/typings.d.ts +182 -0
  460. package/es/utils/auth.js +90 -0
  461. package/es/utils/cssStyle.js +11 -0
  462. package/es/utils/decomposeMatrix.js +46 -0
  463. package/es/utils/events.js +7 -0
  464. package/es/utils/getMittMeta.js +14 -0
  465. package/es/utils/index.js +163 -0
  466. package/es/utils/isInIframe.js +8 -0
  467. package/es/utils/queryToObject.js +19 -0
  468. package/es/utils/svg.js +46 -0
  469. package/es/utils/type.js +3 -0
  470. package/es/x6Reset.css +36 -0
  471. package/package.json +84 -0
@@ -0,0 +1,2194 @@
1
+ var fontFamilyList = [{
2
+ isSupport: false,
3
+ fontFamily: '报隶-繁'
4
+ }, {
5
+ isSupport: false,
6
+ fontFamily: '报隶-简'
7
+ }, {
8
+ isSupport: false,
9
+ fontFamily: '等线'
10
+ }, {
11
+ isSupport: false,
12
+ fontFamily: '等线 Light'
13
+ }, {
14
+ isSupport: false,
15
+ fontFamily: '冬青黑体简体中文'
16
+ }, {
17
+ isSupport: false,
18
+ fontFamily: '仿宋'
19
+ }, {
20
+ isSupport: false,
21
+ fontFamily: '黑体'
22
+ }, {
23
+ isSupport: false,
24
+ fontFamily: '黑体-繁'
25
+ }, {
26
+ isSupport: false,
27
+ fontFamily: '黑体-简'
28
+ }, {
29
+ isSupport: false,
30
+ fontFamily: '华文仿宋'
31
+ }, {
32
+ isSupport: false,
33
+ fontFamily: '华文琥珀'
34
+ }, {
35
+ isSupport: false,
36
+ fontFamily: '华文楷体'
37
+ }, {
38
+ isSupport: false,
39
+ fontFamily: '华文隶书'
40
+ }, {
41
+ isSupport: false,
42
+ fontFamily: '华文新魏'
43
+ }, {
44
+ isSupport: false,
45
+ fontFamily: '华文行楷'
46
+ }, {
47
+ isSupport: false,
48
+ fontFamily: '华文中宋'
49
+ }, {
50
+ isSupport: false,
51
+ fontFamily: '楷体'
52
+ }, {
53
+ isSupport: false,
54
+ fontFamily: '楷体-繁'
55
+ }, {
56
+ isSupport: false,
57
+ fontFamily: '楷体-简'
58
+ }, {
59
+ isSupport: false,
60
+ fontFamily: '兰亭黑-繁'
61
+ }, {
62
+ isSupport: false,
63
+ fontFamily: '兰亭黑-简'
64
+ }, {
65
+ isSupport: false,
66
+ fontFamily: '隶变-繁'
67
+ }, {
68
+ isSupport: false,
69
+ fontFamily: '隶变-简'
70
+ }, {
71
+ isSupport: false,
72
+ fontFamily: '凌慧体-繁'
73
+ }, {
74
+ isSupport: false,
75
+ fontFamily: '凌慧体-简'
76
+ }, {
77
+ isSupport: false,
78
+ fontFamily: '翩翩体-繁'
79
+ }, {
80
+ isSupport: false,
81
+ fontFamily: '翩翩体-简'
82
+ }, {
83
+ isSupport: false,
84
+ fontFamily: '苹方-繁'
85
+ }, {
86
+ isSupport: false,
87
+ fontFamily: '苹方-港'
88
+ }, {
89
+ isSupport: false,
90
+ fontFamily: '苹方-简'
91
+ }, {
92
+ isSupport: false,
93
+ fontFamily: '手札体-繁'
94
+ }, {
95
+ isSupport: false,
96
+ fontFamily: '手札体-简'
97
+ }, {
98
+ isSupport: false,
99
+ fontFamily: '宋体'
100
+ }, {
101
+ isSupport: false,
102
+ fontFamily: '宋体-繁'
103
+ }, {
104
+ isSupport: false,
105
+ fontFamily: '宋体-简'
106
+ }, {
107
+ isSupport: false,
108
+ fontFamily: '娃娃体-繁'
109
+ }, {
110
+ isSupport: false,
111
+ fontFamily: '娃娃体-简'
112
+ }, {
113
+ isSupport: false,
114
+ fontFamily: '微软雅黑'
115
+ }, {
116
+ isSupport: false,
117
+ fontFamily: '微软雅黑 Light'
118
+ }, {
119
+ isSupport: false,
120
+ fontFamily: '魏碑-繁'
121
+ }, {
122
+ isSupport: false,
123
+ fontFamily: '魏碑-简'
124
+ }, {
125
+ isSupport: false,
126
+ fontFamily: '新宋体'
127
+ }, {
128
+ isSupport: false,
129
+ fontFamily: '行楷-繁'
130
+ }, {
131
+ isSupport: false,
132
+ fontFamily: '行楷-简'
133
+ }, {
134
+ isSupport: false,
135
+ fontFamily: '雅痞-繁'
136
+ }, {
137
+ isSupport: false,
138
+ fontFamily: '雅痞-简'
139
+ }, {
140
+ isSupport: false,
141
+ fontFamily: '圆体-繁'
142
+ }, {
143
+ isSupport: false,
144
+ fontFamily: '圆体-简'
145
+ }, {
146
+ isSupport: false,
147
+ fontFamily: 'Abadi MT'
148
+ }, {
149
+ isSupport: false,
150
+ fontFamily: 'Acumin Variable Concept'
151
+ }, {
152
+ isSupport: false,
153
+ fontFamily: 'Adobe 仿宋 Std'
154
+ }, {
155
+ isSupport: false,
156
+ fontFamily: 'Adobe 黑体 Std'
157
+ }, {
158
+ isSupport: false,
159
+ fontFamily: 'Adobe 楷体 Std'
160
+ }, {
161
+ isSupport: false,
162
+ fontFamily: 'Adobe 宋体 Std'
163
+ }, {
164
+ isSupport: false,
165
+ fontFamily: 'Adobe Arabic'
166
+ }, {
167
+ isSupport: false,
168
+ fontFamily: 'Adobe Caslon Pro'
169
+ }, {
170
+ isSupport: false,
171
+ fontFamily: 'Adobe Devanagari'
172
+ }, {
173
+ isSupport: false,
174
+ fontFamily: 'Adobe Fan Heiti Std'
175
+ }, {
176
+ isSupport: false,
177
+ fontFamily: 'Adobe Garamond Pro'
178
+ }, {
179
+ isSupport: false,
180
+ fontFamily: 'Adobe Gothic Std'
181
+ }, {
182
+ isSupport: false,
183
+ fontFamily: 'Adobe Gurmukhi'
184
+ }, {
185
+ isSupport: false,
186
+ fontFamily: 'Adobe Hebrew'
187
+ }, {
188
+ isSupport: false,
189
+ fontFamily: 'Adobe Ming Std'
190
+ }, {
191
+ isSupport: false,
192
+ fontFamily: 'Adobe Myungjo Std'
193
+ }, {
194
+ isSupport: false,
195
+ fontFamily: 'Adobe Naskh'
196
+ }, {
197
+ isSupport: false,
198
+ fontFamily: 'Zapfino'
199
+ }
200
+ // {
201
+ // "isSupport": false,
202
+ // "fontFamily": "AI Bayan"
203
+ // },
204
+ // {
205
+ // "isSupport": false,
206
+ // "fontFamily": "AI Tarikh"
207
+ // },
208
+ // {
209
+ // "isSupport": false,
210
+ // "fontFamily": "American Typewriter"
211
+ // },
212
+ // {
213
+ // "isSupport": false,
214
+ // "fontFamily": "Andale Mono"
215
+ // },
216
+ // {
217
+ // "isSupport": false,
218
+ // "fontFamily": "Angsana New"
219
+ // },
220
+ // {
221
+ // "isSupport": false,
222
+ // "fontFamily": "AngsanaUPC"
223
+ // },
224
+ // {
225
+ // "isSupport": false,
226
+ // "fontFamily": "Apple Braille"
227
+ // },
228
+ // {
229
+ // "isSupport": false,
230
+ // "fontFamily": "Apple Chancery"
231
+ // },
232
+ // {
233
+ // "isSupport": false,
234
+ // "fontFamily": "Apple Color Emoji"
235
+ // },
236
+ // {
237
+ // "isSupport": false,
238
+ // "fontFamily": "Apple Gothic"
239
+ // },
240
+ // {
241
+ // "isSupport": false,
242
+ // "fontFamily": "Apple LiGothic"
243
+ // },
244
+ // {
245
+ // "isSupport": false,
246
+ // "fontFamily": "Apple LiSung"
247
+ // },
248
+ // {
249
+ // "isSupport": false,
250
+ // "fontFamily": "Apple SD Gothic Neo"
251
+ // },
252
+ // {
253
+ // "isSupport": false,
254
+ // "fontFamily": "Apple Symbols"
255
+ // },
256
+ // {
257
+ // "isSupport": false,
258
+ // "fontFamily": "AppleGothic"
259
+ // },
260
+ // {
261
+ // "isSupport": false,
262
+ // "fontFamily": "AppleMyungjo"
263
+ // },
264
+ // {
265
+ // "isSupport": false,
266
+ // "fontFamily": "Arial"
267
+ // },
268
+ // {
269
+ // "isSupport": false,
270
+ // "fontFamily": "Arial Black"
271
+ // },
272
+ // {
273
+ // "isSupport": false,
274
+ // "fontFamily": "Arial Hebrew"
275
+ // },
276
+ // {
277
+ // "isSupport": false,
278
+ // "fontFamily": "Arial Hebrew Scholar"
279
+ // },
280
+ // {
281
+ // "isSupport": false,
282
+ // "fontFamily": "Arial Rounded MT"
283
+ // },
284
+ // {
285
+ // "isSupport": false,
286
+ // "fontFamily": "Arial Unicode MS"
287
+ // },
288
+ // {
289
+ // "isSupport": false,
290
+ // "fontFamily": "Athelas"
291
+ // },
292
+ // {
293
+ // "isSupport": false,
294
+ // "fontFamily": "Avenir"
295
+ // },
296
+ // {
297
+ // "isSupport": false,
298
+ // "fontFamily": "Avenir Next"
299
+ // },
300
+ // {
301
+ // "isSupport": false,
302
+ // "fontFamily": "Avenir Next Condensed"
303
+ // },
304
+ // {
305
+ // "isSupport": false,
306
+ // "fontFamily": "Ayuthaya"
307
+ // },
308
+ // {
309
+ // "isSupport": false,
310
+ // "fontFamily": "Baghdad"
311
+ // },
312
+ // {
313
+ // "isSupport": false,
314
+ // "fontFamily": "Bahnschrift"
315
+ // },
316
+ // {
317
+ // "isSupport": false,
318
+ // "fontFamily": "Bahnschrift Condensed"
319
+ // },
320
+ // {
321
+ // "isSupport": false,
322
+ // "fontFamily": "Bahnschrift Light"
323
+ // },
324
+ // {
325
+ // "isSupport": false,
326
+ // "fontFamily": "Bahnschrift Light Condensed"
327
+ // },
328
+ // {
329
+ // "isSupport": false,
330
+ // "fontFamily": "Bahnschrift Light SemiCondensed"
331
+ // },
332
+ // {
333
+ // "isSupport": false,
334
+ // "fontFamily": "Bahnschrift SemiBold"
335
+ // },
336
+ // {
337
+ // "isSupport": false,
338
+ // "fontFamily": "Bahnschrift SemiBold Condensed"
339
+ // },
340
+ // {
341
+ // "isSupport": false,
342
+ // "fontFamily": "Bahnschrift SemiBold SemiCondensed"
343
+ // },
344
+ // {
345
+ // "isSupport": false,
346
+ // "fontFamily": "Bahnschrift SemiCondensed"
347
+ // },
348
+ // {
349
+ // "isSupport": false,
350
+ // "fontFamily": "Bahnschrift SemiLight"
351
+ // },
352
+ // {
353
+ // "isSupport": false,
354
+ // "fontFamily": "Bahnschrift SemiLight Condensed"
355
+ // },
356
+ // {
357
+ // "isSupport": false,
358
+ // "fontFamily": "Bahnschrift SemiLight SemiCondensed"
359
+ // },
360
+ // {
361
+ // "isSupport": false,
362
+ // "fontFamily": "Bangla MN"
363
+ // },
364
+ // {
365
+ // "isSupport": false,
366
+ // "fontFamily": "Bangla Sangam MN"
367
+ // },
368
+ // {
369
+ // "isSupport": false,
370
+ // "fontFamily": "Baskerville"
371
+ // },
372
+ // {
373
+ // "isSupport": false,
374
+ // "fontFamily": "Baskerville Old Face"
375
+ // },
376
+ // {
377
+ // "isSupport": false,
378
+ // "fontFamily": "Batang"
379
+ // },
380
+ // {
381
+ // "isSupport": false,
382
+ // "fontFamily": "BatangChe"
383
+ // },
384
+ // {
385
+ // "isSupport": false,
386
+ // "fontFamily": "Bavhavs 93"
387
+ // },
388
+ // {
389
+ // "isSupport": false,
390
+ // "fontFamily": "Beirut"
391
+ // },
392
+ // {
393
+ // "isSupport": false,
394
+ // "fontFamily": "Bell MT"
395
+ // },
396
+ // {
397
+ // "isSupport": false,
398
+ // "fontFamily": "Bernard MT"
399
+ // },
400
+ // {
401
+ // "isSupport": false,
402
+ // "fontFamily": "BiauKai"
403
+ // },
404
+ // {
405
+ // "isSupport": false,
406
+ // "fontFamily": "Big Caslon"
407
+ // },
408
+ // {
409
+ // "isSupport": false,
410
+ // "fontFamily": "Birch Std"
411
+ // },
412
+ // {
413
+ // "isSupport": false,
414
+ // "fontFamily": "Blackoak Std"
415
+ // },
416
+ // {
417
+ // "isSupport": false,
418
+ // "fontFamily": "Bodoni 72"
419
+ // },
420
+ // {
421
+ // "isSupport": false,
422
+ // "fontFamily": "Bodoni 72 Oldstyle"
423
+ // },
424
+ // {
425
+ // "isSupport": false,
426
+ // "fontFamily": "Bodoni 72 Smallcaps"
427
+ // },
428
+ // {
429
+ // "isSupport": false,
430
+ // "fontFamily": "Bodoni Ornaments"
431
+ // },
432
+ // {
433
+ // "isSupport": false,
434
+ // "fontFamily": "Book Antiqua"
435
+ // },
436
+ // {
437
+ // "isSupport": false,
438
+ // "fontFamily": "Bookman Old Style"
439
+ // },
440
+ // {
441
+ // "isSupport": false,
442
+ // "fontFamily": "Bookshelf Symbol 7"
443
+ // },
444
+ // {
445
+ // "isSupport": false,
446
+ // "fontFamily": "Bradley Hand"
447
+ // },
448
+ // {
449
+ // "isSupport": false,
450
+ // "fontFamily": "Braggadocio"
451
+ // },
452
+ // {
453
+ // "isSupport": false,
454
+ // "fontFamily": "Britannic"
455
+ // },
456
+ // {
457
+ // "isSupport": false,
458
+ // "fontFamily": "Browallia New"
459
+ // },
460
+ // {
461
+ // "isSupport": false,
462
+ // "fontFamily": "BrowalliaUPC"
463
+ // },
464
+ // {
465
+ // "isSupport": false,
466
+ // "fontFamily": "Brush Script Std"
467
+ // },
468
+ // {
469
+ // "isSupport": false,
470
+ // "fontFamily": "Brush Scripy MT"
471
+ // },
472
+ // {
473
+ // "isSupport": false,
474
+ // "fontFamily": "Cabriola"
475
+ // },
476
+ // {
477
+ // "isSupport": false,
478
+ // "fontFamily": "Calibri"
479
+ // },
480
+ // {
481
+ // "isSupport": false,
482
+ // "fontFamily": "Calibri Light"
483
+ // },
484
+ // {
485
+ // "isSupport": false,
486
+ // "fontFamily": "Calisto MT"
487
+ // },
488
+ // {
489
+ // "isSupport": false,
490
+ // "fontFamily": "Cambria"
491
+ // },
492
+ // {
493
+ // "isSupport": false,
494
+ // "fontFamily": "Cambria Math"
495
+ // },
496
+ // {
497
+ // "isSupport": false,
498
+ // "fontFamily": "Candara"
499
+ // },
500
+ // {
501
+ // "isSupport": false,
502
+ // "fontFamily": "Candara Light"
503
+ // },
504
+ // {
505
+ // "isSupport": false,
506
+ // "fontFamily": "Century"
507
+ // },
508
+ // {
509
+ // "isSupport": false,
510
+ // "fontFamily": "Century Gothic"
511
+ // },
512
+ // {
513
+ // "isSupport": false,
514
+ // "fontFamily": "Century Schoolbook"
515
+ // },
516
+ // {
517
+ // "isSupport": false,
518
+ // "fontFamily": "Chalkboard"
519
+ // },
520
+ // {
521
+ // "isSupport": false,
522
+ // "fontFamily": "Chalkboard SE"
523
+ // },
524
+ // {
525
+ // "isSupport": false,
526
+ // "fontFamily": "Chalkduster"
527
+ // },
528
+ // {
529
+ // "isSupport": false,
530
+ // "fontFamily": "Chaparral Pro"
531
+ // },
532
+ // {
533
+ // "isSupport": false,
534
+ // "fontFamily": "Charlemagne Std"
535
+ // },
536
+ // {
537
+ // "isSupport": false,
538
+ // "fontFamily": "Charter"
539
+ // },
540
+ // {
541
+ // "isSupport": false,
542
+ // "fontFamily": "Cochin"
543
+ // },
544
+ // {
545
+ // "isSupport": false,
546
+ // "fontFamily": "Colonna MT"
547
+ // },
548
+ // {
549
+ // "isSupport": false,
550
+ // "fontFamily": "Comic Sans MS"
551
+ // },
552
+ // {
553
+ // "isSupport": false,
554
+ // "fontFamily": "Consolas"
555
+ // },
556
+ // {
557
+ // "isSupport": false,
558
+ // "fontFamily": "Constantia"
559
+ // },
560
+ // {
561
+ // "isSupport": false,
562
+ // "fontFamily": "Cooper"
563
+ // },
564
+ // {
565
+ // "isSupport": false,
566
+ // "fontFamily": "Cooper Std"
567
+ // },
568
+ // {
569
+ // "isSupport": false,
570
+ // "fontFamily": "Copperplate"
571
+ // },
572
+ // {
573
+ // "isSupport": false,
574
+ // "fontFamily": "Copperplate Gothic"
575
+ // },
576
+ // {
577
+ // "isSupport": false,
578
+ // "fontFamily": "Corbel"
579
+ // },
580
+ // {
581
+ // "isSupport": false,
582
+ // "fontFamily": "Corbel Light"
583
+ // },
584
+ // {
585
+ // "isSupport": false,
586
+ // "fontFamily": "Cordia New"
587
+ // },
588
+ // {
589
+ // "isSupport": false,
590
+ // "fontFamily": "CordiaUPC"
591
+ // },
592
+ // {
593
+ // "isSupport": false,
594
+ // "fontFamily": "Corsiva Hebrew"
595
+ // },
596
+ // {
597
+ // "isSupport": false,
598
+ // "fontFamily": "Courier"
599
+ // },
600
+ // {
601
+ // "isSupport": false,
602
+ // "fontFamily": "Courier New"
603
+ // },
604
+ // {
605
+ // "isSupport": false,
606
+ // "fontFamily": "Curlz MT"
607
+ // },
608
+ // {
609
+ // "isSupport": false,
610
+ // "fontFamily": "David"
611
+ // },
612
+ // {
613
+ // "isSupport": false,
614
+ // "fontFamily": "DecoType Naskh"
615
+ // },
616
+ // {
617
+ // "isSupport": false,
618
+ // "fontFamily": "Desdemona"
619
+ // },
620
+ // {
621
+ // "isSupport": false,
622
+ // "fontFamily": "Devanagari MT"
623
+ // },
624
+ // {
625
+ // "isSupport": false,
626
+ // "fontFamily": "Devanagari Sangam MN"
627
+ // },
628
+ // {
629
+ // "isSupport": false,
630
+ // "fontFamily": "Didot"
631
+ // },
632
+ // {
633
+ // "isSupport": false,
634
+ // "fontFamily": "DilleniaUPC"
635
+ // },
636
+ // {
637
+ // "isSupport": false,
638
+ // "fontFamily": "Din"
639
+ // },
640
+ // {
641
+ // "isSupport": false,
642
+ // "fontFamily": "Din Alternate"
643
+ // },
644
+ // {
645
+ // "isSupport": false,
646
+ // "fontFamily": "Diwan Kufi"
647
+ // },
648
+ // {
649
+ // "isSupport": false,
650
+ // "fontFamily": "Diwan Thuluth"
651
+ // },
652
+ // {
653
+ // "isSupport": false,
654
+ // "fontFamily": "Dotum"
655
+ // },
656
+ // {
657
+ // "isSupport": false,
658
+ // "fontFamily": "DotumChe"
659
+ // },
660
+ // {
661
+ // "isSupport": false,
662
+ // "fontFamily": "Dubai"
663
+ // },
664
+ // {
665
+ // "isSupport": false,
666
+ // "fontFamily": "Dubai Light"
667
+ // },
668
+ // {
669
+ // "isSupport": false,
670
+ // "fontFamily": "Dubai Medium"
671
+ // },
672
+ // {
673
+ // "isSupport": false,
674
+ // "fontFamily": "Ebrima"
675
+ // },
676
+ // {
677
+ // "isSupport": false,
678
+ // "fontFamily": "Edwardian Script ITC"
679
+ // },
680
+ // {
681
+ // "isSupport": false,
682
+ // "fontFamily": "EmojiOne"
683
+ // },
684
+ // {
685
+ // "isSupport": false,
686
+ // "fontFamily": "Engravers MT"
687
+ // },
688
+ // {
689
+ // "isSupport": false,
690
+ // "fontFamily": "EucrosiaUPC"
691
+ // },
692
+ // {
693
+ // "isSupport": false,
694
+ // "fontFamily": "Euphemia UCAS"
695
+ // },
696
+ // {
697
+ // "isSupport": false,
698
+ // "fontFamily": "Eurostile"
699
+ // },
700
+ // {
701
+ // "isSupport": false,
702
+ // "fontFamily": "Farisi"
703
+ // },
704
+ // {
705
+ // "isSupport": false,
706
+ // "fontFamily": "Footlight MT"
707
+ // },
708
+ // {
709
+ // "isSupport": false,
710
+ // "fontFamily": "Franklin Gothic"
711
+ // },
712
+ // {
713
+ // "isSupport": false,
714
+ // "fontFamily": "Franklin Gothic Book"
715
+ // },
716
+ // {
717
+ // "isSupport": false,
718
+ // "fontFamily": "Franklin Gothic Medium"
719
+ // },
720
+ // {
721
+ // "isSupport": false,
722
+ // "fontFamily": "FreesiaUPC"
723
+ // },
724
+ // {
725
+ // "isSupport": false,
726
+ // "fontFamily": "Futura"
727
+ // },
728
+ // {
729
+ // "isSupport": false,
730
+ // "fontFamily": "Gabriola"
731
+ // },
732
+ // {
733
+ // "isSupport": false,
734
+ // "fontFamily": "Gadugi"
735
+ // },
736
+ // {
737
+ // "isSupport": false,
738
+ // "fontFamily": "Galvji"
739
+ // },
740
+ // {
741
+ // "isSupport": false,
742
+ // "fontFamily": "Garamond"
743
+ // },
744
+ // {
745
+ // "isSupport": false,
746
+ // "fontFamily": "Gautami"
747
+ // },
748
+ // {
749
+ // "isSupport": false,
750
+ // "fontFamily": "Geeza Pro"
751
+ // },
752
+ // {
753
+ // "isSupport": false,
754
+ // "fontFamily": "Geneva"
755
+ // },
756
+ // {
757
+ // "isSupport": false,
758
+ // "fontFamily": "Georgia"
759
+ // },
760
+ // {
761
+ // "isSupport": false,
762
+ // "fontFamily": "Giddyup Std"
763
+ // },
764
+ // {
765
+ // "isSupport": false,
766
+ // "fontFamily": "Gill Sans"
767
+ // },
768
+ // {
769
+ // "isSupport": false,
770
+ // "fontFamily": "Gill Sans MT"
771
+ // },
772
+ // {
773
+ // "isSupport": false,
774
+ // "fontFamily": "Glousester MT"
775
+ // },
776
+ // {
777
+ // "isSupport": false,
778
+ // "fontFamily": "Goudy Old Style"
779
+ // },
780
+ // {
781
+ // "isSupport": false,
782
+ // "fontFamily": "Gujarati MT"
783
+ // },
784
+ // {
785
+ // "isSupport": false,
786
+ // "fontFamily": "Gujarati Sangam MN"
787
+ // },
788
+ // {
789
+ // "isSupport": false,
790
+ // "fontFamily": "Gulim"
791
+ // },
792
+ // {
793
+ // "isSupport": false,
794
+ // "fontFamily": "GulimChe"
795
+ // },
796
+ // {
797
+ // "isSupport": false,
798
+ // "fontFamily": "GungSeo"
799
+ // },
800
+ // {
801
+ // "isSupport": false,
802
+ // "fontFamily": "Gungsuh"
803
+ // },
804
+ // {
805
+ // "isSupport": false,
806
+ // "fontFamily": "GungsunChe"
807
+ // },
808
+ // {
809
+ // "isSupport": false,
810
+ // "fontFamily": "Gurmukhi MN"
811
+ // },
812
+ // {
813
+ // "isSupport": false,
814
+ // "fontFamily": "Gurmukhi MT"
815
+ // },
816
+ // {
817
+ // "isSupport": false,
818
+ // "fontFamily": "Gurmukhi Sangam MN"
819
+ // },
820
+ // {
821
+ // "isSupport": false,
822
+ // "fontFamily": "Haettenschweiler"
823
+ // },
824
+ // {
825
+ // "isSupport": false,
826
+ // "fontFamily": "Harrington"
827
+ // },
828
+ // {
829
+ // "isSupport": false,
830
+ // "fontFamily": "HeadLineA"
831
+ // },
832
+ // {
833
+ // "isSupport": false,
834
+ // "fontFamily": "Hei"
835
+ // },
836
+ // {
837
+ // "isSupport": false,
838
+ // "fontFamily": "Helvetica"
839
+ // },
840
+ // {
841
+ // "isSupport": false,
842
+ // "fontFamily": "Helvetica Neue"
843
+ // },
844
+ // {
845
+ // "isSupport": false,
846
+ // "fontFamily": "Herculanum"
847
+ // },
848
+ // {
849
+ // "isSupport": false,
850
+ // "fontFamily": "HGGothicE"
851
+ // },
852
+ // {
853
+ // "isSupport": false,
854
+ // "fontFamily": "HGMaruGothicMPRO"
855
+ // },
856
+ // {
857
+ // "isSupport": false,
858
+ // "fontFamily": "HGMinchoE"
859
+ // },
860
+ // {
861
+ // "isSupport": false,
862
+ // "fontFamily": "HGPMinchoE"
863
+ // },
864
+ // {
865
+ // "isSupport": false,
866
+ // "fontFamily": "HGPSoeiKakugothicUB"
867
+ // },
868
+ // {
869
+ // "isSupport": false,
870
+ // "fontFamily": "HGSGothicE"
871
+ // },
872
+ // {
873
+ // "isSupport": false,
874
+ // "fontFamily": "HGSMinchoE"
875
+ // },
876
+ // {
877
+ // "isSupport": false,
878
+ // "fontFamily": "HGSoeiKakugothicUB"
879
+ // },
880
+ // {
881
+ // "isSupport": false,
882
+ // "fontFamily": "HGSSoeiKakugothicUB"
883
+ // },
884
+ // {
885
+ // "isSupport": false,
886
+ // "fontFamily": "Hiragino Kaku Gothic Pro"
887
+ // },
888
+ // {
889
+ // "isSupport": false,
890
+ // "fontFamily": "Hiragino Kaku Gothic ProN"
891
+ // },
892
+ // {
893
+ // "isSupport": false,
894
+ // "fontFamily": "Hiragino Kaku Gothic Std"
895
+ // },
896
+ // {
897
+ // "isSupport": false,
898
+ // "fontFamily": "Hiragino Kaku Gothic StdN"
899
+ // },
900
+ // {
901
+ // "isSupport": false,
902
+ // "fontFamily": "Hiragino Maru Gothic Pro"
903
+ // },
904
+ // {
905
+ // "isSupport": false,
906
+ // "fontFamily": "Hiragino Maru Gothic ProN"
907
+ // },
908
+ // {
909
+ // "isSupport": false,
910
+ // "fontFamily": "Hiragino Mincho Pro"
911
+ // },
912
+ // {
913
+ // "isSupport": false,
914
+ // "fontFamily": "Hiragino Mincho ProN"
915
+ // },
916
+ // {
917
+ // "isSupport": false,
918
+ // "fontFamily": "Hiragino Sans"
919
+ // },
920
+ // {
921
+ // "isSupport": false,
922
+ // "fontFamily": "Hiragino Sans CNS"
923
+ // },
924
+ // {
925
+ // "isSupport": false,
926
+ // "fontFamily": "Hobo Std"
927
+ // },
928
+ // {
929
+ // "isSupport": false,
930
+ // "fontFamily": "Hoefler Text"
931
+ // },
932
+ // {
933
+ // "isSupport": false,
934
+ // "fontFamily": "HoloLens MDL2 Assets"
935
+ // },
936
+ // {
937
+ // "isSupport": false,
938
+ // "fontFamily": "Impact"
939
+ // },
940
+ // {
941
+ // "isSupport": false,
942
+ // "fontFamily": "Imprint MT Shadow"
943
+ // },
944
+ // {
945
+ // "isSupport": false,
946
+ // "fontFamily": "InaiMathi"
947
+ // },
948
+ // {
949
+ // "isSupport": false,
950
+ // "fontFamily": "Ink Free"
951
+ // },
952
+ // {
953
+ // "isSupport": false,
954
+ // "fontFamily": "Iowan Old Style"
955
+ // },
956
+ // {
957
+ // "isSupport": false,
958
+ // "fontFamily": "ITF Devanagari"
959
+ // },
960
+ // {
961
+ // "isSupport": false,
962
+ // "fontFamily": "ITF Devanagari Marathi"
963
+ // },
964
+ // {
965
+ // "isSupport": false,
966
+ // "fontFamily": "Javanese Text"
967
+ // },
968
+ // {
969
+ // "isSupport": false,
970
+ // "fontFamily": "Kai"
971
+ // },
972
+ // {
973
+ // "isSupport": false,
974
+ // "fontFamily": "Kailasa"
975
+ // },
976
+ // {
977
+ // "isSupport": false,
978
+ // "fontFamily": "Kannada MN"
979
+ // },
980
+ // {
981
+ // "isSupport": false,
982
+ // "fontFamily": "Kannada Sangam MN"
983
+ // },
984
+ // {
985
+ // "isSupport": false,
986
+ // "fontFamily": "Kartika"
987
+ // },
988
+ // {
989
+ // "isSupport": false,
990
+ // "fontFamily": "Kefa"
991
+ // },
992
+ // {
993
+ // "isSupport": false,
994
+ // "fontFamily": "Khmer MN"
995
+ // },
996
+ // {
997
+ // "isSupport": false,
998
+ // "fontFamily": "Khmer Sangam MN"
999
+ // },
1000
+ // {
1001
+ // "isSupport": false,
1002
+ // "fontFamily": "Kino MT"
1003
+ // },
1004
+ // {
1005
+ // "isSupport": false,
1006
+ // "fontFamily": "Klee"
1007
+ // },
1008
+ // {
1009
+ // "isSupport": false,
1010
+ // "fontFamily": "Kohinoor Bangla"
1011
+ // },
1012
+ // {
1013
+ // "isSupport": false,
1014
+ // "fontFamily": "Kohinoor Devanagari"
1015
+ // },
1016
+ // {
1017
+ // "isSupport": false,
1018
+ // "fontFamily": "Kohinoor Gujarati"
1019
+ // },
1020
+ // {
1021
+ // "isSupport": false,
1022
+ // "fontFamily": "Kohinoor Telugu"
1023
+ // },
1024
+ // {
1025
+ // "isSupport": false,
1026
+ // "fontFamily": "Kokonor"
1027
+ // },
1028
+ // {
1029
+ // "isSupport": false,
1030
+ // "fontFamily": "Kozuka Gothic Pr6N"
1031
+ // },
1032
+ // {
1033
+ // "isSupport": false,
1034
+ // "fontFamily": "Kozuka Gothic Pro"
1035
+ // },
1036
+ // {
1037
+ // "isSupport": false,
1038
+ // "fontFamily": "Kozuka Mincho Pr6N"
1039
+ // },
1040
+ // {
1041
+ // "isSupport": false,
1042
+ // "fontFamily": "Kozuka Mincho Pro"
1043
+ // },
1044
+ // {
1045
+ // "isSupport": false,
1046
+ // "fontFamily": "Krungthep"
1047
+ // },
1048
+ // {
1049
+ // "isSupport": false,
1050
+ // "fontFamily": "KufiStandardGK"
1051
+ // },
1052
+ // {
1053
+ // "isSupport": false,
1054
+ // "fontFamily": "Lao MN"
1055
+ // },
1056
+ // {
1057
+ // "isSupport": false,
1058
+ // "fontFamily": "Lao Sangam MN"
1059
+ // },
1060
+ // {
1061
+ // "isSupport": false,
1062
+ // "fontFamily": "Latha"
1063
+ // },
1064
+ // {
1065
+ // "isSupport": false,
1066
+ // "fontFamily": "Leelawadee UI"
1067
+ // },
1068
+ // {
1069
+ // "isSupport": false,
1070
+ // "fontFamily": "Leelawadee UI Semilight"
1071
+ // },
1072
+ // {
1073
+ // "isSupport": false,
1074
+ // "fontFamily": "Letter Gothic Std"
1075
+ // },
1076
+ // {
1077
+ // "isSupport": false,
1078
+ // "fontFamily": "LiHei Pro"
1079
+ // },
1080
+ // {
1081
+ // "isSupport": false,
1082
+ // "fontFamily": "LiSong Pro"
1083
+ // },
1084
+ // {
1085
+ // "isSupport": false,
1086
+ // "fontFamily": "Lithos Pro"
1087
+ // },
1088
+ // {
1089
+ // "isSupport": false,
1090
+ // "fontFamily": "Luciada Console"
1091
+ // },
1092
+ // {
1093
+ // "isSupport": false,
1094
+ // "fontFamily": "Luciada Sans Unicode"
1095
+ // },
1096
+ // {
1097
+ // "isSupport": false,
1098
+ // "fontFamily": "Lucida Blackletter"
1099
+ // },
1100
+ // {
1101
+ // "isSupport": false,
1102
+ // "fontFamily": "Lucida Console"
1103
+ // },
1104
+ // {
1105
+ // "isSupport": false,
1106
+ // "fontFamily": "Lucida Fax"
1107
+ // },
1108
+ // {
1109
+ // "isSupport": false,
1110
+ // "fontFamily": "Lucida Grande"
1111
+ // },
1112
+ // {
1113
+ // "isSupport": false,
1114
+ // "fontFamily": "Lucida Handwriting"
1115
+ // },
1116
+ // {
1117
+ // "isSupport": false,
1118
+ // "fontFamily": "Lucida Sans"
1119
+ // },
1120
+ // {
1121
+ // "isSupport": false,
1122
+ // "fontFamily": "Lucida Sans Typewriter"
1123
+ // },
1124
+ // {
1125
+ // "isSupport": false,
1126
+ // "fontFamily": "Lucida Sans Unicode"
1127
+ // },
1128
+ // {
1129
+ // "isSupport": false,
1130
+ // "fontFamily": "Luminari"
1131
+ // },
1132
+ // {
1133
+ // "isSupport": false,
1134
+ // "fontFamily": "Malayalam MN"
1135
+ // },
1136
+ // {
1137
+ // "isSupport": false,
1138
+ // "fontFamily": "Malayalam Sangam MN"
1139
+ // },
1140
+ // {
1141
+ // "isSupport": false,
1142
+ // "fontFamily": "Malgun Gothic"
1143
+ // },
1144
+ // {
1145
+ // "isSupport": false,
1146
+ // "fontFamily": "Malgun Gothic Semilight"
1147
+ // },
1148
+ // {
1149
+ // "isSupport": false,
1150
+ // "fontFamily": "Mangal"
1151
+ // },
1152
+ // {
1153
+ // "isSupport": false,
1154
+ // "fontFamily": "Marion"
1155
+ // },
1156
+ // {
1157
+ // "isSupport": false,
1158
+ // "fontFamily": "Marker Felt"
1159
+ // },
1160
+ // {
1161
+ // "isSupport": false,
1162
+ // "fontFamily": "Marlett"
1163
+ // },
1164
+ // {
1165
+ // "isSupport": false,
1166
+ // "fontFamily": "Mashtakan"
1167
+ // },
1168
+ // {
1169
+ // "isSupport": false,
1170
+ // "fontFamily": "Matura M7 Script Capitals"
1171
+ // },
1172
+ // {
1173
+ // "isSupport": false,
1174
+ // "fontFamily": "Meiryo"
1175
+ // },
1176
+ // {
1177
+ // "isSupport": false,
1178
+ // "fontFamily": "Meiryo UI"
1179
+ // },
1180
+ // {
1181
+ // "isSupport": false,
1182
+ // "fontFamily": "Menlo"
1183
+ // },
1184
+ // {
1185
+ // "isSupport": false,
1186
+ // "fontFamily": "Mesquite Std"
1187
+ // },
1188
+ // {
1189
+ // "isSupport": false,
1190
+ // "fontFamily": "Micorsoft Sans Serif"
1191
+ // },
1192
+ // {
1193
+ // "isSupport": false,
1194
+ // "fontFamily": "Microsoft Himalaya"
1195
+ // },
1196
+ // {
1197
+ // "isSupport": false,
1198
+ // "fontFamily": "Microsoft JhengHei"
1199
+ // },
1200
+ // {
1201
+ // "isSupport": false,
1202
+ // "fontFamily": "Microsoft JhengHei Light"
1203
+ // },
1204
+ // {
1205
+ // "isSupport": false,
1206
+ // "fontFamily": "Microsoft JhengHei UI"
1207
+ // },
1208
+ // {
1209
+ // "isSupport": false,
1210
+ // "fontFamily": "Microsoft JhengHei UI Light"
1211
+ // },
1212
+ // {
1213
+ // "isSupport": false,
1214
+ // "fontFamily": "Microsoft New Tai Lue"
1215
+ // },
1216
+ // {
1217
+ // "isSupport": false,
1218
+ // "fontFamily": "Microsoft PhagsPa"
1219
+ // },
1220
+ // {
1221
+ // "isSupport": false,
1222
+ // "fontFamily": "Microsoft Sans Serif"
1223
+ // },
1224
+ // {
1225
+ // "isSupport": false,
1226
+ // "fontFamily": "Microsoft Tai Le"
1227
+ // },
1228
+ // {
1229
+ // "isSupport": false,
1230
+ // "fontFamily": "Microsoft YaHei UI"
1231
+ // },
1232
+ // {
1233
+ // "isSupport": false,
1234
+ // "fontFamily": "Microsoft YaHei UI Light"
1235
+ // },
1236
+ // {
1237
+ // "isSupport": false,
1238
+ // "fontFamily": "Microsoft Yi Baiti"
1239
+ // },
1240
+ // {
1241
+ // "isSupport": false,
1242
+ // "fontFamily": "MingLiU"
1243
+ // },
1244
+ // {
1245
+ // "isSupport": false,
1246
+ // "fontFamily": "MingLiU_HKSCS"
1247
+ // },
1248
+ // {
1249
+ // "isSupport": false,
1250
+ // "fontFamily": "MingLiU_HKSCS-ExtB"
1251
+ // },
1252
+ // {
1253
+ // "isSupport": false,
1254
+ // "fontFamily": "MingLiU-ExtB"
1255
+ // },
1256
+ // {
1257
+ // "isSupport": false,
1258
+ // "fontFamily": "Minion Pro"
1259
+ // },
1260
+ // {
1261
+ // "isSupport": false,
1262
+ // "fontFamily": "Minion Variable Concept"
1263
+ // },
1264
+ // {
1265
+ // "isSupport": false,
1266
+ // "fontFamily": "Mishafi Gold"
1267
+ // },
1268
+ // {
1269
+ // "isSupport": false,
1270
+ // "fontFamily": "Mistral"
1271
+ // },
1272
+ // {
1273
+ // "isSupport": false,
1274
+ // "fontFamily": "Modern No. 20"
1275
+ // },
1276
+ // {
1277
+ // "isSupport": false,
1278
+ // "fontFamily": "Monaco"
1279
+ // },
1280
+ // {
1281
+ // "isSupport": false,
1282
+ // "fontFamily": "Mongolian Baiti"
1283
+ // },
1284
+ // {
1285
+ // "isSupport": false,
1286
+ // "fontFamily": "Monotype Corsiva"
1287
+ // },
1288
+ // {
1289
+ // "isSupport": false,
1290
+ // "fontFamily": "Monotype Sorts"
1291
+ // },
1292
+ // {
1293
+ // "isSupport": false,
1294
+ // "fontFamily": "MS Gothic"
1295
+ // },
1296
+ // {
1297
+ // "isSupport": false,
1298
+ // "fontFamily": "MS Mincho"
1299
+ // },
1300
+ // {
1301
+ // "isSupport": false,
1302
+ // "fontFamily": "MS PGothic"
1303
+ // },
1304
+ // {
1305
+ // "isSupport": false,
1306
+ // "fontFamily": "MS PMincho"
1307
+ // },
1308
+ // {
1309
+ // "isSupport": false,
1310
+ // "fontFamily": "MS Reference Sans Serif"
1311
+ // },
1312
+ // {
1313
+ // "isSupport": false,
1314
+ // "fontFamily": "MS Reference Specialty"
1315
+ // },
1316
+ // {
1317
+ // "isSupport": false,
1318
+ // "fontFamily": "MS UI Gothic"
1319
+ // },
1320
+ // {
1321
+ // "isSupport": false,
1322
+ // "fontFamily": "MT Extra"
1323
+ // },
1324
+ // {
1325
+ // "isSupport": false,
1326
+ // "fontFamily": "Mukta Mahee"
1327
+ // },
1328
+ // {
1329
+ // "isSupport": false,
1330
+ // "fontFamily": "Muna"
1331
+ // },
1332
+ // {
1333
+ // "isSupport": false,
1334
+ // "fontFamily": "MV Boli"
1335
+ // },
1336
+ // {
1337
+ // "isSupport": false,
1338
+ // "fontFamily": "Myanmar Text"
1339
+ // },
1340
+ // {
1341
+ // "isSupport": false,
1342
+ // "fontFamily": "Myriad Arabic"
1343
+ // },
1344
+ // {
1345
+ // "isSupport": false,
1346
+ // "fontFamily": "Myriad Hebrew"
1347
+ // },
1348
+ // {
1349
+ // "isSupport": false,
1350
+ // "fontFamily": "Myriad Pro"
1351
+ // },
1352
+ // {
1353
+ // "isSupport": false,
1354
+ // "fontFamily": "Myriad Variable Concept"
1355
+ // },
1356
+ // {
1357
+ // "isSupport": false,
1358
+ // "fontFamily": "Nadeem"
1359
+ // },
1360
+ // {
1361
+ // "isSupport": false,
1362
+ // "fontFamily": "Nanum Brush Script"
1363
+ // },
1364
+ // {
1365
+ // "isSupport": false,
1366
+ // "fontFamily": "Nanum Gothic"
1367
+ // },
1368
+ // {
1369
+ // "isSupport": false,
1370
+ // "fontFamily": "Nanum Myeongjo"
1371
+ // },
1372
+ // {
1373
+ // "isSupport": false,
1374
+ // "fontFamily": "Nanum Pen Script"
1375
+ // },
1376
+ // {
1377
+ // "isSupport": false,
1378
+ // "fontFamily": "New Peninim MT"
1379
+ // },
1380
+ // {
1381
+ // "isSupport": false,
1382
+ // "fontFamily": "News Gothic MT"
1383
+ // },
1384
+ // {
1385
+ // "isSupport": false,
1386
+ // "fontFamily": "Nirmala UI"
1387
+ // },
1388
+ // {
1389
+ // "isSupport": false,
1390
+ // "fontFamily": "Nirmala UI Semilight"
1391
+ // },
1392
+ // {
1393
+ // "isSupport": false,
1394
+ // "fontFamily": "Noteworthy"
1395
+ // },
1396
+ // {
1397
+ // "isSupport": false,
1398
+ // "fontFamily": "Noto Nastaliq Urdu"
1399
+ // },
1400
+ // {
1401
+ // "isSupport": false,
1402
+ // "fontFamily": "Noto Sans Armenian"
1403
+ // },
1404
+ // {
1405
+ // "isSupport": false,
1406
+ // "fontFamily": "Noto Sans Avestan"
1407
+ // },
1408
+ // {
1409
+ // "isSupport": false,
1410
+ // "fontFamily": "Noto Sans Bamum"
1411
+ // },
1412
+ // {
1413
+ // "isSupport": false,
1414
+ // "fontFamily": "Noto Sans Batak"
1415
+ // },
1416
+ // {
1417
+ // "isSupport": false,
1418
+ // "fontFamily": "Noto Sans Brahmi"
1419
+ // },
1420
+ // {
1421
+ // "isSupport": false,
1422
+ // "fontFamily": "Noto Sans Buginese"
1423
+ // },
1424
+ // {
1425
+ // "isSupport": false,
1426
+ // "fontFamily": "Noto Sans Buhid"
1427
+ // },
1428
+ // {
1429
+ // "isSupport": false,
1430
+ // "fontFamily": "Noto Sans Carian"
1431
+ // },
1432
+ // {
1433
+ // "isSupport": false,
1434
+ // "fontFamily": "Noto Sans Chakma"
1435
+ // },
1436
+ // {
1437
+ // "isSupport": false,
1438
+ // "fontFamily": "Noto Sans Cham"
1439
+ // },
1440
+ // {
1441
+ // "isSupport": false,
1442
+ // "fontFamily": "Noto Sans Coptic"
1443
+ // },
1444
+ // {
1445
+ // "isSupport": false,
1446
+ // "fontFamily": "Noto Sans Cuneiform"
1447
+ // },
1448
+ // {
1449
+ // "isSupport": false,
1450
+ // "fontFamily": "Noto Sans Cypriot"
1451
+ // },
1452
+ // {
1453
+ // "isSupport": false,
1454
+ // "fontFamily": "Noto Sans Egyptian Hieroglyphs"
1455
+ // },
1456
+ // {
1457
+ // "isSupport": false,
1458
+ // "fontFamily": "Noto Sans Glagolitic"
1459
+ // },
1460
+ // {
1461
+ // "isSupport": false,
1462
+ // "fontFamily": "Noto Sans Gothic"
1463
+ // },
1464
+ // {
1465
+ // "isSupport": false,
1466
+ // "fontFamily": "Noto Sans Hanunoo"
1467
+ // },
1468
+ // {
1469
+ // "isSupport": false,
1470
+ // "fontFamily": "Noto Sans Imperial Aramaic"
1471
+ // },
1472
+ // {
1473
+ // "isSupport": false,
1474
+ // "fontFamily": "Noto Sans Inscriptional Pahlavi"
1475
+ // },
1476
+ // {
1477
+ // "isSupport": false,
1478
+ // "fontFamily": "Noto Sans Inscriptional Parthian"
1479
+ // },
1480
+ // {
1481
+ // "isSupport": false,
1482
+ // "fontFamily": "Noto Sans Javanese"
1483
+ // },
1484
+ // {
1485
+ // "isSupport": false,
1486
+ // "fontFamily": "Noto Sans Kaithi"
1487
+ // },
1488
+ // {
1489
+ // "isSupport": false,
1490
+ // "fontFamily": "Noto Sans Kannada"
1491
+ // },
1492
+ // {
1493
+ // "isSupport": false,
1494
+ // "fontFamily": "Noto Sans Kayah Li"
1495
+ // },
1496
+ // {
1497
+ // "isSupport": false,
1498
+ // "fontFamily": "Noto Sans Kharoshthi"
1499
+ // },
1500
+ // {
1501
+ // "isSupport": false,
1502
+ // "fontFamily": "Noto Sans Lepcha"
1503
+ // },
1504
+ // {
1505
+ // "isSupport": false,
1506
+ // "fontFamily": "Noto Sans Limbu"
1507
+ // },
1508
+ // {
1509
+ // "isSupport": false,
1510
+ // "fontFamily": "Noto Sans Linear B"
1511
+ // },
1512
+ // {
1513
+ // "isSupport": false,
1514
+ // "fontFamily": "Noto Sans Lisu"
1515
+ // },
1516
+ // {
1517
+ // "isSupport": false,
1518
+ // "fontFamily": "Noto Sans Lycian"
1519
+ // },
1520
+ // {
1521
+ // "isSupport": false,
1522
+ // "fontFamily": "Noto Sans Lydian"
1523
+ // },
1524
+ // {
1525
+ // "isSupport": false,
1526
+ // "fontFamily": "Noto Sans Mandaic"
1527
+ // },
1528
+ // {
1529
+ // "isSupport": false,
1530
+ // "fontFamily": "Noto Sans Meetei Mayek"
1531
+ // },
1532
+ // {
1533
+ // "isSupport": false,
1534
+ // "fontFamily": "Noto Sans Mongolian"
1535
+ // },
1536
+ // {
1537
+ // "isSupport": false,
1538
+ // "fontFamily": "Noto Sans Myanmar"
1539
+ // },
1540
+ // {
1541
+ // "isSupport": false,
1542
+ // "fontFamily": "Noto Sans New Tai Lue"
1543
+ // },
1544
+ // {
1545
+ // "isSupport": false,
1546
+ // "fontFamily": "Noto Sans NKo"
1547
+ // },
1548
+ // {
1549
+ // "isSupport": false,
1550
+ // "fontFamily": "Noto Sans Ogham"
1551
+ // },
1552
+ // {
1553
+ // "isSupport": false,
1554
+ // "fontFamily": "Noto Sans OI Chiki"
1555
+ // },
1556
+ // {
1557
+ // "isSupport": false,
1558
+ // "fontFamily": "Noto Sans Old Persian"
1559
+ // },
1560
+ // {
1561
+ // "isSupport": false,
1562
+ // "fontFamily": "Noto Sans Old South Arabian"
1563
+ // },
1564
+ // {
1565
+ // "isSupport": false,
1566
+ // "fontFamily": "Noto Sans Old Turkic"
1567
+ // },
1568
+ // {
1569
+ // "isSupport": false,
1570
+ // "fontFamily": "Noto Sans Oriya"
1571
+ // },
1572
+ // {
1573
+ // "isSupport": false,
1574
+ // "fontFamily": "Noto Sans Osmanya"
1575
+ // },
1576
+ // {
1577
+ // "isSupport": false,
1578
+ // "fontFamily": "Noto Sans PhagsPa"
1579
+ // },
1580
+ // {
1581
+ // "isSupport": false,
1582
+ // "fontFamily": "Noto Sans Phoenician"
1583
+ // },
1584
+ // {
1585
+ // "isSupport": false,
1586
+ // "fontFamily": "Noto Sans Rejang"
1587
+ // },
1588
+ // {
1589
+ // "isSupport": false,
1590
+ // "fontFamily": "Noto Sans Runic"
1591
+ // },
1592
+ // {
1593
+ // "isSupport": false,
1594
+ // "fontFamily": "Noto Sans Samaritan"
1595
+ // },
1596
+ // {
1597
+ // "isSupport": false,
1598
+ // "fontFamily": "Noto Sans Saurashtra"
1599
+ // },
1600
+ // {
1601
+ // "isSupport": false,
1602
+ // "fontFamily": "Noto Sans Shavian"
1603
+ // },
1604
+ // {
1605
+ // "isSupport": false,
1606
+ // "fontFamily": "Noto Sans Sundanese"
1607
+ // },
1608
+ // {
1609
+ // "isSupport": false,
1610
+ // "fontFamily": "Noto Sans Syloti Nagri"
1611
+ // },
1612
+ // {
1613
+ // "isSupport": false,
1614
+ // "fontFamily": "Noto Sans Syriac"
1615
+ // },
1616
+ // {
1617
+ // "isSupport": false,
1618
+ // "fontFamily": "Noto Sans Tagalog"
1619
+ // },
1620
+ // {
1621
+ // "isSupport": false,
1622
+ // "fontFamily": "Noto Sans Tagbanwa"
1623
+ // },
1624
+ // {
1625
+ // "isSupport": false,
1626
+ // "fontFamily": "Noto Sans Tai Le"
1627
+ // },
1628
+ // {
1629
+ // "isSupport": false,
1630
+ // "fontFamily": "Noto Sans Tai Tham"
1631
+ // },
1632
+ // {
1633
+ // "isSupport": false,
1634
+ // "fontFamily": "Noto Sans Tai Viet"
1635
+ // },
1636
+ // {
1637
+ // "isSupport": false,
1638
+ // "fontFamily": "Noto Sans Thaana"
1639
+ // },
1640
+ // {
1641
+ // "isSupport": false,
1642
+ // "fontFamily": "Noto Sans Tifinagh"
1643
+ // },
1644
+ // {
1645
+ // "isSupport": false,
1646
+ // "fontFamily": "Noto Sans Ugaritic"
1647
+ // },
1648
+ // {
1649
+ // "isSupport": false,
1650
+ // "fontFamily": "Noto Sans Vai"
1651
+ // },
1652
+ // {
1653
+ // "isSupport": false,
1654
+ // "fontFamily": "Noto Sans Yi"
1655
+ // },
1656
+ // {
1657
+ // "isSupport": false,
1658
+ // "fontFamily": "Noto Sans Zawgyi"
1659
+ // },
1660
+ // {
1661
+ // "isSupport": false,
1662
+ // "fontFamily": "Noto Serif Balinese"
1663
+ // },
1664
+ // {
1665
+ // "isSupport": false,
1666
+ // "fontFamily": "Noto Serif Myanmar"
1667
+ // },
1668
+ // {
1669
+ // "isSupport": false,
1670
+ // "fontFamily": "Nueva Std"
1671
+ // },
1672
+ // {
1673
+ // "isSupport": false,
1674
+ // "fontFamily": "Nyala"
1675
+ // },
1676
+ // {
1677
+ // "isSupport": false,
1678
+ // "fontFamily": "OCR A Std"
1679
+ // },
1680
+ // {
1681
+ // "isSupport": false,
1682
+ // "fontFamily": "Onyx"
1683
+ // },
1684
+ // {
1685
+ // "isSupport": false,
1686
+ // "fontFamily": "Optima"
1687
+ // },
1688
+ // {
1689
+ // "isSupport": false,
1690
+ // "fontFamily": "Orator Std"
1691
+ // },
1692
+ // {
1693
+ // "isSupport": false,
1694
+ // "fontFamily": "Oriya MN"
1695
+ // },
1696
+ // {
1697
+ // "isSupport": false,
1698
+ // "fontFamily": "Oriya Sangam MN"
1699
+ // },
1700
+ // {
1701
+ // "isSupport": false,
1702
+ // "fontFamily": "Osaka"
1703
+ // },
1704
+ // {
1705
+ // "isSupport": false,
1706
+ // "fontFamily": "Palatino"
1707
+ // },
1708
+ // {
1709
+ // "isSupport": false,
1710
+ // "fontFamily": "Palatino Linotype"
1711
+ // },
1712
+ // {
1713
+ // "isSupport": false,
1714
+ // "fontFamily": "Papyrus"
1715
+ // },
1716
+ // {
1717
+ // "isSupport": false,
1718
+ // "fontFamily": "PCMyungjo"
1719
+ // },
1720
+ // {
1721
+ // "isSupport": false,
1722
+ // "fontFamily": "Perpetua"
1723
+ // },
1724
+ // {
1725
+ // "isSupport": false,
1726
+ // "fontFamily": "Perpetua Titling MT"
1727
+ // },
1728
+ // {
1729
+ // "isSupport": false,
1730
+ // "fontFamily": "Phosphate"
1731
+ // },
1732
+ // {
1733
+ // "isSupport": false,
1734
+ // "fontFamily": "PilGi"
1735
+ // },
1736
+ // {
1737
+ // "isSupport": false,
1738
+ // "fontFamily": "Plantagenet Cherokee"
1739
+ // },
1740
+ // {
1741
+ // "isSupport": false,
1742
+ // "fontFamily": "PMingLiU"
1743
+ // },
1744
+ // {
1745
+ // "isSupport": false,
1746
+ // "fontFamily": "PMingLiU-ExtB"
1747
+ // },
1748
+ // {
1749
+ // "isSupport": false,
1750
+ // "fontFamily": "Poplar Std"
1751
+ // },
1752
+ // {
1753
+ // "isSupport": false,
1754
+ // "fontFamily": "Prestige Elite Std"
1755
+ // },
1756
+ // {
1757
+ // "isSupport": false,
1758
+ // "fontFamily": "PSL Ornanong Pro"
1759
+ // },
1760
+ // {
1761
+ // "isSupport": false,
1762
+ // "fontFamily": "PT Mono"
1763
+ // },
1764
+ // {
1765
+ // "isSupport": false,
1766
+ // "fontFamily": "PT Sans"
1767
+ // },
1768
+ // {
1769
+ // "isSupport": false,
1770
+ // "fontFamily": "PT Sans Caption"
1771
+ // },
1772
+ // {
1773
+ // "isSupport": false,
1774
+ // "fontFamily": "PT Serif"
1775
+ // },
1776
+ // {
1777
+ // "isSupport": false,
1778
+ // "fontFamily": "PT Serif Caption"
1779
+ // },
1780
+ // {
1781
+ // "isSupport": false,
1782
+ // "fontFamily": "Raanana"
1783
+ // },
1784
+ // {
1785
+ // "isSupport": false,
1786
+ // "fontFamily": "Rockwell"
1787
+ // },
1788
+ // {
1789
+ // "isSupport": false,
1790
+ // "fontFamily": "Rosewood Std"
1791
+ // },
1792
+ // {
1793
+ // "isSupport": false,
1794
+ // "fontFamily": "Sana"
1795
+ // },
1796
+ // {
1797
+ // "isSupport": false,
1798
+ // "fontFamily": "Sathu"
1799
+ // },
1800
+ // {
1801
+ // "isSupport": false,
1802
+ // "fontFamily": "Savoye LET"
1803
+ // },
1804
+ // {
1805
+ // "isSupport": false,
1806
+ // "fontFamily": "Segoe MDL2 Assets"
1807
+ // },
1808
+ // {
1809
+ // "isSupport": false,
1810
+ // "fontFamily": "Segoe Print"
1811
+ // },
1812
+ // {
1813
+ // "isSupport": false,
1814
+ // "fontFamily": "Segoe Script"
1815
+ // },
1816
+ // {
1817
+ // "isSupport": false,
1818
+ // "fontFamily": "Segoe UI"
1819
+ // },
1820
+ // {
1821
+ // "isSupport": false,
1822
+ // "fontFamily": "Segoe UI Black"
1823
+ // },
1824
+ // {
1825
+ // "isSupport": false,
1826
+ // "fontFamily": "Segoe UI Emoji"
1827
+ // },
1828
+ // {
1829
+ // "isSupport": false,
1830
+ // "fontFamily": "Segoe UI Historic"
1831
+ // },
1832
+ // {
1833
+ // "isSupport": false,
1834
+ // "fontFamily": "Segoe UI Light"
1835
+ // },
1836
+ // {
1837
+ // "isSupport": false,
1838
+ // "fontFamily": "Segoe UI Semibold"
1839
+ // },
1840
+ // {
1841
+ // "isSupport": false,
1842
+ // "fontFamily": "Segoe UI Semilight"
1843
+ // },
1844
+ // {
1845
+ // "isSupport": false,
1846
+ // "fontFamily": "Segoe UI Symbol"
1847
+ // },
1848
+ // {
1849
+ // "isSupport": false,
1850
+ // "fontFamily": "Seravek"
1851
+ // },
1852
+ // {
1853
+ // "isSupport": false,
1854
+ // "fontFamily": "Shree Devanagari 714"
1855
+ // },
1856
+ // {
1857
+ // "isSupport": false,
1858
+ // "fontFamily": "SignPainter"
1859
+ // },
1860
+ // {
1861
+ // "isSupport": false,
1862
+ // "fontFamily": "Silom"
1863
+ // },
1864
+ // {
1865
+ // "isSupport": false,
1866
+ // "fontFamily": "SimSum-ExtB"
1867
+ // },
1868
+ // {
1869
+ // "isSupport": false,
1870
+ // "fontFamily": "SimSun-ExtB"
1871
+ // },
1872
+ // {
1873
+ // "isSupport": false,
1874
+ // "fontFamily": "Sinhala MN"
1875
+ // },
1876
+ // {
1877
+ // "isSupport": false,
1878
+ // "fontFamily": "Sinhala Sangam MN"
1879
+ // },
1880
+ // {
1881
+ // "isSupport": false,
1882
+ // "fontFamily": "Sitka"
1883
+ // },
1884
+ // {
1885
+ // "isSupport": false,
1886
+ // "fontFamily": "Sitka Banner"
1887
+ // },
1888
+ // {
1889
+ // "isSupport": false,
1890
+ // "fontFamily": "Sitka Display"
1891
+ // },
1892
+ // {
1893
+ // "isSupport": false,
1894
+ // "fontFamily": "Sitka Heading"
1895
+ // },
1896
+ // {
1897
+ // "isSupport": false,
1898
+ // "fontFamily": "Sitka Small"
1899
+ // },
1900
+ // {
1901
+ // "isSupport": false,
1902
+ // "fontFamily": "Sitka Subheading"
1903
+ // },
1904
+ // {
1905
+ // "isSupport": false,
1906
+ // "fontFamily": "Sitka Text"
1907
+ // },
1908
+ // {
1909
+ // "isSupport": false,
1910
+ // "fontFamily": "Skia"
1911
+ // },
1912
+ // {
1913
+ // "isSupport": false,
1914
+ // "fontFamily": "Snell Roundhand"
1915
+ // },
1916
+ // {
1917
+ // "isSupport": false,
1918
+ // "fontFamily": "Source Code Variable"
1919
+ // },
1920
+ // {
1921
+ // "isSupport": false,
1922
+ // "fontFamily": "Source Sans Variable"
1923
+ // },
1924
+ // {
1925
+ // "isSupport": false,
1926
+ // "fontFamily": "Source Serif Variable"
1927
+ // },
1928
+ // {
1929
+ // "isSupport": false,
1930
+ // "fontFamily": "Stencil"
1931
+ // },
1932
+ // {
1933
+ // "isSupport": false,
1934
+ // "fontFamily": "Stencil Std"
1935
+ // },
1936
+ // {
1937
+ // "isSupport": false,
1938
+ // "fontFamily": "STFangsong"
1939
+ // },
1940
+ // {
1941
+ // "isSupport": false,
1942
+ // "fontFamily": "STHeiti"
1943
+ // },
1944
+ // {
1945
+ // "isSupport": false,
1946
+ // "fontFamily": "STIXGeneral"
1947
+ // },
1948
+ // {
1949
+ // "isSupport": false,
1950
+ // "fontFamily": "STIXIntegralsD"
1951
+ // },
1952
+ // {
1953
+ // "isSupport": false,
1954
+ // "fontFamily": "STIXIntegralsSm"
1955
+ // },
1956
+ // {
1957
+ // "isSupport": false,
1958
+ // "fontFamily": "STIXIntegralsUpD"
1959
+ // },
1960
+ // {
1961
+ // "isSupport": false,
1962
+ // "fontFamily": "STIXIntegralsUpSm"
1963
+ // },
1964
+ // {
1965
+ // "isSupport": false,
1966
+ // "fontFamily": "STIXNonUnicode"
1967
+ // },
1968
+ // {
1969
+ // "isSupport": false,
1970
+ // "fontFamily": "STIXSizeFiveSym"
1971
+ // },
1972
+ // {
1973
+ // "isSupport": false,
1974
+ // "fontFamily": "STIXSizeFourSym"
1975
+ // },
1976
+ // {
1977
+ // "isSupport": false,
1978
+ // "fontFamily": "STIXSizeOneSym"
1979
+ // },
1980
+ // {
1981
+ // "isSupport": false,
1982
+ // "fontFamily": "STIXSizeThreeSym"
1983
+ // },
1984
+ // {
1985
+ // "isSupport": false,
1986
+ // "fontFamily": "STIXSizeTwoSym"
1987
+ // },
1988
+ // {
1989
+ // "isSupport": false,
1990
+ // "fontFamily": "STIXVariants"
1991
+ // },
1992
+ // {
1993
+ // "isSupport": false,
1994
+ // "fontFamily": "STKaiti"
1995
+ // },
1996
+ // {
1997
+ // "isSupport": false,
1998
+ // "fontFamily": "STSong"
1999
+ // },
2000
+ // {
2001
+ // "isSupport": false,
2002
+ // "fontFamily": "Sukhumvit Set"
2003
+ // },
2004
+ // {
2005
+ // "isSupport": false,
2006
+ // "fontFamily": "Superclarendon"
2007
+ // },
2008
+ // {
2009
+ // "isSupport": false,
2010
+ // "fontFamily": "Sylfaen"
2011
+ // },
2012
+ // {
2013
+ // "isSupport": false,
2014
+ // "fontFamily": "Symbol"
2015
+ // },
2016
+ // {
2017
+ // "isSupport": false,
2018
+ // "fontFamily": "Tahoma"
2019
+ // },
2020
+ // {
2021
+ // "isSupport": false,
2022
+ // "fontFamily": "Tamil MN"
2023
+ // },
2024
+ // {
2025
+ // "isSupport": false,
2026
+ // "fontFamily": "Tamil Sangam MN"
2027
+ // },
2028
+ // {
2029
+ // "isSupport": false,
2030
+ // "fontFamily": "Tekton Pro"
2031
+ // },
2032
+ // {
2033
+ // "isSupport": false,
2034
+ // "fontFamily": "Telugu MN"
2035
+ // },
2036
+ // {
2037
+ // "isSupport": false,
2038
+ // "fontFamily": "Telugu Sangam MN"
2039
+ // },
2040
+ // {
2041
+ // "isSupport": false,
2042
+ // "fontFamily": "TH Niramit AS"
2043
+ // },
2044
+ // {
2045
+ // "isSupport": false,
2046
+ // "fontFamily": "TH NiramitIT๙"
2047
+ // },
2048
+ // {
2049
+ // "isSupport": false,
2050
+ // "fontFamily": "TH Sarabun New"
2051
+ // },
2052
+ // {
2053
+ // "isSupport": false,
2054
+ // "fontFamily": "TH SarabunIT๙"
2055
+ // },
2056
+ // {
2057
+ // "isSupport": false,
2058
+ // "fontFamily": "TH SarabunPSK"
2059
+ // },
2060
+ // {
2061
+ // "isSupport": false,
2062
+ // "fontFamily": "Times"
2063
+ // },
2064
+ // {
2065
+ // "isSupport": false,
2066
+ // "fontFamily": "Times New Roman"
2067
+ // },
2068
+ // {
2069
+ // "isSupport": false,
2070
+ // "fontFamily": "Toppan Bunkyu Gothic"
2071
+ // },
2072
+ // {
2073
+ // "isSupport": false,
2074
+ // "fontFamily": "Toppan Bunkyu Midashi Gothic"
2075
+ // },
2076
+ // {
2077
+ // "isSupport": false,
2078
+ // "fontFamily": "Toppan Bunkyu Midashi Mincho"
2079
+ // },
2080
+ // {
2081
+ // "isSupport": false,
2082
+ // "fontFamily": "Toppan Bunkyu Mincho"
2083
+ // },
2084
+ // {
2085
+ // "isSupport": false,
2086
+ // "fontFamily": "Trajan Color"
2087
+ // },
2088
+ // {
2089
+ // "isSupport": false,
2090
+ // "fontFamily": "Trajan Pro"
2091
+ // },
2092
+ // {
2093
+ // "isSupport": false,
2094
+ // "fontFamily": "Trattatello"
2095
+ // },
2096
+ // {
2097
+ // "isSupport": false,
2098
+ // "fontFamily": "Trebuchet MS"
2099
+ // },
2100
+ // {
2101
+ // "isSupport": false,
2102
+ // "fontFamily": "Tsukushi A Round Gothic"
2103
+ // },
2104
+ // {
2105
+ // "isSupport": false,
2106
+ // "fontFamily": "Tsukushi B Round Gothic"
2107
+ // },
2108
+ // {
2109
+ // "isSupport": false,
2110
+ // "fontFamily": "Tunga"
2111
+ // },
2112
+ // {
2113
+ // "isSupport": false,
2114
+ // "fontFamily": "Tw Cen MT"
2115
+ // },
2116
+ // {
2117
+ // "isSupport": false,
2118
+ // "fontFamily": "Verdana"
2119
+ // },
2120
+ // {
2121
+ // "isSupport": false,
2122
+ // "fontFamily": "Waseem"
2123
+ // },
2124
+ // {
2125
+ // "isSupport": false,
2126
+ // "fontFamily": "Webdings"
2127
+ // },
2128
+ // {
2129
+ // "isSupport": false,
2130
+ // "fontFamily": "Wide Latin"
2131
+ // },
2132
+ // {
2133
+ // "isSupport": false,
2134
+ // "fontFamily": "Wingdings"
2135
+ // },
2136
+ // {
2137
+ // "isSupport": false,
2138
+ // "fontFamily": "Wingdings 2"
2139
+ // },
2140
+ // {
2141
+ // "isSupport": false,
2142
+ // "fontFamily": "Wingdings 3"
2143
+ // },
2144
+ // {
2145
+ // "isSupport": false,
2146
+ // "fontFamily": "Yu Mincho"
2147
+ // },
2148
+ // {
2149
+ // "isSupport": false,
2150
+ // "fontFamily": "YuGothic"
2151
+ // },
2152
+ // {
2153
+ // "isSupport": false,
2154
+ // "fontFamily": "YuGothic Light"
2155
+ // },
2156
+ // {
2157
+ // "isSupport": false,
2158
+ // "fontFamily": "YuGothic Medium"
2159
+ // },
2160
+ // {
2161
+ // "isSupport": false,
2162
+ // "fontFamily": "YuGothic UI"
2163
+ // },
2164
+ // {
2165
+ // "isSupport": false,
2166
+ // "fontFamily": "YuGothic UI Light"
2167
+ // },
2168
+ // {
2169
+ // "isSupport": false,
2170
+ // "fontFamily": "YuGothic UI Semibold"
2171
+ // },
2172
+ // {
2173
+ // "isSupport": false,
2174
+ // "fontFamily": "YuGothic Ui Semilight"
2175
+ // },
2176
+ // {
2177
+ // "isSupport": false,
2178
+ // "fontFamily": "YuGothic UI Semilight"
2179
+ // },
2180
+ // {
2181
+ // "isSupport": false,
2182
+ // "fontFamily": "YuKyokasho"
2183
+ // },
2184
+ // {
2185
+ // "isSupport": false,
2186
+ // "fontFamily": "YuKyokasho Yoko"
2187
+ // },
2188
+ // {
2189
+ // "isSupport": false,
2190
+ // "fontFamily": "YuMincho +36p Kana"
2191
+ // }
2192
+ ];
2193
+
2194
+ export default fontFamilyList;