@stoplight/ui-kit 0.0.0-beta-0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1043) hide show
  1. package/AutoSizer/index.d.ts +3 -0
  2. package/AutoSizer/index.js +10 -0
  3. package/AutoSizer/index.js.map +1 -0
  4. package/CodeEditor/index.d.ts +12 -0
  5. package/CodeEditor/index.js +21 -0
  6. package/CodeEditor/index.js.map +1 -0
  7. package/CodeEditor/utils/highlightCode.d.ts +27 -0
  8. package/CodeEditor/utils/highlightCode.js +56 -0
  9. package/CodeEditor/utils/highlightCode.js.map +1 -0
  10. package/CodeViewer/index.d.ts +9 -0
  11. package/CodeViewer/index.js +34 -0
  12. package/CodeViewer/index.js.map +1 -0
  13. package/CodeViewer/utils/astToReact.d.ts +3 -0
  14. package/CodeViewer/utils/astToReact.js +17 -0
  15. package/CodeViewer/utils/astToReact.js.map +1 -0
  16. package/CodeViewer/utils/lineNumberify.d.ts +2 -0
  17. package/CodeViewer/utils/lineNumberify.js +97 -0
  18. package/CodeViewer/utils/lineNumberify.js.map +1 -0
  19. package/CodeViewer/utils/parseCode.d.ts +2 -0
  20. package/CodeViewer/utils/parseCode.js +68 -0
  21. package/CodeViewer/utils/parseCode.js.map +1 -0
  22. package/Dropdown/Dropdown.d.ts +9 -0
  23. package/Dropdown/Dropdown.js +30 -0
  24. package/Dropdown/Dropdown.js.map +1 -0
  25. package/FormButton/index.d.ts +10 -0
  26. package/FormButton/index.js +16 -0
  27. package/FormButton/index.js.map +1 -0
  28. package/FormError/index.d.ts +14 -0
  29. package/FormError/index.js +23 -0
  30. package/FormError/index.js.map +1 -0
  31. package/FormInput/index.d.ts +20 -0
  32. package/FormInput/index.js +39 -0
  33. package/FormInput/index.js.map +1 -0
  34. package/Icons/index.d.ts +1 -0
  35. package/Icons/index.js +5 -0
  36. package/Icons/index.js.map +1 -0
  37. package/LICENSE +190 -0
  38. package/README.md +106 -0
  39. package/ScrollContainer/index.d.ts +10 -0
  40. package/ScrollContainer/index.js +93 -0
  41. package/ScrollContainer/index.js.map +1 -0
  42. package/ScrollList/index.d.ts +19 -0
  43. package/ScrollList/index.js +37 -0
  44. package/ScrollList/index.js.map +1 -0
  45. package/SecretInput/index.d.ts +7 -0
  46. package/SecretInput/index.js +24 -0
  47. package/SecretInput/index.js.map +1 -0
  48. package/Select/index.d.ts +1 -0
  49. package/Select/index.js +5 -0
  50. package/Select/index.js.map +1 -0
  51. package/SimpleTabs/Tab.d.ts +6 -0
  52. package/SimpleTabs/Tab.js +15 -0
  53. package/SimpleTabs/Tab.js.map +1 -0
  54. package/SimpleTabs/TabList.d.ts +6 -0
  55. package/SimpleTabs/TabList.js +15 -0
  56. package/SimpleTabs/TabList.js.map +1 -0
  57. package/SimpleTabs/TabPanel.d.ts +6 -0
  58. package/SimpleTabs/TabPanel.js +15 -0
  59. package/SimpleTabs/TabPanel.js.map +1 -0
  60. package/SimpleTabs/index.d.ts +5 -0
  61. package/SimpleTabs/index.js +10 -0
  62. package/SimpleTabs/index.js.map +1 -0
  63. package/TableOfContents/index.d.ts +19 -0
  64. package/TableOfContents/index.js +87 -0
  65. package/TableOfContents/index.js.map +1 -0
  66. package/TableOfContents/types.d.ts +14 -0
  67. package/TableOfContents/types.js +3 -0
  68. package/TableOfContents/types.js.map +1 -0
  69. package/ThemeContainer/index.d.ts +7 -0
  70. package/ThemeContainer/index.js +12 -0
  71. package/ThemeContainer/index.js.map +1 -0
  72. package/_hooks/useIsMobile.d.ts +2 -0
  73. package/_hooks/useIsMobile.js +29 -0
  74. package/_hooks/useIsMobile.js.map +1 -0
  75. package/_hooks/useValidateSchema.d.ts +2 -0
  76. package/_hooks/useValidateSchema.js +26 -0
  77. package/_hooks/useValidateSchema.js.map +1 -0
  78. package/classes.d.ts +252 -0
  79. package/classes.js +7 -0
  80. package/classes.js.map +1 -0
  81. package/colors.d.ts +74 -0
  82. package/colors.js +79 -0
  83. package/colors.js.map +1 -0
  84. package/index.d.ts +12 -0
  85. package/index.js +18 -0
  86. package/index.js.map +1 -0
  87. package/package.json +44 -0
  88. package/styles/_ui-kit.scss +103 -0
  89. package/styles/blueprint/_base.scss +6 -0
  90. package/styles/blueprint/_icons.scss +39 -0
  91. package/styles/blueprint/_variables.scss +97 -0
  92. package/styles/common/_theme.scss +142 -0
  93. package/styles/common/_utils.scss +58 -0
  94. package/styles/common/_variables.scss +131 -0
  95. package/styles/components/Code/_base.scss +148 -0
  96. package/styles/components/Code/_theme-dark.scss +17 -0
  97. package/styles/components/Code/_theme-light.scss +17 -0
  98. package/styles/components/Dialog/_base.scss +9 -0
  99. package/styles/components/Dropdown/_base.scss +12 -0
  100. package/styles/components/FormGroup/_base.scss +5 -0
  101. package/styles/components/ScrollContainer/_base.scss +7 -0
  102. package/styles/components/SimpleTabs/_base.scss +115 -0
  103. package/styles/components/TableOfContents/_base.scss +55 -0
  104. package/styles/components/_base.scss +7 -0
  105. package/styles/fonts/icons-16.eot +0 -0
  106. package/styles/fonts/icons-16.ttf +0 -0
  107. package/styles/fonts/icons-16.woff +0 -0
  108. package/styles/fonts/icons-20.eot +0 -0
  109. package/styles/fonts/icons-20.ttf +0 -0
  110. package/styles/fonts/icons-20.woff +0 -0
  111. package/styles/fonts/icons.json +3236 -0
  112. package/styles/icons/16px/add-column-left.svg +12 -0
  113. package/styles/icons/16px/add-column-right.svg +12 -0
  114. package/styles/icons/16px/add-row-bottom.svg +12 -0
  115. package/styles/icons/16px/add-row-top.svg +12 -0
  116. package/styles/icons/16px/add-to-artifact.svg +15 -0
  117. package/styles/icons/16px/add-to-folder.svg +10 -0
  118. package/styles/icons/16px/add.svg +13 -0
  119. package/styles/icons/16px/airplane.svg +11 -0
  120. package/styles/icons/16px/align-center.svg +15 -0
  121. package/styles/icons/16px/align-justify.svg +15 -0
  122. package/styles/icons/16px/align-left.svg +15 -0
  123. package/styles/icons/16px/align-right.svg +15 -0
  124. package/styles/icons/16px/alignment-bottom.svg +12 -0
  125. package/styles/icons/16px/alignment-horizontal-center.svg +12 -0
  126. package/styles/icons/16px/alignment-left.svg +12 -0
  127. package/styles/icons/16px/alignment-right.svg +12 -0
  128. package/styles/icons/16px/alignment-top.svg +12 -0
  129. package/styles/icons/16px/alignment-vertical-center.svg +12 -0
  130. package/styles/icons/16px/annotation.svg +12 -0
  131. package/styles/icons/16px/application.svg +13 -0
  132. package/styles/icons/16px/applications.svg +15 -0
  133. package/styles/icons/16px/arrow-bottom-left.svg +12 -0
  134. package/styles/icons/16px/arrow-bottom-right.svg +12 -0
  135. package/styles/icons/16px/arrow-down.svg +16 -0
  136. package/styles/icons/16px/arrow-left.svg +13 -0
  137. package/styles/icons/16px/arrow-right.svg +13 -0
  138. package/styles/icons/16px/arrow-top-left.svg +12 -0
  139. package/styles/icons/16px/arrow-top-right.svg +12 -0
  140. package/styles/icons/16px/arrow-up.svg +16 -0
  141. package/styles/icons/16px/arrows-horizontal.svg +17 -0
  142. package/styles/icons/16px/arrows-vertical.svg +17 -0
  143. package/styles/icons/16px/asterisk.svg +14 -0
  144. package/styles/icons/16px/automatic-updates.svg +17 -0
  145. package/styles/icons/16px/badge.svg +13 -0
  146. package/styles/icons/16px/ban-circle.svg +11 -0
  147. package/styles/icons/16px/bank-account.svg +19 -0
  148. package/styles/icons/16px/barcode.svg +12 -0
  149. package/styles/icons/16px/blank.svg +5 -0
  150. package/styles/icons/16px/blocked-person.svg +19 -0
  151. package/styles/icons/16px/bold.svg +12 -0
  152. package/styles/icons/16px/book.svg +11 -0
  153. package/styles/icons/16px/bookmark.svg +13 -0
  154. package/styles/icons/16px/box.svg +13 -0
  155. package/styles/icons/16px/briefcase.svg +13 -0
  156. package/styles/icons/16px/build.svg +13 -0
  157. package/styles/icons/16px/calculator.svg +12 -0
  158. package/styles/icons/16px/calendar.svg +10 -0
  159. package/styles/icons/16px/camera.svg +13 -0
  160. package/styles/icons/16px/caret-down.svg +13 -0
  161. package/styles/icons/16px/caret-left.svg +12 -0
  162. package/styles/icons/16px/caret-right.svg +12 -0
  163. package/styles/icons/16px/caret-up.svg +13 -0
  164. package/styles/icons/16px/cell-tower.svg +19 -0
  165. package/styles/icons/16px/changes.svg +16 -0
  166. package/styles/icons/16px/chart.svg +16 -0
  167. package/styles/icons/16px/chat.svg +12 -0
  168. package/styles/icons/16px/chevron-backward.svg +12 -0
  169. package/styles/icons/16px/chevron-down.svg +12 -0
  170. package/styles/icons/16px/chevron-forward.svg +12 -0
  171. package/styles/icons/16px/chevron-left.svg +12 -0
  172. package/styles/icons/16px/chevron-right.svg +12 -0
  173. package/styles/icons/16px/chevron-up.svg +12 -0
  174. package/styles/icons/16px/circle-arrow-down.svg +13 -0
  175. package/styles/icons/16px/circle-arrow-left.svg +13 -0
  176. package/styles/icons/16px/circle-arrow-right.svg +13 -0
  177. package/styles/icons/16px/circle-arrow-up.svg +13 -0
  178. package/styles/icons/16px/circle.svg +15 -0
  179. package/styles/icons/16px/citation.svg +15 -0
  180. package/styles/icons/16px/clean.svg +10 -0
  181. package/styles/icons/16px/clipboard.svg +13 -0
  182. package/styles/icons/16px/cloud-download.svg +15 -0
  183. package/styles/icons/16px/cloud-upload.svg +15 -0
  184. package/styles/icons/16px/cloud.svg +11 -0
  185. package/styles/icons/16px/code-block.svg +15 -0
  186. package/styles/icons/16px/code.svg +16 -0
  187. package/styles/icons/16px/cog.svg +19 -0
  188. package/styles/icons/16px/collapse-all.svg +14 -0
  189. package/styles/icons/16px/column-layout.svg +11 -0
  190. package/styles/icons/16px/comment.svg +13 -0
  191. package/styles/icons/16px/comparison.svg +16 -0
  192. package/styles/icons/16px/compass.svg +9 -0
  193. package/styles/icons/16px/compressed.svg +14 -0
  194. package/styles/icons/16px/confirm.svg +15 -0
  195. package/styles/icons/16px/console.svg +9 -0
  196. package/styles/icons/16px/contrast.svg +17 -0
  197. package/styles/icons/16px/control.svg +12 -0
  198. package/styles/icons/16px/credit-card.svg +14 -0
  199. package/styles/icons/16px/cross.svg +13 -0
  200. package/styles/icons/16px/crown.svg +12 -0
  201. package/styles/icons/16px/cube-add.svg +9 -0
  202. package/styles/icons/16px/cube-remove.svg +9 -0
  203. package/styles/icons/16px/cube.svg +9 -0
  204. package/styles/icons/16px/curved-range-chart.svg +12 -0
  205. package/styles/icons/16px/cut.svg +14 -0
  206. package/styles/icons/16px/dashboard.svg +14 -0
  207. package/styles/icons/16px/database.svg +13 -0
  208. package/styles/icons/16px/delete.svg +16 -0
  209. package/styles/icons/16px/delta.svg +11 -0
  210. package/styles/icons/16px/derive-column.svg +28 -0
  211. package/styles/icons/16px/desktop.svg +12 -0
  212. package/styles/icons/16px/diagram-tree.svg +10 -0
  213. package/styles/icons/16px/direction-left.svg +11 -0
  214. package/styles/icons/16px/direction-right.svg +11 -0
  215. package/styles/icons/16px/disable.svg +13 -0
  216. package/styles/icons/16px/document-open.svg +12 -0
  217. package/styles/icons/16px/document-share.svg +13 -0
  218. package/styles/icons/16px/document.svg +12 -0
  219. package/styles/icons/16px/dollar.svg +24 -0
  220. package/styles/icons/16px/dot.svg +11 -0
  221. package/styles/icons/16px/double-caret-horizontal.svg +13 -0
  222. package/styles/icons/16px/double-caret-vertical.svg +12 -0
  223. package/styles/icons/16px/double-chevron-down.svg +14 -0
  224. package/styles/icons/16px/double-chevron-left.svg +14 -0
  225. package/styles/icons/16px/double-chevron-right.svg +14 -0
  226. package/styles/icons/16px/double-chevron-up.svg +14 -0
  227. package/styles/icons/16px/doughnut-chart.svg +11 -0
  228. package/styles/icons/16px/download.svg +14 -0
  229. package/styles/icons/16px/drag-handle-horizontal.svg +15 -0
  230. package/styles/icons/16px/drag-handle-vertical.svg +15 -0
  231. package/styles/icons/16px/draw.svg +18 -0
  232. package/styles/icons/16px/drive-time.svg +16 -0
  233. package/styles/icons/16px/duplicate.svg +12 -0
  234. package/styles/icons/16px/edit.svg +13 -0
  235. package/styles/icons/16px/eject.svg +12 -0
  236. package/styles/icons/16px/endorsed.svg +17 -0
  237. package/styles/icons/16px/envelope.svg +13 -0
  238. package/styles/icons/16px/eraser.svg +12 -0
  239. package/styles/icons/16px/error.svg +12 -0
  240. package/styles/icons/16px/euro.svg +19 -0
  241. package/styles/icons/16px/exchange.svg +18 -0
  242. package/styles/icons/16px/exclude-row.svg +14 -0
  243. package/styles/icons/16px/expand-all.svg +14 -0
  244. package/styles/icons/16px/export.svg +14 -0
  245. package/styles/icons/16px/eye-off.svg +20 -0
  246. package/styles/icons/16px/eye-on.svg +20 -0
  247. package/styles/icons/16px/eye-open.svg +12 -0
  248. package/styles/icons/16px/fast-backward.svg +13 -0
  249. package/styles/icons/16px/fast-forward.svg +13 -0
  250. package/styles/icons/16px/feed-subscribed.svg +17 -0
  251. package/styles/icons/16px/feed.svg +15 -0
  252. package/styles/icons/16px/film.svg +12 -0
  253. package/styles/icons/16px/filter-keep.svg +14 -0
  254. package/styles/icons/16px/filter-list.svg +14 -0
  255. package/styles/icons/16px/filter-remove.svg +15 -0
  256. package/styles/icons/16px/filter.svg +13 -0
  257. package/styles/icons/16px/flag.svg +13 -0
  258. package/styles/icons/16px/flame.svg +10 -0
  259. package/styles/icons/16px/flash.svg +20 -0
  260. package/styles/icons/16px/floppy-disk.svg +12 -0
  261. package/styles/icons/16px/flow-branch.svg +12 -0
  262. package/styles/icons/16px/flow-end.svg +12 -0
  263. package/styles/icons/16px/flow-linear.svg +12 -0
  264. package/styles/icons/16px/flow-review-branch.svg +12 -0
  265. package/styles/icons/16px/flow-review.svg +12 -0
  266. package/styles/icons/16px/flows.svg +13 -0
  267. package/styles/icons/16px/folder-close.svg +12 -0
  268. package/styles/icons/16px/folder-new.svg +10 -0
  269. package/styles/icons/16px/folder-open.svg +12 -0
  270. package/styles/icons/16px/folder-shared-open.svg +15 -0
  271. package/styles/icons/16px/folder-shared.svg +15 -0
  272. package/styles/icons/16px/follower.svg +20 -0
  273. package/styles/icons/16px/following.svg +20 -0
  274. package/styles/icons/16px/font.svg +13 -0
  275. package/styles/icons/16px/fork.svg +15 -0
  276. package/styles/icons/16px/form.svg +18 -0
  277. package/styles/icons/16px/full-circle.svg +7 -0
  278. package/styles/icons/16px/full-stacked-chart.svg +14 -0
  279. package/styles/icons/16px/fullscreen.svg +17 -0
  280. package/styles/icons/16px/function.svg +27 -0
  281. package/styles/icons/16px/gantt-chart.svg +13 -0
  282. package/styles/icons/16px/geolocation.svg +11 -0
  283. package/styles/icons/16px/geosearch.svg +28 -0
  284. package/styles/icons/16px/git-branch.svg +15 -0
  285. package/styles/icons/16px/git-commit.svg +12 -0
  286. package/styles/icons/16px/git-merge.svg +14 -0
  287. package/styles/icons/16px/git-new-branch.svg +15 -0
  288. package/styles/icons/16px/git-pull.svg +16 -0
  289. package/styles/icons/16px/git-push.svg +13 -0
  290. package/styles/icons/16px/git-repo.svg +12 -0
  291. package/styles/icons/16px/glass.svg +11 -0
  292. package/styles/icons/16px/globe-network.svg +12 -0
  293. package/styles/icons/16px/globe.svg +38 -0
  294. package/styles/icons/16px/graph-remove.svg +17 -0
  295. package/styles/icons/16px/graph.svg +15 -0
  296. package/styles/icons/16px/grid-view.svg +11 -0
  297. package/styles/icons/16px/grid.svg +14 -0
  298. package/styles/icons/16px/group-objects.svg +13 -0
  299. package/styles/icons/16px/grouped-bar-chart.svg +13 -0
  300. package/styles/icons/16px/hand-down.svg +13 -0
  301. package/styles/icons/16px/hand-left.svg +13 -0
  302. package/styles/icons/16px/hand-right.svg +13 -0
  303. package/styles/icons/16px/hand-up.svg +13 -0
  304. package/styles/icons/16px/hand.svg +14 -0
  305. package/styles/icons/16px/header-one.svg +11 -0
  306. package/styles/icons/16px/header-two.svg +19 -0
  307. package/styles/icons/16px/header.svg +11 -0
  308. package/styles/icons/16px/headset.svg +13 -0
  309. package/styles/icons/16px/heart-broken.svg +16 -0
  310. package/styles/icons/16px/heart.svg +15 -0
  311. package/styles/icons/16px/heat-grid.svg +12 -0
  312. package/styles/icons/16px/heatmap.svg +15 -0
  313. package/styles/icons/16px/help.svg +16 -0
  314. package/styles/icons/16px/helper-management.svg +16 -0
  315. package/styles/icons/16px/highlight.svg +12 -0
  316. package/styles/icons/16px/history.svg +15 -0
  317. package/styles/icons/16px/home.svg +14 -0
  318. package/styles/icons/16px/horizontal-bar-chart-asc.svg +12 -0
  319. package/styles/icons/16px/horizontal-bar-chart-desc.svg +13 -0
  320. package/styles/icons/16px/horizontal-bar-chart.svg +13 -0
  321. package/styles/icons/16px/horizontal-distribution.svg +12 -0
  322. package/styles/icons/16px/id-number.svg +21 -0
  323. package/styles/icons/16px/image-rotate-left.svg +15 -0
  324. package/styles/icons/16px/image-rotate-right.svg +14 -0
  325. package/styles/icons/16px/import.svg +14 -0
  326. package/styles/icons/16px/inbox-filtered.svg +11 -0
  327. package/styles/icons/16px/inbox-geo.svg +11 -0
  328. package/styles/icons/16px/inbox-search.svg +11 -0
  329. package/styles/icons/16px/inbox-update.svg +11 -0
  330. package/styles/icons/16px/inbox.svg +13 -0
  331. package/styles/icons/16px/info-sign.svg +12 -0
  332. package/styles/icons/16px/inner-join.svg +14 -0
  333. package/styles/icons/16px/insert.svg +16 -0
  334. package/styles/icons/16px/intersection.svg +14 -0
  335. package/styles/icons/16px/ip-address.svg +13 -0
  336. package/styles/icons/16px/issue-closed.svg +12 -0
  337. package/styles/icons/16px/issue-new.svg +12 -0
  338. package/styles/icons/16px/issue.svg +12 -0
  339. package/styles/icons/16px/italic.svg +13 -0
  340. package/styles/icons/16px/join-table.svg +12 -0
  341. package/styles/icons/16px/key-backspace.svg +15 -0
  342. package/styles/icons/16px/key-command.svg +14 -0
  343. package/styles/icons/16px/key-control.svg +12 -0
  344. package/styles/icons/16px/key-delete.svg +15 -0
  345. package/styles/icons/16px/key-enter.svg +12 -0
  346. package/styles/icons/16px/key-escape.svg +13 -0
  347. package/styles/icons/16px/key-option.svg +12 -0
  348. package/styles/icons/16px/key-shift.svg +12 -0
  349. package/styles/icons/16px/key-tab.svg +15 -0
  350. package/styles/icons/16px/key.svg +15 -0
  351. package/styles/icons/16px/known-vehicle.svg +28 -0
  352. package/styles/icons/16px/label.svg +12 -0
  353. package/styles/icons/16px/layer.svg +13 -0
  354. package/styles/icons/16px/layers.svg +18 -0
  355. package/styles/icons/16px/layout-auto.svg +16 -0
  356. package/styles/icons/16px/layout-balloon.svg +16 -0
  357. package/styles/icons/16px/layout-circle.svg +22 -0
  358. package/styles/icons/16px/layout-grid.svg +16 -0
  359. package/styles/icons/16px/layout-group-by.svg +15 -0
  360. package/styles/icons/16px/layout-hierarchy.svg +17 -0
  361. package/styles/icons/16px/layout-linear.svg +12 -0
  362. package/styles/icons/16px/layout-skew-grid.svg +15 -0
  363. package/styles/icons/16px/layout-sorted-clusters.svg +13 -0
  364. package/styles/icons/16px/layout.svg +18 -0
  365. package/styles/icons/16px/left-join.svg +13 -0
  366. package/styles/icons/16px/lifesaver.svg +9 -0
  367. package/styles/icons/16px/lightbulb.svg +13 -0
  368. package/styles/icons/16px/link.svg +19 -0
  369. package/styles/icons/16px/list-columns.svg +12 -0
  370. package/styles/icons/16px/list-detail-view.svg +13 -0
  371. package/styles/icons/16px/list.svg +13 -0
  372. package/styles/icons/16px/locate.svg +16 -0
  373. package/styles/icons/16px/lock.svg +8 -0
  374. package/styles/icons/16px/log-in.svg +13 -0
  375. package/styles/icons/16px/log-out.svg +13 -0
  376. package/styles/icons/16px/manual.svg +17 -0
  377. package/styles/icons/16px/manually-entered-data.svg +14 -0
  378. package/styles/icons/16px/map-create.svg +17 -0
  379. package/styles/icons/16px/map-marker.svg +13 -0
  380. package/styles/icons/16px/map.svg +17 -0
  381. package/styles/icons/16px/maximize.svg +15 -0
  382. package/styles/icons/16px/media.svg +13 -0
  383. package/styles/icons/16px/menu-closed.svg +15 -0
  384. package/styles/icons/16px/menu-open.svg +14 -0
  385. package/styles/icons/16px/menu.svg +12 -0
  386. package/styles/icons/16px/merge-columns.svg +17 -0
  387. package/styles/icons/16px/merge-links.svg +15 -0
  388. package/styles/icons/16px/minimize.svg +15 -0
  389. package/styles/icons/16px/minus.svg +11 -0
  390. package/styles/icons/16px/mobile-phone.svg +11 -0
  391. package/styles/icons/16px/mobile-video.svg +12 -0
  392. package/styles/icons/16px/moon.svg +9 -0
  393. package/styles/icons/16px/more.svg +11 -0
  394. package/styles/icons/16px/mountain.svg +10 -0
  395. package/styles/icons/16px/move.svg +17 -0
  396. package/styles/icons/16px/mugshot.svg +18 -0
  397. package/styles/icons/16px/multi-select.svg +13 -0
  398. package/styles/icons/16px/music.svg +12 -0
  399. package/styles/icons/16px/new-grid-item.svg +16 -0
  400. package/styles/icons/16px/new-link.svg +13 -0
  401. package/styles/icons/16px/new-object.svg +17 -0
  402. package/styles/icons/16px/new-person.svg +18 -0
  403. package/styles/icons/16px/new-prescription.svg +19 -0
  404. package/styles/icons/16px/new-text-box.svg +15 -0
  405. package/styles/icons/16px/ninja.svg +13 -0
  406. package/styles/icons/16px/notifications-updated.svg +10 -0
  407. package/styles/icons/16px/notifications.svg +12 -0
  408. package/styles/icons/16px/numbered-list.svg +21 -0
  409. package/styles/icons/16px/numerical.svg +29 -0
  410. package/styles/icons/16px/office.svg +12 -0
  411. package/styles/icons/16px/offline.svg +12 -0
  412. package/styles/icons/16px/oil-field.svg +14 -0
  413. package/styles/icons/16px/one-column.svg +13 -0
  414. package/styles/icons/16px/outdated.svg +10 -0
  415. package/styles/icons/16px/page-layout.svg +12 -0
  416. package/styles/icons/16px/panel-stats.svg +15 -0
  417. package/styles/icons/16px/panel-table.svg +9 -0
  418. package/styles/icons/16px/paperclip.svg +16 -0
  419. package/styles/icons/16px/paragraph.svg +9 -0
  420. package/styles/icons/16px/path-search.svg +20 -0
  421. package/styles/icons/16px/path.svg +12 -0
  422. package/styles/icons/16px/pause.svg +11 -0
  423. package/styles/icons/16px/people.svg +25 -0
  424. package/styles/icons/16px/percentage.svg +14 -0
  425. package/styles/icons/16px/person.svg +19 -0
  426. package/styles/icons/16px/phone.svg +15 -0
  427. package/styles/icons/16px/pie-chart.svg +10 -0
  428. package/styles/icons/16px/pin.svg +12 -0
  429. package/styles/icons/16px/pivot-table.svg +16 -0
  430. package/styles/icons/16px/pivot.svg +14 -0
  431. package/styles/icons/16px/play.svg +12 -0
  432. package/styles/icons/16px/plus.svg +11 -0
  433. package/styles/icons/16px/polygon-filter.svg +15 -0
  434. package/styles/icons/16px/power.svg +12 -0
  435. package/styles/icons/16px/predictive-analysis.svg +33 -0
  436. package/styles/icons/16px/prescription.svg +15 -0
  437. package/styles/icons/16px/presentation.svg +14 -0
  438. package/styles/icons/16px/print.svg +13 -0
  439. package/styles/icons/16px/projects.svg +13 -0
  440. package/styles/icons/16px/properties.svg +15 -0
  441. package/styles/icons/16px/property.svg +15 -0
  442. package/styles/icons/16px/publish-function.svg +30 -0
  443. package/styles/icons/16px/pulse.svg +13 -0
  444. package/styles/icons/16px/random.svg +17 -0
  445. package/styles/icons/16px/record.svg +10 -0
  446. package/styles/icons/16px/redo.svg +13 -0
  447. package/styles/icons/16px/refresh.svg +15 -0
  448. package/styles/icons/16px/regression-chart.svg +13 -0
  449. package/styles/icons/16px/remove-column-left.svg +12 -0
  450. package/styles/icons/16px/remove-column-right.svg +12 -0
  451. package/styles/icons/16px/remove-column.svg +14 -0
  452. package/styles/icons/16px/remove-row-bottom.svg +12 -0
  453. package/styles/icons/16px/remove-row-top.svg +12 -0
  454. package/styles/icons/16px/remove.svg +13 -0
  455. package/styles/icons/16px/repeat.svg +13 -0
  456. package/styles/icons/16px/resolve.svg +17 -0
  457. package/styles/icons/16px/rig.svg +14 -0
  458. package/styles/icons/16px/right-join.svg +13 -0
  459. package/styles/icons/16px/ring.svg +11 -0
  460. package/styles/icons/16px/rotate-document.svg +14 -0
  461. package/styles/icons/16px/rotate-page.svg +13 -0
  462. package/styles/icons/16px/satellite.svg +17 -0
  463. package/styles/icons/16px/saved.svg +13 -0
  464. package/styles/icons/16px/scatter-plot.svg +13 -0
  465. package/styles/icons/16px/search-around.svg +20 -0
  466. package/styles/icons/16px/search-template.svg +16 -0
  467. package/styles/icons/16px/search-text.svg +14 -0
  468. package/styles/icons/16px/search.svg +13 -0
  469. package/styles/icons/16px/segmented-control.svg +10 -0
  470. package/styles/icons/16px/select.svg +15 -0
  471. package/styles/icons/16px/selection.svg +12 -0
  472. package/styles/icons/16px/send-to-graph.svg +16 -0
  473. package/styles/icons/16px/send-to-map.svg +16 -0
  474. package/styles/icons/16px/send-to.svg +18 -0
  475. package/styles/icons/16px/series-add.svg +9 -0
  476. package/styles/icons/16px/series-configuration.svg +17 -0
  477. package/styles/icons/16px/series-derived.svg +10 -0
  478. package/styles/icons/16px/series-filtered.svg +10 -0
  479. package/styles/icons/16px/series-search.svg +15 -0
  480. package/styles/icons/16px/settings.svg +14 -0
  481. package/styles/icons/16px/share.svg +14 -0
  482. package/styles/icons/16px/shield.svg +10 -0
  483. package/styles/icons/16px/shop.svg +13 -0
  484. package/styles/icons/16px/shopping-cart.svg +13 -0
  485. package/styles/icons/16px/sim-card.svg +12 -0
  486. package/styles/icons/16px/slash.svg +11 -0
  487. package/styles/icons/16px/small-cross.svg +13 -0
  488. package/styles/icons/16px/small-minus.svg +11 -0
  489. package/styles/icons/16px/small-plus.svg +11 -0
  490. package/styles/icons/16px/small-tick.svg +12 -0
  491. package/styles/icons/16px/snowflake.svg +12 -0
  492. package/styles/icons/16px/social-media.svg +19 -0
  493. package/styles/icons/16px/sort-alphabetical-desc.svg +14 -0
  494. package/styles/icons/16px/sort-alphabetical.svg +14 -0
  495. package/styles/icons/16px/sort-asc.svg +15 -0
  496. package/styles/icons/16px/sort-desc.svg +15 -0
  497. package/styles/icons/16px/sort-numerical-desc.svg +26 -0
  498. package/styles/icons/16px/sort-numerical.svg +25 -0
  499. package/styles/icons/16px/sort.svg +15 -0
  500. package/styles/icons/16px/split-columns.svg +17 -0
  501. package/styles/icons/16px/square.svg +12 -0
  502. package/styles/icons/16px/stacked-chart.svg +13 -0
  503. package/styles/icons/16px/star-empty.svg +8 -0
  504. package/styles/icons/16px/star.svg +8 -0
  505. package/styles/icons/16px/step-backward.svg +12 -0
  506. package/styles/icons/16px/step-chart.svg +12 -0
  507. package/styles/icons/16px/step-forward.svg +12 -0
  508. package/styles/icons/16px/stop.svg +11 -0
  509. package/styles/icons/16px/strikethrough.svg +21 -0
  510. package/styles/icons/16px/style.svg +13 -0
  511. package/styles/icons/16px/swap-horizontal.svg +16 -0
  512. package/styles/icons/16px/swap-vertical.svg +16 -0
  513. package/styles/icons/16px/symbol-circle.svg +10 -0
  514. package/styles/icons/16px/symbol-cross.svg +11 -0
  515. package/styles/icons/16px/symbol-diamond.svg +12 -0
  516. package/styles/icons/16px/symbol-square.svg +11 -0
  517. package/styles/icons/16px/symbol-triangle-down.svg +11 -0
  518. package/styles/icons/16px/symbol-triangle-up.svg +12 -0
  519. package/styles/icons/16px/tag.svg +10 -0
  520. package/styles/icons/16px/take-action.svg +15 -0
  521. package/styles/icons/16px/taxi.svg +12 -0
  522. package/styles/icons/16px/text-highlight.svg +13 -0
  523. package/styles/icons/16px/th-derived.svg +17 -0
  524. package/styles/icons/16px/th-filtered.svg +10 -0
  525. package/styles/icons/16px/th-list.svg +15 -0
  526. package/styles/icons/16px/th.svg +16 -0
  527. package/styles/icons/16px/thumbs-down.svg +17 -0
  528. package/styles/icons/16px/thumbs-up.svg +17 -0
  529. package/styles/icons/16px/tick-circle.svg +10 -0
  530. package/styles/icons/16px/tick.svg +12 -0
  531. package/styles/icons/16px/time.svg +13 -0
  532. package/styles/icons/16px/timeline-area-chart.svg +12 -0
  533. package/styles/icons/16px/timeline-bar-chart.svg +13 -0
  534. package/styles/icons/16px/timeline-events.svg +18 -0
  535. package/styles/icons/16px/timeline-line-chart.svg +14 -0
  536. package/styles/icons/16px/tint.svg +11 -0
  537. package/styles/icons/16px/torch.svg +13 -0
  538. package/styles/icons/16px/train.svg +7 -0
  539. package/styles/icons/16px/translate.svg +16 -0
  540. package/styles/icons/16px/trash.svg +15 -0
  541. package/styles/icons/16px/tree.svg +12 -0
  542. package/styles/icons/16px/trending-down.svg +13 -0
  543. package/styles/icons/16px/trending-up.svg +13 -0
  544. package/styles/icons/16px/two-columns.svg +14 -0
  545. package/styles/icons/16px/underline.svg +12 -0
  546. package/styles/icons/16px/undo.svg +13 -0
  547. package/styles/icons/16px/ungroup-objects.svg +12 -0
  548. package/styles/icons/16px/unknown-vehicle.svg +34 -0
  549. package/styles/icons/16px/unlock.svg +13 -0
  550. package/styles/icons/16px/unpin.svg +13 -0
  551. package/styles/icons/16px/unresolve.svg +18 -0
  552. package/styles/icons/16px/updated.svg +10 -0
  553. package/styles/icons/16px/upload.svg +12 -0
  554. package/styles/icons/16px/user.svg +28 -0
  555. package/styles/icons/16px/variable.svg +24 -0
  556. package/styles/icons/16px/vertical-bar-chart-asc.svg +12 -0
  557. package/styles/icons/16px/vertical-bar-chart-desc.svg +12 -0
  558. package/styles/icons/16px/vertical-distribution.svg +12 -0
  559. package/styles/icons/16px/video.svg +11 -0
  560. package/styles/icons/16px/volume-down.svg +12 -0
  561. package/styles/icons/16px/volume-off.svg +11 -0
  562. package/styles/icons/16px/volume-up.svg +14 -0
  563. package/styles/icons/16px/walk.svg +10 -0
  564. package/styles/icons/16px/warning-sign.svg +13 -0
  565. package/styles/icons/16px/waterfall-chart.svg +13 -0
  566. package/styles/icons/16px/widget-button.svg +12 -0
  567. package/styles/icons/16px/widget-footer.svg +7 -0
  568. package/styles/icons/16px/widget-header.svg +7 -0
  569. package/styles/icons/16px/widget.svg +14 -0
  570. package/styles/icons/16px/wrench.svg +12 -0
  571. package/styles/icons/16px/zoom-in.svg +15 -0
  572. package/styles/icons/16px/zoom-out.svg +14 -0
  573. package/styles/icons/16px/zoom-to-fit.svg +21 -0
  574. package/styles/icons/20px/add-column-left.svg +12 -0
  575. package/styles/icons/20px/add-column-right.svg +12 -0
  576. package/styles/icons/20px/add-row-bottom.svg +12 -0
  577. package/styles/icons/20px/add-row-top.svg +12 -0
  578. package/styles/icons/20px/add-to-artifact.svg +15 -0
  579. package/styles/icons/20px/add-to-folder.svg +10 -0
  580. package/styles/icons/20px/add.svg +14 -0
  581. package/styles/icons/20px/airplane.svg +11 -0
  582. package/styles/icons/20px/align-center.svg +15 -0
  583. package/styles/icons/20px/align-justify.svg +15 -0
  584. package/styles/icons/20px/align-left.svg +15 -0
  585. package/styles/icons/20px/align-right.svg +15 -0
  586. package/styles/icons/20px/alignment-bottom.svg +12 -0
  587. package/styles/icons/20px/alignment-horizontal-center.svg +12 -0
  588. package/styles/icons/20px/alignment-left.svg +12 -0
  589. package/styles/icons/20px/alignment-right.svg +12 -0
  590. package/styles/icons/20px/alignment-top.svg +12 -0
  591. package/styles/icons/20px/alignment-vertical-center.svg +12 -0
  592. package/styles/icons/20px/annotation.svg +12 -0
  593. package/styles/icons/20px/application.svg +13 -0
  594. package/styles/icons/20px/applications.svg +15 -0
  595. package/styles/icons/20px/arrow-bottom-left.svg +12 -0
  596. package/styles/icons/20px/arrow-bottom-right.svg +12 -0
  597. package/styles/icons/20px/arrow-down.svg +16 -0
  598. package/styles/icons/20px/arrow-left.svg +13 -0
  599. package/styles/icons/20px/arrow-right.svg +13 -0
  600. package/styles/icons/20px/arrow-top-left.svg +12 -0
  601. package/styles/icons/20px/arrow-top-right.svg +12 -0
  602. package/styles/icons/20px/arrow-up.svg +16 -0
  603. package/styles/icons/20px/arrows-horizontal.svg +17 -0
  604. package/styles/icons/20px/arrows-vertical.svg +17 -0
  605. package/styles/icons/20px/asterisk.svg +14 -0
  606. package/styles/icons/20px/automatic-updates.svg +17 -0
  607. package/styles/icons/20px/badge.svg +13 -0
  608. package/styles/icons/20px/ban-circle.svg +11 -0
  609. package/styles/icons/20px/bank-account.svg +17 -0
  610. package/styles/icons/20px/barcode.svg +13 -0
  611. package/styles/icons/20px/blank.svg +5 -0
  612. package/styles/icons/20px/blocked-person.svg +19 -0
  613. package/styles/icons/20px/bold.svg +12 -0
  614. package/styles/icons/20px/book.svg +11 -0
  615. package/styles/icons/20px/bookmark.svg +11 -0
  616. package/styles/icons/20px/box.svg +13 -0
  617. package/styles/icons/20px/briefcase.svg +13 -0
  618. package/styles/icons/20px/build.svg +13 -0
  619. package/styles/icons/20px/calculator.svg +12 -0
  620. package/styles/icons/20px/calendar.svg +10 -0
  621. package/styles/icons/20px/camera.svg +13 -0
  622. package/styles/icons/20px/caret-down.svg +12 -0
  623. package/styles/icons/20px/caret-left.svg +13 -0
  624. package/styles/icons/20px/caret-right.svg +13 -0
  625. package/styles/icons/20px/caret-up.svg +13 -0
  626. package/styles/icons/20px/cell-tower.svg +19 -0
  627. package/styles/icons/20px/changes.svg +16 -0
  628. package/styles/icons/20px/chart.svg +16 -0
  629. package/styles/icons/20px/chat.svg +13 -0
  630. package/styles/icons/20px/chevron-backward.svg +12 -0
  631. package/styles/icons/20px/chevron-down.svg +12 -0
  632. package/styles/icons/20px/chevron-forward.svg +12 -0
  633. package/styles/icons/20px/chevron-left.svg +12 -0
  634. package/styles/icons/20px/chevron-right.svg +12 -0
  635. package/styles/icons/20px/chevron-up.svg +12 -0
  636. package/styles/icons/20px/circle-arrow-down.svg +13 -0
  637. package/styles/icons/20px/circle-arrow-left.svg +13 -0
  638. package/styles/icons/20px/circle-arrow-right.svg +14 -0
  639. package/styles/icons/20px/circle-arrow-up.svg +13 -0
  640. package/styles/icons/20px/circle.svg +15 -0
  641. package/styles/icons/20px/citation.svg +12 -0
  642. package/styles/icons/20px/clean.svg +10 -0
  643. package/styles/icons/20px/clipboard.svg +10 -0
  644. package/styles/icons/20px/cloud-download.svg +15 -0
  645. package/styles/icons/20px/cloud-upload.svg +15 -0
  646. package/styles/icons/20px/cloud.svg +11 -0
  647. package/styles/icons/20px/code-block.svg +15 -0
  648. package/styles/icons/20px/code.svg +16 -0
  649. package/styles/icons/20px/cog.svg +18 -0
  650. package/styles/icons/20px/collapse-all.svg +14 -0
  651. package/styles/icons/20px/column-layout.svg +11 -0
  652. package/styles/icons/20px/comment.svg +13 -0
  653. package/styles/icons/20px/comparison.svg +17 -0
  654. package/styles/icons/20px/compass.svg +9 -0
  655. package/styles/icons/20px/compressed.svg +14 -0
  656. package/styles/icons/20px/confirm.svg +15 -0
  657. package/styles/icons/20px/console.svg +10 -0
  658. package/styles/icons/20px/contrast.svg +17 -0
  659. package/styles/icons/20px/control.svg +12 -0
  660. package/styles/icons/20px/credit-card.svg +14 -0
  661. package/styles/icons/20px/cross.svg +13 -0
  662. package/styles/icons/20px/crown.svg +12 -0
  663. package/styles/icons/20px/cube-add.svg +9 -0
  664. package/styles/icons/20px/cube-remove.svg +9 -0
  665. package/styles/icons/20px/cube.svg +9 -0
  666. package/styles/icons/20px/curved-range-chart.svg +13 -0
  667. package/styles/icons/20px/cut.svg +14 -0
  668. package/styles/icons/20px/dashboard.svg +15 -0
  669. package/styles/icons/20px/database.svg +14 -0
  670. package/styles/icons/20px/delete.svg +15 -0
  671. package/styles/icons/20px/delta.svg +11 -0
  672. package/styles/icons/20px/derive-column.svg +29 -0
  673. package/styles/icons/20px/desktop.svg +12 -0
  674. package/styles/icons/20px/diagram-tree.svg +10 -0
  675. package/styles/icons/20px/direction-left.svg +11 -0
  676. package/styles/icons/20px/direction-right.svg +11 -0
  677. package/styles/icons/20px/disable.svg +13 -0
  678. package/styles/icons/20px/document-open.svg +12 -0
  679. package/styles/icons/20px/document-share.svg +14 -0
  680. package/styles/icons/20px/document.svg +12 -0
  681. package/styles/icons/20px/dollar.svg +23 -0
  682. package/styles/icons/20px/dot.svg +11 -0
  683. package/styles/icons/20px/double-caret-horizontal.svg +13 -0
  684. package/styles/icons/20px/double-caret-vertical.svg +13 -0
  685. package/styles/icons/20px/double-chevron-down.svg +14 -0
  686. package/styles/icons/20px/double-chevron-left.svg +14 -0
  687. package/styles/icons/20px/double-chevron-right.svg +14 -0
  688. package/styles/icons/20px/double-chevron-up.svg +14 -0
  689. package/styles/icons/20px/doughnut-chart.svg +11 -0
  690. package/styles/icons/20px/download.svg +14 -0
  691. package/styles/icons/20px/drag-handle-horizontal.svg +15 -0
  692. package/styles/icons/20px/drag-handle-vertical.svg +15 -0
  693. package/styles/icons/20px/draw.svg +18 -0
  694. package/styles/icons/20px/drive-time.svg +18 -0
  695. package/styles/icons/20px/duplicate.svg +12 -0
  696. package/styles/icons/20px/edit.svg +13 -0
  697. package/styles/icons/20px/eject.svg +12 -0
  698. package/styles/icons/20px/endorsed.svg +17 -0
  699. package/styles/icons/20px/envelope.svg +13 -0
  700. package/styles/icons/20px/eraser.svg +12 -0
  701. package/styles/icons/20px/error.svg +12 -0
  702. package/styles/icons/20px/euro.svg +19 -0
  703. package/styles/icons/20px/exchange.svg +17 -0
  704. package/styles/icons/20px/exclude-row.svg +15 -0
  705. package/styles/icons/20px/expand-all.svg +14 -0
  706. package/styles/icons/20px/export.svg +14 -0
  707. package/styles/icons/20px/eye-off.svg +21 -0
  708. package/styles/icons/20px/eye-on.svg +20 -0
  709. package/styles/icons/20px/eye-open.svg +12 -0
  710. package/styles/icons/20px/fast-backward.svg +13 -0
  711. package/styles/icons/20px/fast-forward.svg +13 -0
  712. package/styles/icons/20px/feed-subscribed.svg +17 -0
  713. package/styles/icons/20px/feed.svg +15 -0
  714. package/styles/icons/20px/film.svg +12 -0
  715. package/styles/icons/20px/filter-keep.svg +13 -0
  716. package/styles/icons/20px/filter-list.svg +14 -0
  717. package/styles/icons/20px/filter-remove.svg +15 -0
  718. package/styles/icons/20px/filter.svg +13 -0
  719. package/styles/icons/20px/flag.svg +13 -0
  720. package/styles/icons/20px/flame.svg +10 -0
  721. package/styles/icons/20px/flash.svg +20 -0
  722. package/styles/icons/20px/floppy-disk.svg +12 -0
  723. package/styles/icons/20px/flow-branch.svg +12 -0
  724. package/styles/icons/20px/flow-end.svg +12 -0
  725. package/styles/icons/20px/flow-linear.svg +12 -0
  726. package/styles/icons/20px/flow-review-branch.svg +12 -0
  727. package/styles/icons/20px/flow-review.svg +12 -0
  728. package/styles/icons/20px/flows.svg +13 -0
  729. package/styles/icons/20px/folder-close.svg +12 -0
  730. package/styles/icons/20px/folder-new.svg +10 -0
  731. package/styles/icons/20px/folder-open.svg +13 -0
  732. package/styles/icons/20px/folder-shared-open.svg +15 -0
  733. package/styles/icons/20px/folder-shared.svg +15 -0
  734. package/styles/icons/20px/follower.svg +20 -0
  735. package/styles/icons/20px/following.svg +20 -0
  736. package/styles/icons/20px/font.svg +13 -0
  737. package/styles/icons/20px/fork.svg +16 -0
  738. package/styles/icons/20px/form.svg +18 -0
  739. package/styles/icons/20px/full-circle.svg +7 -0
  740. package/styles/icons/20px/full-stacked-chart.svg +14 -0
  741. package/styles/icons/20px/fullscreen.svg +16 -0
  742. package/styles/icons/20px/function.svg +27 -0
  743. package/styles/icons/20px/gantt-chart.svg +13 -0
  744. package/styles/icons/20px/geolocation.svg +11 -0
  745. package/styles/icons/20px/geosearch.svg +28 -0
  746. package/styles/icons/20px/git-branch.svg +15 -0
  747. package/styles/icons/20px/git-commit.svg +12 -0
  748. package/styles/icons/20px/git-merge.svg +14 -0
  749. package/styles/icons/20px/git-new-branch.svg +15 -0
  750. package/styles/icons/20px/git-pull.svg +17 -0
  751. package/styles/icons/20px/git-push.svg +14 -0
  752. package/styles/icons/20px/git-repo.svg +12 -0
  753. package/styles/icons/20px/glass.svg +11 -0
  754. package/styles/icons/20px/globe-network.svg +12 -0
  755. package/styles/icons/20px/globe.svg +36 -0
  756. package/styles/icons/20px/graph-remove.svg +17 -0
  757. package/styles/icons/20px/graph.svg +16 -0
  758. package/styles/icons/20px/grid-view.svg +11 -0
  759. package/styles/icons/20px/grid.svg +14 -0
  760. package/styles/icons/20px/group-objects.svg +13 -0
  761. package/styles/icons/20px/grouped-bar-chart.svg +14 -0
  762. package/styles/icons/20px/hand-down.svg +14 -0
  763. package/styles/icons/20px/hand-left.svg +14 -0
  764. package/styles/icons/20px/hand-right.svg +14 -0
  765. package/styles/icons/20px/hand-up.svg +14 -0
  766. package/styles/icons/20px/hand.svg +20 -0
  767. package/styles/icons/20px/header-one.svg +12 -0
  768. package/styles/icons/20px/header-two.svg +19 -0
  769. package/styles/icons/20px/header.svg +11 -0
  770. package/styles/icons/20px/headset.svg +13 -0
  771. package/styles/icons/20px/heart-broken.svg +16 -0
  772. package/styles/icons/20px/heart.svg +16 -0
  773. package/styles/icons/20px/heat-grid.svg +12 -0
  774. package/styles/icons/20px/heatmap.svg +12 -0
  775. package/styles/icons/20px/help.svg +12 -0
  776. package/styles/icons/20px/helper-management.svg +16 -0
  777. package/styles/icons/20px/highlight.svg +13 -0
  778. package/styles/icons/20px/history.svg +14 -0
  779. package/styles/icons/20px/home.svg +14 -0
  780. package/styles/icons/20px/horizontal-bar-chart-asc.svg +13 -0
  781. package/styles/icons/20px/horizontal-bar-chart-desc.svg +13 -0
  782. package/styles/icons/20px/horizontal-bar-chart.svg +13 -0
  783. package/styles/icons/20px/horizontal-distribution.svg +12 -0
  784. package/styles/icons/20px/id-number.svg +23 -0
  785. package/styles/icons/20px/image-rotate-left.svg +14 -0
  786. package/styles/icons/20px/image-rotate-right.svg +14 -0
  787. package/styles/icons/20px/import.svg +14 -0
  788. package/styles/icons/20px/inbox-filtered.svg +11 -0
  789. package/styles/icons/20px/inbox-geo.svg +11 -0
  790. package/styles/icons/20px/inbox-search.svg +11 -0
  791. package/styles/icons/20px/inbox-update.svg +11 -0
  792. package/styles/icons/20px/inbox.svg +13 -0
  793. package/styles/icons/20px/info-sign.svg +12 -0
  794. package/styles/icons/20px/inner-join.svg +14 -0
  795. package/styles/icons/20px/insert.svg +16 -0
  796. package/styles/icons/20px/intersection.svg +14 -0
  797. package/styles/icons/20px/ip-address.svg +13 -0
  798. package/styles/icons/20px/issue-closed.svg +12 -0
  799. package/styles/icons/20px/issue-new.svg +12 -0
  800. package/styles/icons/20px/issue.svg +12 -0
  801. package/styles/icons/20px/italic.svg +13 -0
  802. package/styles/icons/20px/join-table.svg +12 -0
  803. package/styles/icons/20px/key-backspace.svg +15 -0
  804. package/styles/icons/20px/key-command.svg +15 -0
  805. package/styles/icons/20px/key-control.svg +12 -0
  806. package/styles/icons/20px/key-delete.svg +15 -0
  807. package/styles/icons/20px/key-enter.svg +13 -0
  808. package/styles/icons/20px/key-escape.svg +13 -0
  809. package/styles/icons/20px/key-option.svg +12 -0
  810. package/styles/icons/20px/key-shift.svg +12 -0
  811. package/styles/icons/20px/key-tab.svg +15 -0
  812. package/styles/icons/20px/key.svg +13 -0
  813. package/styles/icons/20px/known-vehicle.svg +25 -0
  814. package/styles/icons/20px/label.svg +12 -0
  815. package/styles/icons/20px/layer.svg +11 -0
  816. package/styles/icons/20px/layers.svg +14 -0
  817. package/styles/icons/20px/layout-auto.svg +17 -0
  818. package/styles/icons/20px/layout-balloon.svg +16 -0
  819. package/styles/icons/20px/layout-circle.svg +21 -0
  820. package/styles/icons/20px/layout-grid.svg +53 -0
  821. package/styles/icons/20px/layout-group-by.svg +48 -0
  822. package/styles/icons/20px/layout-hierarchy.svg +17 -0
  823. package/styles/icons/20px/layout-linear.svg +12 -0
  824. package/styles/icons/20px/layout-skew-grid.svg +48 -0
  825. package/styles/icons/20px/layout-sorted-clusters.svg +13 -0
  826. package/styles/icons/20px/layout.svg +18 -0
  827. package/styles/icons/20px/left-join.svg +13 -0
  828. package/styles/icons/20px/lifesaver.svg +9 -0
  829. package/styles/icons/20px/lightbulb.svg +13 -0
  830. package/styles/icons/20px/link.svg +18 -0
  831. package/styles/icons/20px/list-columns.svg +12 -0
  832. package/styles/icons/20px/list-detail-view.svg +14 -0
  833. package/styles/icons/20px/list.svg +24 -0
  834. package/styles/icons/20px/locate.svg +16 -0
  835. package/styles/icons/20px/lock.svg +8 -0
  836. package/styles/icons/20px/log-in.svg +13 -0
  837. package/styles/icons/20px/log-out.svg +13 -0
  838. package/styles/icons/20px/manual.svg +20 -0
  839. package/styles/icons/20px/manually-entered-data.svg +15 -0
  840. package/styles/icons/20px/map-create.svg +16 -0
  841. package/styles/icons/20px/map-marker.svg +12 -0
  842. package/styles/icons/20px/map.svg +15 -0
  843. package/styles/icons/20px/maximize.svg +14 -0
  844. package/styles/icons/20px/media.svg +12 -0
  845. package/styles/icons/20px/menu-closed.svg +15 -0
  846. package/styles/icons/20px/menu-open.svg +15 -0
  847. package/styles/icons/20px/menu.svg +12 -0
  848. package/styles/icons/20px/merge-columns.svg +17 -0
  849. package/styles/icons/20px/merge-links.svg +13 -0
  850. package/styles/icons/20px/minimize.svg +14 -0
  851. package/styles/icons/20px/minus.svg +11 -0
  852. package/styles/icons/20px/mobile-phone.svg +11 -0
  853. package/styles/icons/20px/mobile-video.svg +12 -0
  854. package/styles/icons/20px/moon.svg +9 -0
  855. package/styles/icons/20px/more.svg +11 -0
  856. package/styles/icons/20px/mountain.svg +10 -0
  857. package/styles/icons/20px/move.svg +18 -0
  858. package/styles/icons/20px/mugshot.svg +19 -0
  859. package/styles/icons/20px/multi-select.svg +13 -0
  860. package/styles/icons/20px/music.svg +12 -0
  861. package/styles/icons/20px/new-grid-item.svg +16 -0
  862. package/styles/icons/20px/new-link.svg +13 -0
  863. package/styles/icons/20px/new-object.svg +17 -0
  864. package/styles/icons/20px/new-person.svg +19 -0
  865. package/styles/icons/20px/new-prescription.svg +16 -0
  866. package/styles/icons/20px/new-text-box.svg +16 -0
  867. package/styles/icons/20px/ninja.svg +13 -0
  868. package/styles/icons/20px/notifications-updated.svg +10 -0
  869. package/styles/icons/20px/notifications.svg +13 -0
  870. package/styles/icons/20px/numbered-list.svg +21 -0
  871. package/styles/icons/20px/numerical.svg +29 -0
  872. package/styles/icons/20px/office.svg +12 -0
  873. package/styles/icons/20px/offline.svg +12 -0
  874. package/styles/icons/20px/oil-field.svg +14 -0
  875. package/styles/icons/20px/one-column.svg +13 -0
  876. package/styles/icons/20px/outdated.svg +10 -0
  877. package/styles/icons/20px/page-layout.svg +12 -0
  878. package/styles/icons/20px/panel-stats.svg +12 -0
  879. package/styles/icons/20px/panel-table.svg +9 -0
  880. package/styles/icons/20px/paperclip.svg +16 -0
  881. package/styles/icons/20px/paragraph.svg +9 -0
  882. package/styles/icons/20px/path-search.svg +24 -0
  883. package/styles/icons/20px/path.svg +12 -0
  884. package/styles/icons/20px/pause.svg +11 -0
  885. package/styles/icons/20px/people.svg +26 -0
  886. package/styles/icons/20px/percentage.svg +14 -0
  887. package/styles/icons/20px/person.svg +18 -0
  888. package/styles/icons/20px/phone.svg +15 -0
  889. package/styles/icons/20px/pie-chart.svg +10 -0
  890. package/styles/icons/20px/pin.svg +13 -0
  891. package/styles/icons/20px/pivot-table.svg +16 -0
  892. package/styles/icons/20px/pivot.svg +14 -0
  893. package/styles/icons/20px/play.svg +12 -0
  894. package/styles/icons/20px/plus.svg +11 -0
  895. package/styles/icons/20px/polygon-filter.svg +15 -0
  896. package/styles/icons/20px/power.svg +12 -0
  897. package/styles/icons/20px/predictive-analysis.svg +33 -0
  898. package/styles/icons/20px/prescription.svg +14 -0
  899. package/styles/icons/20px/presentation.svg +14 -0
  900. package/styles/icons/20px/print.svg +13 -0
  901. package/styles/icons/20px/projects.svg +13 -0
  902. package/styles/icons/20px/properties.svg +14 -0
  903. package/styles/icons/20px/property.svg +14 -0
  904. package/styles/icons/20px/publish-function.svg +30 -0
  905. package/styles/icons/20px/pulse.svg +13 -0
  906. package/styles/icons/20px/random.svg +17 -0
  907. package/styles/icons/20px/record.svg +10 -0
  908. package/styles/icons/20px/redo.svg +13 -0
  909. package/styles/icons/20px/refresh.svg +15 -0
  910. package/styles/icons/20px/regression-chart.svg +13 -0
  911. package/styles/icons/20px/remove-column-left.svg +12 -0
  912. package/styles/icons/20px/remove-column-right.svg +12 -0
  913. package/styles/icons/20px/remove-column.svg +14 -0
  914. package/styles/icons/20px/remove-row-bottom.svg +12 -0
  915. package/styles/icons/20px/remove-row-top.svg +11 -0
  916. package/styles/icons/20px/remove.svg +13 -0
  917. package/styles/icons/20px/repeat.svg +12 -0
  918. package/styles/icons/20px/resolve.svg +17 -0
  919. package/styles/icons/20px/rig.svg +14 -0
  920. package/styles/icons/20px/right-join.svg +13 -0
  921. package/styles/icons/20px/ring.svg +11 -0
  922. package/styles/icons/20px/rotate-document.svg +14 -0
  923. package/styles/icons/20px/rotate-page.svg +14 -0
  924. package/styles/icons/20px/satellite.svg +15 -0
  925. package/styles/icons/20px/saved.svg +13 -0
  926. package/styles/icons/20px/scatter-plot.svg +13 -0
  927. package/styles/icons/20px/search-around.svg +30 -0
  928. package/styles/icons/20px/search-template.svg +16 -0
  929. package/styles/icons/20px/search-text.svg +16 -0
  930. package/styles/icons/20px/search.svg +13 -0
  931. package/styles/icons/20px/segmented-control.svg +10 -0
  932. package/styles/icons/20px/select.svg +14 -0
  933. package/styles/icons/20px/selection.svg +11 -0
  934. package/styles/icons/20px/send-to-graph.svg +17 -0
  935. package/styles/icons/20px/send-to-map.svg +15 -0
  936. package/styles/icons/20px/send-to.svg +18 -0
  937. package/styles/icons/20px/series-add.svg +9 -0
  938. package/styles/icons/20px/series-configuration.svg +17 -0
  939. package/styles/icons/20px/series-derived.svg +11 -0
  940. package/styles/icons/20px/series-filtered.svg +11 -0
  941. package/styles/icons/20px/series-search.svg +14 -0
  942. package/styles/icons/20px/settings.svg +14 -0
  943. package/styles/icons/20px/share.svg +13 -0
  944. package/styles/icons/20px/shield.svg +10 -0
  945. package/styles/icons/20px/shop.svg +14 -0
  946. package/styles/icons/20px/shopping-cart.svg +13 -0
  947. package/styles/icons/20px/sim-card.svg +12 -0
  948. package/styles/icons/20px/slash.svg +11 -0
  949. package/styles/icons/20px/small-cross.svg +13 -0
  950. package/styles/icons/20px/small-minus.svg +11 -0
  951. package/styles/icons/20px/small-plus.svg +11 -0
  952. package/styles/icons/20px/small-tick.svg +12 -0
  953. package/styles/icons/20px/snowflake.svg +12 -0
  954. package/styles/icons/20px/social-media.svg +12 -0
  955. package/styles/icons/20px/sort-alphabetical-desc.svg +14 -0
  956. package/styles/icons/20px/sort-alphabetical.svg +14 -0
  957. package/styles/icons/20px/sort-asc.svg +15 -0
  958. package/styles/icons/20px/sort-desc.svg +15 -0
  959. package/styles/icons/20px/sort-numerical-desc.svg +25 -0
  960. package/styles/icons/20px/sort-numerical.svg +26 -0
  961. package/styles/icons/20px/sort.svg +15 -0
  962. package/styles/icons/20px/split-columns.svg +16 -0
  963. package/styles/icons/20px/square.svg +12 -0
  964. package/styles/icons/20px/stacked-chart.svg +13 -0
  965. package/styles/icons/20px/star-empty.svg +8 -0
  966. package/styles/icons/20px/star.svg +8 -0
  967. package/styles/icons/20px/step-backward.svg +12 -0
  968. package/styles/icons/20px/step-chart.svg +12 -0
  969. package/styles/icons/20px/step-forward.svg +12 -0
  970. package/styles/icons/20px/stop.svg +11 -0
  971. package/styles/icons/20px/strikethrough.svg +22 -0
  972. package/styles/icons/20px/style.svg +13 -0
  973. package/styles/icons/20px/swap-horizontal.svg +16 -0
  974. package/styles/icons/20px/swap-vertical.svg +16 -0
  975. package/styles/icons/20px/symbol-circle.svg +10 -0
  976. package/styles/icons/20px/symbol-cross.svg +11 -0
  977. package/styles/icons/20px/symbol-diamond.svg +13 -0
  978. package/styles/icons/20px/symbol-square.svg +11 -0
  979. package/styles/icons/20px/symbol-triangle-down.svg +11 -0
  980. package/styles/icons/20px/symbol-triangle-up.svg +12 -0
  981. package/styles/icons/20px/tag.svg +10 -0
  982. package/styles/icons/20px/take-action.svg +15 -0
  983. package/styles/icons/20px/taxi.svg +12 -0
  984. package/styles/icons/20px/text-highlight.svg +14 -0
  985. package/styles/icons/20px/th-derived.svg +18 -0
  986. package/styles/icons/20px/th-filtered.svg +10 -0
  987. package/styles/icons/20px/th-list.svg +15 -0
  988. package/styles/icons/20px/th.svg +16 -0
  989. package/styles/icons/20px/thumbs-down.svg +17 -0
  990. package/styles/icons/20px/thumbs-up.svg +17 -0
  991. package/styles/icons/20px/tick-circle.svg +10 -0
  992. package/styles/icons/20px/tick.svg +12 -0
  993. package/styles/icons/20px/time.svg +13 -0
  994. package/styles/icons/20px/timeline-area-chart.svg +12 -0
  995. package/styles/icons/20px/timeline-bar-chart.svg +13 -0
  996. package/styles/icons/20px/timeline-events.svg +18 -0
  997. package/styles/icons/20px/timeline-line-chart.svg +14 -0
  998. package/styles/icons/20px/tint.svg +11 -0
  999. package/styles/icons/20px/torch.svg +13 -0
  1000. package/styles/icons/20px/train.svg +9 -0
  1001. package/styles/icons/20px/translate.svg +17 -0
  1002. package/styles/icons/20px/trash.svg +15 -0
  1003. package/styles/icons/20px/tree.svg +12 -0
  1004. package/styles/icons/20px/trending-down.svg +13 -0
  1005. package/styles/icons/20px/trending-up.svg +13 -0
  1006. package/styles/icons/20px/two-columns.svg +14 -0
  1007. package/styles/icons/20px/underline.svg +12 -0
  1008. package/styles/icons/20px/undo.svg +13 -0
  1009. package/styles/icons/20px/ungroup-objects.svg +12 -0
  1010. package/styles/icons/20px/unknown-vehicle.svg +33 -0
  1011. package/styles/icons/20px/unlock.svg +12 -0
  1012. package/styles/icons/20px/unpin.svg +13 -0
  1013. package/styles/icons/20px/unresolve.svg +20 -0
  1014. package/styles/icons/20px/updated.svg +10 -0
  1015. package/styles/icons/20px/upload.svg +13 -0
  1016. package/styles/icons/20px/user.svg +28 -0
  1017. package/styles/icons/20px/variable.svg +24 -0
  1018. package/styles/icons/20px/vertical-bar-chart-asc.svg +13 -0
  1019. package/styles/icons/20px/vertical-bar-chart-desc.svg +13 -0
  1020. package/styles/icons/20px/vertical-distribution.svg +12 -0
  1021. package/styles/icons/20px/video.svg +11 -0
  1022. package/styles/icons/20px/volume-down.svg +12 -0
  1023. package/styles/icons/20px/volume-off.svg +11 -0
  1024. package/styles/icons/20px/volume-up.svg +14 -0
  1025. package/styles/icons/20px/walk.svg +11 -0
  1026. package/styles/icons/20px/warning-sign.svg +13 -0
  1027. package/styles/icons/20px/waterfall-chart.svg +14 -0
  1028. package/styles/icons/20px/widget-button.svg +13 -0
  1029. package/styles/icons/20px/widget-footer.svg +7 -0
  1030. package/styles/icons/20px/widget-header.svg +7 -0
  1031. package/styles/icons/20px/widget.svg +14 -0
  1032. package/styles/icons/20px/wrench.svg +12 -0
  1033. package/styles/icons/20px/zoom-in.svg +15 -0
  1034. package/styles/icons/20px/zoom-out.svg +14 -0
  1035. package/styles/icons/20px/zoom-to-fit.svg +21 -0
  1036. package/styles/tailwind/_base.scss +59117 -0
  1037. package/styles/tailwind/tailwind.config.js +410 -0
  1038. package/types.d.ts +3 -0
  1039. package/types.js +3 -0
  1040. package/types.js.map +1 -0
  1041. package/withErrorBoundary.d.ts +104 -0
  1042. package/withErrorBoundary.js +52 -0
  1043. package/withErrorBoundary.js.map +1 -0
package/LICENSE ADDED
@@ -0,0 +1,190 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ Copyright 2018 Stoplight, Inc.
179
+
180
+ Licensed under the Apache License, Version 2.0 (the "License");
181
+ you may not use this file except in compliance with the License.
182
+ You may obtain a copy of the License at
183
+
184
+ http://www.apache.org/licenses/LICENSE-2.0
185
+
186
+ Unless required by applicable law or agreed to in writing, software
187
+ distributed under the License is distributed on an "AS IS" BASIS,
188
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
189
+ See the License for the specific language governing permissions and
190
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,106 @@
1
+ # UI-KIT
2
+
3
+ [![Maintainability](https://api.codeclimate.com/v1/badges/f0df5b38120a6471be33/maintainability)](https://codeclimate.com/repos/5bdb489c9a98842d0a00d211/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/f0df5b38120a6471be33/test_coverage)](https://codeclimate.com/repos/5bdb489c9a98842d0a00d211/test_coverage)
4
+
5
+ Stoplight UI-Kit is a shared component library that contains basic components built using [Blueprint](https://blueprintjs.com/docs/), [Tailwind](https://next.tailwindcss.com/), and [SCSS](https://sass-lang.com/guide) All custom components should support overridable theming from a theme object, and also come with default styling from our prepackaged theme.
6
+
7
+ - Explore the components: [Storybook](https://stoplightio.github.io/ui-kit/)
8
+ - View the changelog: [Releases](https://github.com/stoplightio/ui-kit/releases)
9
+
10
+ ### Installation
11
+
12
+ ```bash
13
+ # latest stable + required dependencies
14
+ yarn add @stoplight/ui-kit
15
+ ```
16
+
17
+ ## Important Commands
18
+
19
+ - `yarn storybook`: Starts the storybook playground
20
+ - `yarn build`: Builds the package.
21
+ - `yarn build.styles`: Builds and copies over the appropriate scss related files to dist.
22
+ - `yarn build.tw`: Generates the tailwind scss file from the config (needs to be rerun everytime `tailwind.config` is updated).
23
+ - `yarn build.bp`: Generates the blueprint icons scss file (should not need to run often)
24
+
25
+ ## Important Files/Folders
26
+
27
+ #### [./src/styles/blueprint](./src/styles/blueprint)
28
+
29
+ - [\_base.scss](./src/styles/blueprint/_base.scss):
30
+ Contains a remapping of stoplight variables to blueprint variables. This file should rarely be edited directly and require minimal maintenance. Any updates to variables in here should be updated through [\_variables.scss](./src/styles/common/_variables.scss)
31
+
32
+ - [\_icons.scss](./src/styles/blueprint/_icons.scss): Auto generated file of blueprint icon fonts. Created with the `yarn build.bp` command and should not be updated directly
33
+
34
+ - [icons directory](./src/styles/blueprint/icons): Icon fonts used by \_icons.scss
35
+
36
+ #### [./src/styles/tailwind](./src/styles/tailwind)
37
+
38
+ - [\_base.scss](./src/styles/tailwind/_base.scss): Auto generated tailwind classnames that utilize our stoplight scss variables. This file should NEVER be updated directly and is created using `yarn build.tw`
39
+
40
+ - [tailwind.config.js](./src/styles/tailwind/tailwind.config.js): Tailwind config object. Note two special features. A few properties, like colors, map to scss [utility function](./src/styles/common/_utils.scss) strings so that we can properly convert to our scss theme variable during the compile process. And the inclusing of a `.dark` plugin that adds extra dark classes so we can do things like `className="text-success dark:text-danger"`
41
+
42
+ #### [./src/styles/common](./src/styles/common)
43
+
44
+ - [\_variables.scss](./src/styles/common/_variables.scss): Contains three major variables used for style consistency:
45
+
46
+ - `$sl-defaults`: app wide defaults, this where we define defaults for things we might want an end consumer to overwrite. This should never be used outside of this file. Notice that it extends the defaults/variables from specific components like "code"
47
+
48
+ - `$sl-config`: This is an empy variable with a default value of `()`, think of it as an empty representation of what a consumer might pass to ui-kit. It is needed since scss `map-merge` does not deep merge, so we cannot explicity overwrite `$sl-defaults`. For more information on this see [example usage below](#example-usage). This should never be used elsewhere within this repo
49
+
50
+ - `$sl-variables`: A map that equals a deep merge of consumer passed in `$sl-config` and internally defined `$sl-defaults`. This is the actual variable map that our theme with be using. and should only every be used in [\_theme]()./src/styles/common/\_theme.scss)
51
+
52
+ - [\_theme.scss](./src/styles/common/_theme.scss): Contains our SCSS Theme `$sl-theme` and helpful theme getters!! Includes any values that we think might be valuable to other components. Notice that colors uses `$sl-variables` because we allow that value to be overwritten by a consumer. It's set up in such a way that that we will have complete control over how these properties behave. (colors can be changed but font sizes for example cannot). The theme will also include any fields from \$sl-variables that are not explicity defined in the main `$sl-theme` map. So for example, although `code-editor` does not appear in `$sl-theme` directly it's still included because we extend the fields \$sl-variables that are missing. If you want to access the theme in any other scss files just import @stoplight/ui-kit/src/styles/common/theme
53
+
54
+ - [\_utils.scss](./src/styles/common/_utils.scss): Has some helpful utils around map functions. Includes map-deep-get, map-safe-get, and map-extend
55
+
56
+ #### [./src/styles/ui-kit.scss](./src/styles/ui-kit.scss): This is the scss file that will be imported by the end consumer and contains everything else!
57
+
58
+ ## Creating a Component
59
+
60
+ 1. Add a folder with you component name to the `./src/components` directory
61
+ 2. Add a `{Component}.tsx` under `./src/components/{component}`
62
+ 3. Add a `__tests__` folder under `./src/components/{component}`
63
+ 4. If this component requires special styling or a unique class name create `./src/components/{component}/styles/_base.scss` and `./src/components/{component}/styles/class.ts` respectively
64
+
65
+ - Rules for styling:
66
+ - **Class Name**: If the component does not follow under one of the blueprint class names, create one for this component using the name space variable, we need to use namespacing so we keep our classes unique, the NS variable will always be the same
67
+ ```javascript
68
+ const NS = process.env.BLUEPRINT_NAMESPACE || 'bp3';
69
+ export const CODE_EDITOR = `${NS}-code-editor`;
70
+ ```
71
+ -**SCSS**: Every component using custom scss should support both light an dark styling. Dark selectors will look something like `.{$ns}-dark .{$ns}-code-editor` look at [tailwind](./src/styles/tailwind/_base.scss) for examples on how this is done. If a component requires themable variables (think really just colors), they should be defined in an adjacent file named `_variables.scss`. The variables should NEVER be used directly. Instead they get injected back into the theme and should be used by using the `get-theme` function in your `_base.scss`. Lastly avoid created separate variables for light and dark. So don't create `$sl-var: red` and `$sl-var-dark: blue`, instead be creative and use different shades of the same color. So `$sl-var: red` then do something like `.{$ns}-dark .{$ns}-code-editor (color: lighten($sl-var, 10%))`
72
+
73
+ 5. If this component requires specific types or utils include them in this component folder as well. We want to keep everything really independent
74
+
75
+ ## Example Usage
76
+
77
+ Want to use ui-kit in another repo? Simple.
78
+
79
+ ```bash
80
+ # latest stable + required dependencies
81
+ yarn add @stoplight/ui-kit
82
+ ```
83
+
84
+ Then in your main `scss` file
85
+
86
+ ```scss
87
+ /*main.scss*/
88
+ @import '~@stoplight/ui-kit/src/styles/ui-kit';
89
+ ```
90
+
91
+ Lastly make sure compile your scss to css during your build process. This can be done using the scss-loader in webpack, or even just straight node-sass if so desired.
92
+
93
+ Okay its working, but you decided you're really not a fan of the theming :( well luckily its easily overwrittable to whatever you want! In the same file as your import include an `$sl-config` variable ABOVE the import. If its after the import it wont work. Compile after as you normally would as see the updates.
94
+
95
+ ```scss
96
+ /*main.scss*/
97
+ $sl-config: (
98
+ colors: (
99
+ info: rgba(10, 25, 40, 1),
100
+ primary: yellow,
101
+ secondary: #805ad5,
102
+ ),
103
+ );
104
+
105
+ @import '~@stoplight/ui-kit/src/styles/ui-kit';
106
+ ```
@@ -0,0 +1,10 @@
1
+ import * as React from 'react';
2
+ import { Scrollbar, ScrollbarProps } from 'react-scrollbars-custom';
3
+ export type ScrollbarRefInstance = HTMLDivElement | Scrollbar | null;
4
+ export type ScrollbarRef = (instance: ScrollbarRefInstance) => void;
5
+ interface IScrollContainer extends Omit<ScrollbarProps, 'ref'> {
6
+ shadows?: boolean;
7
+ autosize?: boolean;
8
+ }
9
+ declare const ScrollContainer: React.ForwardRefExoticComponent<IScrollContainer & React.RefAttributes<ScrollbarRefInstance>>;
10
+ export { IScrollContainer, ScrollContainer };
@@ -0,0 +1,93 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ScrollContainer = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const classnames_1 = require("classnames");
6
+ const lodash_1 = require("lodash");
7
+ const React = require("react");
8
+ const react_scrollbars_custom_1 = require("react-scrollbars-custom");
9
+ const classes_1 = require("../classes");
10
+ const index_1 = require("../index");
11
+ const ScrollContainer = React.forwardRef((_a, scrollbarRef) => {
12
+ var { id, children, shadows = true, autosize = true, scrollbarWidth = 6 } = _a, props = tslib_1.__rest(_a, ["id", "children", "shadows", "autosize", "scrollbarWidth"]);
13
+ const scrollbar = React.useRef(null);
14
+ const scrollbarCallback = React.useCallback(ref => {
15
+ scrollbar.current = ref;
16
+ if (typeof scrollbarRef === 'function') {
17
+ scrollbarRef(ref);
18
+ }
19
+ }, [scrollbarRef]);
20
+ const showTracks = React.useCallback(() => {
21
+ if (!scrollbar.current)
22
+ return;
23
+ scrollbar.current.trackXElement.style.opacity = 1;
24
+ scrollbar.current.trackYElement.style.opacity = 1;
25
+ scrollbar.current.trackXElement.style.transition = 'opacity 0s';
26
+ scrollbar.current.trackYElement.style.transition = 'opacity 0s';
27
+ }, [scrollbar]);
28
+ const hideTracks = React.useCallback(() => {
29
+ if (!scrollbar.current ||
30
+ scrollbar.current.trackXElement.classList.contains('dragging') ||
31
+ scrollbar.current.trackYElement.classList.contains('dragging')) {
32
+ return;
33
+ }
34
+ scrollbar.current.trackXElement.style.opacity = 0;
35
+ scrollbar.current.trackYElement.style.opacity = 0;
36
+ scrollbar.current.trackXElement.style.transition = 'opacity 0.8s';
37
+ scrollbar.current.trackYElement.style.transition = 'opacity 0.8s';
38
+ }, [scrollbar]);
39
+ const updateShadows = React.useCallback((scrollValues) => {
40
+ if (!scrollbar.current || !shadows)
41
+ return;
42
+ const { scrollTop, scrollHeight, clientHeight } = scrollValues;
43
+ const shadowTopOpacity = (1 / 20) * scrollTop;
44
+ const bottomScrollTop = scrollHeight - clientHeight;
45
+ const shadowBottomOpacity = (1 / 20) * (bottomScrollTop - Math.max(scrollTop, bottomScrollTop));
46
+ const darkMode = window.document.getElementsByClassName('bp3-dark').length > 0;
47
+ scrollbar.current.wrapperElement.style.boxShadow = `rgba(${darkMode ? `44, 44, 44` : `221, 221, 221`}, ${shadowTopOpacity}) 0px 7px 8px -7px inset, rgba(${darkMode ? `44, 44, 44` : `221, 221, 221`}, ${shadowBottomOpacity}) 0px -7px 8px -7px inset`;
48
+ }, [scrollbar, shadows]);
49
+ const thumbRenderer = React.useCallback((props) => {
50
+ const { elementRef, style, className } = props;
51
+ const styles = (0, lodash_1.omit)(style, ['background', 'borderRadius']);
52
+ return (React.createElement("div", { className: (0, classnames_1.default)(className, 'bg-darken-4 hover:bg-darken-6 active:bg-darken-7 dark:bg-lighten-4 dark-hover:bg-lighten-5 dark-active:bg-lighten-6'), style: styles, ref: elementRef }));
53
+ }, []);
54
+ const ScrollElem = (React.createElement(react_scrollbars_custom_1.Scrollbar, Object.assign({}, props, { wrapperProps: {
55
+ className: classes_1.Classes.SCROLL_CONTAINER,
56
+ style: { position: 'absolute', top: 0, left: 0, bottom: 0, right: 0, overflow: 'hidden' },
57
+ }, trackYProps: {
58
+ style: {
59
+ opacity: 0,
60
+ cursor: 'pointer',
61
+ background: 'inherit',
62
+ width: scrollbarWidth,
63
+ marginRight: 0,
64
+ borderRadius: 0,
65
+ top: 0,
66
+ bottom: 0,
67
+ height: '100%',
68
+ },
69
+ }, trackXProps: {
70
+ style: {
71
+ opacity: 0,
72
+ cursor: 'pointer',
73
+ background: 'inherit',
74
+ height: scrollbarWidth,
75
+ marginBottom: 0,
76
+ borderRadius: 0,
77
+ left: 0,
78
+ right: 0,
79
+ width: '100%',
80
+ },
81
+ }, thumbXProps: {
82
+ renderer: thumbRenderer,
83
+ }, thumbYProps: {
84
+ renderer: thumbRenderer,
85
+ }, ref: scrollbarCallback, onUpdate: updateShadows, scrollDetectionThreshold: 500, onMouseOver: showTracks, onMouseOut: hideTracks }), children));
86
+ if (autosize) {
87
+ return (React.createElement(index_1.AutoSizer, null, ({ height, width }) => React.createElement("div", { style: { height, width } }, ScrollElem)));
88
+ }
89
+ return ScrollElem;
90
+ });
91
+ exports.ScrollContainer = ScrollContainer;
92
+ ScrollContainer.displayName = 'ScrollContainer';
93
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/ScrollContainer/index.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,19 @@
1
+ import * as React from 'react';
2
+ import * as ReactWindow from 'react-window';
3
+ export declare const CustomScrollContainer: React.ForwardRefExoticComponent<IFixedSizeListProps & {
4
+ listHeight: number;
5
+ scrollbarWidth?: number | undefined;
6
+ } & React.RefAttributes<HTMLDivElement>>;
7
+ interface IFixedSizeListProps extends Omit<ReactWindow.FixedSizeListProps, 'height' | 'width'> {
8
+ className?: string;
9
+ maxRows?: number;
10
+ instanceRef?: React.Ref<ReactWindow.FixedSizeList>;
11
+ }
12
+ declare const FixedSizeList: React.FunctionComponent<IFixedSizeListProps>;
13
+ interface IVariableSizeListProps extends Omit<ReactWindow.VariableSizeListProps, 'height' | 'width'> {
14
+ className?: string;
15
+ instanceRef?: React.Ref<ReactWindow.VariableSizeList>;
16
+ }
17
+ declare const VariableSizeList: React.FunctionComponent<IVariableSizeListProps>;
18
+ export { areEqual, shouldComponentUpdate, ListItemKeySelector, FixedSizeList as IFixedSizeList, VariableSizeList as IVariableSizeList, } from 'react-window';
19
+ export { IFixedSizeListProps, FixedSizeList, IVariableSizeListProps, VariableSizeList };
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.VariableSizeList = exports.FixedSizeList = exports.IVariableSizeList = exports.IFixedSizeList = exports.shouldComponentUpdate = exports.areEqual = exports.CustomScrollContainer = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const cn = require("classnames");
6
+ const React = require("react");
7
+ const ReactWindow = require("react-window");
8
+ const min = require("lodash/min");
9
+ const noop = require("lodash/noop");
10
+ const AutoSizer_1 = require("../AutoSizer");
11
+ const ScrollContainer_1 = require("../ScrollContainer");
12
+ exports.CustomScrollContainer = React.forwardRef(({ onScroll = noop, children, style, className, scrollbarWidth = 8 }, ref) => {
13
+ return (React.createElement("div", { style: style, className: "ScrollList-Scrollbars" },
14
+ React.createElement(ScrollContainer_1.ScrollContainer, { ref: ref, onScroll: scrollValues => onScroll({ currentTarget: scrollValues }), autosize: false, scrollbarWidth: scrollbarWidth },
15
+ React.createElement("div", { className: cn('ScrollList-Content relative', className) }, children))));
16
+ });
17
+ const FixedSizeList = React.forwardRef(function FixedSizeList(props, ref) {
18
+ const { className, children, itemSize, itemCount, instanceRef, maxRows, style } = props, rest = tslib_1.__rest(props, ["className", "children", "itemSize", "itemCount", "instanceRef", "maxRows", "style"]);
19
+ const listHeight = min([itemCount, maxRows]) * itemSize;
20
+ return (React.createElement("div", { style: { height: maxRows ? listHeight : '100%' }, className: "ScrollList-Container" },
21
+ React.createElement(AutoSizer_1.AutoSizer, null, ({ height, width }) => (React.createElement(ReactWindow.FixedSizeList, Object.assign({}, rest, { ref: instanceRef, itemSize: itemSize, itemCount: itemCount, height: min([height, listHeight]), width: width, className: className, style: style, outerRef: ref, outerElementType: exports.CustomScrollContainer }), children)))));
22
+ });
23
+ exports.FixedSizeList = FixedSizeList;
24
+ FixedSizeList.displayName = 'FixedSizeList';
25
+ const VariableSizeList = React.forwardRef(function VariableSizeList(props, ref) {
26
+ const { children, instanceRef } = props, rest = tslib_1.__rest(props, ["children", "instanceRef"]);
27
+ return (React.createElement("div", { className: "ScrollList-Container h-full" },
28
+ React.createElement(AutoSizer_1.AutoSizer, null, ({ height, width }) => (React.createElement(ReactWindow.VariableSizeList, Object.assign({}, rest, { ref: instanceRef, height: height, width: width, outerRef: ref, outerElementType: exports.CustomScrollContainer }), children)))));
29
+ });
30
+ exports.VariableSizeList = VariableSizeList;
31
+ VariableSizeList.displayName = 'VariableSizeList';
32
+ var react_window_1 = require("react-window");
33
+ Object.defineProperty(exports, "areEqual", { enumerable: true, get: function () { return react_window_1.areEqual; } });
34
+ Object.defineProperty(exports, "shouldComponentUpdate", { enumerable: true, get: function () { return react_window_1.shouldComponentUpdate; } });
35
+ Object.defineProperty(exports, "IFixedSizeList", { enumerable: true, get: function () { return react_window_1.FixedSizeList; } });
36
+ Object.defineProperty(exports, "IVariableSizeList", { enumerable: true, get: function () { return react_window_1.VariableSizeList; } });
37
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/ScrollList/index.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { HTMLInputProps, IInputGroupProps } from '@blueprintjs/core';
3
+ type SecretInputProps = {
4
+ selectOnFocus?: boolean;
5
+ } & IInputGroupProps & HTMLInputProps;
6
+ export declare const SecretInput: ({ selectOnFocus, ...props }: SecretInputProps) => JSX.Element;
7
+ export {};
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SecretInput = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const React = require("react");
6
+ const core_1 = require("@blueprintjs/core");
7
+ const SecretInput = (_a) => {
8
+ var { selectOnFocus = false } = _a, props = tslib_1.__rest(_a, ["selectOnFocus"]);
9
+ const [visible, setVisible] = React.useState(false);
10
+ const inputRef = React.useRef(null);
11
+ const onRef = React.useCallback(el => (inputRef.current = el), []);
12
+ const onClick = React.useCallback(() => {
13
+ setVisible(!visible);
14
+ const input = inputRef.current;
15
+ if (input !== null) {
16
+ input.focus();
17
+ setTimeout(() => input.select());
18
+ }
19
+ }, [visible]);
20
+ return (React.createElement(core_1.InputGroup, Object.assign({ inputRef: onRef, rightElement: React.createElement(core_1.Tooltip, { content: `${visible ? 'Hide' : 'Reveal'}`, disabled: props.disabled },
21
+ React.createElement(core_1.Button, { icon: visible ? 'eye-open' : 'eye-off', onClick: onClick, minimal: true })), type: visible ? 'text' : 'password', onFocus: e => selectOnFocus && e.target.select() }, props)));
22
+ };
23
+ exports.SecretInput = SecretInput;
24
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/SecretInput/index.tsx"],"names":[],"mappings":";;;;AAAA,+BAA+B;AAE/B,4CAAkG;AAO3F,MAAM,WAAW,GAAG,CAAC,EAAqD,EAAE,EAAE;QAAzD,EAAE,aAAa,GAAG,KAAK,OAA8B,EAAzB,KAAK,sBAAjC,iBAAmC,CAAF;IAC3D,MAAM,CAAC,OAAO,EAAE,UAAU,CAAC,GAAG,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;IACpD,MAAM,QAAQ,GAAG,KAAK,CAAC,MAAM,CAA0B,IAAI,CAAC,CAAC;IAE7D,MAAM,KAAK,GAAG,KAAK,CAAC,WAAW,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,OAAO,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC;IAEnE,MAAM,OAAO,GAAG,KAAK,CAAC,WAAW,CAAC,GAAG,EAAE;QACrC,UAAU,CAAC,CAAC,OAAO,CAAC,CAAC;QACrB,MAAM,KAAK,GAAG,QAAQ,CAAC,OAAO,CAAC;QAC/B,IAAI,KAAK,KAAK,IAAI,EAAE;YAClB,KAAK,CAAC,KAAK,EAAE,CAAC;YAEd,UAAU,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,MAAM,EAAE,CAAC,CAAC;SAClC;IACH,CAAC,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC;IAEd,OAAO,CACL,oBAAC,iBAAU,kBACT,QAAQ,EAAE,KAAK,EACf,YAAY,EACV,oBAAC,cAAO,IAAC,OAAO,EAAE,GAAG,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,KAAK,CAAC,QAAQ;YAC1E,oBAAC,aAAM,IAAC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,IAAI,GAAI,CAC3E,EAEZ,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,UAAU,EACnC,OAAO,EAAE,CAAC,CAAC,EAAE,CAAC,aAAa,IAAI,CAAC,CAAC,MAAM,CAAC,MAAM,EAAE,IAC5C,KAAK,EACT,CACH,CAAC;AACJ,CAAC,CAAC;AA7BW,QAAA,WAAW,eA6BtB"}
@@ -0,0 +1 @@
1
+ export * from '@blueprintjs/select';
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("@blueprintjs/select"), exports);
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Select/index.ts"],"names":[],"mappings":";;;AAAA,8DAAoC"}
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { TabProps as ISimpleTabProps } from 'react-tabs';
3
+ declare const SimpleTab: React.FunctionComponent<ISimpleTabProps> & {
4
+ tabsRole: string;
5
+ };
6
+ export { SimpleTab, ISimpleTabProps };
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SimpleTab = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const cn = require("classnames");
6
+ const React = require("react");
7
+ const react_tabs_1 = require("react-tabs");
8
+ const classes_1 = require("../classes");
9
+ const SimpleTab = props => {
10
+ const { children, ref, className, selectedClassName, disabledClassName } = props, rest = tslib_1.__rest(props, ["children", "ref", "className", "selectedClassName", "disabledClassName"]);
11
+ return React.createElement(react_tabs_1.Tab, Object.assign({ className: cn(classes_1.Classes.SIMPLE_TAB, className), selectedClassName: cn(selectedClassName, 'selected-tab'), disabledClassName: cn(disabledClassName, 'disabled-tab') }, rest), children);
12
+ };
13
+ exports.SimpleTab = SimpleTab;
14
+ SimpleTab.tabsRole = 'Tab';
15
+ //# sourceMappingURL=Tab.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Tab.js","sourceRoot":"","sources":["../../src/SimpleTabs/Tab.tsx"],"names":[],"mappings":";;;;AAAA,iCAAiC;AACjC,+BAA+B;AAC/B,2CAA8D;AAC9D,wCAAqC;AAErC,MAAM,SAAS,GAAoE,KAAK,CAAC,EAAE;IACzF,MAAM,EAAE,QAAQ,EAAE,GAAG,EAAE,SAAS,EAAE,iBAAiB,EAAE,iBAAiB,KAAc,KAAK,EAAd,IAAI,kBAAK,KAAK,EAAnF,0EAA2E,CAAQ,CAAC;IAE1F,OAAO,KAAK,CAAC,aAAa,CACxB,gBAAG,kBAED,SAAS,EAAE,EAAE,CAAC,iBAAO,CAAC,UAAU,EAAE,SAAS,CAAC,EAC5C,iBAAiB,EAAE,EAAE,CAAC,iBAAiB,EAAE,cAAc,CAAC,EACxD,iBAAiB,EAAE,EAAE,CAAC,iBAAiB,EAAE,cAAc,CAAC,IACrD,IAAI,GAET,QAAQ,CACT,CAAC;AACJ,CAAC,CAAC;AAIO,8BAAS;AAFlB,SAAS,CAAC,QAAQ,GAAG,KAAK,CAAC"}
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { TabListProps as ISimpleTabListProps } from 'react-tabs';
3
+ declare const SimpleTabList: React.FunctionComponent<ISimpleTabListProps> & {
4
+ tabsRole: string;
5
+ };
6
+ export { SimpleTabList, ISimpleTabListProps };
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SimpleTabList = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const cn = require("classnames");
6
+ const React = require("react");
7
+ const classes_1 = require("../classes");
8
+ const react_tabs_1 = require("react-tabs");
9
+ const SimpleTabList = props => {
10
+ const { children, className } = props, rest = tslib_1.__rest(props, ["children", "className"]);
11
+ return React.createElement(react_tabs_1.TabList, Object.assign({ className: cn(classes_1.Classes.SIMPLE_TAB_LIST, className) }, rest), children);
12
+ };
13
+ exports.SimpleTabList = SimpleTabList;
14
+ SimpleTabList.tabsRole = 'TabList';
15
+ //# sourceMappingURL=TabList.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TabList.js","sourceRoot":"","sources":["../../src/SimpleTabs/TabList.tsx"],"names":[],"mappings":";;;;AAAA,iCAAiC;AACjC,+BAA+B;AAC/B,wCAAqC;AAErC,2CAA0F;AAK1F,MAAM,aAAa,GAAwE,KAAK,CAAC,EAAE;IACjG,MAAM,EAAE,QAAQ,EAAE,SAAS,KAAc,KAAK,EAAd,IAAI,kBAAK,KAAK,EAAxC,yBAAgC,CAAQ,CAAC;IAC/C,OAAO,KAAK,CAAC,aAAa,CAAC,oBAAY,kBAAI,SAAS,EAAE,EAAE,CAAC,iBAAO,CAAC,eAAe,EAAE,SAAS,CAAC,IAAK,IAAI,GAAI,QAAQ,CAAC,CAAC;AACrH,CAAC,CAAC;AAOO,sCAAa;AALtB,aAAa,CAAC,QAAQ,GAAG,SAAS,CAAC"}
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { TabPanelProps as ISimpleTabPanelProps } from 'react-tabs';
3
+ declare const SimpleTabPanel: React.FunctionComponent<ISimpleTabPanelProps> & {
4
+ tabsRole: string;
5
+ };
6
+ export { SimpleTabPanel, ISimpleTabPanelProps };
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SimpleTabPanel = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const cn = require("classnames");
6
+ const React = require("react");
7
+ const react_tabs_1 = require("react-tabs");
8
+ const classes_1 = require("../classes");
9
+ const SimpleTabPanel = props => {
10
+ const { children, ref, className, selectedClassName } = props, rest = tslib_1.__rest(props, ["children", "ref", "className", "selectedClassName"]);
11
+ return React.createElement(react_tabs_1.TabPanel, Object.assign({ className: cn(classes_1.Classes.SIMPLE_TAB_PANEL, className), selectedClassName: cn('block', selectedClassName) }, rest), children);
12
+ };
13
+ exports.SimpleTabPanel = SimpleTabPanel;
14
+ SimpleTabPanel.tabsRole = 'TabPanel';
15
+ //# sourceMappingURL=TabPanel.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TabPanel.js","sourceRoot":"","sources":["../../src/SimpleTabs/TabPanel.tsx"],"names":[],"mappings":";;;;AAAA,iCAAiC;AACjC,+BAA+B;AAC/B,2CAA6E;AAC7E,wCAAqC;AAKrC,MAAM,cAAc,GAAyE,KAAK,CAAC,EAAE;IACnG,MAAM,EAAE,QAAQ,EAAE,GAAG,EAAE,SAAS,EAAE,iBAAiB,KAAc,KAAK,EAAd,IAAI,kBAAK,KAAK,EAAhE,qDAAwD,CAAQ,CAAC;IAEvE,OAAO,KAAK,CAAC,aAAa,CACxB,qBAAQ,kBAEN,SAAS,EAAE,EAAE,CAAC,iBAAO,CAAC,gBAAgB,EAAE,SAAS,CAAC,EAClD,iBAAiB,EAAE,EAAE,CAAC,OAAO,EAAE,iBAAiB,CAAC,IAC9C,IAAI,GAET,QAAQ,CACT,CAAC;AACJ,CAAC,CAAC;AAOO,wCAAc;AALvB,cAAc,CAAC,QAAQ,GAAG,UAAU,CAAC"}
@@ -0,0 +1,5 @@
1
+ export * from './Tab';
2
+ export * from './TabList';
3
+ export * from './TabPanel';
4
+ import { Tabs as SimpleTabs, TabsProps as ISimpleTabsProps } from 'react-tabs';
5
+ export { SimpleTabs, ISimpleTabsProps };