@longline/aqua-ui 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (410) hide show
  1. package/README.md +7 -0
  2. package/Types.d.ts +6 -0
  3. package/Types.js +5 -0
  4. package/containers/Anchor/Anchor.d.ts +63 -0
  5. package/containers/Anchor/Anchor.js +113 -0
  6. package/containers/Anchor/index.d.ts +1 -0
  7. package/containers/Anchor/index.js +1 -0
  8. package/containers/Dock/Dock.d.ts +45 -0
  9. package/containers/Dock/Dock.js +61 -0
  10. package/containers/Dock/Dockable.d.ts +60 -0
  11. package/containers/Dock/Dockable.js +98 -0
  12. package/containers/Dock/index.d.ts +2 -0
  13. package/containers/Dock/index.js +2 -0
  14. package/containers/Form/Field.d.ts +104 -0
  15. package/containers/Form/Field.js +168 -0
  16. package/containers/Form/Form.d.ts +51 -0
  17. package/containers/Form/Form.js +89 -0
  18. package/containers/Form/Validation.d.ts +212 -0
  19. package/containers/Form/Validation.js +232 -0
  20. package/containers/Form/context/FormContext.d.ts +10 -0
  21. package/containers/Form/context/FormContext.js +3 -0
  22. package/containers/Form/context/useForm.d.ts +5 -0
  23. package/containers/Form/context/useForm.js +9 -0
  24. package/containers/Form/elements/BoxWrapper.d.ts +15 -0
  25. package/containers/Form/elements/BoxWrapper.js +35 -0
  26. package/containers/Form/elements/Hint.d.ts +21 -0
  27. package/containers/Form/elements/Hint.js +15 -0
  28. package/containers/Form/elements/Label.d.ts +22 -0
  29. package/containers/Form/elements/Label.js +15 -0
  30. package/containers/Form/elements/SimpleWrapper.d.ts +15 -0
  31. package/containers/Form/elements/SimpleWrapper.js +17 -0
  32. package/containers/GlassPane/GlassPane.d.ts +36 -0
  33. package/containers/GlassPane/GlassPane.js +66 -0
  34. package/containers/GlassPane/index.d.ts +1 -0
  35. package/containers/GlassPane/index.js +1 -0
  36. package/containers/InfoBox/InfoBox.d.ts +34 -0
  37. package/containers/InfoBox/InfoBox.js +45 -0
  38. package/containers/InfoBox/elements/Content.d.ts +23 -0
  39. package/containers/InfoBox/elements/Content.js +37 -0
  40. package/containers/InfoBox/elements/Footer.d.ts +9 -0
  41. package/containers/InfoBox/elements/Footer.js +24 -0
  42. package/containers/InfoBox/elements/Header.d.ts +9 -0
  43. package/containers/InfoBox/elements/Header.js +24 -0
  44. package/containers/List/List.d.ts +45 -0
  45. package/containers/List/List.js +47 -0
  46. package/containers/List/ListCell.d.ts +13 -0
  47. package/containers/List/ListCell.js +24 -0
  48. package/containers/List/ListRow.d.ts +15 -0
  49. package/containers/List/ListRow.js +24 -0
  50. package/containers/List/index.d.ts +3 -0
  51. package/containers/List/index.js +3 -0
  52. package/containers/Tabs/Pane.d.ts +29 -0
  53. package/containers/Tabs/Pane.js +45 -0
  54. package/containers/Tabs/Tabs.d.ts +66 -0
  55. package/containers/Tabs/Tabs.js +144 -0
  56. package/controls/Chip/Chip.d.ts +35 -0
  57. package/controls/Chip/Chip.js +83 -0
  58. package/controls/Fab/Fab.d.ts +73 -0
  59. package/controls/Fab/Fab.js +94 -0
  60. package/controls/Icon/Icon.d.ts +98 -0
  61. package/controls/Icon/Icon.js +79 -0
  62. package/controls/Icon/index.d.ts +1 -0
  63. package/controls/Icon/index.js +1 -0
  64. package/controls/Key/Key.d.ts +22 -0
  65. package/controls/Key/Key.js +74 -0
  66. package/controls/Key/index.d.ts +1 -0
  67. package/controls/Key/index.js +1 -0
  68. package/controls/LinearChart/LinearChart.d.ts +31 -0
  69. package/controls/LinearChart/LinearChart.js +58 -0
  70. package/controls/ListView/Body.d.ts +8 -0
  71. package/controls/ListView/Body.js +24 -0
  72. package/controls/ListView/Column.d.ts +55 -0
  73. package/controls/ListView/Column.js +8 -0
  74. package/controls/ListView/ColumnsManager/ColumnDraggable.d.ts +11 -0
  75. package/controls/ListView/ColumnsManager/ColumnDraggable.js +83 -0
  76. package/controls/ListView/ColumnsManager/ColumnsManager.d.ts +12 -0
  77. package/controls/ListView/ColumnsManager/ColumnsManager.js +63 -0
  78. package/controls/ListView/ColumnsManager/OrderColumns.d.ts +11 -0
  79. package/controls/ListView/ColumnsManager/OrderColumns.js +62 -0
  80. package/controls/ListView/ColumnsManager/SourceColumns.d.ts +10 -0
  81. package/controls/ListView/ColumnsManager/SourceColumns.js +45 -0
  82. package/controls/ListView/Ghost.d.ts +9 -0
  83. package/controls/ListView/Ghost.js +52 -0
  84. package/controls/ListView/Header.d.ts +12 -0
  85. package/controls/ListView/Header.js +35 -0
  86. package/controls/ListView/HeaderButton.d.ts +8 -0
  87. package/controls/ListView/HeaderButton.js +8 -0
  88. package/controls/ListView/HeaderCell.d.ts +20 -0
  89. package/controls/ListView/HeaderCell.js +47 -0
  90. package/controls/ListView/IListViewProps.d.ts +105 -0
  91. package/controls/ListView/IListViewProps.js +1 -0
  92. package/controls/ListView/ListView.d.ts +20 -0
  93. package/controls/ListView/ListView.js +97 -0
  94. package/controls/ListView/NoData.d.ts +19 -0
  95. package/controls/ListView/NoData.js +30 -0
  96. package/controls/ListView/SortButton.d.ts +16 -0
  97. package/controls/ListView/SortButton.js +26 -0
  98. package/controls/ListView/Table.d.ts +18 -0
  99. package/controls/ListView/Table.js +99 -0
  100. package/controls/ListView/Total.d.ts +9 -0
  101. package/controls/ListView/Total.js +28 -0
  102. package/controls/ListView/sortItems.d.ts +6 -0
  103. package/controls/ListView/sortItems.js +35 -0
  104. package/controls/Mouse/Mouse.d.ts +38 -0
  105. package/controls/Mouse/Mouse.js +51 -0
  106. package/controls/Mouse/index.d.ts +1 -0
  107. package/controls/Mouse/index.js +1 -0
  108. package/controls/PrimaryButton/PrimaryButton.d.ts +63 -0
  109. package/controls/PrimaryButton/PrimaryButton.js +83 -0
  110. package/controls/PrimaryButton/index.d.ts +1 -0
  111. package/controls/PrimaryButton/index.js +1 -0
  112. package/controls/Progress/Progress.d.ts +35 -0
  113. package/controls/Progress/Progress.js +49 -0
  114. package/controls/SecondaryButton/SecondaryButton.d.ts +58 -0
  115. package/controls/SecondaryButton/SecondaryButton.js +73 -0
  116. package/controls/SecondaryButton/index.d.ts +1 -0
  117. package/controls/SecondaryButton/index.js +1 -0
  118. package/controls/TabBar/Tab.d.ts +21 -0
  119. package/controls/TabBar/Tab.js +25 -0
  120. package/controls/TabBar/TabBar.d.ts +34 -0
  121. package/controls/TabBar/TabBar.js +134 -0
  122. package/controls/TabBar/Underliner.d.ts +7 -0
  123. package/controls/TabBar/Underliner.js +27 -0
  124. package/controls/TabBar/index.d.ts +1 -0
  125. package/controls/TabBar/index.js +1 -0
  126. package/controls/TertiaryButton/TertiaryButton.d.ts +28 -0
  127. package/controls/TertiaryButton/TertiaryButton.js +65 -0
  128. package/controls/TertiaryButton/index.d.ts +1 -0
  129. package/controls/TertiaryButton/index.js +1 -0
  130. package/controls/View/View.d.ts +35 -0
  131. package/controls/View/View.js +58 -0
  132. package/formatters/Date/DateTime.d.ts +45 -0
  133. package/formatters/Date/DateTime.js +64 -0
  134. package/formatters/Date/elements/Custom.d.ts +18 -0
  135. package/formatters/Date/elements/Custom.js +22 -0
  136. package/formatters/Date/elements/Distance.d.ts +24 -0
  137. package/formatters/Date/elements/Distance.js +45 -0
  138. package/formatters/Date/elements/LongDate.d.ts +17 -0
  139. package/formatters/Date/elements/LongDate.js +11 -0
  140. package/formatters/Date/elements/LongDateTime.d.ts +14 -0
  141. package/formatters/Date/elements/LongDateTime.js +10 -0
  142. package/formatters/Date/elements/LongTime.d.ts +14 -0
  143. package/formatters/Date/elements/LongTime.js +10 -0
  144. package/formatters/Date/elements/ShortDate.d.ts +14 -0
  145. package/formatters/Date/elements/ShortDate.js +10 -0
  146. package/formatters/Date/elements/ShortDateTime.d.ts +14 -0
  147. package/formatters/Date/elements/ShortDateTime.js +10 -0
  148. package/formatters/Date/elements/ShortTime.d.ts +18 -0
  149. package/formatters/Date/elements/ShortTime.js +10 -0
  150. package/formatters/Date/elements/toDate.d.ts +2 -0
  151. package/formatters/Date/elements/toDate.js +13 -0
  152. package/formatters/Filesize/Filesize.d.ts +29 -0
  153. package/formatters/Filesize/Filesize.js +54 -0
  154. package/formatters/GIS/Latitude.d.ts +23 -0
  155. package/formatters/GIS/Latitude.js +13 -0
  156. package/formatters/GIS/Longitude.d.ts +23 -0
  157. package/formatters/GIS/Longitude.js +13 -0
  158. package/formatters/GIS/index.d.ts +2 -0
  159. package/formatters/GIS/index.js +2 -0
  160. package/formatters/GIS/toDMS.d.ts +2 -0
  161. package/formatters/GIS/toDMS.js +16 -0
  162. package/formatters/Highlight/Highlight.d.ts +22 -0
  163. package/formatters/Highlight/Highlight.js +32 -0
  164. package/formatters/Highlight/index.d.ts +1 -0
  165. package/formatters/Highlight/index.js +1 -0
  166. package/formatters/Human/Human.d.ts +18 -0
  167. package/formatters/Human/Human.js +34 -0
  168. package/formatters/Human/index.d.ts +1 -0
  169. package/formatters/Human/index.js +1 -0
  170. package/formatters/Number/Number.d.ts +24 -0
  171. package/formatters/Number/Number.js +36 -0
  172. package/formatters/Number/index.d.ts +1 -0
  173. package/formatters/Number/index.js +1 -0
  174. package/helper/DMS.d.ts +22 -0
  175. package/helper/DMS.js +46 -0
  176. package/helper/HslColor.d.ts +11 -0
  177. package/helper/HslColor.js +47 -0
  178. package/helper/RgbColor.d.ts +43 -0
  179. package/helper/RgbColor.js +162 -0
  180. package/helper/SizeHelper.d.ts +10 -0
  181. package/helper/SizeHelper.js +56 -0
  182. package/helper/darken.d.ts +8 -0
  183. package/helper/darken.js +18 -0
  184. package/helper/guard.d.ts +5 -0
  185. package/helper/guard.js +7 -0
  186. package/helper/lighten.d.ts +8 -0
  187. package/helper/lighten.js +11 -0
  188. package/helper/nameToHex.d.ts +6 -0
  189. package/helper/nameToHex.js +163 -0
  190. package/inputs/DateInput/Body.d.ts +34 -0
  191. package/inputs/DateInput/Body.js +50 -0
  192. package/inputs/DateInput/Calendar.d.ts +15 -0
  193. package/inputs/DateInput/Calendar.js +60 -0
  194. package/inputs/DateInput/DateInput.d.ts +73 -0
  195. package/inputs/DateInput/DateInput.js +143 -0
  196. package/inputs/DateInput/Day.d.ts +32 -0
  197. package/inputs/DateInput/Day.js +33 -0
  198. package/inputs/DateInput/InfiniteList.d.ts +26 -0
  199. package/inputs/DateInput/InfiniteList.js +87 -0
  200. package/inputs/DateInput/Nav.d.ts +11 -0
  201. package/inputs/DateInput/Nav.js +24 -0
  202. package/inputs/DateInput/Navbar.d.ts +16 -0
  203. package/inputs/DateInput/Navbar.js +33 -0
  204. package/inputs/DateInput/NumericInput.d.ts +14 -0
  205. package/inputs/DateInput/NumericInput.js +48 -0
  206. package/inputs/DateInput/Selector.d.ts +47 -0
  207. package/inputs/DateInput/Selector.js +55 -0
  208. package/inputs/DateInput/SimpleList.d.ts +19 -0
  209. package/inputs/DateInput/SimpleList.js +31 -0
  210. package/inputs/Dropdown/Body.d.ts +25 -0
  211. package/inputs/Dropdown/Body.js +14 -0
  212. package/inputs/Dropdown/Column.d.ts +21 -0
  213. package/inputs/Dropdown/Column.js +6 -0
  214. package/inputs/Dropdown/Dropdown.d.ts +136 -0
  215. package/inputs/Dropdown/Dropdown.js +446 -0
  216. package/inputs/Dropdown/Selection.d.ts +11 -0
  217. package/inputs/Dropdown/Selection.js +23 -0
  218. package/inputs/Dropdown/Selector.d.ts +29 -0
  219. package/inputs/Dropdown/Selector.js +16 -0
  220. package/inputs/Editor/Editor.d.ts +45 -0
  221. package/inputs/Editor/Editor.js +60 -0
  222. package/inputs/Editor/buttons/BoldButton.d.ts +7 -0
  223. package/inputs/Editor/buttons/BoldButton.js +7 -0
  224. package/inputs/Editor/buttons/BulletListButton.d.ts +7 -0
  225. package/inputs/Editor/buttons/BulletListButton.js +7 -0
  226. package/inputs/Editor/buttons/CodeBlockButton.d.ts +7 -0
  227. package/inputs/Editor/buttons/CodeBlockButton.js +7 -0
  228. package/inputs/Editor/buttons/CodeButton.d.ts +7 -0
  229. package/inputs/Editor/buttons/CodeButton.js +7 -0
  230. package/inputs/Editor/buttons/ItalicButton.d.ts +7 -0
  231. package/inputs/Editor/buttons/ItalicButton.js +7 -0
  232. package/inputs/Editor/buttons/OrderedListButton.d.ts +7 -0
  233. package/inputs/Editor/buttons/OrderedListButton.js +7 -0
  234. package/inputs/Editor/buttons/StrikethroughButton.d.ts +7 -0
  235. package/inputs/Editor/buttons/StrikethroughButton.js +7 -0
  236. package/inputs/Editor/menu/MenuBar.d.ts +9 -0
  237. package/inputs/Editor/menu/MenuBar.js +44 -0
  238. package/inputs/Editor/menu/MenuButton.d.ts +35 -0
  239. package/inputs/Editor/menu/MenuButton.js +34 -0
  240. package/inputs/Editor/menu/MenuSeparator.d.ts +7 -0
  241. package/inputs/Editor/menu/MenuSeparator.js +24 -0
  242. package/inputs/Input/Clear.d.ts +7 -0
  243. package/inputs/Input/Clear.js +14 -0
  244. package/inputs/Input/Input.d.ts +133 -0
  245. package/inputs/Input/Input.js +64 -0
  246. package/inputs/Input/InputWrapper.d.ts +23 -0
  247. package/inputs/Input/InputWrapper.js +57 -0
  248. package/inputs/Input/index.d.ts +1 -0
  249. package/inputs/Input/index.js +1 -0
  250. package/inputs/Selector/ISelectorProps.d.ts +29 -0
  251. package/inputs/Selector/ISelectorProps.js +1 -0
  252. package/inputs/Selector/Selector.d.ts +29 -0
  253. package/inputs/Selector/Selector.js +77 -0
  254. package/inputs/Selector/index.d.ts +1 -0
  255. package/inputs/Selector/index.js +1 -0
  256. package/inputs/Selector/widgets/Checkbox.d.ts +6 -0
  257. package/inputs/Selector/widgets/Checkbox.js +29 -0
  258. package/inputs/Selector/widgets/Toggle.d.ts +6 -0
  259. package/inputs/Selector/widgets/Toggle.js +24 -0
  260. package/inputs/Slider/Slider.d.ts +63 -0
  261. package/inputs/Slider/Slider.js +198 -0
  262. package/inputs/Textarea/Textarea.d.ts +79 -0
  263. package/inputs/Textarea/Textarea.js +65 -0
  264. package/main.js +32 -0
  265. package/map/Map/Map.d.ts +47 -0
  266. package/map/Map/Map.js +221 -0
  267. package/map/Map/index.d.ts +1 -0
  268. package/map/Map/index.js +1 -0
  269. package/map/PositionsManager/PositionBox.d.ts +14 -0
  270. package/map/PositionsManager/PositionBox.js +86 -0
  271. package/map/PositionsManager/PositionsManager.d.ts +27 -0
  272. package/map/PositionsManager/PositionsManager.js +99 -0
  273. package/map/controls/CompassButton/CompassButton.d.ts +33 -0
  274. package/map/controls/CompassButton/CompassButton.js +88 -0
  275. package/map/controls/FullscreenButton/FullscreenButton.d.ts +21 -0
  276. package/map/controls/FullscreenButton/FullscreenButton.js +62 -0
  277. package/map/controls/Geocoder/Geocoder.d.ts +49 -0
  278. package/map/controls/Geocoder/Geocoder.js +179 -0
  279. package/map/controls/Geocoder/GeocoderApi.d.ts +59 -0
  280. package/map/controls/Geocoder/GeocoderApi.js +68 -0
  281. package/map/controls/Geocoder/GeocoderEntry.d.ts +15 -0
  282. package/map/controls/Geocoder/GeocoderEntry.js +18 -0
  283. package/map/controls/Geocoder/GeocoderList.d.ts +10 -0
  284. package/map/controls/Geocoder/GeocoderList.js +18 -0
  285. package/map/controls/Geocoder/GeocoderSelector.d.ts +16 -0
  286. package/map/controls/Geocoder/GeocoderSelector.js +25 -0
  287. package/map/controls/Graticule/Graticule.d.ts +35 -0
  288. package/map/controls/Graticule/Graticule.js +142 -0
  289. package/map/controls/MapLoader/MapLoader.d.ts +33 -0
  290. package/map/controls/MapLoader/MapLoader.js +73 -0
  291. package/map/controls/ScaleControl/ScaleControl.d.ts +24 -0
  292. package/map/controls/ScaleControl/ScaleControl.js +107 -0
  293. package/map/controls/ZoomInButton/ZoomInButton.d.ts +19 -0
  294. package/map/controls/ZoomInButton/ZoomInButton.js +56 -0
  295. package/map/controls/ZoomOutButton/ZoomOutButton.d.ts +19 -0
  296. package/map/controls/ZoomOutButton/ZoomOutButton.js +56 -0
  297. package/map/controls/base/MapButton/Hint.d.ts +17 -0
  298. package/map/controls/base/MapButton/Hint.js +34 -0
  299. package/map/controls/base/MapButton/MapButton.d.ts +46 -0
  300. package/map/controls/base/MapButton/MapButton.js +71 -0
  301. package/map/controls/base/MapButton/index.d.ts +1 -0
  302. package/map/controls/base/MapButton/index.js +1 -0
  303. package/map/controls/base/MapButtonGroup/MapButtonGroup.d.ts +17 -0
  304. package/map/controls/base/MapButtonGroup/MapButtonGroup.js +24 -0
  305. package/map/controls/base/MapControl/MapControl.d.ts +36 -0
  306. package/map/controls/base/MapControl/MapControl.js +77 -0
  307. package/map/controls/base/MapControl/index.d.ts +1 -0
  308. package/map/controls/base/MapControl/index.js +1 -0
  309. package/map/layers/ClusterLayer/ClusterLayer.d.ts +79 -0
  310. package/map/layers/ClusterLayer/ClusterLayer.js +118 -0
  311. package/map/layers/HtmlMarkerLayer/HtmlMarkerLayer.d.ts +51 -0
  312. package/map/layers/HtmlMarkerLayer/HtmlMarkerLayer.js +151 -0
  313. package/map/layers/InterpolationLayer/ContoursFragmentShader.d.ts +2 -0
  314. package/map/layers/InterpolationLayer/ContoursFragmentShader.js +2 -0
  315. package/map/layers/InterpolationLayer/ContoursVertexShader.d.ts +2 -0
  316. package/map/layers/InterpolationLayer/ContoursVertexShader.js +2 -0
  317. package/map/layers/InterpolationLayer/IGradientStop.d.ts +5 -0
  318. package/map/layers/InterpolationLayer/IGradientStop.js +1 -0
  319. package/map/layers/InterpolationLayer/InterpolationLayer.d.ts +35 -0
  320. package/map/layers/InterpolationLayer/InterpolationLayer.js +256 -0
  321. package/map/layers/InterpolationLayer/LevelsFragmentShader.d.ts +2 -0
  322. package/map/layers/InterpolationLayer/LevelsFragmentShader.js +2 -0
  323. package/map/layers/InterpolationLayer/LevelsVertexShader.d.ts +2 -0
  324. package/map/layers/InterpolationLayer/LevelsVertexShader.js +2 -0
  325. package/map/layers/ParticlesLayer/ParticlesFragmentShader.d.ts +2 -0
  326. package/map/layers/ParticlesLayer/ParticlesFragmentShader.js +2 -0
  327. package/map/layers/ParticlesLayer/ParticlesLayer.d.ts +40 -0
  328. package/map/layers/ParticlesLayer/ParticlesLayer.js +337 -0
  329. package/map/layers/ParticlesLayer/ParticlesVertexShader.d.ts +2 -0
  330. package/map/layers/ParticlesLayer/ParticlesVertexShader.js +2 -0
  331. package/map/layers/ParticlesLayer/UVFragmentShader.d.ts +2 -0
  332. package/map/layers/ParticlesLayer/UVFragmentShader.js +2 -0
  333. package/map/layers/ParticlesLayer/UVVertexShader.d.ts +2 -0
  334. package/map/layers/ParticlesLayer/UVVertexShader.js +2 -0
  335. package/map/markers/ClusterMarker/ClusterMarker.d.ts +36 -0
  336. package/map/markers/ClusterMarker/ClusterMarker.js +99 -0
  337. package/map/markers/ClusterMarker/index.d.ts +1 -0
  338. package/map/markers/ClusterMarker/index.js +1 -0
  339. package/map/markers/RiskMarker/RiskMarker.d.ts +22 -0
  340. package/map/markers/RiskMarker/RiskMarker.js +61 -0
  341. package/modules/MainMenu/Item.d.ts +42 -0
  342. package/modules/MainMenu/Item.js +94 -0
  343. package/modules/MainMenu/MainMenu.d.ts +20 -0
  344. package/modules/MainMenu/MainMenu.js +41 -0
  345. package/modules/MainMenu/index.d.ts +1 -0
  346. package/modules/MainMenu/index.js +1 -0
  347. package/modules/Root/Content.d.ts +16 -0
  348. package/modules/Root/Content.js +25 -0
  349. package/modules/Root/Overlay.d.ts +23 -0
  350. package/modules/Root/Overlay.js +33 -0
  351. package/modules/Root/Root.d.ts +7 -0
  352. package/modules/Root/Root.js +45 -0
  353. package/modules/Root/Shader.d.ts +15 -0
  354. package/modules/Root/Shader.js +24 -0
  355. package/modules/Root/Sidebar.d.ts +13 -0
  356. package/modules/Root/Sidebar.js +24 -0
  357. package/modules/Root/stories/SampleContent.d.ts +7 -0
  358. package/modules/Root/stories/SampleContent.js +44 -0
  359. package/package.json +64 -0
  360. package/services/Dialog/AlertDialog.d.ts +31 -0
  361. package/services/Dialog/AlertDialog.js +29 -0
  362. package/services/Dialog/ConfirmDialog.d.ts +34 -0
  363. package/services/Dialog/ConfirmDialog.js +30 -0
  364. package/services/Dialog/Dialog.d.ts +91 -0
  365. package/services/Dialog/Dialog.js +92 -0
  366. package/services/Dialog/DialogBackground.d.ts +7 -0
  367. package/services/Dialog/DialogBackground.js +12 -0
  368. package/services/Dialog/DialogContent.d.ts +25 -0
  369. package/services/Dialog/DialogContent.js +38 -0
  370. package/services/Dialog/DialogFooter.d.ts +24 -0
  371. package/services/Dialog/DialogFooter.js +50 -0
  372. package/services/Dialog/DialogHeader.d.ts +18 -0
  373. package/services/Dialog/DialogHeader.js +36 -0
  374. package/services/Dialog/DialogWindow.d.ts +13 -0
  375. package/services/Dialog/DialogWindow.js +12 -0
  376. package/services/Dialog/XhrDialog.d.ts +34 -0
  377. package/services/Dialog/XhrDialog.js +321 -0
  378. package/services/Toast/IToastMessage.d.ts +10 -0
  379. package/services/Toast/IToastMessage.js +1 -0
  380. package/services/Toast/IToastProps.d.ts +23 -0
  381. package/services/Toast/IToastProps.js +1 -0
  382. package/services/Toast/Toast.d.ts +21 -0
  383. package/services/Toast/Toast.js +79 -0
  384. package/services/Toast/ToastContainer.d.ts +40 -0
  385. package/services/Toast/ToastContainer.js +65 -0
  386. package/services/Toast/ToastContext.d.ts +22 -0
  387. package/services/Toast/ToastContext.js +7 -0
  388. package/services/Toast/ToastProvider.d.ts +19 -0
  389. package/services/Toast/ToastProvider.js +67 -0
  390. package/services/Toast/index.d.ts +2 -0
  391. package/services/Toast/index.js +2 -0
  392. package/services/Toast/useToast.d.ts +5 -0
  393. package/services/Toast/useToast.js +9 -0
  394. package/spritemap.svg +1 -0
  395. package/styles/NormalTheme.d.ts +3 -0
  396. package/styles/NormalTheme.js +65 -0
  397. package/styles/StyleBase.d.ts +2 -0
  398. package/styles/StyleBase.js +8 -0
  399. package/styles/StyleReset.d.ts +2 -0
  400. package/styles/StyleReset.js +8 -0
  401. package/svg/editor/index.d.ts +10 -0
  402. package/svg/editor/index.js +11 -0
  403. package/svg/file/index.d.ts +5 -0
  404. package/svg/file/index.js +6 -0
  405. package/svg/icons/index.d.ts +36 -0
  406. package/svg/icons/index.js +37 -0
  407. package/svg/index.d.ts +11 -0
  408. package/svg/index.js +5 -0
  409. package/svg/menu/index.d.ts +8 -0
  410. package/svg/menu/index.js +9 -0
@@ -0,0 +1,67 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ var __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
23
+ import * as React from 'react';
24
+ import { ToastContext } from './ToastContext';
25
+ /**
26
+ * The `ToastProvider` is a React context that wraps both components that
27
+ * generate toasts (through `useToast`) and the `ToastContainer` that displays
28
+ * the toasts. By default, up to five toasts are displayed before the oldest
29
+ * toast is discarded.
30
+ */
31
+ var ToastProvider = function (_a) {
32
+ var _b = _a.maxToasts, maxToasts = _b === void 0 ? 5 : _b, props = __rest(_a, ["maxToasts"]);
33
+ //
34
+ // List of messages currently displayed.
35
+ //
36
+ var _c = React.useState({}), messages = _c[0], setMessages = _c[1];
37
+ /**
38
+ * Add a new toast. The `content` is the toast content. Optional properties
39
+ * can be provided.
40
+ */
41
+ var toast = function (content, options) {
42
+ setMessages(function (messages) {
43
+ // Remove excess messages:
44
+ while (Object.keys(messages).length >= maxToasts) {
45
+ delete messages[Object.keys(messages)[0]];
46
+ }
47
+ // Create new message:
48
+ var key = new Date().getTime().toString();
49
+ messages[key] = {
50
+ message: content,
51
+ options: options
52
+ };
53
+ return __assign({}, messages);
54
+ });
55
+ };
56
+ /**
57
+ * Remove a toast from the display list by key.
58
+ */
59
+ var remove = function (key) {
60
+ setMessages(function (messages) {
61
+ delete messages[key];
62
+ return __assign({}, messages);
63
+ });
64
+ };
65
+ return (React.createElement(ToastContext.Provider, { value: { toast: toast, messages: messages, remove: remove } }, props.children));
66
+ };
67
+ export { ToastProvider };
@@ -0,0 +1,2 @@
1
+ export { ToastContainer } from './ToastContainer';
2
+ export { useToast } from './useToast';
@@ -0,0 +1,2 @@
1
+ export { ToastContainer } from './ToastContainer';
2
+ export { useToast } from './useToast';
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Returns the Toast Context.
3
+ */
4
+ declare const useToast: () => import("./ToastContext").IToastContext;
5
+ export { useToast };
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import { ToastContext } from './ToastContext';
3
+ /**
4
+ * Returns the Toast Context.
5
+ */
6
+ var useToast = function () {
7
+ return React.useContext(ToastContext);
8
+ };
9
+ export { useToast };
package/spritemap.svg ADDED
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg"><symbol id="editor-bold" viewBox="0 0 384 512"><path d="M0 64c0-17.7 14.3-32 32-32h192c70.7 0 128 57.3 128 128 0 31.3-11.3 60.1-30 82.3 37.1 22.4 62 63.1 62 109.7 0 70.7-57.3 128-128 128H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V96H32C14.3 96 0 81.7 0 64zm224 160c35.3 0 64-28.7 64-64s-28.7-64-64-64H112v128h112zm-112 64v128h144c35.3 0 64-28.7 64-64s-28.7-64-64-64H112z"/></symbol><symbol id="editor-bullet-list" viewBox="0 0 512 512"><path d="M64 144a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm128-80c-17.7 0-32 14.3-32 32s14.3 32 32 32h288c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32h288c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32h288c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zM64 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm48-208a48 48 0 1 0-96 0 48 48 0 1 0 96 0z"/></symbol><symbol id="editor-code-block" viewBox="0 0 28 28"><path d="M20 17.746c0 .333.125.653.351.888s.532.367.852.366.625-.135.849-.372l3.597-3.75c.225-.235.351-.553.351-.884s-.126-.65-.351-.884l-3.597-3.75a1.164 1.164 0 0 0-1.155-.317c-.412.117-.733.452-.845.881s.005.889.305 1.204l2.75 2.866-2.75 2.867a1.278 1.278 0 0 0-.357.885ZM8 10.254c0-.333-.125-.653-.351-.888S7.117 8.999 6.797 9s-.625.135-.849.372l-3.597 3.75c-.225.235-.351.553-.351.884s.126.65.351.884l3.597 3.75c.304.313.744.433 1.155.317.412-.117.733-.452.845-.881s-.005-.889-.305-1.204l-2.75-2.866 2.75-2.867c.228-.233.356-.553.357-.885Zm4.236 9.744c.415-.026.787-.276.973-.66l4.666-9.598c.14-.284.163-.615.065-.918s-.308-.552-.585-.695a1.138 1.138 0 0 0-.892-.065c-.294.101-.536.32-.675.604l-4.666 9.6c-.185.384-.158.839.072 1.196.228.357.625.562 1.042.536Z"/></symbol><symbol id="editor-code" viewBox="0 0 640 512"><path d="M392.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6zm80.6 120.1c-12.5 12.5-12.5 32.8 0 45.3l89.3 89.4-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3z"/></symbol><symbol id="editor-italic" viewBox="0 0 384 512"><path d="M128 64c0-17.7 14.3-32 32-32h192c17.7 0 32 14.3 32 32s-14.3 32-32 32h-58.7L160 416h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h58.7L224 96h-64c-17.7 0-32-14.3-32-32z"/></symbol><symbol id="editor-link" viewBox="0 0 640 512"><path d="M579.8 267.7c56.5-56.5 56.5-148 0-204.5-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6 31.5 31.5 31.5 82.5 0 114L422.3 334.8c-31.5 31.5-82.5 31.5-114 0-27.9-27.9-31.5-71.8-8.6-103.8l1.1-1.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-6.9-44.6 7.4l-1.1 1.6C206.5 251.2 213 330 263 380c56.5 56.5 148 56.5 204.5 0l112.3-112.3zM60.2 244.3c-56.5 56.5-56.5 148 0 204.5 50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5l112.2-112.3c31.5-31.5 82.5-31.5 114 0 27.9 27.9 31.5 71.8 8.6 103.9l-1.1 1.6c-10.3 14.4-6.9 34.4 7.4 44.6s34.4 6.9 44.6-7.4l1.1-1.6C433.5 260.8 427 182 377 132c-56.5-56.5-148-56.5-204.5 0L60.2 244.3z"/></symbol><symbol id="editor-ordered-list" viewBox="0 0 512 512"><path d="M24 56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v120h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H40c-13.3 0-24-10.7-24-24s10.7-24 24-24h16V80h-8c-13.3 0-24-10.7-24-24zm62.7 285.2c-6.5-7.4-18.3-6.9-24 1.2l-11.2 15.5c-7.7 10.8-22.7 13.3-33.5 5.6S4.7 340.8 12.4 330l11.1-15.6c23.7-33.2 72.3-35.6 99.2-4.9 21.3 24.4 20.8 60.9-1.1 84.7L86.8 432H120c13.3 0 24 10.7 24 24s-10.7 24-24 24H32c-9.5 0-18.2-5.6-22-14.4s-2.1-18.9 4.3-25.9l72-78c5.3-5.8 5.4-14.6.3-20.5zM224 64h256c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160h256c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160h256c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32z"/></symbol><symbol id="editor-strikethrough" viewBox="0 0 512 512"><path d="M161.3 144c3.2-17.2 14-30.1 33.7-38.6 21.1-9 51.8-12.3 88.6-6.5 11.9 1.9 48.8 9.1 60.1 12 17.1 4.5 34.6-5.6 39.2-22.7s-5.6-34.6-22.7-39.2c-14.3-3.8-53.6-11.4-66.6-13.4-44.7-7-88.3-4.2-123.7 10.9-36.5 15.6-64.4 44.8-71.8 87.3-.1.6-.2 1.1-.2 1.7-2.8 23.9.5 45.6 10.1 64.6 4.5 9 10.2 16.9 16.7 23.9H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h448c17.7 0 32-14.3 32-32s-14.3-32-32-32H270.1l-.4-.1-1.1-.3c-36-10.8-65.2-19.6-85.2-33.1-9.3-6.3-15-12.6-18.2-19.1-3.1-6.1-5.2-14.6-3.8-27.4zm187.6 193.2c2.7 6.5 4.4 15.8 1.9 30.1-3 17.6-13.8 30.8-33.9 39.4-21.1 9-51.7 12.3-88.5 6.5-18-2.9-49.1-13.5-74.4-22.1-5.6-1.9-11-3.7-15.9-5.4-16.8-5.6-34.9 3.5-40.5 20.3s3.5 34.9 20.3 40.5c3.6 1.2 7.9 2.7 12.7 4.3 24.9 8.5 63.6 21.7 87.6 25.6h.2c44.7 7 88.3 4.2 123.7-10.9 36.5-15.6 64.4-44.8 71.8-87.3 3.6-21 2.7-40.4-3.1-58.1h-75.7c7 5.6 11.4 11.2 13.9 17.2z"/></symbol><symbol id="file-csv" viewBox="0 0 28 28"><defs><style>.cls-3{fill:#494949}.cls-5{fill:#107c41}.cls-8{fill:#185c37}.cls-2{fill:#fff}</style><mask id="mask" x="7.069" y="4.284" width="16.855" height="20.39" maskUnits="userSpaceOnUse"><path d="M23.054 4.284H7.94a.87.87 0 0 0-.87.87v18.455c0 .48.39.87.87.87h15.115c.48 0 .87-.39.87-.87V5.154a.87.87 0 0 0-.87-.87Z" style="fill:#d9d9d9" id="mask0_641_1559"/></mask></defs><g style="mask:url(#mask)"><path d="M23.924 4.284H7.07v5.098h16.855V4.283Z" style="fill:#b3b3b3"/><path class="cls-2" d="M13.907 4.284H7.069v5.098h6.838V4.283Zm10.017 5.098H7.07v5.097h16.855V9.382Z"/><path class="cls-3" d="M23.924 14.48H7.07v5.097h16.855v-5.098Z"/><path d="M23.924 19.577H7.07v5.097h16.855v-5.097Z" style="fill:#262626"/><path d="M13.907 9.329H7.069V14.5h6.838V9.328Z" style="fill:#7c7c7c"/><path d="M13.907 14.482H7.069v5.18h6.838v-5.18Z" style="fill:#606060"/></g><path class="cls-3" d="M14.817 8.85H4.769a.87.87 0 0 0-.87.87v9.906c0 .48.39.87.87.87h10.048c.48 0 .87-.39.87-.87V9.721a.87.87 0 0 0-.87-.87Z"/><path d="m12.509 15.571.813-2.527h.589l-1.109 3.092h-.397l.104-.565Zm-.752-2.527.807 2.527.11.565h-.399l-1.104-3.092h.586Zm-1.326 2.296c0-.064-.01-.12-.03-.17a.332.332 0 0 0-.1-.136.82.82 0 0 0-.203-.119 2.706 2.706 0 0 0-.331-.121 3.672 3.672 0 0 1-.408-.15 1.55 1.55 0 0 1-.323-.196.72.72 0 0 1-.291-.595.75.75 0 0 1 .079-.344.802.802 0 0 1 .227-.268c.099-.076.216-.135.35-.176.135-.042.284-.064.446-.064.23 0 .427.043.593.128a.944.944 0 0 1 .384.342c.091.143.136.3.136.473h-.529a.54.54 0 0 0-.065-.27.447.447 0 0 0-.196-.186.705.705 0 0 0-.329-.068.76.76 0 0 0-.314.057.42.42 0 0 0-.187.155.405.405 0 0 0-.062.221c0 .058.014.111.04.16.027.046.068.09.124.131.055.04.124.077.208.113.083.035.182.069.295.102.171.05.32.107.448.17.128.06.234.13.319.208a.77.77 0 0 1 .255.599c0 .13-.027.247-.079.352a.762.762 0 0 1-.225.266 1.08 1.08 0 0 1-.348.168 1.648 1.648 0 0 1-.45.057c-.15 0-.296-.02-.44-.06-.143-.04-.274-.1-.391-.18a.934.934 0 0 1-.28-.306.864.864 0 0 1-.105-.431h.533c0 .1.017.186.051.257.036.07.085.129.147.174a.662.662 0 0 0 .217.098c.083.02.172.032.267.032a.803.803 0 0 0 .312-.054.411.411 0 0 0 .192-.148.39.39 0 0 0 .063-.221Zm-2.652-.21h.53a1.225 1.225 0 0 1-.17.541c-.095.157-.23.281-.405.372s-.386.136-.635.136c-.191 0-.363-.034-.516-.102a1.132 1.132 0 0 1-.393-.293 1.326 1.326 0 0 1-.25-.461 2.004 2.004 0 0 1-.086-.603v-.257c0-.223.03-.424.088-.604.06-.18.144-.333.255-.46.11-.13.242-.228.397-.296.155-.068.33-.102.524-.102.247 0 .455.046.625.136a.98.98 0 0 1 .395.376c.095.16.153.344.174.55h-.531a.98.98 0 0 0-.093-.342.482.482 0 0 0-.209-.216.744.744 0 0 0-.36-.077.704.704 0 0 0-.32.068.603.603 0 0 0-.227.2.963.963 0 0 0-.138.325c-.03.127-.044.273-.044.437v.262c0 .155.013.297.04.424.028.126.07.235.128.325a.605.605 0 0 0 .22.21c.09.05.197.075.321.075a.804.804 0 0 0 .367-.072.48.48 0 0 0 .215-.21.963.963 0 0 0 .098-.342Z" style="fill:#fff"/></symbol><symbol id="file-excel" viewBox="0 0 28 28"><defs><mask id="mask" x="7.159" y="3.807" width="16.852" height="20.387" maskUnits="userSpaceOnUse"><path d="M23.141 3.807H8.029a.87.87 0 0 0-.87.87v18.452c0 .48.39.87.87.87H23.14c.48 0 .87-.39.87-.87V4.676a.87.87 0 0 0-.87-.87Z" style="fill:#d9d9d9" id="mask0_641_1561"/></mask></defs><g style="mask:url(#mask)"><path d="M24.01 3.807H7.16v5.096h16.85V3.807Z" style="fill:#33c481"/><path class="cls-2" d="M13.995 3.807H7.16v5.096h6.836V3.807ZM24.01 8.903H7.16V14h16.85V8.903Z"/><path class="cls-5" d="M24.01 14H7.16v5.097h16.85V14Z"/><path class="cls-8" d="M24.01 19.097H7.16v5.096h16.85v-5.096Z"/><path class="cls-5" d="M13.995 8.85H7.16v5.17h6.836V8.85Z"/><path class="cls-8" d="M13.995 14.003H7.16v5.18h6.836v-5.18Z"/></g><path d="M14.905 8.373H4.859a.87.87 0 0 0-.87.87v9.903c0 .48.39.87.87.87h10.046c.48 0 .87-.39.87-.87V9.242a.87.87 0 0 0-.87-.87Z" style="fill:#138146"/><path d="m8.574 11.188 1.312 2.256 1.312-2.256h1.228l-1.869 3.063 1.916 3.121h-1.24l-1.347-2.297-1.346 2.297H7.295l1.92-3.121-1.873-3.063h1.232Z" style="fill:#fff"/></symbol><symbol id="file-pdf" viewBox="0 0 28 28"><path d="M18.857 4.643a1.554 1.554 0 0 0-1.113-.473H5.957a.85.85 0 0 0-.84.862v18.277a.85.85 0 0 0 .84.861h14.587a.85.85 0 0 0 .84-.861V7.905c0-.429-.166-.84-.462-1.143l-2.065-2.119Z" style="fill:#f04950;fill-rule:evenodd"/><path d="M13.592 16.74c0-.477.258-.862.575-.862h6.642c.317 0 .575.385.575.861v4.806h-7.217c-.317 0-.575-.386-.575-.861v-3.945Z" style="fill:#aa464a"/><path class="cls-2" d="M8.934 17.535c.376 0 1.014-.25 2.241-2.388a17.472 17.472 0 0 1 2.251-.828c.557-.163 1.116-.29 1.66-.38.9.543 1.944.89 2.688.89.822 0 .907-.457.914-.597a.679.679 0 0 0-.201-.514c-.298-.308-.906-.463-1.807-.463-.448 0-.943.04-1.474.118-.536-.348-.979-.759-1.285-1.19a8.28 8.28 0 0 1-.76-1.322c.588-1.692.702-2.803.34-3.303a.726.726 0 0 0-.613-.302.784.784 0 0 0-.682.362c-.468.705-.104 2.176.365 3.266a22.138 22.138 0 0 1-.792 1.9 30.69 30.69 0 0 1-.997 1.947c-.921.429-2.39 1.226-2.53 2.002a.647.647 0 0 0 .195.596.686.686 0 0 0 .487.206Zm7.746-3.74c1.041 0 1.341.227 1.409.296a.15.15 0 0 1 .049.122c-.01.016-.103.075-.364.075-.408 0-1.054-.146-1.749-.465.229-.018.447-.027.655-.027Zm-4.014-5.88a.24.24 0 0 1 .221-.118c.092 0 .133.03.165.075.162.223.173.911-.21 2.192-.354-1.043-.372-1.855-.176-2.15Zm-.388 5.096c.221-.47.428-.95.61-1.413l.008.016.011-.033c.171.319.36.623.562.91.251.355.58.694.97 1.001l-.055.009.024.014c-.378.079-.758.174-1.138.285-.555.162-1.116.355-1.653.57l.018-.03-.022.01c.218-.416.44-.864.665-1.339Zm-3.484 3.816c.045-.253.517-.703 1.465-1.225-.85 1.315-1.245 1.392-1.325 1.392-.026 0-.056-.006-.098-.047-.045-.044-.05-.077-.042-.12Z"/><path d="M13.25 16.432a.87.87 0 0 1 .876-.862h10.116a.87.87 0 0 1 .876.862v3.944a.869.869 0 0 1-.876.862H14.126a.869.869 0 0 1-.876-.862v-3.944Z" style="fill:#402829"/><path class="cls-2" d="M21.207 16.79v3.063h-.537v-3.062h.537Zm1.27 1.34v.42H21.07v-.42h1.407Zm.178-1.34v.422H21.07v-.421h1.585ZM18.7 19.853h-.665l.004-.418h.66a.882.882 0 0 0 .484-.124.758.758 0 0 0 .295-.356c.067-.154.1-.338.1-.55v-.167c0-.165-.018-.312-.057-.44a.857.857 0 0 0-.167-.321.698.698 0 0 0-.27-.198.927.927 0 0 0-.365-.067h-.697v-.421h.697c.207 0 .396.034.567.103.17.067.318.165.442.292.126.128.222.28.29.459.066.178.1.377.1.597v.162c0 .22-.034.42-.1.598-.068.178-.164.33-.29.458a1.296 1.296 0 0 1-.449.292 1.583 1.583 0 0 1-.58.101Zm-.368-3.062v3.062h-.537v-3.062h.537Zm-2.161 1.92h-.81v-.418h.81a.747.747 0 0 0 .342-.068.424.424 0 0 0 .19-.185.587.587 0 0 0 .063-.273.608.608 0 0 0-.062-.272.468.468 0 0 0-.19-.206.662.662 0 0 0-.343-.077h-.646v2.641h-.536v-3.062h1.182c.241 0 .446.042.614.126a.895.895 0 0 1 .52.846c0 .197-.045.367-.133.509s-.217.25-.387.326a1.49 1.49 0 0 1-.614.113Z"/></symbol><symbol id="icon-arrow" viewBox="0 0 28 28"><path d="M24.507 14.56a1.47 1.47 0 0 0 0-2.124l-7.734-7.5a1.584 1.584 0 0 0-2.19 0 1.47 1.47 0 0 0 0 2.123l5.1 4.941H4.853c-.855 0-1.547.67-1.547 1.5S3.998 15 4.853 15h14.825l-5.09 4.94a1.47 1.47 0 0 0 0 2.124 1.584 1.584 0 0 0 2.19 0l7.734-7.5-.005-.005Z"/></symbol><symbol id="icon-brush" viewBox="0 0 28 28"><path d="M12 12.95V14h-1v9h3v-9h-1v-1m4.026 0h2.811c.684.027 1.292-.518 1.748-1.53.076-.233.532-1.323 0-2.49-.608-1.324-1.292-1.635-1.824-1.635-.296 0-.761-.032-.761-.032V5.918A.918.918 0 0 0 18.082 5H6.918A.918.918 0 0 0 6 5.918v4.164c0 .507.411.918.918.918h11.164a.918.918 0 0 0 .918-.918V8.407a6.1 6.1 0 0 0 .61.027c.151 0 .455.078.835.935.304.7 0 1.479 0 1.479a3.98 3.98 0 0 1-.436.769.915.915 0 0 1-.747.383H16.98c-.02 0-.039 0-.058-.002-1.976-.14-4.922-.216-4.922-.216"/></symbol><symbol id="icon-calendar" viewBox="0 0 28 28"><path d="m7.282 23.586-.919.001c-.253 0-.508.011-.76-.027-.992-.15-1.54-1.008-1.542-1.957V8.61c.002-.96.323-1.817 1.367-2.097.396-.107.853-.067 1.261-.068h1.326c.048-.508-.11-1.146.208-1.577.562-.765 2.03-.552 2.123.525.027.32-.056.65 0 1.05l7.31.016c-.027-.276-.04-.955.03-1.237l.005-.022c.128-.5.575-.73 1.06-.773l.094-.004c.875-.008 1.14.62 1.142 1.388l.001.63 1.513.005c.314 0 .668-.023.975.046.88.197 1.458.94 1.463 1.84V21.41c-.001.188.004.385-.023.57-.114.787-.727 1.46-1.525 1.579-.226.034-.457.028-.685.028H7.282ZM5.93 12.136c-.07.003-.262-.011-.316.02v9.852h16.42l.335-.003.011-9.868H5.93Z"/><path d="m10.337 16.37-2.297.007-.013-2.086 2.29.01.02 2.068Zm4.801.006-2.311.006-.002-2.086 2.297.016.016 2.064Zm4.795.003-2.293-.009.002-2.074 2.31.012-.02 2.07Zm-9.605 3.453-2.289.004v-2.088l2.29.004v2.08Zm4.801 0-2.298-.006-.008-2.077 2.304-.001c.017.042.004.106.002.152v1.932Zm4.804-.002-2.288.003.003-2.085 2.289-.002c.03.524.008 1.057.009 1.58l.003.356c0 .05.015.106-.016.149Z"/></symbol><symbol id="icon-caret" viewBox="0 0 28 28"><path d="m13.402 18.345-6.388-6.987A.81.81 0 0 1 7.613 10h12.774a.81.81 0 0 1 .599 1.358l-6.387 6.987a.81.81 0 0 1-1.197 0Z"/></symbol><symbol id="icon-check" viewBox="0 0 28 28"><path d="M22.802 7.464a1.5 1.5 0 0 1-.02 2L12.4 20.85a1.5 1.5 0 0 1-2.066.143L4.87 16.457a1.5 1.5 0 0 1-.169-2.143l.332-.379a1.5 1.5 0 0 1 2.006-.227l3.31 2.39a1.5 1.5 0 0 0 1.986-.205l7.972-8.744a1.5 1.5 0 0 1 2.237.022l.257.293Z"/></symbol><symbol id="icon-chevron" viewBox="0 0 28 28"><path d="m14.487 14 4.133 3.98a1.22 1.22 0 0 1 0 1.77l-.919.884a1.334 1.334 0 0 1-1.836 0l-4.133-3.98L9 14l2.732-2.654 4.133-3.98a1.334 1.334 0 0 1 1.836 0l.919.885c.507.488.507 1.28 0 1.769L14.487 14Z"/></symbol><symbol id="icon-circle" viewBox="0 0 28 28"><path d="M14.059 23.5c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5Zm0-17c-4.1 0-7.5 3.4-7.5 7.5s3.4 7.5 7.5 7.5 7.5-3.4 7.5-7.5-3.4-7.5-7.5-7.5Z"/></symbol><symbol id="icon-cmd" viewBox="0 0 28 28"><path d="M21.4 16.8h-2.2v-5.6h2.2c2.536 0 4.6-2.064 4.6-4.6S23.936 2 21.4 2s-4.6 2.064-4.6 4.6v2.2h-5.6V6.6C11.2 4.064 9.136 2 6.6 2S2 4.064 2 6.6s2.064 4.6 4.6 4.6h2.2v5.6H6.6c-2.536 0-4.6 2.064-4.6 4.6S4.064 26 6.6 26s4.6-2.064 4.6-4.6v-2.2h5.6v2.2c0 2.536 2.064 4.6 4.6 4.6s4.6-2.064 4.6-4.6-2.064-4.6-4.6-4.6ZM19.2 6.6c0-1.212.988-2.2 2.2-2.2s2.2.988 2.2 2.2-.988 2.2-2.2 2.2h-2.2V6.6ZM8.8 21.4c0 1.212-.988 2.2-2.2 2.2s-2.2-.988-2.2-2.2.988-2.2 2.2-2.2h2.2v2.2Zm0-12.6H6.6c-1.212 0-2.2-.988-2.2-2.2s.988-2.2 2.2-2.2 2.2.988 2.2 2.2v2.2Zm8 8h-5.6v-5.6h5.6v5.6Zm4.6 6.8c-1.212 0-2.2-.988-2.2-2.2v-2.2h2.2c1.212 0 2.2.988 2.2 2.2s-.988 2.2-2.2 2.2Z"/></symbol><symbol id="icon-columns" viewBox="0 0 28 28"><path d="M10.844 9h-6.75a1.5 1.5 0 0 0 0 3h6.75a1.5 1.5 0 0 0 0-3Zm0 6h-6.75a1.5 1.5 0 0 0 0 3h6.75a1.5 1.5 0 0 0 0-3Zm6.312-9h6.75a1.5 1.5 0 0 0 0-3h-6.75a1.5 1.5 0 0 0 0 3ZM6.891 21H4.266a1.5 1.5 0 0 0 0 3H6.89a1.5 1.5 0 0 0 0-3Zm3.953-18h-6.75a1.5 1.5 0 0 0 0 3h6.75a1.5 1.5 0 0 0 0-3Zm13.062 6h-6.75a1.5 1.5 0 0 0 0 3h6.75a1.5 1.5 0 0 0 0-3Zm0 6h-6.75a1.5 1.5 0 0 0 0 3h6.75a1.5 1.5 0 0 0 0-3Zm-3.953 6h-2.625a1.5 1.5 0 0 0 0 3h2.625a1.5 1.5 0 0 0 0-3Z"/></symbol><symbol id="icon-compass" viewBox="0 0 28 28"><path d="M14 6.212 10.081 13h7.838L14 6.212Zm0 15.576L17.919 15H10.08L14 21.788Z"/></symbol><symbol id="icon-copy" viewBox="0 0 28 28"><path d="M8.031 4.803h7.593c.56 0 1.067.23 1.434.6.368.37.597.883.597 1.446v1.514h2.314c.56 0 1.067.23 1.435.601.367.37.596.883.596 1.446v10.346a2.047 2.047 0 0 1-2.031 2.046h-7.593c-.56 0-1.067-.23-1.435-.6a2.05 2.05 0 0 1-.596-1.446v-1.514H8.031c-.56 0-1.067-.23-1.435-.601A2.05 2.05 0 0 1 6 17.195V6.849a2.047 2.047 0 0 1 2.031-2.046Zm9.624 4.767v7.625a2.047 2.047 0 0 1-2.031 2.047h-4.081v1.514a.842.842 0 0 0 .833.84h7.593a.84.84 0 0 0 .834-.84V10.41a.842.842 0 0 0-.834-.84h-2.314Zm-2.031-3.56H8.03a.84.84 0 0 0-.834.84v10.345a.84.84 0 0 0 .834.84h7.592a.84.84 0 0 0 .834-.84V6.85a.842.842 0 0 0-.833-.84Z"/></symbol><symbol id="icon-cross" viewBox="0 0 21 21"><path d="M15.221 6.941a.748.748 0 0 0-1.057-1.057l-3.31 3.31a.5.5 0 0 1-.708 0l-3.31-3.31A.748.748 0 0 0 5.78 6.94l3.31 3.31a.5.5 0 0 1 0 .707l-3.31 3.31a.748.748 0 0 0 1.057 1.058l3.31-3.31a.5.5 0 0 1 .708 0l3.31 3.31a.748.748 0 0 0 1.057-1.057l-3.31-3.31a.5.5 0 0 1 0-.708l3.31-3.31Z"/></symbol><symbol id="icon-crosshairs" viewBox="0 0 28 28"><path d="M14 16.799c1.544 0 2.796-1.253 2.796-2.799S15.544 11.201 14 11.201s-2.796 1.253-2.796 2.8 1.252 2.798 2.796 2.798Z"/><path d="M23.536 13.514h-2.071a7.485 7.485 0 0 0-7.003-7.01v-2.04C14.464 4.207 14.255 4 14 4s-.464.207-.464.464v2.041a7.486 7.486 0 0 0-7.003 7.01h-2.07a.464.464 0 0 0 0 .929h2.07a7.485 7.485 0 0 0 7.003 7.01v2.082a.464.464 0 1 0 .928 0V21.45c3.761-.229 6.772-3.243 7.003-7.01h2.07a.464.464 0 0 0 0-.926ZM14 17.714c-2.061 0-3.731-1.673-3.731-3.736a3.733 3.733 0 1 1 7.463 0A3.732 3.732 0 0 1 14 17.713Z"/></symbol><symbol id="icon-delete" viewBox="0 0 28 28"><path d="M8.13 21.239c0 1.084.847 1.963 1.891 1.963h7.957c1.044 0 1.891-.879 1.891-1.963V8.896H8.13v12.343Zm8.723-15.368-.623-1.073h-4.46l-.623 1.073h-3.72v2.38h13.146v-2.38h-3.72Z"/></symbol><symbol id="icon-download" viewBox="0 0 28 28"><path d="M13.247 8.94v11.033l-5.87-5.724a.704.704 0 0 0-.977 0l-.198.193a.662.662 0 0 0 0 .953l6.623 6.458L13.999 23l1.176-1.146 6.623-6.459a.662.662 0 0 0 0-.953l-.198-.193a.704.704 0 0 0-.978 0l-5.87 5.724V8.941a.683.683 0 0 0-.69-.674h-.124a.683.683 0 0 0-.691.674ZM22 5.86v-.287A.58.58 0 0 0 21.412 5H6.588A.58.58 0 0 0 6 5.573v.287a.58.58 0 0 0 .588.573h14.824A.58.58 0 0 0 22 5.86Z"/></symbol><symbol id="icon-edit" viewBox="0 0 28 28"><path d="M17.452 6.353 15.89 7.915l4.195 4.194 1.561-1.561a2.065 2.065 0 0 0 0-2.92l-1.27-1.275a2.064 2.064 0 0 0-2.921 0h-.003Zm-2.291 2.29L7.639 16.17c-.335.335-.58.752-.716 1.207l-1.143 3.88a.774.774 0 0 0 .958.965l3.882-1.142c.455-.136.87-.381 1.206-.717l7.528-7.524-4.194-4.195Z"/></symbol><symbol id="icon-expand" viewBox="0 0 28 28"><path d="M9.5 14.6c.4-.4.4-1 0-1.4L4.7 8.4c-.4-.4-.4-1 0-1.4l2.1-2.1c.4-.4 1-.4 1.4 0l8.4 8.4c.4.4.4 1 0 1.4l-8.4 8.4c-.4.4-1 .4-1.4 0L4.7 21c-.4-.4-.4-1 0-1.4l4.8-5ZM21 23c-.6 0-1-.4-1-1V6c0-.6.4-1 1-1h2c.6 0 1 .4 1 1v16c0 .6-.4 1-1 1h-2Z"/></symbol><symbol id="icon-export" viewBox="0 0 28 28"><path d="M22.5 9.6c0-.314-.077-.55-.308-.786l-5.307-5.5c-.231-.235-.462-.314-.77-.314H6.577c-.308 0-.539.079-.77.314-.23.236-.307.472-.307.786v19.8c0 .314.077.55.308.786.23.235.461.314.769.314h14.846c.308 0 .538-.079.77-.314.23-.236.307-.472.307-.786v-4.321h-2.308V22.8H7.808l.077-17.443h6.923v3.929c0 .55.154.942.384 1.178.231.236.616.393 1.154.393h3.846v2.357H22.5V9.6Zm-5.462-3.614L19.5 8.5h-2.462V5.986Zm-1.307 13.278 1.692-2.121h-8v-2.279h7.692l-1.307-2.2 1.384-1.021 3.539 3.457c.23.236.307.471.307.786s-.077.55-.307.785l-3.616 3.615-1.384-1.022Z"/></symbol><symbol id="icon-eye" viewBox="0 0 28 28"><path d="M6.617 9.588C4.134 10.865 2.182 12.557 1.285 14c.897 1.443 2.848 3.135 5.332 4.412 4.933 2.537 9.833 2.537 14.766 0 2.483-1.277 4.435-2.969 5.332-4.412-.897-1.443-2.848-3.135-5.332-4.412-4.933-2.537-9.833-2.537-14.766 0Zm9.43 2.365a2.895 2.895 0 0 1 0 4.094c-1.82 1.819-4.941.524-4.941-2.047s3.122-3.866 4.94-2.047ZM14 10.04c3.517 0 5.29 4.272 2.8 6.762-2.488 2.489-6.761.716-6.761-2.801A3.961 3.961 0 0 1 14 10.039Z"/></symbol><symbol id="icon-filter" viewBox="0 0 28 28"><path d="M22.49 4.454a79.7 79.7 0 0 0-16.98 0C4.674 4.545 4 5.31 4 6.143v3.24c0 .52.274.995.723 1.258 1.849 1.087 3.704 2.274 5.56 3.495.446.292.717.81.717 1.365v6.85c0 1.242 1.293 2.049 2.29 1.394a180.628 180.628 0 0 0 3.007-2.018c.438-.299.703-.814.703-1.359v-4.867c0-.555.27-1.071.717-1.364 1.857-1.22 3.712-2.408 5.561-3.495.448-.264.722-.739.722-1.258V6.143c0-.833-.676-1.598-1.51-1.69Z"/></symbol><symbol id="icon-fullscreen" viewBox="0 0 28 28"><path d="M10.333 3H6.666A3.667 3.667 0 0 0 3 6.668v3.667a1.222 1.222 0 1 0 2.444 0V6.667c0-.675.547-1.222 1.222-1.222h3.667a1.222 1.222 0 0 0 0-2.444Zm13.445 13.444c-.675 0-1.222.548-1.222 1.223v3.666c0 .675-.547 1.222-1.222 1.222h-3.667a1.222 1.222 0 0 0 0 2.445h3.667A3.667 3.667 0 0 0 25 21.333v-3.666c0-.675-.547-1.223-1.222-1.223ZM21.333 3h-3.667a1.222 1.222 0 0 0 0 2.445h3.667c.675 0 1.222.547 1.222 1.222v3.666a1.222 1.222 0 1 0 2.445 0V6.667A3.667 3.667 0 0 0 21.333 3Zm-11 19.555H6.666a1.222 1.222 0 0 1-1.222-1.222v-3.666a1.222 1.222 0 0 0-2.444 0v3.666A3.667 3.667 0 0 0 6.666 25h3.667a1.222 1.222 0 0 0 0-2.445Z"/></symbol><symbol id="icon-help" viewBox="0 0 28 28"><path d="M14.294 25.273c-6.617 0-12-5.383-12-12s5.383-12 12-12 12 5.383 12 12-5.383 12-12 12Zm0-21.943c-5.52 0-9.977 4.457-9.977 9.943s4.457 9.977 9.977 9.977 9.977-4.457 9.977-9.977c-.034-5.485-4.491-9.943-9.977-9.943Z"/><path d="M13.986 16.599a1.032 1.032 0 0 1-1.03-1.029 3.539 3.539 0 0 1 2.504-3.394c.651-.206 1.097-.789 1.063-1.474 0-1.235-1.029-2.263-2.263-2.263s-2.263 1.029-2.263 2.263c0 .548-.446 1.028-1.029 1.028a1.032 1.032 0 0 1-1.028-1.028c.068-2.366 1.988-4.286 4.354-4.286s4.286 1.92 4.286 4.286a3.539 3.539 0 0 1-2.503 3.394c-.652.206-1.097.789-1.063 1.474 0 .549-.48 1.029-1.029 1.029Zm1.234 2.126a1.234 1.234 0 1 1-2.469 0 1.234 1.234 0 0 1 2.469 0"/></symbol><symbol id="icon-info" viewBox="0 0 28 28"><path d="M11.88 5.476c0-.565.223-1.107.62-1.507a2.115 2.115 0 0 1 3 0 2.136 2.136 0 0 1 0 3.014 2.115 2.115 0 0 1-3 0 2.136 2.136 0 0 1-.62-1.507ZM9.76 11.87c0-.786.631-1.42 1.413-1.42H14c.782 0 1.413.634 1.413 1.42v9.945h1.414c.782 0 1.414.634 1.414 1.42s-.632 1.42-1.414 1.42h-5.654c-.782 0-1.414-.634-1.414-1.42s.632-1.42 1.414-1.42h1.413V13.29h-1.413a1.416 1.416 0 0 1-1.414-1.42Z"/></symbol><symbol id="icon-language" viewBox="0 0 28 28"><path d="M26 25h-2.784l-1.07-3h-4.875l-1.077 3h-2.697l4.941-13h2.604L26 25Zm-4.573-5.069-1.705-4.903-1.712 4.903h3.417ZM12.175 9.127c.126-.486.201-.852.271-1.212l-2.199-.428c-.036.185-.102.533-.22 1a9.527 9.527 0 0 0-2.332-.041c.019-.537.052-1.063.098-1.569h2.456V4.794H8.088c.106-.531.198-.849.288-1.149L6.229 3c-.158.526-.29 1.042-.422 1.794H3.356v2.083H5.54a29.083 29.083 0 0 0-.103 2.077C3.024 9.84 2 11.529 2 13.061c0 1.809 1.427 3.399 3.684 3.194 2.802-.255 4.673-2.371 5.77-4.974 1.134.654 1.608 1.753 1.181 2.771-.396.941-1.561 1.838-3.785 1.792v2.242c2.469.038 4.898-.899 5.85-3.166.93-2.214-.132-4.635-2.525-5.793Zm-2.892 1.531c-.349.774-.809 1.543-1.395 2.149a22.454 22.454 0 0 1-.184-2.107 7.561 7.561 0 0 1 1.579-.042Zm-3.788.724c.062.947.169 1.818.317 2.596-1.996.365-2.076-1.603-.317-2.596Z"/></symbol><symbol id="icon-layers" viewBox="0 0 28 28"><path d="m7.352 11.387 6.364 3.181a.637.637 0 0 0 .568 0l6.364-3.181a.636.636 0 0 0 0-1.138l-6.364-3.182a.636.636 0 0 0-.568 0L7.352 10.25a.636.636 0 0 0 0 1.138ZM14 8.347l4.94 2.47-4.94 2.47-4.94-2.47L14 8.348Zm6.08 5.084L14 16.47l-6.08-3.04a.635.635 0 1 0-.569 1.137l6.365 3.182a.637.637 0 0 0 .568 0l6.364-3.182a.635.635 0 1 0-.569-1.137Zm0 3.182L14 19.652l-6.08-3.04a.635.635 0 1 0-.569 1.138l6.365 3.182a.637.637 0 0 0 .568 0l6.364-3.182a.635.635 0 1 0-.569-1.137Z" style="fill:#191919"/></symbol><symbol id="icon-leaf" viewBox="0 0 28 28"><path d="M16.144 12.038c-3 2.941-5.683 5.725-6.433 10.462 2.916-2.373 6.775-2.935 8.819-5.804 2.11-2.96 1.736-7.053 1.85-11.196-2.455 1.36-4.886 2.113-7.375 2.78-4.761 1.275-6.776 7.315-4.36 12.93 2.675-5.64 4.616-8.095 7.5-9.172Z"/></symbol><symbol id="icon-list" viewBox="0 0 28 28"><path d="M10.112 9h13.776c.704 0 1.275-.671 1.275-1.5S24.593 6 23.888 6H10.112c-.704 0-1.275.671-1.275 1.5S9.407 9 10.112 9ZM4.505 6h-.019C3.66 6 3 6.671 3 7.5S3.678 9 4.505 9 6 8.329 6 7.5 5.33 6 4.505 6Zm19.383 6H10.112c-.704 0-1.275.671-1.275 1.5s.57 1.5 1.275 1.5h13.776c.704 0 1.275-.671 1.275-1.5s-.57-1.5-1.275-1.5ZM4.505 12h-.019C3.66 12 3 12.671 3 13.5S3.678 15 4.505 15 6 14.329 6 13.5 5.33 12 4.505 12Zm0 6h-.019C3.66 18 3 18.671 3 19.5S3.678 21 4.505 21 6 20.329 6 19.5 5.33 18 4.505 18Zm19.383 0H10.112c-.704 0-1.275.671-1.275 1.5s.57 1.5 1.275 1.5h13.776c.704 0 1.275-.671 1.275-1.5s-.57-1.5-1.275-1.5Z" style="fill:#1e1e1e"/></symbol><symbol id="icon-locked" viewBox="0 0 28 28"><path d="M22.896 14.642c0-.578-.357-1.558-.792-2-.47-.477-1.343-1.054-2.163-1.054L20 8.765c-.004-1.422-.812-2.793-1.804-3.797s-2.172-1.407-3.574-1.408h-1.5c-1.404.002-2.63.373-3.622 1.379-.993 1.005-1.5 2-1.5 3.825v2.885c-.772.022-1.439.28-1.992.84a3.147 3.147 0 0 0-.904 2.21L5 21.44c0 .829.325 1.459.904 2.045.579.585 1.278.954 2.096.954h12c.818 0 1.518-.368 2.096-.955.579-.586.904-1.243.904-2.072l-.104-6.77ZM11 6.439c.5-.5 1.142-1 2-1h1.5c.859 0 1.892.385 2.5 1 .607.615.999 1.456 1 2.326l.104 2.876H9.875l.137-3.206c0-1.326.488-1.496.988-1.996Zm10 15.14c0 .275-.166.46-.359.655-.193.195-.368.344-.641.344H8c-.273 0-.534-.149-.727-.344A.927.927 0 0 1 7 21.54V14.4c0-.276.08-.454.273-.649a.944.944 0 0 1 .692-.305h11.949c.273 0 .534.11.727.305.193.195.359.412.359.69v7.138Z"/></symbol><symbol id="icon-minus" viewBox="0 0 28 28"><path d="M7.067 13h13.866c.59 0 1.067.448 1.067 1v1c0 .552-.478 1-1.067 1H7.067C6.477 16 6 15.552 6 15v-1c0-.552.478-1 1.067-1Z"/></symbol><symbol id="icon-plus" viewBox="0 0 28 28"><path d="M22.577 12H16V5.423C16 4.64 15.36 4 14.577 4h-1.154C12.64 4 12 4.64 12 5.423V12H5.423C4.64 12 4 12.64 4 13.423v1.154C4 15.36 4.64 16 5.423 16H12v6.577c0 .783.64 1.423 1.423 1.423h1.154C15.36 24 16 23.36 16 22.577V16h6.577C23.36 16 24 15.36 24 14.577v-1.154C24 12.64 23.36 12 22.577 12Z"/></symbol><symbol id="icon-reset" viewBox="0 0 28 28"><path d="M6.5 13H4.8c-.7 0-1.1.7-.9 1.2l3 5.4c.4.5 1 .5 1.4-.2l3-5.2c.2-.6-.2-1.2-.9-1.2H8.9c.458-2.75 2.68-4.575 5.357-4.86 3.708-.397 7.088 2.597 6.938 6.323C21.066 17.647 18.602 20.3 15 20.3v2.4c4.985 0 8.727-3.932 8.597-8.744-.117-4.298-3.599-7.902-7.886-8.229C11.103 5.376 7.133 8.465 6.5 13Z"/></symbol><symbol id="icon-search" viewBox="0 0 28 28"><path d="M11.737 21.474a9.683 9.683 0 0 0 5.428-1.657l5.633 5.633a1.877 1.877 0 1 0 2.655-2.655l-5.633-5.633a9.736 9.736 0 1 0-8.083 4.311Zm0-17.226a7.487 7.487 0 1 1-7.487 7.486 7.495 7.495 0 0 1 7.487-7.486Z"/></symbol><symbol id="icon-tag" viewBox="0 0 28 28"><path d="M6.195 4h6.835c.777 0 1.518.308 2.066.857l8.047 8.045a2.93 2.93 0 0 1 0 4.142l-6.1 6.099a2.93 2.93 0 0 1-4.141 0l-8.045-8.047A2.917 2.917 0 0 1 4 13.03V6.195C4 4.983 4.983 4 6.195 4Zm2.926 6.584a1.462 1.462 0 1 0-.001-2.926 1.462 1.462 0 1 0 0 2.926Z"/></symbol><symbol id="icon-unlocked" viewBox="0 0 28 28"><path d="M19.941 11.588 20 8.765c-.004-1.421-.811-2.792-1.804-3.796-.992-1.004-2.172-1.407-3.574-1.408h-1.5c-1.404.001-2.63.372-3.622 1.378-.993 1.006-1.5 2-1.5 3.826h2c0-1.326.5-1.826 1-2.326s1.142-.999 2-1h1.5c.859 0 1.892.385 2.5 1 .608.615.999 1.456 1 2.326l.104 2.876h-10c-.818 0-1.518.262-2.096.848a3.147 3.147 0 0 0-.904 2.211L5 21.439c0 .829.325 1.459.904 2.045.579.587 1.278.955 2.096.955h12c.818 0 1.517-.368 2.096-.955.579-.586.904-1.243.904-2.072l-.104-6.771c0-.578-.357-1.558-.792-2-.469-.477-1.343-1.053-2.163-1.053ZM21 21.579c0 .276-.166.46-.359.656-.193.195-.368.344-.641.344H8c-.273 0-.534-.149-.727-.344A.927.927 0 0 1 7 21.54V14.4c0-.276.08-.454.273-.649a.944.944 0 0 1 .692-.305h11.949c.273 0 .534.11.727.305.193.195.359.412.359.689v7.139Z"/></symbol><symbol id="menu-account" viewBox="0 0 28 28"><path d="M19.558 4.308c3.07 3.171 3.07 8.284 0 11.408-.372.379-.79.71-1.209 1.041a8.61 8.61 0 0 1 2 1.515A9.2 9.2 0 0 1 23 24.757c0 1.657-2.512 1.657-2.512 0a6.677 6.677 0 0 0-1.907-4.686c-2.511-2.556-6.65-2.556-9.162 0-1.21 1.183-1.907 2.84-1.907 4.686 0 1.657-2.512 1.657-2.512 0a9.2 9.2 0 0 1 2.651-6.485 7.525 7.525 0 0 1 1.953-1.515c-.465-.284-.883-.662-1.255-1.041-3.07-3.124-3.07-8.237 0-11.408 3.07-3.077 8.14-3.077 11.209 0Zm-1.767 1.798c-2.093-2.13-5.581-2.13-7.675 0-2.093 2.178-2.093 5.68 0 7.811 2.093 2.13 5.582 2.13 7.675 0s2.093-5.633 0-7.81Z"/></symbol><symbol id="menu-company" viewBox="0 0 28 28"><path d="m24.396 13.15-1.1-5.5c-.1-.3-.4-.6-.8-.6h-1v-3.2c0-.4-.4-.8-.8-.8h-13.3c-.4 0-.8.3-.8.8v3.2h-1.1c-.4 0-.7.3-.8.6l-1.1 5.5c-.2 1.2.2 2.4.9 3.3.3.3.7.5 1 .8v7.9c0 .4.2.8.6.8h15.6c.4 0 .7-.2.7-.7v-7.9c.3-.2.7-.6 1-.9.9-.9 1.2-2.1 1-3.3Zm-16-8.3h11.1v2.2h-11l-.1-2.2Zm8.1 3.1v6.7c0 .9-1.3 1.7-2.2 1.7h-.6c-.9 0-2.3-.8-2.3-1.7v-6.7h5.1Zm-10.8 7.5c-.5-.6-.7-1.3-.6-2l1-5.3h4.2v5.6c0 1.4-1.2 2.6-2.6 2.6-.8 0-1.5-.3-2-.9Zm10.9 9.6h-5.1v-4.2h5.1v4.2Zm5 0h-3.1v-5.2c0-.4-.4-.8-.8-.8h-7.3c-.4 0-.8.3-.8.8v5.2h-3.1v-7.2c.2 0 1 .1 1.3.1 1.3 0 2.4-1 3.2-1.9.6.9 1.6 1.9 2.8 1.9h.6c1.1 0 2.2-1 2.8-1.9.8.9 2.5 1.9 3.7 1.9.2 0 .5 0 .7-.1v7.2Zm.7-9.6c-.5.6-1.2.9-2 .9-1.5 0-2.8-1.2-2.8-2.6v-5.8h4.4l1 5.4c.1.8-.1 1.6-.6 2.1Z"/></symbol><symbol id="menu-inbox" viewBox="0 0 23 25"><path d="M16 .38H7.1c-.4 0-.8.2-1 .6-.2.4-.2.8 0 1.2.2.4.6.6 1 .6H16c.4 0 .8-.2 1-.6.2-.4.2-.8 0-1.2-.3-.4-.7-.6-1-.6Zm2.9 5.8H4.1c-.4 0-.8.2-1 .6-.2.4-.2.8 0 1.2.2.4.6.6 1 .6h14.8c.4 0 .8-.2 1-.6.2-.4.2-.8 0-1.2-.2-.4-.6-.6-1-.6Zm3.3 6.6c.5.5.8 1.2.8 1.9v5.4c0 1.1-.4 2.2-1.2 3-.8.8-1.8 1.2-2.9 1.2H4.1c-1.1 0-2.1-.4-2.9-1.2-.8-.8-1.2-1.9-1.2-3v-5.4c0-.7.3-1.4.8-1.9s1.1-.8 1.8-.8h4c.3 0 .7.1 1 .3.3.2.5.5.7.8l1 2h4.6l1-2c.2-.3.4-.6.7-.8.3-.2.6-.3 1-.3h4c.5 0 1.2.3 1.6.8Zm-2 8.7c.3-.4.5-.9.5-1.4v-5.8h-4.1l-1 2c-.2.3-.4.6-.7.8-.3.2-.6.3-1 .3h-5c-.3 0-.7-.1-1-.3-.3-.2-.5-.5-.7-.8l-1-2H2.1v5.8c0 .5.2 1 .5 1.4.3.4.8.6 1.3.6h14.8c.7 0 1.2-.2 1.5-.6Z"/></symbol><symbol id="menu-map-marker" viewBox="0 0 28 28"><path d="M13.9 19.15c-3.307 0-6.1-2.794-6.1-6.1s2.793-6.1 6.1-6.1c3.364 0 6.1 2.736 6.1 6.1 0 3.306-2.793 6.1-6.1 6.1Zm0-9.2c-1.68 0-3.1 1.42-3.1 3.1 0 1.68 1.42 3.1 3.1 3.1 1.68 0 3.1-1.42 3.1-3.1 0-1.71-1.39-3.1-3.1-3.1Zm-3.5 10.2 3.5 5.8 3.5-5.9c-1.1.4-1.7 1.1-3.5 1-1.9 0-2.4-.6-3.5-.9Z"/><path d="m21.662 20.61-2.123-2.12c1.073-1.073 1.853-2.518 2.196-4.066.324-1.456.174-3.054-.422-4.503-.6-1.46-1.634-2.703-2.908-3.499C17.102 5.554 15.469 5.05 14 5.05c-1.47 0-3.103.504-4.369 1.348-1.208.806-2.264 2.08-2.974 3.59a7.568 7.568 0 0 0-.394 4.435c.344 1.55 1.124 2.994 2.197 4.067l-2.123 2.12c-1.47-1.472-2.537-3.438-3.002-5.535-.456-2.049-.25-4.285.578-6.296.982-2.094 2.375-3.757 4.054-4.877C9.732 2.725 11.931 2.05 14 2.05s4.266.675 6.03 1.852c1.792 1.118 3.207 2.813 4.056 4.878.828 2.01 1.033 4.246.577 6.296-.465 2.096-1.532 4.062-3.002 5.535Z"/></symbol><symbol id="menu-signout" viewBox="0 0 28 28"><path d="M20 2H8a6 6 0 0 0-6 6v12a6 6 0 0 0 6 6h12a6 6 0 0 0 6-6V8a6 6 0 0 0-6-6Zm3 11H11.414l4.657-4.657a1 1 0 0 0-1.414-1.414l-6.364 6.364a1 1 0 0 0 0 1.414l6.364 6.364a1 1 0 0 0 1.414-1.414L11.414 15H23v5a3 3 0 0 1-3 3H8a3 3 0 0 1-3-3V8a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v5Z"/></symbol><symbol id="menu-standards" viewBox="0 0 28 28"><path d="M22.9 2.15H5.1c-1.2 0-2.1 1-2.1 2.2v19.3c0 1.2.9 2.2 2.1 2.2h17.8c1.2 0 2.1-1 2.1-2.2V4.35c0-1.3-.9-2.2-2.1-2.2Zm-11.7 21.1H5.1V4.85h6.1v18.4Zm11.7-.1h-9.8v-10h9.8v10Zm0-11.9h-9.8v-6.3h9.8v6.3Z"/></symbol></svg>
@@ -0,0 +1,3 @@
1
+ import { DefaultTheme } from 'styled-components';
2
+ declare const NormalTheme: DefaultTheme;
3
+ export { NormalTheme };
@@ -0,0 +1,65 @@
1
+ var NormalTheme = {
2
+ /* font: {
3
+ name: "Roboto",
4
+ normal: 400,
5
+ bold: 700
6
+ },
7
+ monoFont: {c
8
+ name: "Roboto Mono",
9
+ normal: 400,
10
+ bold: 700
11
+ }, */
12
+ font: {
13
+ bodySmall: 'normal 400 12px/16px Roboto, sans-serif',
14
+ bodyMedium: 'normal 400 14px/20px Roboto, sans-serif',
15
+ bodyLarge: 'normal 400 16px/20px Roboto, sans-serif',
16
+ dataSmall: 'normal 500 12px/20px "Roboto Mono", monospace',
17
+ dataLarge: 'normal 700 14px/20px "Roboto Mono", monospace',
18
+ labelCaps: 'small-caps 700 12px/16px Roboto, sans-serif',
19
+ labelSmall: 'normal 700 12px/16px Roboto, sans-serif',
20
+ labelMedium: 'italic 400 16px/20px Roboto, sans-serif',
21
+ labelLarge: 'normal 500 16px/20px Roboto, sans-serif',
22
+ headingSmall: 'normal 700 16px/24px Roboto, sans-serif',
23
+ headingMedium: 'normal 400 20px/28px Roboto, sans-serif',
24
+ headingLarge: 'normal 700 32px/36px Roboto, sans-serif'
25
+ },
26
+ radius: {
27
+ normal: 12,
28
+ strong: 16
29
+ },
30
+ colors: {
31
+ primary: {
32
+ 1: "#35abe2",
33
+ 2: "#3c698a",
34
+ 3: "#2c4253",
35
+ 4: "#273c44",
36
+ 5: "#1c242a"
37
+ },
38
+ neutral: {
39
+ 95: "#f3f3f3",
40
+ 100: "#ffffff",
41
+ 80: "#cccccc",
42
+ 50: "#808080",
43
+ 30: "#4c4c4c",
44
+ 10: "#191919"
45
+ },
46
+ font: "#fff",
47
+ accent: "#f6a44e",
48
+ positive: "#76b72d",
49
+ negative: "#e94a52"
50
+ },
51
+ shadows: {
52
+ small: "0px 1px 2px 0px rgba(0,0,0,0.3), 0px 1px 3px 1px rgba(0,0,0,0.15)",
53
+ medium: "0px 4px 8px 3px rgba(0,0,0,0.15), 0px 1px 3px 0px rgba(0,0,0,0.30)",
54
+ large: "0px 6px 10px 4px rgba(0,0,0,0.15), 0px 2px 3px 0px rgba(0,0,0,0.30)",
55
+ inner: "inset 0px 4px 8px 3px rgba(0,0,0,0.15), inset 0px 1px 3px 0px rgba(0,0,0,0.30)"
56
+ },
57
+ animation: {
58
+ duration: 100
59
+ },
60
+ screen: {
61
+ small: 576,
62
+ medium: 768
63
+ }
64
+ };
65
+ export { NormalTheme };
@@ -0,0 +1,2 @@
1
+ declare const StyleBase: import("react").NamedExoticComponent<import("styled-components").ExecutionProps & object>;
2
+ export { StyleBase };
@@ -0,0 +1,8 @@
1
+ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
2
+ if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
3
+ return cooked;
4
+ };
5
+ import { createGlobalStyle } from 'styled-components';
6
+ var StyleBase = createGlobalStyle(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n\n body {\n font-family: Roboto;\n font-style: normal;\n font-weight: 400;\n font-display: swap;\n color: ", ";\n }\n\n b, strong {\n font-weight: 700;\n }\n\n i, em {\n font-style: italic;\n }\n\n small, sub, sup { font-size: .83em; }\n sub { vertical-align: sub; }\n sup { vertical-align: super; }\n"], ["\n\n body {\n font-family: Roboto;\n font-style: normal;\n font-weight: 400;\n font-display: swap;\n color: ", ";\n }\n\n b, strong {\n font-weight: 700;\n }\n\n i, em {\n font-style: italic;\n }\n\n small, sub, sup { font-size: .83em; }\n sub { vertical-align: sub; }\n sup { vertical-align: super; }\n"])), function (p) { return p.theme.colors.font; });
7
+ export { StyleBase };
8
+ var templateObject_1;
@@ -0,0 +1,2 @@
1
+ declare const StyleReset: import("react").NamedExoticComponent<import("styled-components").ExecutionProps & object>;
2
+ export { StyleReset };
@@ -0,0 +1,8 @@
1
+ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
2
+ if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
3
+ return cooked;
4
+ };
5
+ import { createGlobalStyle } from 'styled-components';
6
+ var StyleReset = createGlobalStyle(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */\n\n /* Document\n ========================================================================== */\n\n /**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\n\n html {\n line-height: 1.15; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n }\n\n /* Sections\n ========================================================================== */\n\n /**\n * Remove the margin in all browsers.\n */\n\n body {\n margin: 0;\n }\n\n //\n // Render the <main> element consistently in IE.\n //\n\n main {\n display: block;\n }\n\n /**\n * Correct the font size and margin on <h1> elements within <section> and\n * <article> contexts in Chrome, Firefox, and Safari.\n */\n\n h1 {\n font-size: 2em;\n margin: 0.67em 0;\n }\n\n /* Grouping content\n ========================================================================== */\n\n /**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\n\n hr {\n box-sizing: content-box; /* 1 */\n height: 0; /* 1 */\n overflow: visible; /* 2 */\n }\n\n /**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd <em> font sizing in all browsers.\n */\n\n pre {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n }\n\n /* Text-level semantics\n ========================================================================== */\n\n /**\n * Remove the gray background on active links in IE 10.\n */\n\n a {\n background-color: transparent;\n }\n\n /**\n * 1. Remove the bottom border in Chrome 57-\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\n\n abbr[title] {\n border-bottom: none; /* 1 */\n text-decoration: underline; /* 2 */\n text-decoration: underline dotted; /* 2 */\n }\n\n /**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\n b,\n strong {\n font-weight: bolder;\n }\n\n /**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd <em> font sizing in all browsers.\n */\n\n code,\n kbd,\n samp {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n }\n\n /**\n * Add the correct font size in all browsers.\n */\n\n small {\n font-size: 80%;\n }\n\n /**\n * Prevent <sub> and <sup> elements from affecting the line height in\n * all browsers.\n */\n\n sub,\n sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n }\n\n sub {\n bottom: -0.25em;\n }\n\n sup {\n top: -0.5em;\n }\n\n /* Embedded content\n ========================================================================== */\n\n /**\n * Remove the border on images inside links in IE 10.\n */\n\n img {\n border-style: none;\n }\n\n /* Forms\n ========================================================================== */\n\n /**\n * 1. Change the font styles in all browsers.\n * 2. Remove the margin in Firefox and Safari.\n */\n\n button,\n input,\n optgroup,\n select,\n textarea {\n font-family: inherit; /* 1 */\n font-size: 100%; /* 1 */\n line-height: 1.15; /* 1 */\n margin: 0; /* 2 */\n }\n\n /**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\n\n button,\n input { /* 1 */\n overflow: visible;\n }\n\n /**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\n\n button,\n select { /* 1 */\n text-transform: none;\n }\n\n /**\n * Correct the inability to style clickable types in iOS and Safari.\n */\n\n button,\n [type=\"button\"],\n [type=\"reset\"],\n [type=\"submit\"] {\n -webkit-appearance: button;\n appearance: button;\n }\n\n /**\n * Remove the inner border and padding in Firefox.\n */\n\n button::-moz-focus-inner,\n [type=\"button\"]::-moz-focus-inner,\n [type=\"reset\"]::-moz-focus-inner,\n [type=\"submit\"]::-moz-focus-inner {\n border-style: none;\n padding: 0;\n }\n\n /**\n * Restore the focus styles unset by the previous rule.\n */\n\n button:-moz-focusring,\n [type=\"button\"]:-moz-focusring,\n [type=\"reset\"]:-moz-focusring,\n [type=\"submit\"]:-moz-focusring {\n outline: 1px dotted ButtonText;\n }\n\n /**\n * Correct the padding in Firefox.\n */\n\n fieldset {\n padding: 0.35em 0.75em 0.625em;\n }\n\n /**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color inheritance from <fieldset> elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n * <fieldset> elements in all browsers.\n */\n\n legend {\n box-sizing: border-box; /* 1 */\n color: inherit; /* 2 */\n display: table; /* 1 */\n max-width: 100%; /* 1 */\n padding: 0; /* 3 */\n white-space: normal; /* 1 */\n }\n\n /**\n * Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\n\n progress {\n vertical-align: baseline;\n }\n\n /**\n * Remove the default vertical scrollbar in IE 10+.\n */\n\n textarea {\n overflow: auto;\n }\n\n /**\n * 1. Add the correct box sizing in IE 10.\n * 2. Remove the padding in IE 10.\n */\n\n [type=\"checkbox\"],\n [type=\"radio\"] {\n box-sizing: border-box; /* 1 */\n padding: 0; /* 2 */\n }\n\n /**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n\n [type=\"number\"]::-webkit-inner-spin-button,\n [type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n }\n\n /**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n [type=\"search\"] {\n -webkit-appearance: textfield; /* 1 */\n appearance: textfield;\n outline-offset: -2px; /* 2 */\n }\n\n /**\n * Remove the inner padding in Chrome and Safari on macOS.\n */\n\n [type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n\n /**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to <inherit> in Safari.\n */\n\n ::-webkit-file-upload-button {\n -webkit-appearance: button; /* 1 */\n font: inherit; /* 2 */\n }\n\n /* Interactive\n ========================================================================== */\n\n /*\n * Add the correct display in Edge, IE 10+, and Firefox.\n */\n\n details {\n display: block;\n }\n\n /*\n * Add the correct display in all browsers.\n */\n\n summary {\n display: list-item;\n }\n\n /* Misc\n ========================================================================== */\n\n /**\n * Add the correct display in IE 10+.\n */\n\n template {\n display: none;\n }\n\n /**\n * Add the correct display in IE 10.\n */\n\n [hidden] {\n display: none;\n }\n\n\n /* // Extra stuff:\n b, strong {\n font-weight: 500;\n }\n\n i, em {\n font-style: italic;\n }\n\n small, sub, sup { font-size: .83em; }\n sub { vertical-align: sub; }\n sup { vertical-align: super; } */\n"], ["\n /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */\n\n /* Document\n ========================================================================== */\n\n /**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\n\n html {\n line-height: 1.15; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n }\n\n /* Sections\n ========================================================================== */\n\n /**\n * Remove the margin in all browsers.\n */\n\n body {\n margin: 0;\n }\n\n //\n // Render the <main> element consistently in IE.\n //\n\n main {\n display: block;\n }\n\n /**\n * Correct the font size and margin on <h1> elements within <section> and\n * <article> contexts in Chrome, Firefox, and Safari.\n */\n\n h1 {\n font-size: 2em;\n margin: 0.67em 0;\n }\n\n /* Grouping content\n ========================================================================== */\n\n /**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\n\n hr {\n box-sizing: content-box; /* 1 */\n height: 0; /* 1 */\n overflow: visible; /* 2 */\n }\n\n /**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd <em> font sizing in all browsers.\n */\n\n pre {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n }\n\n /* Text-level semantics\n ========================================================================== */\n\n /**\n * Remove the gray background on active links in IE 10.\n */\n\n a {\n background-color: transparent;\n }\n\n /**\n * 1. Remove the bottom border in Chrome 57-\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\n\n abbr[title] {\n border-bottom: none; /* 1 */\n text-decoration: underline; /* 2 */\n text-decoration: underline dotted; /* 2 */\n }\n\n /**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\n b,\n strong {\n font-weight: bolder;\n }\n\n /**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd <em> font sizing in all browsers.\n */\n\n code,\n kbd,\n samp {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n }\n\n /**\n * Add the correct font size in all browsers.\n */\n\n small {\n font-size: 80%;\n }\n\n /**\n * Prevent <sub> and <sup> elements from affecting the line height in\n * all browsers.\n */\n\n sub,\n sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n }\n\n sub {\n bottom: -0.25em;\n }\n\n sup {\n top: -0.5em;\n }\n\n /* Embedded content\n ========================================================================== */\n\n /**\n * Remove the border on images inside links in IE 10.\n */\n\n img {\n border-style: none;\n }\n\n /* Forms\n ========================================================================== */\n\n /**\n * 1. Change the font styles in all browsers.\n * 2. Remove the margin in Firefox and Safari.\n */\n\n button,\n input,\n optgroup,\n select,\n textarea {\n font-family: inherit; /* 1 */\n font-size: 100%; /* 1 */\n line-height: 1.15; /* 1 */\n margin: 0; /* 2 */\n }\n\n /**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\n\n button,\n input { /* 1 */\n overflow: visible;\n }\n\n /**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\n\n button,\n select { /* 1 */\n text-transform: none;\n }\n\n /**\n * Correct the inability to style clickable types in iOS and Safari.\n */\n\n button,\n [type=\"button\"],\n [type=\"reset\"],\n [type=\"submit\"] {\n -webkit-appearance: button;\n appearance: button;\n }\n\n /**\n * Remove the inner border and padding in Firefox.\n */\n\n button::-moz-focus-inner,\n [type=\"button\"]::-moz-focus-inner,\n [type=\"reset\"]::-moz-focus-inner,\n [type=\"submit\"]::-moz-focus-inner {\n border-style: none;\n padding: 0;\n }\n\n /**\n * Restore the focus styles unset by the previous rule.\n */\n\n button:-moz-focusring,\n [type=\"button\"]:-moz-focusring,\n [type=\"reset\"]:-moz-focusring,\n [type=\"submit\"]:-moz-focusring {\n outline: 1px dotted ButtonText;\n }\n\n /**\n * Correct the padding in Firefox.\n */\n\n fieldset {\n padding: 0.35em 0.75em 0.625em;\n }\n\n /**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color inheritance from <fieldset> elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n * <fieldset> elements in all browsers.\n */\n\n legend {\n box-sizing: border-box; /* 1 */\n color: inherit; /* 2 */\n display: table; /* 1 */\n max-width: 100%; /* 1 */\n padding: 0; /* 3 */\n white-space: normal; /* 1 */\n }\n\n /**\n * Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\n\n progress {\n vertical-align: baseline;\n }\n\n /**\n * Remove the default vertical scrollbar in IE 10+.\n */\n\n textarea {\n overflow: auto;\n }\n\n /**\n * 1. Add the correct box sizing in IE 10.\n * 2. Remove the padding in IE 10.\n */\n\n [type=\"checkbox\"],\n [type=\"radio\"] {\n box-sizing: border-box; /* 1 */\n padding: 0; /* 2 */\n }\n\n /**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n\n [type=\"number\"]::-webkit-inner-spin-button,\n [type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n }\n\n /**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n [type=\"search\"] {\n -webkit-appearance: textfield; /* 1 */\n appearance: textfield;\n outline-offset: -2px; /* 2 */\n }\n\n /**\n * Remove the inner padding in Chrome and Safari on macOS.\n */\n\n [type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n\n /**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to <inherit> in Safari.\n */\n\n ::-webkit-file-upload-button {\n -webkit-appearance: button; /* 1 */\n font: inherit; /* 2 */\n }\n\n /* Interactive\n ========================================================================== */\n\n /*\n * Add the correct display in Edge, IE 10+, and Firefox.\n */\n\n details {\n display: block;\n }\n\n /*\n * Add the correct display in all browsers.\n */\n\n summary {\n display: list-item;\n }\n\n /* Misc\n ========================================================================== */\n\n /**\n * Add the correct display in IE 10+.\n */\n\n template {\n display: none;\n }\n\n /**\n * Add the correct display in IE 10.\n */\n\n [hidden] {\n display: none;\n }\n\n\n /* // Extra stuff:\n b, strong {\n font-weight: 500;\n }\n\n i, em {\n font-style: italic;\n }\n\n small, sub, sup { font-size: .83em; }\n sub { vertical-align: sub; }\n sup { vertical-align: super; } */\n"])));
7
+ export { StyleReset };
8
+ var templateObject_1;
@@ -0,0 +1,10 @@
1
+ export declare enum Editor {
2
+ Bold = "/sprites.svg#editor-bold",
3
+ Code = "/sprites.svg#editor-code",
4
+ CodeBlock = "/sprites.svg#editor-code-block",
5
+ Italic = "/sprites.svg#editor-italic",
6
+ Link = "/sprites.svg#editor-link",
7
+ OrderedList = "/sprites.svg#editor-ordered-list",
8
+ Strikethrough = "/sprites.svg#editor-strikethrough",
9
+ BulletList = "/sprites.svg#editor-bullet-list"
10
+ }
@@ -0,0 +1,11 @@
1
+ export var Editor;
2
+ (function (Editor) {
3
+ Editor["Bold"] = "/sprites.svg#editor-bold";
4
+ Editor["Code"] = "/sprites.svg#editor-code";
5
+ Editor["CodeBlock"] = "/sprites.svg#editor-code-block";
6
+ Editor["Italic"] = "/sprites.svg#editor-italic";
7
+ Editor["Link"] = "/sprites.svg#editor-link";
8
+ Editor["OrderedList"] = "/sprites.svg#editor-ordered-list";
9
+ Editor["Strikethrough"] = "/sprites.svg#editor-strikethrough";
10
+ Editor["BulletList"] = "/sprites.svg#editor-bullet-list";
11
+ })(Editor || (Editor = {}));
@@ -0,0 +1,5 @@
1
+ export declare enum File {
2
+ Csv = "/sprites.svg#file-csv",
3
+ Excel = "/sprites.svg#file-excel",
4
+ Pdf = "/sprites.svg#file-pdf"
5
+ }
@@ -0,0 +1,6 @@
1
+ export var File;
2
+ (function (File) {
3
+ File["Csv"] = "/sprites.svg#file-csv";
4
+ File["Excel"] = "/sprites.svg#file-excel";
5
+ File["Pdf"] = "/sprites.svg#file-pdf";
6
+ })(File || (File = {}));
@@ -0,0 +1,36 @@
1
+ export declare enum Icons {
2
+ Arrow = "/sprites.svg#icon-arrow",
3
+ Brush = "/sprites.svg#icon-brush",
4
+ Calendar = "/sprites.svg#icon-calendar",
5
+ Caret = "/sprites.svg#icon-caret",
6
+ Check = "/sprites.svg#icon-check",
7
+ Chevron = "/sprites.svg#icon-chevron",
8
+ Circle = "/sprites.svg#icon-circle",
9
+ Cmd = "/sprites.svg#icon-cmd",
10
+ Columns = "/sprites.svg#icon-columns",
11
+ Compass = "/sprites.svg#icon-compass",
12
+ Copy = "/sprites.svg#icon-copy",
13
+ Cross = "/sprites.svg#icon-cross",
14
+ Crosshairs = "/sprites.svg#icon-crosshairs",
15
+ Delete = "/sprites.svg#icon-delete",
16
+ Download = "/sprites.svg#icon-download",
17
+ Edit = "/sprites.svg#icon-edit",
18
+ Expand = "/sprites.svg#icon-expand",
19
+ Export = "/sprites.svg#icon-export",
20
+ Eye = "/sprites.svg#icon-eye",
21
+ Filter = "/sprites.svg#icon-filter",
22
+ Fullscreen = "/sprites.svg#icon-fullscreen",
23
+ Help = "/sprites.svg#icon-help",
24
+ Info = "/sprites.svg#icon-info",
25
+ Language = "/sprites.svg#icon-language",
26
+ Layers = "/sprites.svg#icon-layers",
27
+ Leaf = "/sprites.svg#icon-leaf",
28
+ List = "/sprites.svg#icon-list",
29
+ Locked = "/sprites.svg#icon-locked",
30
+ Minus = "/sprites.svg#icon-minus",
31
+ Plus = "/sprites.svg#icon-plus",
32
+ Reset = "/sprites.svg#icon-reset",
33
+ Search = "/sprites.svg#icon-search",
34
+ Tag = "/sprites.svg#icon-tag",
35
+ Unlocked = "/sprites.svg#icon-unlocked"
36
+ }
@@ -0,0 +1,37 @@
1
+ export var Icons;
2
+ (function (Icons) {
3
+ Icons["Arrow"] = "/sprites.svg#icon-arrow";
4
+ Icons["Brush"] = "/sprites.svg#icon-brush";
5
+ Icons["Calendar"] = "/sprites.svg#icon-calendar";
6
+ Icons["Caret"] = "/sprites.svg#icon-caret";
7
+ Icons["Check"] = "/sprites.svg#icon-check";
8
+ Icons["Chevron"] = "/sprites.svg#icon-chevron";
9
+ Icons["Circle"] = "/sprites.svg#icon-circle";
10
+ Icons["Cmd"] = "/sprites.svg#icon-cmd";
11
+ Icons["Columns"] = "/sprites.svg#icon-columns";
12
+ Icons["Compass"] = "/sprites.svg#icon-compass";
13
+ Icons["Copy"] = "/sprites.svg#icon-copy";
14
+ Icons["Cross"] = "/sprites.svg#icon-cross";
15
+ Icons["Crosshairs"] = "/sprites.svg#icon-crosshairs";
16
+ Icons["Delete"] = "/sprites.svg#icon-delete";
17
+ Icons["Download"] = "/sprites.svg#icon-download";
18
+ Icons["Edit"] = "/sprites.svg#icon-edit";
19
+ Icons["Expand"] = "/sprites.svg#icon-expand";
20
+ Icons["Export"] = "/sprites.svg#icon-export";
21
+ Icons["Eye"] = "/sprites.svg#icon-eye";
22
+ Icons["Filter"] = "/sprites.svg#icon-filter";
23
+ Icons["Fullscreen"] = "/sprites.svg#icon-fullscreen";
24
+ Icons["Help"] = "/sprites.svg#icon-help";
25
+ Icons["Info"] = "/sprites.svg#icon-info";
26
+ Icons["Language"] = "/sprites.svg#icon-language";
27
+ Icons["Layers"] = "/sprites.svg#icon-layers";
28
+ Icons["Leaf"] = "/sprites.svg#icon-leaf";
29
+ Icons["List"] = "/sprites.svg#icon-list";
30
+ Icons["Locked"] = "/sprites.svg#icon-locked";
31
+ Icons["Minus"] = "/sprites.svg#icon-minus";
32
+ Icons["Plus"] = "/sprites.svg#icon-plus";
33
+ Icons["Reset"] = "/sprites.svg#icon-reset";
34
+ Icons["Search"] = "/sprites.svg#icon-search";
35
+ Icons["Tag"] = "/sprites.svg#icon-tag";
36
+ Icons["Unlocked"] = "/sprites.svg#icon-unlocked";
37
+ })(Icons || (Icons = {}));
package/svg/index.d.ts ADDED
@@ -0,0 +1,11 @@
1
+ import { Icons } from "./icons";
2
+ import { Editor } from "./editor";
3
+ import { File } from "./file";
4
+ import { Menu } from "./menu";
5
+ export declare const SVG: {
6
+ Icons: typeof Icons;
7
+ Editor: typeof Editor;
8
+ Menu: typeof Menu;
9
+ File: typeof File;
10
+ };
11
+ export type SVG = typeof SVG;
package/svg/index.js ADDED
@@ -0,0 +1,5 @@
1
+ import { Icons } from "./icons";
2
+ import { Editor } from "./editor";
3
+ import { File } from "./file";
4
+ import { Menu } from "./menu";
5
+ export var SVG = { Icons: Icons, Editor: Editor, Menu: Menu, File: File };
@@ -0,0 +1,8 @@
1
+ export declare enum Menu {
2
+ Account = "/sprites.svg#menu-account",
3
+ Company = "/sprites.svg#menu-company",
4
+ Inbox = "/sprites.svg#menu-inbox",
5
+ MapMarker = "/sprites.svg#menu-map-marker",
6
+ Signout = "/sprites.svg#menu-signout",
7
+ Standards = "/sprites.svg#menu-standards"
8
+ }
@@ -0,0 +1,9 @@
1
+ export var Menu;
2
+ (function (Menu) {
3
+ Menu["Account"] = "/sprites.svg#menu-account";
4
+ Menu["Company"] = "/sprites.svg#menu-company";
5
+ Menu["Inbox"] = "/sprites.svg#menu-inbox";
6
+ Menu["MapMarker"] = "/sprites.svg#menu-map-marker";
7
+ Menu["Signout"] = "/sprites.svg#menu-signout";
8
+ Menu["Standards"] = "/sprites.svg#menu-standards";
9
+ })(Menu || (Menu = {}));