@king-design/react 2.0.0-beta.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 (855) hide show
  1. package/README.md +22 -0
  2. package/__tests__/__snapshots__/React Demos.md +1769 -0
  3. package/__tests__/components/dropdown.spec.tsx +35 -0
  4. package/__tests__/index.ts +46 -0
  5. package/__tests__/karma.conf.js +52 -0
  6. package/__tests__/webpack.config.js +17 -0
  7. package/components/affix/index.d.ts +32 -0
  8. package/components/affix/index.js +35 -0
  9. package/components/affix/index.spec.d.ts +4 -0
  10. package/components/affix/index.spec.js +132 -0
  11. package/components/affix/index.vdt.js +35 -0
  12. package/components/affix/styles.d.ts +5 -0
  13. package/components/affix/styles.js +18 -0
  14. package/components/affix/useStyle.d.ts +8 -0
  15. package/components/affix/useStyle.js +125 -0
  16. package/components/badge/index.d.ts +13 -0
  17. package/components/badge/index.js +21 -0
  18. package/components/badge/index.vdt.js +32 -0
  19. package/components/badge/styles.d.ts +5 -0
  20. package/components/badge/styles.js +28 -0
  21. package/components/breadcrumb/index.d.ts +18 -0
  22. package/components/breadcrumb/index.js +28 -0
  23. package/components/breadcrumb/index.spec.d.ts +4 -0
  24. package/components/breadcrumb/index.spec.js +46 -0
  25. package/components/breadcrumb/index.vdt.js +62 -0
  26. package/components/breadcrumb/item.d.ts +13 -0
  27. package/components/breadcrumb/item.js +52 -0
  28. package/components/breadcrumb/item.vdt.js +27 -0
  29. package/components/breadcrumb/styles.d.ts +5 -0
  30. package/components/breadcrumb/styles.js +30 -0
  31. package/components/button/constants.d.ts +4 -0
  32. package/components/button/constants.js +3 -0
  33. package/components/button/dynamicButton.d.ts +11 -0
  34. package/components/button/dynamicButton.js +24 -0
  35. package/components/button/group.d.ts +17 -0
  36. package/components/button/group.js +51 -0
  37. package/components/button/group.vdt.js +29 -0
  38. package/components/button/index.d.ts +51 -0
  39. package/components/button/index.js +121 -0
  40. package/components/button/index.spec.d.ts +4 -0
  41. package/components/button/index.spec.js +129 -0
  42. package/components/button/index.vdt.js +95 -0
  43. package/components/button/styles.d.ts +11 -0
  44. package/components/button/styles.js +257 -0
  45. package/components/card/column.d.ts +12 -0
  46. package/components/card/column.js +20 -0
  47. package/components/card/column.vdt.js +38 -0
  48. package/components/card/index.d.ts +21 -0
  49. package/components/card/index.js +29 -0
  50. package/components/card/index.vdt.js +79 -0
  51. package/components/card/styles.d.ts +5 -0
  52. package/components/card/styles.js +23 -0
  53. package/components/carousel/index.d.ts +26 -0
  54. package/components/carousel/index.js +106 -0
  55. package/components/carousel/index.spec.d.ts +4 -0
  56. package/components/carousel/index.spec.js +200 -0
  57. package/components/carousel/index.vdt.js +79 -0
  58. package/components/carousel/item.d.ts +12 -0
  59. package/components/carousel/item.js +20 -0
  60. package/components/carousel/item.vdt.js +35 -0
  61. package/components/carousel/styles.d.ts +6 -0
  62. package/components/carousel/styles.js +46 -0
  63. package/components/carousel/useAutoplay.d.ts +7 -0
  64. package/components/carousel/useAutoplay.js +37 -0
  65. package/components/carousel/useItems.d.ts +9 -0
  66. package/components/carousel/useItems.js +93 -0
  67. package/components/carousel/useSlide.d.ts +12 -0
  68. package/components/carousel/useSlide.js +191 -0
  69. package/components/cascader/index.d.ts +37 -0
  70. package/components/cascader/index.js +93 -0
  71. package/components/cascader/index.spec.d.ts +4 -0
  72. package/components/cascader/index.spec.js +283 -0
  73. package/components/cascader/index.vdt.js +151 -0
  74. package/components/cascader/styles.d.ts +6 -0
  75. package/components/cascader/styles.js +52 -0
  76. package/components/cascader/useFilterable.d.ts +11 -0
  77. package/components/cascader/useFilterable.js +65 -0
  78. package/components/cascader/useLabel.d.ts +6 -0
  79. package/components/cascader/useLabel.js +43 -0
  80. package/components/cascader/useLoad.d.ts +5 -0
  81. package/components/cascader/useLoad.js +54 -0
  82. package/components/cascader/useValue.d.ts +14 -0
  83. package/components/cascader/useValue.js +125 -0
  84. package/components/checkbox/index.d.ts +27 -0
  85. package/components/checkbox/index.js +122 -0
  86. package/components/checkbox/index.spec.d.ts +4 -0
  87. package/components/checkbox/index.spec.js +217 -0
  88. package/components/checkbox/index.vdt.js +67 -0
  89. package/components/checkbox/styles.d.ts +5 -0
  90. package/components/checkbox/styles.js +77 -0
  91. package/components/code/crossDomain.d.ts +4 -0
  92. package/components/code/crossDomain.js +48 -0
  93. package/components/code/index.d.ts +26 -0
  94. package/components/code/index.js +58 -0
  95. package/components/code/index.spec.d.ts +4 -0
  96. package/components/code/index.spec.js +73 -0
  97. package/components/code/index.vdt.js +54 -0
  98. package/components/code/styles.d.ts +5 -0
  99. package/components/code/styles.js +16 -0
  100. package/components/code/useEditor.d.ts +9 -0
  101. package/components/code/useEditor.js +81 -0
  102. package/components/collapse/index.d.ts +23 -0
  103. package/components/collapse/index.js +57 -0
  104. package/components/collapse/index.spec.d.ts +4 -0
  105. package/components/collapse/index.spec.js +84 -0
  106. package/components/collapse/index.vdt.js +47 -0
  107. package/components/collapse/item.d.ts +24 -0
  108. package/components/collapse/item.js +52 -0
  109. package/components/collapse/item.vdt.js +64 -0
  110. package/components/collapse/styles.d.ts +7 -0
  111. package/components/collapse/styles.js +33 -0
  112. package/components/colorpicker/drag.d.ts +18 -0
  113. package/components/colorpicker/drag.js +27 -0
  114. package/components/colorpicker/drag.vdt.js +12 -0
  115. package/components/colorpicker/index.d.ts +18 -0
  116. package/components/colorpicker/index.js +35 -0
  117. package/components/colorpicker/index.spec.d.ts +4 -0
  118. package/components/colorpicker/index.spec.js +312 -0
  119. package/components/colorpicker/index.vdt.js +54 -0
  120. package/components/colorpicker/panel.d.ts +14 -0
  121. package/components/colorpicker/panel.js +31 -0
  122. package/components/colorpicker/panel.vdt.js +166 -0
  123. package/components/colorpicker/styles.d.ts +8 -0
  124. package/components/colorpicker/styles.js +135 -0
  125. package/components/colorpicker/useDrag.d.ts +6 -0
  126. package/components/colorpicker/useDrag.js +42 -0
  127. package/components/colorpicker/useInput.d.ts +19 -0
  128. package/components/colorpicker/useInput.js +78 -0
  129. package/components/colorpicker/usePointer.d.ts +9 -0
  130. package/components/colorpicker/usePointer.js +53 -0
  131. package/components/colorpicker/useValue.d.ts +14 -0
  132. package/components/colorpicker/useValue.js +58 -0
  133. package/components/context.d.ts +14 -0
  134. package/components/context.js +90 -0
  135. package/components/datepicker/basepicker.d.ts +62 -0
  136. package/components/datepicker/basepicker.js +341 -0
  137. package/components/datepicker/calendar.d.ts +81 -0
  138. package/components/datepicker/calendar.js +66 -0
  139. package/components/datepicker/calendar.vdt.js +128 -0
  140. package/components/datepicker/constants.d.ts +16 -0
  141. package/components/datepicker/constants.js +20 -0
  142. package/components/datepicker/dayjs.d.ts +6 -0
  143. package/components/datepicker/dayjs.js +6 -0
  144. package/components/datepicker/helpers.d.ts +13 -0
  145. package/components/datepicker/helpers.js +86 -0
  146. package/components/datepicker/index.d.ts +66 -0
  147. package/components/datepicker/index.js +123 -0
  148. package/components/datepicker/index.spec.d.ts +4 -0
  149. package/components/datepicker/index.spec.js +1703 -0
  150. package/components/datepicker/index.vdt.js +142 -0
  151. package/components/datepicker/shortcuts.d.ts +24 -0
  152. package/components/datepicker/shortcuts.js +140 -0
  153. package/components/datepicker/styles.d.ts +9 -0
  154. package/components/datepicker/styles.js +89 -0
  155. package/components/datepicker/time.d.ts +33 -0
  156. package/components/datepicker/time.js +107 -0
  157. package/components/datepicker/time.vdt.js +48 -0
  158. package/components/datepicker/useDays.d.ts +19 -0
  159. package/components/datepicker/useDays.js +47 -0
  160. package/components/datepicker/useDisabled.d.ts +14 -0
  161. package/components/datepicker/useDisabled.js +97 -0
  162. package/components/datepicker/useFocusDate.d.ts +8 -0
  163. package/components/datepicker/useFocusDate.js +18 -0
  164. package/components/datepicker/useFormats.d.ts +13 -0
  165. package/components/datepicker/useFormats.js +57 -0
  166. package/components/datepicker/useKeyboards.d.ts +8 -0
  167. package/components/datepicker/useKeyboards.js +98 -0
  168. package/components/datepicker/useMonths.d.ts +18 -0
  169. package/components/datepicker/useMonths.js +47 -0
  170. package/components/datepicker/usePanel.d.ts +21 -0
  171. package/components/datepicker/usePanel.js +57 -0
  172. package/components/datepicker/useShowDate.d.ts +19 -0
  173. package/components/datepicker/useShowDate.js +160 -0
  174. package/components/datepicker/useStatus.d.ts +11 -0
  175. package/components/datepicker/useStatus.js +62 -0
  176. package/components/datepicker/useValue.d.ts +19 -0
  177. package/components/datepicker/useValue.js +84 -0
  178. package/components/datepicker/useYears.d.ts +21 -0
  179. package/components/datepicker/useYears.js +72 -0
  180. package/components/diagram/constants.d.ts +6 -0
  181. package/components/diagram/constants.js +5 -0
  182. package/components/diagram/defaultStyle.d.ts +117 -0
  183. package/components/diagram/defaultStyle.js +116 -0
  184. package/components/diagram/diagram.d.ts +43 -0
  185. package/components/diagram/diagram.js +176 -0
  186. package/components/diagram/diagram.vdt.js +25 -0
  187. package/components/diagram/graph.d.ts +5 -0
  188. package/components/diagram/graph.js +30 -0
  189. package/components/diagram/index.d.ts +25 -0
  190. package/components/diagram/index.js +30 -0
  191. package/components/diagram/index.spec.d.ts +4 -0
  192. package/components/diagram/index.spec.js +631 -0
  193. package/components/diagram/layouts/circle.d.ts +19 -0
  194. package/components/diagram/layouts/circle.js +56 -0
  195. package/components/diagram/layouts/flow.d.ts +19 -0
  196. package/components/diagram/layouts/flow.js +69 -0
  197. package/components/diagram/layouts/layout.d.ts +28 -0
  198. package/components/diagram/layouts/layout.js +113 -0
  199. package/components/diagram/layouts/organic.d.ts +18 -0
  200. package/components/diagram/layouts/organic.js +51 -0
  201. package/components/diagram/layouts/partition.d.ts +17 -0
  202. package/components/diagram/layouts/partition.js +55 -0
  203. package/components/diagram/layouts/radial.d.ts +21 -0
  204. package/components/diagram/layouts/radial.js +72 -0
  205. package/components/diagram/layouts/stack.d.ts +19 -0
  206. package/components/diagram/layouts/stack.js +66 -0
  207. package/components/diagram/layouts/tree.d.ts +22 -0
  208. package/components/diagram/layouts/tree.js +77 -0
  209. package/components/diagram/mxgraph/handler/mxConnectionHandler.d.ts +4 -0
  210. package/components/diagram/mxgraph/handler/mxConnectionHandler.js +53 -0
  211. package/components/diagram/mxgraph/handler/mxConstraintHandler.d.ts +5 -0
  212. package/components/diagram/mxgraph/handler/mxConstraintHandler.js +16 -0
  213. package/components/diagram/mxgraph/handler/mxEdgeHandler.d.ts +5 -0
  214. package/components/diagram/mxgraph/handler/mxEdgeHandler.js +45 -0
  215. package/components/diagram/mxgraph/handler/mxGraphHandler.d.ts +4 -0
  216. package/components/diagram/mxgraph/handler/mxGraphHandler.js +25 -0
  217. package/components/diagram/mxgraph/handler/mxRubberband.d.ts +4 -0
  218. package/components/diagram/mxgraph/handler/mxRubberband.js +10 -0
  219. package/components/diagram/mxgraph/handler/mxVertexHandler.d.ts +7 -0
  220. package/components/diagram/mxgraph/handler/mxVertexHandler.js +32 -0
  221. package/components/diagram/mxgraph/index.d.ts +5 -0
  222. package/components/diagram/mxgraph/index.js +49 -0
  223. package/components/diagram/mxgraph/mx.d.ts +6 -0
  224. package/components/diagram/mxgraph/mx.js +16 -0
  225. package/components/diagram/mxgraph/shape/mxCloud.d.ts +4 -0
  226. package/components/diagram/mxgraph/shape/mxCloud.js +9 -0
  227. package/components/diagram/mxgraph/shape/mxCylinder.d.ts +4 -0
  228. package/components/diagram/mxgraph/shape/mxCylinder.js +32 -0
  229. package/components/diagram/mxgraph/shape/mxEllipse.d.ts +4 -0
  230. package/components/diagram/mxgraph/shape/mxEllipse.js +9 -0
  231. package/components/diagram/mxgraph/shape/mxHexagon.d.ts +4 -0
  232. package/components/diagram/mxgraph/shape/mxHexagon.js +9 -0
  233. package/components/diagram/mxgraph/shape/mxLine.d.ts +4 -0
  234. package/components/diagram/mxgraph/shape/mxLine.js +9 -0
  235. package/components/diagram/mxgraph/shape/mxRectangleShape.d.ts +4 -0
  236. package/components/diagram/mxgraph/shape/mxRectangleShape.js +9 -0
  237. package/components/diagram/mxgraph/shape/mxRhombus.d.ts +4 -0
  238. package/components/diagram/mxgraph/shape/mxRhombus.js +41 -0
  239. package/components/diagram/mxgraph/shape/mxShape.d.ts +4 -0
  240. package/components/diagram/mxgraph/shape/mxShape.js +10 -0
  241. package/components/diagram/mxgraph/shape/mxTriangle.d.ts +4 -0
  242. package/components/diagram/mxgraph/shape/mxTriangle.js +9 -0
  243. package/components/diagram/mxgraph/util/mxConstants.d.ts +4 -0
  244. package/components/diagram/mxgraph/util/mxConstants.js +21 -0
  245. package/components/diagram/mxgraph/util/mxGuide.d.ts +4 -0
  246. package/components/diagram/mxgraph/util/mxGuide.js +22 -0
  247. package/components/diagram/mxgraph/view/mxCellEditor.d.ts +4 -0
  248. package/components/diagram/mxgraph/view/mxCellEditor.js +96 -0
  249. package/components/diagram/mxgraph/view/mxCellRenderer.d.ts +4 -0
  250. package/components/diagram/mxgraph/view/mxCellRenderer.js +15 -0
  251. package/components/diagram/mxgraph/view/mxGraph.d.ts +4 -0
  252. package/components/diagram/mxgraph/view/mxGraph.js +141 -0
  253. package/components/diagram/shapes/base.d.ts +45 -0
  254. package/components/diagram/shapes/base.js +156 -0
  255. package/components/diagram/shapes/callout.d.ts +24 -0
  256. package/components/diagram/shapes/callout.js +80 -0
  257. package/components/diagram/shapes/circle.d.ts +25 -0
  258. package/components/diagram/shapes/circle.js +38 -0
  259. package/components/diagram/shapes/document.d.ts +24 -0
  260. package/components/diagram/shapes/document.js +71 -0
  261. package/components/diagram/shapes/ellipse.d.ts +24 -0
  262. package/components/diagram/shapes/ellipse.js +30 -0
  263. package/components/diagram/shapes/generateShapes.d.ts +32 -0
  264. package/components/diagram/shapes/generateShapes.js +62 -0
  265. package/components/diagram/shapes/hexagon.d.ts +24 -0
  266. package/components/diagram/shapes/hexagon.js +101 -0
  267. package/components/diagram/shapes/image.d.ts +30 -0
  268. package/components/diagram/shapes/image.js +38 -0
  269. package/components/diagram/shapes/line.d.ts +46 -0
  270. package/components/diagram/shapes/line.js +193 -0
  271. package/components/diagram/shapes/parallelogram.d.ts +24 -0
  272. package/components/diagram/shapes/parallelogram.js +103 -0
  273. package/components/diagram/shapes/rectangle.d.ts +30 -0
  274. package/components/diagram/shapes/rectangle.js +38 -0
  275. package/components/diagram/shapes/shape.d.ts +35 -0
  276. package/components/diagram/shapes/shape.js +153 -0
  277. package/components/diagram/shapes/square.d.ts +26 -0
  278. package/components/diagram/shapes/square.js +40 -0
  279. package/components/diagram/shapes/text.d.ts +24 -0
  280. package/components/diagram/shapes/text.js +28 -0
  281. package/components/diagram/styles.d.ts +5 -0
  282. package/components/diagram/styles.js +16 -0
  283. package/components/dialog/alert.vdt.js +71 -0
  284. package/components/dialog/base.d.ts +70 -0
  285. package/components/dialog/base.js +167 -0
  286. package/components/dialog/base.vdt.js +146 -0
  287. package/components/dialog/constants.d.ts +6 -0
  288. package/components/dialog/constants.js +5 -0
  289. package/components/dialog/index.d.ts +24 -0
  290. package/components/dialog/index.js +104 -0
  291. package/components/dialog/index.spec.d.ts +4 -0
  292. package/components/dialog/index.spec.js +654 -0
  293. package/components/dialog/staticMethods.d.ts +13 -0
  294. package/components/dialog/staticMethods.js +66 -0
  295. package/components/dialog/styles.d.ts +7 -0
  296. package/components/dialog/styles.js +100 -0
  297. package/components/dialog/useDraggable.d.ts +8 -0
  298. package/components/dialog/useDraggable.js +56 -0
  299. package/components/dialog/useEscClosable.d.ts +4 -0
  300. package/components/dialog/useEscClosable.js +46 -0
  301. package/components/dialog/useFixBody.d.ts +5 -0
  302. package/components/dialog/useFixBody.js +71 -0
  303. package/components/dialog/usePosition.d.ts +5 -0
  304. package/components/dialog/usePosition.js +42 -0
  305. package/components/drawer/index.d.ts +14 -0
  306. package/components/drawer/index.js +30 -0
  307. package/components/drawer/index.spec.d.ts +4 -0
  308. package/components/drawer/index.spec.js +164 -0
  309. package/components/drawer/index.vdt.js +38 -0
  310. package/components/drawer/styles.d.ts +9 -0
  311. package/components/drawer/styles.js +45 -0
  312. package/components/dropdown/dropdown.d.ts +60 -0
  313. package/components/dropdown/dropdown.js +314 -0
  314. package/components/dropdown/index.d.ts +12 -0
  315. package/components/dropdown/index.js +39 -0
  316. package/components/dropdown/index.spec.d.ts +4 -0
  317. package/components/dropdown/index.spec.js +488 -0
  318. package/components/dropdown/item.d.ts +29 -0
  319. package/components/dropdown/item.js +117 -0
  320. package/components/dropdown/item.vdt.js +32 -0
  321. package/components/dropdown/menu.d.ts +24 -0
  322. package/components/dropdown/menu.js +108 -0
  323. package/components/dropdown/menu.vdt.js +53 -0
  324. package/components/dropdown/styles.d.ts +6 -0
  325. package/components/dropdown/styles.js +58 -0
  326. package/components/dropdown/useKeyboard.d.ts +26 -0
  327. package/components/dropdown/useKeyboard.js +195 -0
  328. package/components/dropdown/usePosition.d.ts +11 -0
  329. package/components/dropdown/usePosition.js +115 -0
  330. package/components/dropdown/useTransition.d.ts +11 -0
  331. package/components/dropdown/useTransition.js +80 -0
  332. package/components/editable/index.d.ts +32 -0
  333. package/components/editable/index.js +133 -0
  334. package/components/editable/index.spec.d.ts +4 -0
  335. package/components/editable/index.spec.js +225 -0
  336. package/components/editable/index.vdt.js +47 -0
  337. package/components/editable/styles.d.ts +7 -0
  338. package/components/editable/styles.js +27 -0
  339. package/components/form/form.d.ts +41 -0
  340. package/components/form/form.js +103 -0
  341. package/components/form/form.vdt.js +29 -0
  342. package/components/form/index.d.ts +5 -0
  343. package/components/form/index.js +4 -0
  344. package/components/form/index.spec.d.ts +4 -0
  345. package/components/form/index.spec.js +1322 -0
  346. package/components/form/item.d.ts +40 -0
  347. package/components/form/item.js +76 -0
  348. package/components/form/item.vdt.js +130 -0
  349. package/components/form/methods.d.ts +10 -0
  350. package/components/form/methods.js +175 -0
  351. package/components/form/styles.d.ts +6 -0
  352. package/components/form/styles.js +63 -0
  353. package/components/form/useDirty.d.ts +9 -0
  354. package/components/form/useDirty.js +41 -0
  355. package/components/form/useError.d.ts +11 -0
  356. package/components/form/useError.js +59 -0
  357. package/components/form/useValidate.d.ts +14 -0
  358. package/components/form/useValidate.js +118 -0
  359. package/components/grid/col.d.ts +20 -0
  360. package/components/grid/col.js +43 -0
  361. package/components/grid/col.vdt.js +42 -0
  362. package/components/grid/constants.d.ts +19 -0
  363. package/components/grid/constants.js +14 -0
  364. package/components/grid/index.d.ts +5 -0
  365. package/components/grid/index.js +4 -0
  366. package/components/grid/row.d.ts +15 -0
  367. package/components/grid/row.js +34 -0
  368. package/components/grid/row.vdt.js +36 -0
  369. package/components/grid/styles.d.ts +6 -0
  370. package/components/grid/styles.js +56 -0
  371. package/components/grid/useBreakpoints.d.ts +6 -0
  372. package/components/grid/useBreakpoints.js +51 -0
  373. package/components/grid/useGutter.d.ts +11 -0
  374. package/components/grid/useGutter.js +104 -0
  375. package/components/icon/index.d.ts +18 -0
  376. package/components/icon/index.js +48 -0
  377. package/components/icon/index.vdt.js +50 -0
  378. package/components/icon/styles.d.ts +9 -0
  379. package/components/icon/styles.js +35 -0
  380. package/components/input/index.d.ts +58 -0
  381. package/components/input/index.js +99 -0
  382. package/components/input/index.spec.d.ts +4 -0
  383. package/components/input/index.spec.js +129 -0
  384. package/components/input/index.vdt.js +126 -0
  385. package/components/input/search.d.ts +29 -0
  386. package/components/input/search.js +102 -0
  387. package/components/input/search.vdt.js +52 -0
  388. package/components/input/styles.d.ts +6 -0
  389. package/components/input/styles.js +132 -0
  390. package/components/input/useAutoWidth.d.ts +7 -0
  391. package/components/input/useAutoWidth.js +31 -0
  392. package/components/input/useFrozen.d.ts +12 -0
  393. package/components/input/useFrozen.js +49 -0
  394. package/components/layout/aside.d.ts +18 -0
  395. package/components/layout/aside.js +68 -0
  396. package/components/layout/aside.vdt.js +44 -0
  397. package/components/layout/body.d.ts +10 -0
  398. package/components/layout/body.js +57 -0
  399. package/components/layout/footer.d.ts +8 -0
  400. package/components/layout/footer.js +28 -0
  401. package/components/layout/header.d.ts +19 -0
  402. package/components/layout/header.js +76 -0
  403. package/components/layout/helpers.d.ts +8 -0
  404. package/components/layout/helpers.js +10 -0
  405. package/components/layout/index.d.ts +8 -0
  406. package/components/layout/index.js +7 -0
  407. package/components/layout/layout.d.ts +18 -0
  408. package/components/layout/layout.js +75 -0
  409. package/components/layout/styles.d.ts +9 -0
  410. package/components/layout/styles.js +81 -0
  411. package/components/layout/template.vdt.js +20 -0
  412. package/components/layout/useParse.d.ts +10 -0
  413. package/components/layout/useParse.js +65 -0
  414. package/components/menu/index.d.ts +5 -0
  415. package/components/menu/index.js +4 -0
  416. package/components/menu/index.spec.d.ts +4 -0
  417. package/components/menu/index.spec.js +218 -0
  418. package/components/menu/item.d.ts +29 -0
  419. package/components/menu/item.js +88 -0
  420. package/components/menu/item.vdt.js +103 -0
  421. package/components/menu/menu.d.ts +29 -0
  422. package/components/menu/menu.js +61 -0
  423. package/components/menu/menu.vdt.js +57 -0
  424. package/components/menu/styles.d.ts +9 -0
  425. package/components/menu/styles.js +138 -0
  426. package/components/menu/useDropdown.d.ts +19 -0
  427. package/components/menu/useDropdown.js +83 -0
  428. package/components/menu/useExpanded.d.ts +13 -0
  429. package/components/menu/useExpanded.js +80 -0
  430. package/components/menu/useHighlight.d.ts +13 -0
  431. package/components/menu/useHighlight.js +60 -0
  432. package/components/message/index.d.ts +4 -0
  433. package/components/message/index.js +3 -0
  434. package/components/message/index.spec.d.ts +4 -0
  435. package/components/message/index.spec.js +97 -0
  436. package/components/message/message.d.ts +23 -0
  437. package/components/message/message.js +112 -0
  438. package/components/message/message.vdt.js +54 -0
  439. package/components/message/messages.d.ts +11 -0
  440. package/components/message/messages.js +51 -0
  441. package/components/message/messages.vdt.js +20 -0
  442. package/components/message/styles.d.ts +6 -0
  443. package/components/message/styles.js +62 -0
  444. package/components/pagination/index.d.ts +40 -0
  445. package/components/pagination/index.js +167 -0
  446. package/components/pagination/index.spec.d.ts +4 -0
  447. package/components/pagination/index.spec.js +146 -0
  448. package/components/pagination/index.vdt.js +173 -0
  449. package/components/pagination/styles.d.ts +5 -0
  450. package/components/pagination/styles.js +65 -0
  451. package/components/portal.d.ts +23 -0
  452. package/components/portal.js +148 -0
  453. package/components/position.d.ts +77 -0
  454. package/components/position.js +489 -0
  455. package/components/progress/index.d.ts +31 -0
  456. package/components/progress/index.js +72 -0
  457. package/components/progress/index.spec.d.ts +4 -0
  458. package/components/progress/index.spec.js +235 -0
  459. package/components/progress/index.vdt.js +82 -0
  460. package/components/progress/styles.d.ts +6 -0
  461. package/components/progress/styles.js +88 -0
  462. package/components/progress/useColor.d.ts +7 -0
  463. package/components/progress/useColor.js +36 -0
  464. package/components/progress/useStatus.d.ts +4 -0
  465. package/components/progress/useStatus.js +24 -0
  466. package/components/radio/index.d.ts +24 -0
  467. package/components/radio/index.js +84 -0
  468. package/components/radio/index.spec.d.ts +4 -0
  469. package/components/radio/index.spec.js +192 -0
  470. package/components/radio/index.vdt.js +66 -0
  471. package/components/radio/styles.d.ts +5 -0
  472. package/components/radio/styles.js +49 -0
  473. package/components/rate/index.d.ts +25 -0
  474. package/components/rate/index.js +48 -0
  475. package/components/rate/index.spec.d.ts +4 -0
  476. package/components/rate/index.spec.js +112 -0
  477. package/components/rate/index.vdt.js +76 -0
  478. package/components/rate/styles.d.ts +5 -0
  479. package/components/rate/styles.js +28 -0
  480. package/components/rate/useActiveValue.d.ts +9 -0
  481. package/components/rate/useActiveValue.js +42 -0
  482. package/components/scrollSelect/index.d.ts +30 -0
  483. package/components/scrollSelect/index.js +48 -0
  484. package/components/scrollSelect/index.spec.d.ts +4 -0
  485. package/components/scrollSelect/index.spec.js +174 -0
  486. package/components/scrollSelect/index.vdt.js +59 -0
  487. package/components/scrollSelect/styles.d.ts +7 -0
  488. package/components/scrollSelect/styles.js +38 -0
  489. package/components/scrollSelect/useList.d.ts +9 -0
  490. package/components/scrollSelect/useList.js +82 -0
  491. package/components/scrollSelect/useMouseEvents.d.ts +12 -0
  492. package/components/scrollSelect/useMouseEvents.js +112 -0
  493. package/components/scrollSelect/useTranslate.d.ts +12 -0
  494. package/components/scrollSelect/useTranslate.js +78 -0
  495. package/components/select/base.d.ts +63 -0
  496. package/components/select/base.js +156 -0
  497. package/components/select/base.vdt.js +194 -0
  498. package/components/select/constants.d.ts +5 -0
  499. package/components/select/constants.js +4 -0
  500. package/components/select/group.d.ts +17 -0
  501. package/components/select/group.js +31 -0
  502. package/components/select/group.vdt.js +41 -0
  503. package/components/select/index.d.ts +6 -0
  504. package/components/select/index.js +5 -0
  505. package/components/select/index.spec.d.ts +4 -0
  506. package/components/select/index.spec.js +680 -0
  507. package/components/select/menu.d.ts +13 -0
  508. package/components/select/menu.js +31 -0
  509. package/components/select/menu.vdt.js +138 -0
  510. package/components/select/option.d.ts +16 -0
  511. package/components/select/option.js +74 -0
  512. package/components/select/option.vdt.js +65 -0
  513. package/components/select/select.d.ts +36 -0
  514. package/components/select/select.js +93 -0
  515. package/components/select/select.vdt.js +62 -0
  516. package/components/select/styles.d.ts +7 -0
  517. package/components/select/styles.js +201 -0
  518. package/components/select/useBaseLabel.d.ts +12 -0
  519. package/components/select/useBaseLabel.js +80 -0
  520. package/components/select/useCard.d.ts +11 -0
  521. package/components/select/useCard.js +41 -0
  522. package/components/select/useEqualWidth.d.ts +4 -0
  523. package/components/select/useEqualWidth.js +16 -0
  524. package/components/select/useFilterable.d.ts +10 -0
  525. package/components/select/useFilterable.js +120 -0
  526. package/components/select/useFocusout.d.ts +12 -0
  527. package/components/select/useFocusout.js +49 -0
  528. package/components/select/useInput.d.ts +10 -0
  529. package/components/select/useInput.js +53 -0
  530. package/components/select/useLabel.d.ts +8 -0
  531. package/components/select/useLabel.js +59 -0
  532. package/components/select/useSearchable.d.ts +14 -0
  533. package/components/select/useSearchable.js +71 -0
  534. package/components/slider/index.d.ts +50 -0
  535. package/components/slider/index.js +86 -0
  536. package/components/slider/index.spec.d.ts +4 -0
  537. package/components/slider/index.spec.js +737 -0
  538. package/components/slider/index.vdt.js +154 -0
  539. package/components/slider/styles.d.ts +5 -0
  540. package/components/slider/styles.js +79 -0
  541. package/components/slider/useClick.d.ts +9 -0
  542. package/components/slider/useClick.js +46 -0
  543. package/components/slider/useDraggable.d.ts +16 -0
  544. package/components/slider/useDraggable.js +107 -0
  545. package/components/slider/useKeyboard.d.ts +10 -0
  546. package/components/slider/useKeyboard.js +59 -0
  547. package/components/slider/useMarks.d.ts +18 -0
  548. package/components/slider/useMarks.js +59 -0
  549. package/components/slider/usePoints.d.ts +16 -0
  550. package/components/slider/usePoints.js +85 -0
  551. package/components/slider/useStyles.d.ts +12 -0
  552. package/components/slider/useStyles.js +69 -0
  553. package/components/slider/useTooltip.d.ts +13 -0
  554. package/components/slider/useTooltip.js +70 -0
  555. package/components/slider/useValue.d.ts +12 -0
  556. package/components/slider/useValue.js +100 -0
  557. package/components/spin/index.d.ts +20 -0
  558. package/components/spin/index.js +30 -0
  559. package/components/spin/index.vdt.js +51 -0
  560. package/components/spin/styles.d.ts +5 -0
  561. package/components/spin/styles.js +36 -0
  562. package/components/spinner/index.d.ts +47 -0
  563. package/components/spinner/index.js +106 -0
  564. package/components/spinner/index.spec.d.ts +4 -0
  565. package/components/spinner/index.spec.js +553 -0
  566. package/components/spinner/index.vdt.js +73 -0
  567. package/components/spinner/styles.d.ts +5 -0
  568. package/components/spinner/styles.js +70 -0
  569. package/components/spinner/useChange.d.ts +11 -0
  570. package/components/spinner/useChange.js +55 -0
  571. package/components/spinner/useFormatter.d.ts +7 -0
  572. package/components/spinner/useFormatter.js +49 -0
  573. package/components/spinner/useStep.d.ts +16 -0
  574. package/components/spinner/useStep.js +100 -0
  575. package/components/spinner/useValue.d.ts +17 -0
  576. package/components/spinner/useValue.js +91 -0
  577. package/components/split/index.d.ts +31 -0
  578. package/components/split/index.js +55 -0
  579. package/components/split/index.spec.d.ts +4 -0
  580. package/components/split/index.spec.js +332 -0
  581. package/components/split/index.vdt.js +69 -0
  582. package/components/split/style.d.ts +7 -0
  583. package/components/split/style.js +57 -0
  584. package/components/split/useDraggable.d.ts +11 -0
  585. package/components/split/useDraggable.js +151 -0
  586. package/components/split/useSize.d.ts +7 -0
  587. package/components/split/useSize.js +35 -0
  588. package/components/steps/context.d.ts +7 -0
  589. package/components/steps/context.js +4 -0
  590. package/components/steps/index.d.ts +17 -0
  591. package/components/steps/index.js +49 -0
  592. package/components/steps/index.spec.d.ts +4 -0
  593. package/components/steps/index.spec.js +44 -0
  594. package/components/steps/index.vdt.js +52 -0
  595. package/components/steps/step.d.ts +12 -0
  596. package/components/steps/step.js +20 -0
  597. package/components/steps/step.vdt.js +49 -0
  598. package/components/steps/styles.d.ts +6 -0
  599. package/components/steps/styles.js +156 -0
  600. package/components/switch/index.d.ts +41 -0
  601. package/components/switch/index.js +115 -0
  602. package/components/switch/index.spec.d.ts +4 -0
  603. package/components/switch/index.spec.js +267 -0
  604. package/components/switch/index.vdt.js +135 -0
  605. package/components/switch/styles.d.ts +5 -0
  606. package/components/switch/styles.js +87 -0
  607. package/components/switch/useDraggable.d.ts +10 -0
  608. package/components/switch/useDraggable.js +75 -0
  609. package/components/table/cell.d.ts +25 -0
  610. package/components/table/cell.js +34 -0
  611. package/components/table/cell.vdt.js +67 -0
  612. package/components/table/column.d.ts +38 -0
  613. package/components/table/column.js +50 -0
  614. package/components/table/column.vdt.js +149 -0
  615. package/components/table/exportTable.d.ts +6 -0
  616. package/components/table/exportTable.js +82 -0
  617. package/components/table/index.d.ts +5 -0
  618. package/components/table/index.js +4 -0
  619. package/components/table/index.spec.d.ts +4 -0
  620. package/components/table/index.spec.js +1044 -0
  621. package/components/table/row.d.ts +49 -0
  622. package/components/table/row.js +122 -0
  623. package/components/table/row.vdt.js +128 -0
  624. package/components/table/styles.d.ts +6 -0
  625. package/components/table/styles.js +86 -0
  626. package/components/table/table.d.ts +97 -0
  627. package/components/table/table.js +238 -0
  628. package/components/table/table.vdt.js +332 -0
  629. package/components/table/useChecked.d.ts +27 -0
  630. package/components/table/useChecked.js +242 -0
  631. package/components/table/useColumns.d.ts +19 -0
  632. package/components/table/useColumns.js +111 -0
  633. package/components/table/useDisableRow.d.ts +11 -0
  634. package/components/table/useDisableRow.js +59 -0
  635. package/components/table/useDraggable.d.ts +11 -0
  636. package/components/table/useDraggable.js +62 -0
  637. package/components/table/useExpandable.d.ts +7 -0
  638. package/components/table/useExpandable.js +26 -0
  639. package/components/table/useFixedColumns.d.ts +27 -0
  640. package/components/table/useFixedColumns.js +142 -0
  641. package/components/table/useGroup.d.ts +17 -0
  642. package/components/table/useGroup.js +70 -0
  643. package/components/table/useMerge.d.ts +18 -0
  644. package/components/table/useMerge.js +79 -0
  645. package/components/table/useResizable.d.ts +14 -0
  646. package/components/table/useResizable.js +62 -0
  647. package/components/table/useRestRowStatus.d.ts +7 -0
  648. package/components/table/useRestRowStatus.js +47 -0
  649. package/components/table/useScroll.d.ts +9 -0
  650. package/components/table/useScroll.js +32 -0
  651. package/components/table/useSelected.d.ts +7 -0
  652. package/components/table/useSelected.js +31 -0
  653. package/components/table/useSortable.d.ts +10 -0
  654. package/components/table/useSortable.js +36 -0
  655. package/components/table/useStickyHeader.d.ts +12 -0
  656. package/components/table/useStickyHeader.js +36 -0
  657. package/components/table/useStickyScrollbar.d.ts +15 -0
  658. package/components/table/useStickyScrollbar.js +86 -0
  659. package/components/table/useTree.d.ts +10 -0
  660. package/components/table/useTree.js +61 -0
  661. package/components/table/useWidth.d.ts +13 -0
  662. package/components/table/useWidth.js +129 -0
  663. package/components/tabs/constants.d.ts +4 -0
  664. package/components/tabs/constants.js +3 -0
  665. package/components/tabs/index.d.ts +30 -0
  666. package/components/tabs/index.js +119 -0
  667. package/components/tabs/index.spec.d.ts +4 -0
  668. package/components/tabs/index.spec.js +98 -0
  669. package/components/tabs/index.vdt.js +62 -0
  670. package/components/tabs/styles.d.ts +5 -0
  671. package/components/tabs/styles.js +95 -0
  672. package/components/tabs/tab.d.ts +19 -0
  673. package/components/tabs/tab.js +55 -0
  674. package/components/tabs/tab.vdt.js +46 -0
  675. package/components/tabs/useActiveBar.d.ts +4 -0
  676. package/components/tabs/useActiveBar.js +61 -0
  677. package/components/tabs/useScroll.d.ts +13 -0
  678. package/components/tabs/useScroll.js +116 -0
  679. package/components/tag/base.d.ts +26 -0
  680. package/components/tag/base.js +54 -0
  681. package/components/tag/index.d.ts +7 -0
  682. package/components/tag/index.js +19 -0
  683. package/components/tag/index.spec.d.ts +4 -0
  684. package/components/tag/index.spec.js +42 -0
  685. package/components/tag/index.vdt.js +63 -0
  686. package/components/tag/styles.d.ts +5 -0
  687. package/components/tag/styles.js +95 -0
  688. package/components/timeline/index.d.ts +5 -0
  689. package/components/timeline/index.js +4 -0
  690. package/components/timeline/item.d.ts +20 -0
  691. package/components/timeline/item.js +31 -0
  692. package/components/timeline/item.vdt.js +39 -0
  693. package/components/timeline/styles.d.ts +10 -0
  694. package/components/timeline/styles.js +67 -0
  695. package/components/timeline/timeline.d.ts +9 -0
  696. package/components/timeline/timeline.js +15 -0
  697. package/components/timeline/timeline.vdt.js +25 -0
  698. package/components/timepicker/constants.d.ts +18 -0
  699. package/components/timepicker/constants.js +15 -0
  700. package/components/timepicker/index.d.ts +11 -0
  701. package/components/timepicker/index.js +40 -0
  702. package/components/timepicker/index.spec.d.ts +4 -0
  703. package/components/timepicker/index.spec.js +425 -0
  704. package/components/timepicker/panelPicker.d.ts +57 -0
  705. package/components/timepicker/panelPicker.js +55 -0
  706. package/components/timepicker/panelPicker.vdt.js +109 -0
  707. package/components/timepicker/selectPicker.d.ts +30 -0
  708. package/components/timepicker/selectPicker.js +33 -0
  709. package/components/timepicker/selectPicker.vdt.js +57 -0
  710. package/components/timepicker/styles.d.ts +5 -0
  711. package/components/timepicker/styles.js +31 -0
  712. package/components/timepicker/useDisabled.d.ts +13 -0
  713. package/components/timepicker/useDisabled.js +20 -0
  714. package/components/timepicker/useFormats.d.ts +15 -0
  715. package/components/timepicker/useFormats.js +49 -0
  716. package/components/timepicker/useStep.d.ts +13 -0
  717. package/components/timepicker/useStep.js +70 -0
  718. package/components/timepicker/useValue.d.ts +19 -0
  719. package/components/timepicker/useValue.js +54 -0
  720. package/components/tip/index.d.ts +15 -0
  721. package/components/tip/index.js +15 -0
  722. package/components/tip/index.vdt.js +86 -0
  723. package/components/tip/styles.d.ts +5 -0
  724. package/components/tip/styles.js +30 -0
  725. package/components/tooltip/content.d.ts +21 -0
  726. package/components/tooltip/content.js +94 -0
  727. package/components/tooltip/content.vdt.js +86 -0
  728. package/components/tooltip/index.d.ts +16 -0
  729. package/components/tooltip/index.js +30 -0
  730. package/components/tooltip/index.spec.d.ts +4 -0
  731. package/components/tooltip/index.spec.js +576 -0
  732. package/components/tooltip/styles.d.ts +7 -0
  733. package/components/tooltip/styles.js +82 -0
  734. package/components/tooltip/tooltip.d.ts +31 -0
  735. package/components/tooltip/tooltip.js +78 -0
  736. package/components/tooltip/useArrow.d.ts +7 -0
  737. package/components/tooltip/useArrow.js +53 -0
  738. package/components/transfer/index.d.ts +51 -0
  739. package/components/transfer/index.js +90 -0
  740. package/components/transfer/index.spec.d.ts +4 -0
  741. package/components/transfer/index.spec.js +242 -0
  742. package/components/transfer/index.vdt.js +161 -0
  743. package/components/transfer/styles.d.ts +5 -0
  744. package/components/transfer/styles.js +73 -0
  745. package/components/transfer/useCheck.d.ts +10 -0
  746. package/components/transfer/useCheck.js +91 -0
  747. package/components/transfer/useFilter.d.ts +10 -0
  748. package/components/transfer/useFilter.js +113 -0
  749. package/components/transfer/useTransfer.d.ts +10 -0
  750. package/components/transfer/useTransfer.js +86 -0
  751. package/components/tree/index.d.ts +60 -0
  752. package/components/tree/index.js +124 -0
  753. package/components/tree/index.spec.d.ts +4 -0
  754. package/components/tree/index.spec.js +428 -0
  755. package/components/tree/index.vdt.js +134 -0
  756. package/components/tree/styles.d.ts +5 -0
  757. package/components/tree/styles.js +71 -0
  758. package/components/tree/useChecked.d.ts +9 -0
  759. package/components/tree/useChecked.js +144 -0
  760. package/components/tree/useDraggable.d.ts +19 -0
  761. package/components/tree/useDraggable.js +174 -0
  762. package/components/tree/useExpanded.d.ts +9 -0
  763. package/components/tree/useExpanded.js +96 -0
  764. package/components/tree/useFilter.d.ts +6 -0
  765. package/components/tree/useFilter.js +55 -0
  766. package/components/tree/useNodes.d.ts +25 -0
  767. package/components/tree/useNodes.js +54 -0
  768. package/components/tree/useSelected.d.ts +10 -0
  769. package/components/tree/useSelected.js +92 -0
  770. package/components/tree/useTransitionEvent.d.ts +11 -0
  771. package/components/tree/useTransitionEvent.js +23 -0
  772. package/components/treeSelect/index.d.ts +30 -0
  773. package/components/treeSelect/index.js +141 -0
  774. package/components/treeSelect/index.spec.d.ts +4 -0
  775. package/components/treeSelect/index.spec.js +210 -0
  776. package/components/treeSelect/index.vdt.js +68 -0
  777. package/components/treeSelect/styles.d.ts +5 -0
  778. package/components/treeSelect/styles.js +19 -0
  779. package/components/treeSelect/useLabel.d.ts +4 -0
  780. package/components/treeSelect/useLabel.js +3 -0
  781. package/components/treeSelect/useValue.d.ts +12 -0
  782. package/components/treeSelect/useValue.js +71 -0
  783. package/components/types.d.ts +13 -0
  784. package/components/types.js +3 -0
  785. package/components/upload/ajaxUploader.d.ts +22 -0
  786. package/components/upload/ajaxUploader.js +89 -0
  787. package/components/upload/index.d.ts +66 -0
  788. package/components/upload/index.js +102 -0
  789. package/components/upload/index.spec.d.ts +4 -0
  790. package/components/upload/index.spec.js +544 -0
  791. package/components/upload/index.vdt.js +182 -0
  792. package/components/upload/styles.d.ts +6 -0
  793. package/components/upload/styles.js +156 -0
  794. package/components/upload/useAccept.d.ts +6 -0
  795. package/components/upload/useAccept.js +55 -0
  796. package/components/upload/useDrag.d.ts +10 -0
  797. package/components/upload/useDrag.js +47 -0
  798. package/components/upload/useFiles.d.ts +8 -0
  799. package/components/upload/useFiles.js +210 -0
  800. package/components/upload/useShowImage.d.ts +10 -0
  801. package/components/upload/useShowImage.js +25 -0
  802. package/components/upload/useUpload.d.ts +12 -0
  803. package/components/upload/useUpload.js +121 -0
  804. package/components/utils.d.ts +42 -0
  805. package/components/utils.js +361 -0
  806. package/hooks/useDelayClose.d.ts +7 -0
  807. package/hooks/useDelayClose.js +37 -0
  808. package/hooks/useDocumentClick.d.ts +9 -0
  809. package/hooks/useDocumentClick.js +37 -0
  810. package/hooks/useDraggable.d.ts +12 -0
  811. package/hooks/useDraggable.js +49 -0
  812. package/hooks/useKeyboard.d.ts +14 -0
  813. package/hooks/useKeyboard.js +54 -0
  814. package/hooks/useMouseOutsidable.d.ts +11 -0
  815. package/hooks/useMouseOutsidable.js +53 -0
  816. package/hooks/useReceive.d.ts +7 -0
  817. package/hooks/useReceive.js +30 -0
  818. package/hooks/useRecordComponent.d.ts +9 -0
  819. package/hooks/useRecordComponent.js +49 -0
  820. package/hooks/useResizeObserver.d.ts +5 -0
  821. package/hooks/useResizeObserver.js +16 -0
  822. package/hooks/useRouter.d.ts +4 -0
  823. package/hooks/useRouter.js +78 -0
  824. package/hooks/useShowHideEvents.d.ts +4 -0
  825. package/hooks/useShowHideEvents.js +27 -0
  826. package/hooks/useState.d.ts +11 -0
  827. package/hooks/useState.js +46 -0
  828. package/i18n/en-US.d.ts +94 -0
  829. package/i18n/en-US.js +108 -0
  830. package/i18n/index.d.ts +8 -0
  831. package/i18n/index.js +47 -0
  832. package/index.d.ts +61 -0
  833. package/index.js +63 -0
  834. package/package.json +51 -0
  835. package/styles/fonts/iconfont.d.ts +4 -0
  836. package/styles/fonts/iconfont.eot +0 -0
  837. package/styles/fonts/iconfont.js +8 -0
  838. package/styles/fonts/iconfont.svg +371 -0
  839. package/styles/fonts/iconfont.ttf +0 -0
  840. package/styles/fonts/iconfont.woff +0 -0
  841. package/styles/fonts/ionicons.d.ts +4 -0
  842. package/styles/fonts/ionicons.eot +0 -0
  843. package/styles/fonts/ionicons.js +19 -0
  844. package/styles/fonts/ionicons.svg +2230 -0
  845. package/styles/fonts/ionicons.ttf +0 -0
  846. package/styles/fonts/ionicons.woff +0 -0
  847. package/styles/global.d.ts +4 -0
  848. package/styles/global.js +18 -0
  849. package/styles/keyframes.d.ts +4 -0
  850. package/styles/keyframes.js +13 -0
  851. package/styles/theme.d.ts +108 -0
  852. package/styles/theme.js +130 -0
  853. package/styles/utils.d.ts +17 -0
  854. package/styles/utils.js +116 -0
  855. package/tsconfig.json +3 -0
@@ -0,0 +1,19 @@
1
+ /*!
2
+ Ionicons, v2.0.0
3
+ Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
4
+ https://twitter.com/benjsperry https://twitter.com/ionicframework
5
+ MIT License: https://github.com/driftyco/ionicons
6
+
7
+ Android-style icons originally built by Google’s
8
+ Material Design Icons: https://github.com/google/material-design-icons
9
+ used under CC BY http://creativecommons.org/licenses/by/4.0/
10
+ Modified icons to fit ionicon’s grid from original.
11
+ */
12
+ import { injectGlobal } from '@emotion/css';
13
+ import eot from './ionicons.eot';
14
+ import ttf from './ionicons.ttf';
15
+ import woff from './iconfont.woff';
16
+ import svg from './iconfont.svg';
17
+ injectGlobal("@font-face{font-family:\"Ionicons\";src:url(\"", eot, "\");src:url(\"", eot, "#iefix\") format(\"embedded-opentype\"),url(\"", ttf, "\") format(\"truetype\"),url(\"", woff, "\") format(\"woff\"),url(\"", svg, "#Ionicons\") format(\"svg\");font-weight:normal;font-style:normal;}.ion,.ionicons,.ion-alert:before,.ion-alert-circled:before,.ion-android-add:before,.ion-android-add-circle:before,.ion-android-alarm-clock:before,.ion-android-alert:before,.ion-android-apps:before,.ion-android-archive:before,.ion-android-arrow-back:before,.ion-android-arrow-down:before,.ion-android-arrow-dropdown:before,.ion-android-arrow-dropdown-circle:before,.ion-android-arrow-dropleft:before,.ion-android-arrow-dropleft-circle:before,.ion-android-arrow-dropright:before,.ion-android-arrow-dropright-circle:before,.ion-android-arrow-dropup:before,.ion-android-arrow-dropup-circle:before,.ion-android-arrow-forward:before,.ion-android-arrow-up:before,.ion-android-attach:before,.ion-android-bar:before,.ion-android-bicycle:before,.ion-android-boat:before,.ion-android-bookmark:before,.ion-android-bulb:before,.ion-android-bus:before,.ion-android-calendar:before,.ion-android-call:before,.ion-android-camera:before,.ion-android-cancel:before,.ion-android-car:before,.ion-android-cart:before,.ion-android-chat:before,.ion-android-checkbox:before,.ion-android-checkbox-blank:before,.ion-android-checkbox-outline:before,.ion-android-checkbox-outline-blank:before,.ion-android-checkmark-circle:before,.ion-android-clipboard:before,.ion-android-close:before,.ion-android-cloud:before,.ion-android-cloud-circle:before,.ion-android-cloud-done:before,.ion-android-cloud-outline:before,.ion-android-color-palette:before,.ion-android-compass:before,.ion-android-contact:before,.ion-android-contacts:before,.ion-android-contract:before,.ion-android-create:before,.ion-android-delete:before,.ion-android-desktop:before,.ion-android-document:before,.ion-android-done:before,.ion-android-done-all:before,.ion-android-download:before,.ion-android-drafts:before,.ion-android-exit:before,.ion-android-expand:before,.ion-android-favorite:before,.ion-android-favorite-outline:before,.ion-android-film:before,.ion-android-folder:before,.ion-android-folder-open:before,.ion-android-funnel:before,.ion-android-globe:before,.ion-android-hand:before,.ion-android-hangout:before,.ion-android-happy:before,.ion-android-home:before,.ion-android-image:before,.ion-android-laptop:before,.ion-android-list:before,.ion-android-locate:before,.ion-android-lock:before,.ion-android-mail:before,.ion-android-map:before,.ion-android-menu:before,.ion-android-microphone:before,.ion-android-microphone-off:before,.ion-android-more-horizontal:before,.ion-android-more-vertical:before,.ion-android-navigate:before,.ion-android-notifications:before,.ion-android-notifications-none:before,.ion-android-notifications-off:before,.ion-android-open:before,.ion-android-options:before,.ion-android-people:before,.ion-android-person:before,.ion-android-person-add:before,.ion-android-phone-landscape:before,.ion-android-phone-portrait:before,.ion-android-pin:before,.ion-android-plane:before,.ion-android-playstore:before,.ion-android-print:before,.ion-android-radio-button-off:before,.ion-android-radio-button-on:before,.ion-android-refresh:before,.ion-android-remove:before,.ion-android-remove-circle:before,.ion-android-restaurant:before,.ion-android-sad:before,.ion-android-search:before,.ion-android-send:before,.ion-android-settings:before,.ion-android-share:before,.ion-android-share-alt:before,.ion-android-star:before,.ion-android-star-half:before,.ion-android-star-outline:before,.ion-android-stopwatch:before,.ion-android-subway:before,.ion-android-sunny:before,.ion-android-sync:before,.ion-android-textsms:before,.ion-android-time:before,.ion-android-train:before,.ion-android-unlock:before,.ion-android-upload:before,.ion-android-volume-down:before,.ion-android-volume-mute:before,.ion-android-volume-off:before,.ion-android-volume-up:before,.ion-android-walk:before,.ion-android-warning:before,.ion-android-watch:before,.ion-android-wifi:before,.ion-aperture:before,.ion-archive:before,.ion-arrow-down-a:before,.ion-arrow-down-b:before,.ion-arrow-down-c:before,.ion-arrow-expand:before,.ion-arrow-graph-down-left:before,.ion-arrow-graph-down-right:before,.ion-arrow-graph-up-left:before,.ion-arrow-graph-up-right:before,.ion-arrow-left-a:before,.ion-arrow-left-b:before,.ion-arrow-left-c:before,.ion-arrow-move:before,.ion-arrow-resize:before,.ion-arrow-return-left:before,.ion-arrow-return-right:before,.ion-arrow-right-a:before,.ion-arrow-right-b:before,.ion-arrow-right-c:before,.ion-arrow-shrink:before,.ion-arrow-swap:before,.ion-arrow-up-a:before,.ion-arrow-up-b:before,.ion-arrow-up-c:before,.ion-asterisk:before,.ion-at:before,.ion-backspace:before,.ion-backspace-outline:before,.ion-bag:before,.ion-battery-charging:before,.ion-battery-empty:before,.ion-battery-full:before,.ion-battery-half:before,.ion-battery-low:before,.ion-beaker:before,.ion-beer:before,.ion-bluetooth:before,.ion-bonfire:before,.ion-bookmark:before,.ion-bowtie:before,.ion-briefcase:before,.ion-bug:before,.ion-calculator:before,.ion-calendar:before,.ion-camera:before,.ion-card:before,.ion-cash:before,.ion-chatbox:before,.ion-chatbox-working:before,.ion-chatboxes:before,.ion-chatbubble:before,.ion-chatbubble-working:before,.ion-chatbubbles:before,.ion-checkmark:before,.ion-checkmark-circled:before,.ion-checkmark-round:before,.ion-chevron-down:before,.ion-chevron-left:before,.ion-chevron-right:before,.ion-chevron-up:before,.ion-clipboard:before,.ion-clock:before,.ion-close:before,.ion-close-circled:before,.ion-close-round:before,.ion-closed-captioning:before,.ion-cloud:before,.ion-code:before,.ion-code-download:before,.ion-code-working:before,.ion-coffee:before,.ion-compass:before,.ion-compose:before,.ion-connection-bars:before,.ion-contrast:before,.ion-crop:before,.ion-cube:before,.ion-disc:before,.ion-document:before,.ion-document-text:before,.ion-drag:before,.ion-earth:before,.ion-easel:before,.ion-edit:before,.ion-egg:before,.ion-eject:before,.ion-email:before,.ion-email-unread:before,.ion-erlenmeyer-flask:before,.ion-erlenmeyer-flask-bubbles:before,.ion-eye:before,.ion-eye-disabled:before,.ion-female:before,.ion-filing:before,.ion-film-marker:before,.ion-fireball:before,.ion-flag:before,.ion-flame:before,.ion-flash:before,.ion-flash-off:before,.ion-folder:before,.ion-fork:before,.ion-fork-repo:before,.ion-forward:before,.ion-funnel:before,.ion-gear-a:before,.ion-gear-b:before,.ion-grid:before,.ion-hammer:before,.ion-happy:before,.ion-happy-outline:before,.ion-headphone:before,.ion-heart:before,.ion-heart-broken:before,.ion-help:before,.ion-help-buoy:before,.ion-help-circled:before,.ion-home:before,.ion-icecream:before,.ion-image:before,.ion-images:before,.ion-information:before,.ion-information-circled:before,.ion-ionic:before,.ion-ios-alarm:before,.ion-ios-alarm-outline:before,.ion-ios-albums:before,.ion-ios-albums-outline:before,.ion-ios-americanfootball:before,.ion-ios-americanfootball-outline:before,.ion-ios-analytics:before,.ion-ios-analytics-outline:before,.ion-ios-arrow-back:before,.ion-ios-arrow-down:before,.ion-ios-arrow-forward:before,.ion-ios-arrow-left:before,.ion-ios-arrow-right:before,.ion-ios-arrow-thin-down:before,.ion-ios-arrow-thin-left:before,.ion-ios-arrow-thin-right:before,.ion-ios-arrow-thin-up:before,.ion-ios-arrow-up:before,.ion-ios-at:before,.ion-ios-at-outline:before,.ion-ios-barcode:before,.ion-ios-barcode-outline:before,.ion-ios-baseball:before,.ion-ios-baseball-outline:before,.ion-ios-basketball:before,.ion-ios-basketball-outline:before,.ion-ios-bell:before,.ion-ios-bell-outline:before,.ion-ios-body:before,.ion-ios-body-outline:before,.ion-ios-bolt:before,.ion-ios-bolt-outline:before,.ion-ios-book:before,.ion-ios-book-outline:before,.ion-ios-bookmarks:before,.ion-ios-bookmarks-outline:before,.ion-ios-box:before,.ion-ios-box-outline:before,.ion-ios-briefcase:before,.ion-ios-briefcase-outline:before,.ion-ios-browsers:before,.ion-ios-browsers-outline:before,.ion-ios-calculator:before,.ion-ios-calculator-outline:before,.ion-ios-calendar:before,.ion-ios-calendar-outline:before,.ion-ios-camera:before,.ion-ios-camera-outline:before,.ion-ios-cart:before,.ion-ios-cart-outline:before,.ion-ios-chatboxes:before,.ion-ios-chatboxes-outline:before,.ion-ios-chatbubble:before,.ion-ios-chatbubble-outline:before,.ion-ios-checkmark:before,.ion-ios-checkmark-empty:before,.ion-ios-checkmark-outline:before,.ion-ios-circle-filled:before,.ion-ios-circle-outline:before,.ion-ios-clock:before,.ion-ios-clock-outline:before,.ion-ios-close:before,.ion-ios-close-empty:before,.ion-ios-close-outline:before,.ion-ios-cloud:before,.ion-ios-cloud-download:before,.ion-ios-cloud-download-outline:before,.ion-ios-cloud-outline:before,.ion-ios-cloud-upload:before,.ion-ios-cloud-upload-outline:before,.ion-ios-cloudy:before,.ion-ios-cloudy-night:before,.ion-ios-cloudy-night-outline:before,.ion-ios-cloudy-outline:before,.ion-ios-cog:before,.ion-ios-cog-outline:before,.ion-ios-color-filter:before,.ion-ios-color-filter-outline:before,.ion-ios-color-wand:before,.ion-ios-color-wand-outline:before,.ion-ios-compose:before,.ion-ios-compose-outline:before,.ion-ios-contact:before,.ion-ios-contact-outline:before,.ion-ios-copy:before,.ion-ios-copy-outline:before,.ion-ios-crop:before,.ion-ios-crop-strong:before,.ion-ios-download:before,.ion-ios-download-outline:before,.ion-ios-drag:before,.ion-ios-email:before,.ion-ios-email-outline:before,.ion-ios-eye:before,.ion-ios-eye-outline:before,.ion-ios-fastforward:before,.ion-ios-fastforward-outline:before,.ion-ios-filing:before,.ion-ios-filing-outline:before,.ion-ios-film:before,.ion-ios-film-outline:before,.ion-ios-flag:before,.ion-ios-flag-outline:before,.ion-ios-flame:before,.ion-ios-flame-outline:before,.ion-ios-flask:before,.ion-ios-flask-outline:before,.ion-ios-flower:before,.ion-ios-flower-outline:before,.ion-ios-folder:before,.ion-ios-folder-outline:before,.ion-ios-football:before,.ion-ios-football-outline:before,.ion-ios-game-controller-a:before,.ion-ios-game-controller-a-outline:before,.ion-ios-game-controller-b:before,.ion-ios-game-controller-b-outline:before,.ion-ios-gear:before,.ion-ios-gear-outline:before,.ion-ios-glasses:before,.ion-ios-glasses-outline:before,.ion-ios-grid-view:before,.ion-ios-grid-view-outline:before,.ion-ios-heart:before,.ion-ios-heart-outline:before,.ion-ios-help:before,.ion-ios-help-empty:before,.ion-ios-help-outline:before,.ion-ios-home:before,.ion-ios-home-outline:before,.ion-ios-infinite:before,.ion-ios-infinite-outline:before,.ion-ios-information:before,.ion-ios-information-empty:before,.ion-ios-information-outline:before,.ion-ios-ionic-outline:before,.ion-ios-keypad:before,.ion-ios-keypad-outline:before,.ion-ios-lightbulb:before,.ion-ios-lightbulb-outline:before,.ion-ios-list:before,.ion-ios-list-outline:before,.ion-ios-location:before,.ion-ios-location-outline:before,.ion-ios-locked:before,.ion-ios-locked-outline:before,.ion-ios-loop:before,.ion-ios-loop-strong:before,.ion-ios-medical:before,.ion-ios-medical-outline:before,.ion-ios-medkit:before,.ion-ios-medkit-outline:before,.ion-ios-mic:before,.ion-ios-mic-off:before,.ion-ios-mic-outline:before,.ion-ios-minus:before,.ion-ios-minus-empty:before,.ion-ios-minus-outline:before,.ion-ios-monitor:before,.ion-ios-monitor-outline:before,.ion-ios-moon:before,.ion-ios-moon-outline:before,.ion-ios-more:before,.ion-ios-more-outline:before,.ion-ios-musical-note:before,.ion-ios-musical-notes:before,.ion-ios-navigate:before,.ion-ios-navigate-outline:before,.ion-ios-nutrition:before,.ion-ios-nutrition-outline:before,.ion-ios-paper:before,.ion-ios-paper-outline:before,.ion-ios-paperplane:before,.ion-ios-paperplane-outline:before,.ion-ios-partlysunny:before,.ion-ios-partlysunny-outline:before,.ion-ios-pause:before,.ion-ios-pause-outline:before,.ion-ios-paw:before,.ion-ios-paw-outline:before,.ion-ios-people:before,.ion-ios-people-outline:before,.ion-ios-person:before,.ion-ios-person-outline:before,.ion-ios-personadd:before,.ion-ios-personadd-outline:before,.ion-ios-photos:before,.ion-ios-photos-outline:before,.ion-ios-pie:before,.ion-ios-pie-outline:before,.ion-ios-pint:before,.ion-ios-pint-outline:before,.ion-ios-play:before,.ion-ios-play-outline:before,.ion-ios-plus:before,.ion-ios-plus-empty:before,.ion-ios-plus-outline:before,.ion-ios-pricetag:before,.ion-ios-pricetag-outline:before,.ion-ios-pricetags:before,.ion-ios-pricetags-outline:before,.ion-ios-printer:before,.ion-ios-printer-outline:before,.ion-ios-pulse:before,.ion-ios-pulse-strong:before,.ion-ios-rainy:before,.ion-ios-rainy-outline:before,.ion-ios-recording:before,.ion-ios-recording-outline:before,.ion-ios-redo:before,.ion-ios-redo-outline:before,.ion-ios-refresh:before,.ion-ios-refresh-empty:before,.ion-ios-refresh-outline:before,.ion-ios-reload:before,.ion-ios-reverse-camera:before,.ion-ios-reverse-camera-outline:before,.ion-ios-rewind:before,.ion-ios-rewind-outline:before,.ion-ios-rose:before,.ion-ios-rose-outline:before,.ion-ios-search:before,.ion-ios-search-strong:before,.ion-ios-settings:before,.ion-ios-settings-strong:before,.ion-ios-shuffle:before,.ion-ios-shuffle-strong:before,.ion-ios-skipbackward:before,.ion-ios-skipbackward-outline:before,.ion-ios-skipforward:before,.ion-ios-skipforward-outline:before,.ion-ios-snowy:before,.ion-ios-speedometer:before,.ion-ios-speedometer-outline:before,.ion-ios-star:before,.ion-ios-star-half:before,.ion-ios-star-outline:before,.ion-ios-stopwatch:before,.ion-ios-stopwatch-outline:before,.ion-ios-sunny:before,.ion-ios-sunny-outline:before,.ion-ios-telephone:before,.ion-ios-telephone-outline:before,.ion-ios-tennisball:before,.ion-ios-tennisball-outline:before,.ion-ios-thunderstorm:before,.ion-ios-thunderstorm-outline:before,.ion-ios-time:before,.ion-ios-time-outline:before,.ion-ios-timer:before,.ion-ios-timer-outline:before,.ion-ios-toggle:before,.ion-ios-toggle-outline:before,.ion-ios-trash:before,.ion-ios-trash-outline:before,.ion-ios-undo:before,.ion-ios-undo-outline:before,.ion-ios-unlocked:before,.ion-ios-unlocked-outline:before,.ion-ios-upload:before,.ion-ios-upload-outline:before,.ion-ios-videocam:before,.ion-ios-videocam-outline:before,.ion-ios-volume-high:before,.ion-ios-volume-low:before,.ion-ios-wineglass:before,.ion-ios-wineglass-outline:before,.ion-ios-world:before,.ion-ios-world-outline:before,.ion-ipad:before,.ion-iphone:before,.ion-ipod:before,.ion-jet:before,.ion-key:before,.ion-knife:before,.ion-laptop:before,.ion-leaf:before,.ion-levels:before,.ion-lightbulb:before,.ion-link:before,.ion-load-a:before,.ion-load-b:before,.ion-load-c:before,.ion-load-d:before,.ion-location:before,.ion-lock-combination:before,.ion-locked:before,.ion-log-in:before,.ion-log-out:before,.ion-loop:before,.ion-magnet:before,.ion-male:before,.ion-man:before,.ion-map:before,.ion-medkit:before,.ion-merge:before,.ion-mic-a:before,.ion-mic-b:before,.ion-mic-c:before,.ion-minus:before,.ion-minus-circled:before,.ion-minus-round:before,.ion-model-s:before,.ion-monitor:before,.ion-more:before,.ion-mouse:before,.ion-music-note:before,.ion-navicon:before,.ion-navicon-round:before,.ion-navigate:before,.ion-network:before,.ion-no-smoking:before,.ion-nuclear:before,.ion-outlet:before,.ion-paintbrush:before,.ion-paintbucket:before,.ion-paper-airplane:before,.ion-paperclip:before,.ion-pause:before,.ion-person:before,.ion-person-add:before,.ion-person-stalker:before,.ion-pie-graph:before,.ion-pin:before,.ion-pinpoint:before,.ion-pizza:before,.ion-plane:before,.ion-planet:before,.ion-play:before,.ion-playstation:before,.ion-plus:before,.ion-plus-circled:before,.ion-plus-round:before,.ion-podium:before,.ion-pound:before,.ion-power:before,.ion-pricetag:before,.ion-pricetags:before,.ion-printer:before,.ion-pull-request:before,.ion-qr-scanner:before,.ion-quote:before,.ion-radio-waves:before,.ion-record:before,.ion-refresh:before,.ion-reply:before,.ion-reply-all:before,.ion-ribbon-a:before,.ion-ribbon-b:before,.ion-sad:before,.ion-sad-outline:before,.ion-scissors:before,.ion-search:before,.ion-settings:before,.ion-share:before,.ion-shuffle:before,.ion-skip-backward:before,.ion-skip-forward:before,.ion-social-android:before,.ion-social-android-outline:before,.ion-social-angular:before,.ion-social-angular-outline:before,.ion-social-apple:before,.ion-social-apple-outline:before,.ion-social-bitcoin:before,.ion-social-bitcoin-outline:before,.ion-social-buffer:before,.ion-social-buffer-outline:before,.ion-social-chrome:before,.ion-social-chrome-outline:before,.ion-social-codepen:before,.ion-social-codepen-outline:before,.ion-social-css3:before,.ion-social-css3-outline:before,.ion-social-designernews:before,.ion-social-designernews-outline:before,.ion-social-dribbble:before,.ion-social-dribbble-outline:before,.ion-social-dropbox:before,.ion-social-dropbox-outline:before,.ion-social-euro:before,.ion-social-euro-outline:before,.ion-social-facebook:before,.ion-social-facebook-outline:before,.ion-social-foursquare:before,.ion-social-foursquare-outline:before,.ion-social-freebsd-devil:before,.ion-social-github:before,.ion-social-github-outline:before,.ion-social-google:before,.ion-social-google-outline:before,.ion-social-googleplus:before,.ion-social-googleplus-outline:before,.ion-social-hackernews:before,.ion-social-hackernews-outline:before,.ion-social-html5:before,.ion-social-html5-outline:before,.ion-social-instagram:before,.ion-social-instagram-outline:before,.ion-social-javascript:before,.ion-social-javascript-outline:before,.ion-social-linkedin:before,.ion-social-linkedin-outline:before,.ion-social-markdown:before,.ion-social-nodejs:before,.ion-social-octocat:before,.ion-social-pinterest:before,.ion-social-pinterest-outline:before,.ion-social-python:before,.ion-social-reddit:before,.ion-social-reddit-outline:before,.ion-social-rss:before,.ion-social-rss-outline:before,.ion-social-sass:before,.ion-social-skype:before,.ion-social-skype-outline:before,.ion-social-snapchat:before,.ion-social-snapchat-outline:before,.ion-social-tumblr:before,.ion-social-tumblr-outline:before,.ion-social-tux:before,.ion-social-twitch:before,.ion-social-twitch-outline:before,.ion-social-twitter:before,.ion-social-twitter-outline:before,.ion-social-usd:before,.ion-social-usd-outline:before,.ion-social-vimeo:before,.ion-social-vimeo-outline:before,.ion-social-whatsapp:before,.ion-social-whatsapp-outline:before,.ion-social-windows:before,.ion-social-windows-outline:before,.ion-social-wordpress:before,.ion-social-wordpress-outline:before,.ion-social-yahoo:before,.ion-social-yahoo-outline:before,.ion-social-yen:before,.ion-social-yen-outline:before,.ion-social-youtube:before,.ion-social-youtube-outline:before,.ion-soup-can:before,.ion-soup-can-outline:before,.ion-speakerphone:before,.ion-speedometer:before,.ion-spoon:before,.ion-star:before,.ion-stats-bars:before,.ion-steam:before,.ion-stop:before,.ion-thermometer:before,.ion-thumbsdown:before,.ion-thumbsup:before,.ion-toggle:before,.ion-toggle-filled:before,.ion-transgender:before,.ion-trash-a:before,.ion-trash-b:before,.ion-trophy:before,.ion-tshirt:before,.ion-tshirt-outline:before,.ion-umbrella:before,.ion-university:before,.ion-unlocked:before,.ion-upload:before,.ion-usb:before,.ion-videocamera:before,.ion-volume-high:before,.ion-volume-low:before,.ion-volume-medium:before,.ion-volume-mute:before,.ion-wand:before,.ion-waterdrop:before,.ion-wifi:before,.ion-wineglass:before,.ion-woman:before,.ion-wrench:before,.ion-xbox:before{font-size:1rem;display:inline-block;font-family:\"Ionicons\";speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}.ion-alert:before{content:\"\\f101\";}.ion-alert-circled:before{content:\"\\f100\";}.ion-android-add:before{content:\"\\f2c7\";}.ion-android-add-circle:before{content:\"\\f359\";}.ion-android-alarm-clock:before{content:\"\\f35a\";}.ion-android-alert:before{content:\"\\f35b\";}.ion-android-apps:before{content:\"\\f35c\";}.ion-android-archive:before{content:\"\\f2c9\";}.ion-android-arrow-back:before{content:\"\\f2ca\";}.ion-android-arrow-down:before{content:\"\\f35d\";}.ion-android-arrow-dropdown:before{content:\"\\f35f\";}.ion-android-arrow-dropdown-circle:before{content:\"\\f35e\";}.ion-android-arrow-dropleft:before{content:\"\\f361\";}.ion-android-arrow-dropleft-circle:before{content:\"\\f360\";}.ion-android-arrow-dropright:before{content:\"\\f363\";}.ion-android-arrow-dropright-circle:before{content:\"\\f362\";}.ion-android-arrow-dropup:before{content:\"\\f365\";}.ion-android-arrow-dropup-circle:before{content:\"\\f364\";}.ion-android-arrow-forward:before{content:\"\\f30f\";}.ion-android-arrow-up:before{content:\"\\f366\";}.ion-android-attach:before{content:\"\\f367\";}.ion-android-bar:before{content:\"\\f368\";}.ion-android-bicycle:before{content:\"\\f369\";}.ion-android-boat:before{content:\"\\f36a\";}.ion-android-bookmark:before{content:\"\\f36b\";}.ion-android-bulb:before{content:\"\\f36c\";}.ion-android-bus:before{content:\"\\f36d\";}.ion-android-calendar:before{content:\"\\f2d1\";}.ion-android-call:before{content:\"\\f2d2\";}.ion-android-camera:before{content:\"\\f2d3\";}.ion-android-cancel:before{content:\"\\f36e\";}.ion-android-car:before{content:\"\\f36f\";}.ion-android-cart:before{content:\"\\f370\";}.ion-android-chat:before{content:\"\\f2d4\";}.ion-android-checkbox:before{content:\"\\f374\";}.ion-android-checkbox-blank:before{content:\"\\f371\";}.ion-android-checkbox-outline:before{content:\"\\f373\";}.ion-android-checkbox-outline-blank:before{content:\"\\f372\";}.ion-android-checkmark-circle:before{content:\"\\f375\";}.ion-android-clipboard:before{content:\"\\f376\";}.ion-android-close:before{content:\"\\f2d7\";}.ion-android-cloud:before{content:\"\\f37a\";}.ion-android-cloud-circle:before{content:\"\\f377\";}.ion-android-cloud-done:before{content:\"\\f378\";}.ion-android-cloud-outline:before{content:\"\\f379\";}.ion-android-color-palette:before{content:\"\\f37b\";}.ion-android-compass:before{content:\"\\f37c\";}.ion-android-contact:before{content:\"\\f2d8\";}.ion-android-contacts:before{content:\"\\f2d9\";}.ion-android-contract:before{content:\"\\f37d\";}.ion-android-create:before{content:\"\\f37e\";}.ion-android-delete:before{content:\"\\f37f\";}.ion-android-desktop:before{content:\"\\f380\";}.ion-android-document:before{content:\"\\f381\";}.ion-android-done:before{content:\"\\f383\";}.ion-android-done-all:before{content:\"\\f382\";}.ion-android-download:before{content:\"\\f2dd\";}.ion-android-drafts:before{content:\"\\f384\";}.ion-android-exit:before{content:\"\\f385\";}.ion-android-expand:before{content:\"\\f386\";}.ion-android-favorite:before{content:\"\\f388\";}.ion-android-favorite-outline:before{content:\"\\f387\";}.ion-android-film:before{content:\"\\f389\";}.ion-android-folder:before{content:\"\\f2e0\";}.ion-android-folder-open:before{content:\"\\f38a\";}.ion-android-funnel:before{content:\"\\f38b\";}.ion-android-globe:before{content:\"\\f38c\";}.ion-android-hand:before{content:\"\\f2e3\";}.ion-android-hangout:before{content:\"\\f38d\";}.ion-android-happy:before{content:\"\\f38e\";}.ion-android-home:before{content:\"\\f38f\";}.ion-android-image:before{content:\"\\f2e4\";}.ion-android-laptop:before{content:\"\\f390\";}.ion-android-list:before{content:\"\\f391\";}.ion-android-locate:before{content:\"\\f2e9\";}.ion-android-lock:before{content:\"\\f392\";}.ion-android-mail:before{content:\"\\f2eb\";}.ion-android-map:before{content:\"\\f393\";}.ion-android-menu:before{content:\"\\f394\";}.ion-android-microphone:before{content:\"\\f2ec\";}.ion-android-microphone-off:before{content:\"\\f395\";}.ion-android-more-horizontal:before{content:\"\\f396\";}.ion-android-more-vertical:before{content:\"\\f397\";}.ion-android-navigate:before{content:\"\\f398\";}.ion-android-notifications:before{content:\"\\f39b\";}.ion-android-notifications-none:before{content:\"\\f399\";}.ion-android-notifications-off:before{content:\"\\f39a\";}.ion-android-open:before{content:\"\\f39c\";}.ion-android-options:before{content:\"\\f39d\";}.ion-android-people:before{content:\"\\f39e\";}.ion-android-person:before{content:\"\\f3a0\";}.ion-android-person-add:before{content:\"\\f39f\";}.ion-android-phone-landscape:before{content:\"\\f3a1\";}.ion-android-phone-portrait:before{content:\"\\f3a2\";}.ion-android-pin:before{content:\"\\f3a3\";}.ion-android-plane:before{content:\"\\f3a4\";}.ion-android-playstore:before{content:\"\\f2f0\";}.ion-android-print:before{content:\"\\f3a5\";}.ion-android-radio-button-off:before{content:\"\\f3a6\";}.ion-android-radio-button-on:before{content:\"\\f3a7\";}.ion-android-refresh:before{content:\"\\f3a8\";}.ion-android-remove:before{content:\"\\f2f4\";}.ion-android-remove-circle:before{content:\"\\f3a9\";}.ion-android-restaurant:before{content:\"\\f3aa\";}.ion-android-sad:before{content:\"\\f3ab\";}.ion-android-search:before{content:\"\\f2f5\";}.ion-android-send:before{content:\"\\f2f6\";}.ion-android-settings:before{content:\"\\f2f7\";}.ion-android-share:before{content:\"\\f2f8\";}.ion-android-share-alt:before{content:\"\\f3ac\";}.ion-android-star:before{content:\"\\f2fc\";}.ion-android-star-half:before{content:\"\\f3ad\";}.ion-android-star-outline:before{content:\"\\f3ae\";}.ion-android-stopwatch:before{content:\"\\f2fd\";}.ion-android-subway:before{content:\"\\f3af\";}.ion-android-sunny:before{content:\"\\f3b0\";}.ion-android-sync:before{content:\"\\f3b1\";}.ion-android-textsms:before{content:\"\\f3b2\";}.ion-android-time:before{content:\"\\f3b3\";}.ion-android-train:before{content:\"\\f3b4\";}.ion-android-unlock:before{content:\"\\f3b5\";}.ion-android-upload:before{content:\"\\f3b6\";}.ion-android-volume-down:before{content:\"\\f3b7\";}.ion-android-volume-mute:before{content:\"\\f3b8\";}.ion-android-volume-off:before{content:\"\\f3b9\";}.ion-android-volume-up:before{content:\"\\f3ba\";}.ion-android-walk:before{content:\"\\f3bb\";}.ion-android-warning:before{content:\"\\f3bc\";}.ion-android-watch:before{content:\"\\f3bd\";}.ion-android-wifi:before{content:\"\\f305\";}.ion-aperture:before{content:\"\\f313\";}.ion-archive:before{content:\"\\f102\";}.ion-arrow-down-a:before{content:\"\\f103\";}.ion-arrow-down-b:before{content:\"\\f104\";}.ion-arrow-down-c:before{content:\"\\f105\";}.ion-arrow-expand:before{content:\"\\f25e\";}.ion-arrow-graph-down-left:before{content:\"\\f25f\";}.ion-arrow-graph-down-right:before{content:\"\\f260\";}.ion-arrow-graph-up-left:before{content:\"\\f261\";}.ion-arrow-graph-up-right:before{content:\"\\f262\";}.ion-arrow-left-a:before{content:\"\\f106\";}.ion-arrow-left-b:before{content:\"\\f107\";}.ion-arrow-left-c:before{content:\"\\f108\";}.ion-arrow-move:before{content:\"\\f263\";}.ion-arrow-resize:before{content:\"\\f264\";}.ion-arrow-return-left:before{content:\"\\f265\";}.ion-arrow-return-right:before{content:\"\\f266\";}.ion-arrow-right-a:before{content:\"\\f109\";}.ion-arrow-right-b:before{content:\"\\f10a\";}.ion-arrow-right-c:before{content:\"\\f10b\";}.ion-arrow-shrink:before{content:\"\\f267\";}.ion-arrow-swap:before{content:\"\\f268\";}.ion-arrow-up-a:before{content:\"\\f10c\";}.ion-arrow-up-b:before{content:\"\\f10d\";}.ion-arrow-up-c:before{content:\"\\f10e\";}.ion-asterisk:before{content:\"\\f314\";}.ion-at:before{content:\"\\f10f\";}.ion-backspace:before{content:\"\\f3bf\";}.ion-backspace-outline:before{content:\"\\f3be\";}.ion-bag:before{content:\"\\f110\";}.ion-battery-charging:before{content:\"\\f111\";}.ion-battery-empty:before{content:\"\\f112\";}.ion-battery-full:before{content:\"\\f113\";}.ion-battery-half:before{content:\"\\f114\";}.ion-battery-low:before{content:\"\\f115\";}.ion-beaker:before{content:\"\\f269\";}.ion-beer:before{content:\"\\f26a\";}.ion-bluetooth:before{content:\"\\f116\";}.ion-bonfire:before{content:\"\\f315\";}.ion-bookmark:before{content:\"\\f26b\";}.ion-bowtie:before{content:\"\\f3c0\";}.ion-briefcase:before{content:\"\\f26c\";}.ion-bug:before{content:\"\\f2be\";}.ion-calculator:before{content:\"\\f26d\";}.ion-calendar:before{content:\"\\f117\";}.ion-camera:before{content:\"\\f118\";}.ion-card:before{content:\"\\f119\";}.ion-cash:before{content:\"\\f316\";}.ion-chatbox:before{content:\"\\f11b\";}.ion-chatbox-working:before{content:\"\\f11a\";}.ion-chatboxes:before{content:\"\\f11c\";}.ion-chatbubble:before{content:\"\\f11e\";}.ion-chatbubble-working:before{content:\"\\f11d\";}.ion-chatbubbles:before{content:\"\\f11f\";}.ion-checkmark:before{content:\"\\f122\";}.ion-checkmark-circled:before{content:\"\\f120\";}.ion-checkmark-round:before{content:\"\\f121\";}.ion-chevron-down:before{content:\"\\f123\";}.ion-chevron-left:before{content:\"\\f124\";}.ion-chevron-right:before{content:\"\\f125\";}.ion-chevron-up:before{content:\"\\f126\";}.ion-clipboard:before{content:\"\\f127\";}.ion-clock:before{content:\"\\f26e\";}.ion-close:before{content:\"\\f12a\";}.ion-close-circled:before{content:\"\\f128\";}.ion-close-round:before{content:\"\\f129\";}.ion-closed-captioning:before{content:\"\\f317\";}.ion-cloud:before{content:\"\\f12b\";}.ion-code:before{content:\"\\f271\";}.ion-code-download:before{content:\"\\f26f\";}.ion-code-working:before{content:\"\\f270\";}.ion-coffee:before{content:\"\\f272\";}.ion-compass:before{content:\"\\f273\";}.ion-compose:before{content:\"\\f12c\";}.ion-connection-bars:before{content:\"\\f274\";}.ion-contrast:before{content:\"\\f275\";}.ion-crop:before{content:\"\\f3c1\";}.ion-cube:before{content:\"\\f318\";}.ion-disc:before{content:\"\\f12d\";}.ion-document:before{content:\"\\f12f\";}.ion-document-text:before{content:\"\\f12e\";}.ion-drag:before{content:\"\\f130\";}.ion-earth:before{content:\"\\f276\";}.ion-easel:before{content:\"\\f3c2\";}.ion-edit:before{content:\"\\f2bf\";}.ion-egg:before{content:\"\\f277\";}.ion-eject:before{content:\"\\f131\";}.ion-email:before{content:\"\\f132\";}.ion-email-unread:before{content:\"\\f3c3\";}.ion-erlenmeyer-flask:before{content:\"\\f3c5\";}.ion-erlenmeyer-flask-bubbles:before{content:\"\\f3c4\";}.ion-eye:before{content:\"\\f133\";}.ion-eye-disabled:before{content:\"\\f306\";}.ion-female:before{content:\"\\f278\";}.ion-filing:before{content:\"\\f134\";}.ion-film-marker:before{content:\"\\f135\";}.ion-fireball:before{content:\"\\f319\";}.ion-flag:before{content:\"\\f279\";}.ion-flame:before{content:\"\\f31a\";}.ion-flash:before{content:\"\\f137\";}.ion-flash-off:before{content:\"\\f136\";}.ion-folder:before{content:\"\\f139\";}.ion-fork:before{content:\"\\f27a\";}.ion-fork-repo:before{content:\"\\f2c0\";}.ion-forward:before{content:\"\\f13a\";}.ion-funnel:before{content:\"\\f31b\";}.ion-gear-a:before{content:\"\\f13d\";}.ion-gear-b:before{content:\"\\f13e\";}.ion-grid:before{content:\"\\f13f\";}.ion-hammer:before{content:\"\\f27b\";}.ion-happy:before{content:\"\\f31c\";}.ion-happy-outline:before{content:\"\\f3c6\";}.ion-headphone:before{content:\"\\f140\";}.ion-heart:before{content:\"\\f141\";}.ion-heart-broken:before{content:\"\\f31d\";}.ion-help:before{content:\"\\f143\";}.ion-help-buoy:before{content:\"\\f27c\";}.ion-help-circled:before{content:\"\\f142\";}.ion-home:before{content:\"\\f144\";}.ion-icecream:before{content:\"\\f27d\";}.ion-image:before{content:\"\\f147\";}.ion-images:before{content:\"\\f148\";}.ion-information:before{content:\"\\f14a\";}.ion-information-circled:before{content:\"\\f149\";}.ion-ionic:before{content:\"\\f14b\";}.ion-ios-alarm:before{content:\"\\f3c8\";}.ion-ios-alarm-outline:before{content:\"\\f3c7\";}.ion-ios-albums:before{content:\"\\f3ca\";}.ion-ios-albums-outline:before{content:\"\\f3c9\";}.ion-ios-americanfootball:before{content:\"\\f3cc\";}.ion-ios-americanfootball-outline:before{content:\"\\f3cb\";}.ion-ios-analytics:before{content:\"\\f3ce\";}.ion-ios-analytics-outline:before{content:\"\\f3cd\";}.ion-ios-arrow-back:before{content:\"\\f3cf\";}.ion-ios-arrow-down:before{content:\"\\f3d0\";}.ion-ios-arrow-forward:before{content:\"\\f3d1\";}.ion-ios-arrow-left:before{content:\"\\f3d2\";}.ion-ios-arrow-right:before{content:\"\\f3d3\";}.ion-ios-arrow-thin-down:before{content:\"\\f3d4\";}.ion-ios-arrow-thin-left:before{content:\"\\f3d5\";}.ion-ios-arrow-thin-right:before{content:\"\\f3d6\";}.ion-ios-arrow-thin-up:before{content:\"\\f3d7\";}.ion-ios-arrow-up:before{content:\"\\f3d8\";}.ion-ios-at:before{content:\"\\f3da\";}.ion-ios-at-outline:before{content:\"\\f3d9\";}.ion-ios-barcode:before{content:\"\\f3dc\";}.ion-ios-barcode-outline:before{content:\"\\f3db\";}.ion-ios-baseball:before{content:\"\\f3de\";}.ion-ios-baseball-outline:before{content:\"\\f3dd\";}.ion-ios-basketball:before{content:\"\\f3e0\";}.ion-ios-basketball-outline:before{content:\"\\f3df\";}.ion-ios-bell:before{content:\"\\f3e2\";}.ion-ios-bell-outline:before{content:\"\\f3e1\";}.ion-ios-body:before{content:\"\\f3e4\";}.ion-ios-body-outline:before{content:\"\\f3e3\";}.ion-ios-bolt:before{content:\"\\f3e6\";}.ion-ios-bolt-outline:before{content:\"\\f3e5\";}.ion-ios-book:before{content:\"\\f3e8\";}.ion-ios-book-outline:before{content:\"\\f3e7\";}.ion-ios-bookmarks:before{content:\"\\f3ea\";}.ion-ios-bookmarks-outline:before{content:\"\\f3e9\";}.ion-ios-box:before{content:\"\\f3ec\";}.ion-ios-box-outline:before{content:\"\\f3eb\";}.ion-ios-briefcase:before{content:\"\\f3ee\";}.ion-ios-briefcase-outline:before{content:\"\\f3ed\";}.ion-ios-browsers:before{content:\"\\f3f0\";}.ion-ios-browsers-outline:before{content:\"\\f3ef\";}.ion-ios-calculator:before{content:\"\\f3f2\";}.ion-ios-calculator-outline:before{content:\"\\f3f1\";}.ion-ios-calendar:before{content:\"\\f3f4\";}.ion-ios-calendar-outline:before{content:\"\\f3f3\";}.ion-ios-camera:before{content:\"\\f3f6\";}.ion-ios-camera-outline:before{content:\"\\f3f5\";}.ion-ios-cart:before{content:\"\\f3f8\";}.ion-ios-cart-outline:before{content:\"\\f3f7\";}.ion-ios-chatboxes:before{content:\"\\f3fa\";}.ion-ios-chatboxes-outline:before{content:\"\\f3f9\";}.ion-ios-chatbubble:before{content:\"\\f3fc\";}.ion-ios-chatbubble-outline:before{content:\"\\f3fb\";}.ion-ios-checkmark:before{content:\"\\f3ff\";}.ion-ios-checkmark-empty:before{content:\"\\f3fd\";}.ion-ios-checkmark-outline:before{content:\"\\f3fe\";}.ion-ios-circle-filled:before{content:\"\\f400\";}.ion-ios-circle-outline:before{content:\"\\f401\";}.ion-ios-clock:before{content:\"\\f403\";}.ion-ios-clock-outline:before{content:\"\\f402\";}.ion-ios-close:before{content:\"\\f406\";}.ion-ios-close-empty:before{content:\"\\f404\";}.ion-ios-close-outline:before{content:\"\\f405\";}.ion-ios-cloud:before{content:\"\\f40c\";}.ion-ios-cloud-download:before{content:\"\\f408\";}.ion-ios-cloud-download-outline:before{content:\"\\f407\";}.ion-ios-cloud-outline:before{content:\"\\f409\";}.ion-ios-cloud-upload:before{content:\"\\f40b\";}.ion-ios-cloud-upload-outline:before{content:\"\\f40a\";}.ion-ios-cloudy:before{content:\"\\f410\";}.ion-ios-cloudy-night:before{content:\"\\f40e\";}.ion-ios-cloudy-night-outline:before{content:\"\\f40d\";}.ion-ios-cloudy-outline:before{content:\"\\f40f\";}.ion-ios-cog:before{content:\"\\f412\";}.ion-ios-cog-outline:before{content:\"\\f411\";}.ion-ios-color-filter:before{content:\"\\f414\";}.ion-ios-color-filter-outline:before{content:\"\\f413\";}.ion-ios-color-wand:before{content:\"\\f416\";}.ion-ios-color-wand-outline:before{content:\"\\f415\";}.ion-ios-compose:before{content:\"\\f418\";}.ion-ios-compose-outline:before{content:\"\\f417\";}.ion-ios-contact:before{content:\"\\f41a\";}.ion-ios-contact-outline:before{content:\"\\f419\";}.ion-ios-copy:before{content:\"\\f41c\";}.ion-ios-copy-outline:before{content:\"\\f41b\";}.ion-ios-crop:before{content:\"\\f41e\";}.ion-ios-crop-strong:before{content:\"\\f41d\";}.ion-ios-download:before{content:\"\\f420\";}.ion-ios-download-outline:before{content:\"\\f41f\";}.ion-ios-drag:before{content:\"\\f421\";}.ion-ios-email:before{content:\"\\f423\";}.ion-ios-email-outline:before{content:\"\\f422\";}.ion-ios-eye:before{content:\"\\f425\";}.ion-ios-eye-outline:before{content:\"\\f424\";}.ion-ios-fastforward:before{content:\"\\f427\";}.ion-ios-fastforward-outline:before{content:\"\\f426\";}.ion-ios-filing:before{content:\"\\f429\";}.ion-ios-filing-outline:before{content:\"\\f428\";}.ion-ios-film:before{content:\"\\f42b\";}.ion-ios-film-outline:before{content:\"\\f42a\";}.ion-ios-flag:before{content:\"\\f42d\";}.ion-ios-flag-outline:before{content:\"\\f42c\";}.ion-ios-flame:before{content:\"\\f42f\";}.ion-ios-flame-outline:before{content:\"\\f42e\";}.ion-ios-flask:before{content:\"\\f431\";}.ion-ios-flask-outline:before{content:\"\\f430\";}.ion-ios-flower:before{content:\"\\f433\";}.ion-ios-flower-outline:before{content:\"\\f432\";}.ion-ios-folder:before{content:\"\\f435\";}.ion-ios-folder-outline:before{content:\"\\f434\";}.ion-ios-football:before{content:\"\\f437\";}.ion-ios-football-outline:before{content:\"\\f436\";}.ion-ios-game-controller-a:before{content:\"\\f439\";}.ion-ios-game-controller-a-outline:before{content:\"\\f438\";}.ion-ios-game-controller-b:before{content:\"\\f43b\";}.ion-ios-game-controller-b-outline:before{content:\"\\f43a\";}.ion-ios-gear:before{content:\"\\f43d\";}.ion-ios-gear-outline:before{content:\"\\f43c\";}.ion-ios-glasses:before{content:\"\\f43f\";}.ion-ios-glasses-outline:before{content:\"\\f43e\";}.ion-ios-grid-view:before{content:\"\\f441\";}.ion-ios-grid-view-outline:before{content:\"\\f440\";}.ion-ios-heart:before{content:\"\\f443\";}.ion-ios-heart-outline:before{content:\"\\f442\";}.ion-ios-help:before{content:\"\\f446\";}.ion-ios-help-empty:before{content:\"\\f444\";}.ion-ios-help-outline:before{content:\"\\f445\";}.ion-ios-home:before{content:\"\\f448\";}.ion-ios-home-outline:before{content:\"\\f447\";}.ion-ios-infinite:before{content:\"\\f44a\";}.ion-ios-infinite-outline:before{content:\"\\f449\";}.ion-ios-information:before{content:\"\\f44d\";}.ion-ios-information-empty:before{content:\"\\f44b\";}.ion-ios-information-outline:before{content:\"\\f44c\";}.ion-ios-ionic-outline:before{content:\"\\f44e\";}.ion-ios-keypad:before{content:\"\\f450\";}.ion-ios-keypad-outline:before{content:\"\\f44f\";}.ion-ios-lightbulb:before{content:\"\\f452\";}.ion-ios-lightbulb-outline:before{content:\"\\f451\";}.ion-ios-list:before{content:\"\\f454\";}.ion-ios-list-outline:before{content:\"\\f453\";}.ion-ios-location:before{content:\"\\f456\";}.ion-ios-location-outline:before{content:\"\\f455\";}.ion-ios-locked:before{content:\"\\f458\";}.ion-ios-locked-outline:before{content:\"\\f457\";}.ion-ios-loop:before{content:\"\\f45a\";}.ion-ios-loop-strong:before{content:\"\\f459\";}.ion-ios-medical:before{content:\"\\f45c\";}.ion-ios-medical-outline:before{content:\"\\f45b\";}.ion-ios-medkit:before{content:\"\\f45e\";}.ion-ios-medkit-outline:before{content:\"\\f45d\";}.ion-ios-mic:before{content:\"\\f461\";}.ion-ios-mic-off:before{content:\"\\f45f\";}.ion-ios-mic-outline:before{content:\"\\f460\";}.ion-ios-minus:before{content:\"\\f464\";}.ion-ios-minus-empty:before{content:\"\\f462\";}.ion-ios-minus-outline:before{content:\"\\f463\";}.ion-ios-monitor:before{content:\"\\f466\";}.ion-ios-monitor-outline:before{content:\"\\f465\";}.ion-ios-moon:before{content:\"\\f468\";}.ion-ios-moon-outline:before{content:\"\\f467\";}.ion-ios-more:before{content:\"\\f46a\";}.ion-ios-more-outline:before{content:\"\\f469\";}.ion-ios-musical-note:before{content:\"\\f46b\";}.ion-ios-musical-notes:before{content:\"\\f46c\";}.ion-ios-navigate:before{content:\"\\f46e\";}.ion-ios-navigate-outline:before{content:\"\\f46d\";}.ion-ios-nutrition:before{content:\"\\f470\";}.ion-ios-nutrition-outline:before{content:\"\\f46f\";}.ion-ios-paper:before{content:\"\\f472\";}.ion-ios-paper-outline:before{content:\"\\f471\";}.ion-ios-paperplane:before{content:\"\\f474\";}.ion-ios-paperplane-outline:before{content:\"\\f473\";}.ion-ios-partlysunny:before{content:\"\\f476\";}.ion-ios-partlysunny-outline:before{content:\"\\f475\";}.ion-ios-pause:before{content:\"\\f478\";}.ion-ios-pause-outline:before{content:\"\\f477\";}.ion-ios-paw:before{content:\"\\f47a\";}.ion-ios-paw-outline:before{content:\"\\f479\";}.ion-ios-people:before{content:\"\\f47c\";}.ion-ios-people-outline:before{content:\"\\f47b\";}.ion-ios-person:before{content:\"\\f47e\";}.ion-ios-person-outline:before{content:\"\\f47d\";}.ion-ios-personadd:before{content:\"\\f480\";}.ion-ios-personadd-outline:before{content:\"\\f47f\";}.ion-ios-photos:before{content:\"\\f482\";}.ion-ios-photos-outline:before{content:\"\\f481\";}.ion-ios-pie:before{content:\"\\f484\";}.ion-ios-pie-outline:before{content:\"\\f483\";}.ion-ios-pint:before{content:\"\\f486\";}.ion-ios-pint-outline:before{content:\"\\f485\";}.ion-ios-play:before{content:\"\\f488\";}.ion-ios-play-outline:before{content:\"\\f487\";}.ion-ios-plus:before{content:\"\\f48b\";}.ion-ios-plus-empty:before{content:\"\\f489\";}.ion-ios-plus-outline:before{content:\"\\f48a\";}.ion-ios-pricetag:before{content:\"\\f48d\";}.ion-ios-pricetag-outline:before{content:\"\\f48c\";}.ion-ios-pricetags:before{content:\"\\f48f\";}.ion-ios-pricetags-outline:before{content:\"\\f48e\";}.ion-ios-printer:before{content:\"\\f491\";}.ion-ios-printer-outline:before{content:\"\\f490\";}.ion-ios-pulse:before{content:\"\\f493\";}.ion-ios-pulse-strong:before{content:\"\\f492\";}.ion-ios-rainy:before{content:\"\\f495\";}.ion-ios-rainy-outline:before{content:\"\\f494\";}.ion-ios-recording:before{content:\"\\f497\";}.ion-ios-recording-outline:before{content:\"\\f496\";}.ion-ios-redo:before{content:\"\\f499\";}.ion-ios-redo-outline:before{content:\"\\f498\";}.ion-ios-refresh:before{content:\"\\f49c\";}.ion-ios-refresh-empty:before{content:\"\\f49a\";}.ion-ios-refresh-outline:before{content:\"\\f49b\";}.ion-ios-reload:before{content:\"\\f49d\";}.ion-ios-reverse-camera:before{content:\"\\f49f\";}.ion-ios-reverse-camera-outline:before{content:\"\\f49e\";}.ion-ios-rewind:before{content:\"\\f4a1\";}.ion-ios-rewind-outline:before{content:\"\\f4a0\";}.ion-ios-rose:before{content:\"\\f4a3\";}.ion-ios-rose-outline:before{content:\"\\f4a2\";}.ion-ios-search:before{content:\"\\f4a5\";}.ion-ios-search-strong:before{content:\"\\f4a4\";}.ion-ios-settings:before{content:\"\\f4a7\";}.ion-ios-settings-strong:before{content:\"\\f4a6\";}.ion-ios-shuffle:before{content:\"\\f4a9\";}.ion-ios-shuffle-strong:before{content:\"\\f4a8\";}.ion-ios-skipbackward:before{content:\"\\f4ab\";}.ion-ios-skipbackward-outline:before{content:\"\\f4aa\";}.ion-ios-skipforward:before{content:\"\\f4ad\";}.ion-ios-skipforward-outline:before{content:\"\\f4ac\";}.ion-ios-snowy:before{content:\"\\f4ae\";}.ion-ios-speedometer:before{content:\"\\f4b0\";}.ion-ios-speedometer-outline:before{content:\"\\f4af\";}.ion-ios-star:before{content:\"\\f4b3\";}.ion-ios-star-half:before{content:\"\\f4b1\";}.ion-ios-star-outline:before{content:\"\\f4b2\";}.ion-ios-stopwatch:before{content:\"\\f4b5\";}.ion-ios-stopwatch-outline:before{content:\"\\f4b4\";}.ion-ios-sunny:before{content:\"\\f4b7\";}.ion-ios-sunny-outline:before{content:\"\\f4b6\";}.ion-ios-telephone:before{content:\"\\f4b9\";}.ion-ios-telephone-outline:before{content:\"\\f4b8\";}.ion-ios-tennisball:before{content:\"\\f4bb\";}.ion-ios-tennisball-outline:before{content:\"\\f4ba\";}.ion-ios-thunderstorm:before{content:\"\\f4bd\";}.ion-ios-thunderstorm-outline:before{content:\"\\f4bc\";}.ion-ios-time:before{content:\"\\f4bf\";}.ion-ios-time-outline:before{content:\"\\f4be\";}.ion-ios-timer:before{content:\"\\f4c1\";}.ion-ios-timer-outline:before{content:\"\\f4c0\";}.ion-ios-toggle:before{content:\"\\f4c3\";}.ion-ios-toggle-outline:before{content:\"\\f4c2\";}.ion-ios-trash:before{content:\"\\f4c5\";}.ion-ios-trash-outline:before{content:\"\\f4c4\";}.ion-ios-undo:before{content:\"\\f4c7\";}.ion-ios-undo-outline:before{content:\"\\f4c6\";}.ion-ios-unlocked:before{content:\"\\f4c9\";}.ion-ios-unlocked-outline:before{content:\"\\f4c8\";}.ion-ios-upload:before{content:\"\\f4cb\";}.ion-ios-upload-outline:before{content:\"\\f4ca\";}.ion-ios-videocam:before{content:\"\\f4cd\";}.ion-ios-videocam-outline:before{content:\"\\f4cc\";}.ion-ios-volume-high:before{content:\"\\f4ce\";}.ion-ios-volume-low:before{content:\"\\f4cf\";}.ion-ios-wineglass:before{content:\"\\f4d1\";}.ion-ios-wineglass-outline:before{content:\"\\f4d0\";}.ion-ios-world:before{content:\"\\f4d3\";}.ion-ios-world-outline:before{content:\"\\f4d2\";}.ion-ipad:before{content:\"\\f1f9\";}.ion-iphone:before{content:\"\\f1fa\";}.ion-ipod:before{content:\"\\f1fb\";}.ion-jet:before{content:\"\\f295\";}.ion-key:before{content:\"\\f296\";}.ion-knife:before{content:\"\\f297\";}.ion-laptop:before{content:\"\\f1fc\";}.ion-leaf:before{content:\"\\f1fd\";}.ion-levels:before{content:\"\\f298\";}.ion-lightbulb:before{content:\"\\f299\";}.ion-link:before{content:\"\\f1fe\";}.ion-load-a:before{content:\"\\f29a\";}.ion-load-b:before{content:\"\\f29b\";}.ion-load-c:before{content:\"\\f29c\";}.ion-load-d:before{content:\"\\f29d\";}.ion-location:before{content:\"\\f1ff\";}.ion-lock-combination:before{content:\"\\f4d4\";}.ion-locked:before{content:\"\\f200\";}.ion-log-in:before{content:\"\\f29e\";}.ion-log-out:before{content:\"\\f29f\";}.ion-loop:before{content:\"\\f201\";}.ion-magnet:before{content:\"\\f2a0\";}.ion-male:before{content:\"\\f2a1\";}.ion-man:before{content:\"\\f202\";}.ion-map:before{content:\"\\f203\";}.ion-medkit:before{content:\"\\f2a2\";}.ion-merge:before{content:\"\\f33f\";}.ion-mic-a:before{content:\"\\f204\";}.ion-mic-b:before{content:\"\\f205\";}.ion-mic-c:before{content:\"\\f206\";}.ion-minus:before{content:\"\\f209\";}.ion-minus-circled:before{content:\"\\f207\";}.ion-minus-round:before{content:\"\\f208\";}.ion-model-s:before{content:\"\\f2c1\";}.ion-monitor:before{content:\"\\f20a\";}.ion-more:before{content:\"\\f20b\";}.ion-mouse:before{content:\"\\f340\";}.ion-music-note:before{content:\"\\f20c\";}.ion-navicon:before{content:\"\\f20e\";}.ion-navicon-round:before{content:\"\\f20d\";}.ion-navigate:before{content:\"\\f2a3\";}.ion-network:before{content:\"\\f341\";}.ion-no-smoking:before{content:\"\\f2c2\";}.ion-nuclear:before{content:\"\\f2a4\";}.ion-outlet:before{content:\"\\f342\";}.ion-paintbrush:before{content:\"\\f4d5\";}.ion-paintbucket:before{content:\"\\f4d6\";}.ion-paper-airplane:before{content:\"\\f2c3\";}.ion-paperclip:before{content:\"\\f20f\";}.ion-pause:before{content:\"\\f210\";}.ion-person:before{content:\"\\f213\";}.ion-person-add:before{content:\"\\f211\";}.ion-person-stalker:before{content:\"\\f212\";}.ion-pie-graph:before{content:\"\\f2a5\";}.ion-pin:before{content:\"\\f2a6\";}.ion-pinpoint:before{content:\"\\f2a7\";}.ion-pizza:before{content:\"\\f2a8\";}.ion-plane:before{content:\"\\f214\";}.ion-planet:before{content:\"\\f343\";}.ion-play:before{content:\"\\f215\";}.ion-playstation:before{content:\"\\f30a\";}.ion-plus:before{content:\"\\f218\";}.ion-plus-circled:before{content:\"\\f216\";}.ion-plus-round:before{content:\"\\f217\";}.ion-podium:before{content:\"\\f344\";}.ion-pound:before{content:\"\\f219\";}.ion-power:before{content:\"\\f2a9\";}.ion-pricetag:before{content:\"\\f2aa\";}.ion-pricetags:before{content:\"\\f2ab\";}.ion-printer:before{content:\"\\f21a\";}.ion-pull-request:before{content:\"\\f345\";}.ion-qr-scanner:before{content:\"\\f346\";}.ion-quote:before{content:\"\\f347\";}.ion-radio-waves:before{content:\"\\f2ac\";}.ion-record:before{content:\"\\f21b\";}.ion-refresh:before{content:\"\\f21c\";}.ion-reply:before{content:\"\\f21e\";}.ion-reply-all:before{content:\"\\f21d\";}.ion-ribbon-a:before{content:\"\\f348\";}.ion-ribbon-b:before{content:\"\\f349\";}.ion-sad:before{content:\"\\f34a\";}.ion-sad-outline:before{content:\"\\f4d7\";}.ion-scissors:before{content:\"\\f34b\";}.ion-search:before{content:\"\\f21f\";}.ion-settings:before{content:\"\\f2ad\";}.ion-share:before{content:\"\\f220\";}.ion-shuffle:before{content:\"\\f221\";}.ion-skip-backward:before{content:\"\\f222\";}.ion-skip-forward:before{content:\"\\f223\";}.ion-social-android:before{content:\"\\f225\";}.ion-social-android-outline:before{content:\"\\f224\";}.ion-social-angular:before{content:\"\\f4d9\";}.ion-social-angular-outline:before{content:\"\\f4d8\";}.ion-social-apple:before{content:\"\\f227\";}.ion-social-apple-outline:before{content:\"\\f226\";}.ion-social-bitcoin:before{content:\"\\f2af\";}.ion-social-bitcoin-outline:before{content:\"\\f2ae\";}.ion-social-buffer:before{content:\"\\f229\";}.ion-social-buffer-outline:before{content:\"\\f228\";}.ion-social-chrome:before{content:\"\\f4db\";}.ion-social-chrome-outline:before{content:\"\\f4da\";}.ion-social-codepen:before{content:\"\\f4dd\";}.ion-social-codepen-outline:before{content:\"\\f4dc\";}.ion-social-css3:before{content:\"\\f4df\";}.ion-social-css3-outline:before{content:\"\\f4de\";}.ion-social-designernews:before{content:\"\\f22b\";}.ion-social-designernews-outline:before{content:\"\\f22a\";}.ion-social-dribbble:before{content:\"\\f22d\";}.ion-social-dribbble-outline:before{content:\"\\f22c\";}.ion-social-dropbox:before{content:\"\\f22f\";}.ion-social-dropbox-outline:before{content:\"\\f22e\";}.ion-social-euro:before{content:\"\\f4e1\";}.ion-social-euro-outline:before{content:\"\\f4e0\";}.ion-social-facebook:before{content:\"\\f231\";}.ion-social-facebook-outline:before{content:\"\\f230\";}.ion-social-foursquare:before{content:\"\\f34d\";}.ion-social-foursquare-outline:before{content:\"\\f34c\";}.ion-social-freebsd-devil:before{content:\"\\f2c4\";}.ion-social-github:before{content:\"\\f233\";}.ion-social-github-outline:before{content:\"\\f232\";}.ion-social-google:before{content:\"\\f34f\";}.ion-social-google-outline:before{content:\"\\f34e\";}.ion-social-googleplus:before{content:\"\\f235\";}.ion-social-googleplus-outline:before{content:\"\\f234\";}.ion-social-hackernews:before{content:\"\\f237\";}.ion-social-hackernews-outline:before{content:\"\\f236\";}.ion-social-html5:before{content:\"\\f4e3\";}.ion-social-html5-outline:before{content:\"\\f4e2\";}.ion-social-instagram:before{content:\"\\f351\";}.ion-social-instagram-outline:before{content:\"\\f350\";}.ion-social-javascript:before{content:\"\\f4e5\";}.ion-social-javascript-outline:before{content:\"\\f4e4\";}.ion-social-linkedin:before{content:\"\\f239\";}.ion-social-linkedin-outline:before{content:\"\\f238\";}.ion-social-markdown:before{content:\"\\f4e6\";}.ion-social-nodejs:before{content:\"\\f4e7\";}.ion-social-octocat:before{content:\"\\f4e8\";}.ion-social-pinterest:before{content:\"\\f2b1\";}.ion-social-pinterest-outline:before{content:\"\\f2b0\";}.ion-social-python:before{content:\"\\f4e9\";}.ion-social-reddit:before{content:\"\\f23b\";}.ion-social-reddit-outline:before{content:\"\\f23a\";}.ion-social-rss:before{content:\"\\f23d\";}.ion-social-rss-outline:before{content:\"\\f23c\";}.ion-social-sass:before{content:\"\\f4ea\";}.ion-social-skype:before{content:\"\\f23f\";}.ion-social-skype-outline:before{content:\"\\f23e\";}.ion-social-snapchat:before{content:\"\\f4ec\";}.ion-social-snapchat-outline:before{content:\"\\f4eb\";}.ion-social-tumblr:before{content:\"\\f241\";}.ion-social-tumblr-outline:before{content:\"\\f240\";}.ion-social-tux:before{content:\"\\f2c5\";}.ion-social-twitch:before{content:\"\\f4ee\";}.ion-social-twitch-outline:before{content:\"\\f4ed\";}.ion-social-twitter:before{content:\"\\f243\";}.ion-social-twitter-outline:before{content:\"\\f242\";}.ion-social-usd:before{content:\"\\f353\";}.ion-social-usd-outline:before{content:\"\\f352\";}.ion-social-vimeo:before{content:\"\\f245\";}.ion-social-vimeo-outline:before{content:\"\\f244\";}.ion-social-whatsapp:before{content:\"\\f4f0\";}.ion-social-whatsapp-outline:before{content:\"\\f4ef\";}.ion-social-windows:before{content:\"\\f247\";}.ion-social-windows-outline:before{content:\"\\f246\";}.ion-social-wordpress:before{content:\"\\f249\";}.ion-social-wordpress-outline:before{content:\"\\f248\";}.ion-social-yahoo:before{content:\"\\f24b\";}.ion-social-yahoo-outline:before{content:\"\\f24a\";}.ion-social-yen:before{content:\"\\f4f2\";}.ion-social-yen-outline:before{content:\"\\f4f1\";}.ion-social-youtube:before{content:\"\\f24d\";}.ion-social-youtube-outline:before{content:\"\\f24c\";}.ion-soup-can:before{content:\"\\f4f4\";}.ion-soup-can-outline:before{content:\"\\f4f3\";}.ion-speakerphone:before{content:\"\\f2b2\";}.ion-speedometer:before{content:\"\\f2b3\";}.ion-spoon:before{content:\"\\f2b4\";}.ion-star:before{content:\"\\f24e\";}.ion-stats-bars:before{content:\"\\f2b5\";}.ion-steam:before{content:\"\\f30b\";}.ion-stop:before{content:\"\\f24f\";}.ion-thermometer:before{content:\"\\f2b6\";}.ion-thumbsdown:before{content:\"\\f250\";}.ion-thumbsup:before{content:\"\\f251\";}.ion-toggle:before{content:\"\\f355\";}.ion-toggle-filled:before{content:\"\\f354\";}.ion-transgender:before{content:\"\\f4f5\";}.ion-trash-a:before{content:\"\\f252\";}.ion-trash-b:before{content:\"\\f253\";}.ion-trophy:before{content:\"\\f356\";}.ion-tshirt:before{content:\"\\f4f7\";}.ion-tshirt-outline:before{content:\"\\f4f6\";}.ion-umbrella:before{content:\"\\f2b7\";}.ion-university:before{content:\"\\f357\";}.ion-unlocked:before{content:\"\\f254\";}.ion-upload:before{content:\"\\f255\";}.ion-usb:before{content:\"\\f2b8\";}.ion-videocamera:before{content:\"\\f256\";}.ion-volume-high:before{content:\"\\f257\";}.ion-volume-low:before{content:\"\\f258\";}.ion-volume-medium:before{content:\"\\f259\";}.ion-volume-mute:before{content:\"\\f25a\";}.ion-wand:before{content:\"\\f358\";}.ion-waterdrop:before{content:\"\\f25b\";}.ion-wifi:before{content:\"\\f25c\";}.ion-wineglass:before{content:\"\\f2b9\";}.ion-woman:before{content:\"\\f25d\";}.ion-wrench:before{content:\"\\f2ba\";}.ion-xbox:before{content:\"\\f30c\";}");
18
+
19
+ export {normalize} from 'intact-react';