@eccenca/gui-elements 6.1.0 → 22.0.0-rc.6

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 (710) hide show
  1. package/CHANGELOG.md +98 -866
  2. package/LICENSE +202 -0
  3. package/README.md +56 -1240
  4. package/blueprint/constants.ts +7 -0
  5. package/blueprint/toaster/index.tsx +1 -0
  6. package/dist/cmem/ActivityControl/ActivityControlTypes.d.ts +15 -0
  7. package/dist/cmem/ActivityControl/ActivityControlTypes.js +1 -0
  8. package/dist/cmem/ActivityControl/ActivityControlWidget.d.ts +32 -0
  9. package/dist/cmem/ActivityControl/ActivityControlWidget.js +92 -0
  10. package/dist/cmem/ActivityControl/ActivityControlWidget.jsx +45 -0
  11. package/dist/cmem/ActivityControl/ActivityExecutionErrorReportModal.d.ts +12 -0
  12. package/dist/cmem/ActivityControl/ActivityExecutionErrorReportModal.js +59 -0
  13. package/dist/cmem/ActivityControl/ActivityExecutionErrorReportModal.jsx +76 -0
  14. package/dist/cmem/ActivityControl/SilkActivityControl.d.ts +62 -0
  15. package/dist/cmem/ActivityControl/SilkActivityControl.js +219 -0
  16. package/dist/cmem/ActivityControl/SilkActivityControl.jsx +217 -0
  17. package/dist/cmem/ContentBlobToggler/ContentBlobToggler.d.ts +34 -0
  18. package/dist/cmem/ContentBlobToggler/ContentBlobToggler.js +56 -0
  19. package/dist/cmem/ContentBlobToggler/ContentBlobToggler.jsx +62 -0
  20. package/dist/cmem/ContentBlobToggler/StringPreviewContentBlobToggler.d.ts +42 -0
  21. package/dist/cmem/ContentBlobToggler/StringPreviewContentBlobToggler.js +52 -0
  22. package/dist/cmem/ContentBlobToggler/StringPreviewContentBlobToggler.jsx +17 -0
  23. package/dist/cmem/DateTimeDisplay/ElapsedDateTimeDisplay.d.ts +15 -0
  24. package/dist/cmem/DateTimeDisplay/ElapsedDateTimeDisplay.js +80 -0
  25. package/dist/cmem/DateTimeDisplay/ElapsedDateTimeDisplay.jsx +77 -0
  26. package/dist/cmem/index.d.ts +10 -0
  27. package/dist/cmem/index.js +67 -0
  28. package/dist/cmem/markdown/Markdown.d.ts +16 -0
  29. package/dist/cmem/markdown/Markdown.js +75 -0
  30. package/dist/cmem/markdown/Markdown.jsx +87 -0
  31. package/dist/cmem/markdown/highlightSearchWords.js +84 -0
  32. package/dist/common/Intent/index.d.ts +7 -0
  33. package/dist/common/Intent/index.js +33 -0
  34. package/dist/common/utils/openInNewTab.d.ts +3 -0
  35. package/dist/common/utils/openInNewTab.js +22 -0
  36. package/dist/components/Accordion/Accordion.d.ts +3 -0
  37. package/dist/components/Accordion/Accordion.js +31 -0
  38. package/dist/components/Accordion/Accordion.jsx +21 -0
  39. package/dist/components/Accordion/AccordionItem.d.ts +15 -0
  40. package/dist/components/Accordion/AccordionItem.js +37 -0
  41. package/dist/components/Accordion/AccordionItem.jsx +27 -0
  42. package/dist/components/Application/ApplicationContainer.d.ts +6 -0
  43. package/dist/components/Application/ApplicationContainer.js +27 -0
  44. package/dist/components/Application/ApplicationContainer.jsx +20 -0
  45. package/dist/components/Application/ApplicationContent.d.ts +22 -0
  46. package/dist/components/Application/ApplicationContent.js +48 -0
  47. package/dist/components/Application/ApplicationContent.jsx +34 -0
  48. package/dist/components/Application/ApplicationHeader.d.ts +3 -0
  49. package/dist/components/Application/ApplicationHeader.js +29 -0
  50. package/dist/components/Application/ApplicationHeader.jsx +22 -0
  51. package/dist/components/Application/ApplicationSidebarNavigation.d.ts +12 -0
  52. package/dist/components/Application/ApplicationSidebarNavigation.js +36 -0
  53. package/dist/components/Application/ApplicationSidebarNavigation.jsx +22 -0
  54. package/dist/components/Application/ApplicationSidebarToggler.d.ts +3 -0
  55. package/dist/components/Application/ApplicationSidebarToggler.js +28 -0
  56. package/dist/components/Application/ApplicationSidebarToggler.jsx +19 -0
  57. package/dist/components/Application/ApplicationTitle.d.ts +40 -0
  58. package/dist/components/Application/ApplicationTitle.js +53 -0
  59. package/dist/components/Application/ApplicationTitle.jsx +39 -0
  60. package/dist/components/Application/ApplicationToolbar.d.ts +3 -0
  61. package/dist/components/Application/ApplicationToolbar.js +30 -0
  62. package/dist/components/Application/ApplicationToolbar.jsx +22 -0
  63. package/dist/components/Application/ApplicationToolbarAction.d.ts +3 -0
  64. package/dist/components/Application/ApplicationToolbarAction.js +30 -0
  65. package/dist/components/Application/ApplicationToolbarAction.jsx +22 -0
  66. package/dist/components/Application/ApplicationToolbarPanel.d.ts +3 -0
  67. package/dist/components/Application/ApplicationToolbarPanel.js +30 -0
  68. package/dist/components/Application/ApplicationToolbarPanel.jsx +22 -0
  69. package/dist/components/Application/ApplicationToolbarSection.d.ts +3 -0
  70. package/dist/components/Application/ApplicationToolbarSection.js +27 -0
  71. package/dist/components/Application/ApplicationToolbarSection.jsx +20 -0
  72. package/dist/components/AutocompleteField/AutoCompleteField.d.ts +110 -0
  73. package/dist/components/AutocompleteField/AutoCompleteField.js +309 -0
  74. package/dist/components/AutocompleteField/AutoCompleteField.jsx +295 -0
  75. package/dist/components/AutocompleteField/autoCompleteFieldUtils.js +42 -0
  76. package/dist/components/Breadcrumb/BreadcrumbItem.d.ts +5 -0
  77. package/dist/components/Breadcrumb/BreadcrumbItem.js +45 -0
  78. package/dist/components/Breadcrumb/BreadcrumbItem.jsx +30 -0
  79. package/dist/components/Breadcrumb/BreadcrumbList.d.ts +24 -0
  80. package/dist/components/Breadcrumb/BreadcrumbList.js +60 -0
  81. package/dist/components/Breadcrumb/BreadcrumbList.jsx +35 -0
  82. package/dist/components/Button/Button.d.ts +58 -0
  83. package/dist/components/Button/Button.js +84 -0
  84. package/dist/components/Button/Button.jsx +48 -0
  85. package/dist/components/Card/Card.d.ts +23 -0
  86. package/dist/components/Card/Card.js +44 -0
  87. package/dist/components/Card/Card.jsx +31 -0
  88. package/dist/components/Card/CardActions.d.ts +14 -0
  89. package/dist/components/Card/CardActions.js +33 -0
  90. package/dist/components/Card/CardActions.jsx +27 -0
  91. package/dist/components/Card/CardActionsAux.d.ts +9 -0
  92. package/dist/components/Card/CardActionsAux.js +32 -0
  93. package/dist/components/Card/CardActionsAux.jsx +26 -0
  94. package/dist/components/Card/CardContent.d.ts +9 -0
  95. package/dist/components/Card/CardContent.js +32 -0
  96. package/dist/components/Card/CardContent.jsx +25 -0
  97. package/dist/components/Card/CardHeader.d.ts +7 -0
  98. package/dist/components/Card/CardHeader.js +52 -0
  99. package/dist/components/Card/CardHeader.jsx +41 -0
  100. package/dist/components/Card/CardOptions.d.ts +11 -0
  101. package/dist/components/Card/CardOptions.js +35 -0
  102. package/dist/components/Card/CardOptions.jsx +28 -0
  103. package/dist/components/Card/CardTitle.d.ts +13 -0
  104. package/dist/components/Card/CardTitle.js +37 -0
  105. package/dist/components/Card/CardTitle.jsx +26 -0
  106. package/dist/components/Card/index.d.ts +8 -0
  107. package/dist/components/Card/index.js +63 -0
  108. package/dist/components/Card/index.jsx +8 -0
  109. package/dist/components/Checkbox/Checkbox.d.ts +3 -0
  110. package/dist/components/Checkbox/Checkbox.js +30 -0
  111. package/dist/components/Checkbox/Checkbox.jsx +22 -0
  112. package/dist/components/ContextOverlay/ContextMenu.d.ts +3 -0
  113. package/dist/components/ContextOverlay/ContextMenu.js +48 -0
  114. package/dist/components/ContextOverlay/ContextMenu.jsx +30 -0
  115. package/dist/components/ContextOverlay/ContextOverlay.d.ts +3 -0
  116. package/dist/components/ContextOverlay/ContextOverlay.js +37 -0
  117. package/dist/components/ContextOverlay/ContextOverlay.jsx +27 -0
  118. package/dist/components/Dialog/AlertDialog.d.ts +22 -0
  119. package/dist/components/Dialog/AlertDialog.js +56 -0
  120. package/dist/components/Dialog/AlertDialog.jsx +39 -0
  121. package/dist/components/Dialog/Modal.d.ts +25 -0
  122. package/dist/components/Dialog/Modal.js +67 -0
  123. package/dist/components/Dialog/Modal.jsx +49 -0
  124. package/dist/components/Dialog/SimpleDialog.d.ts +41 -0
  125. package/dist/components/Dialog/SimpleDialog.js +62 -0
  126. package/dist/components/Dialog/SimpleDialog.jsx +50 -0
  127. package/dist/components/Form/FieldItem.d.ts +16 -0
  128. package/dist/components/Form/FieldItem.js +82 -0
  129. package/dist/components/Form/FieldItem.jsx +48 -0
  130. package/dist/components/Form/FieldItemRow.d.ts +3 -0
  131. package/dist/components/Form/FieldItemRow.js +30 -0
  132. package/dist/components/Form/FieldItemRow.jsx +23 -0
  133. package/dist/components/Form/FieldSet.d.ts +3 -0
  134. package/dist/components/Form/FieldSet.js +73 -0
  135. package/dist/components/Form/FieldSet.jsx +49 -0
  136. package/dist/components/Grid/Grid.d.ts +3 -0
  137. package/dist/components/Grid/Grid.js +33 -0
  138. package/dist/components/Grid/Grid.jsx +25 -0
  139. package/dist/components/Grid/GridColumn.d.ts +3 -0
  140. package/dist/components/Grid/GridColumn.js +43 -0
  141. package/dist/components/Grid/GridColumn.jsx +29 -0
  142. package/dist/components/Grid/GridRow.d.ts +3 -0
  143. package/dist/components/Grid/GridRow.js +33 -0
  144. package/dist/components/Grid/GridRow.jsx +26 -0
  145. package/dist/components/Icon/Icon.d.ts +20 -0
  146. package/dist/components/Icon/Icon.js +91 -0
  147. package/dist/components/Icon/Icon.jsx +88 -0
  148. package/dist/components/Icon/IconButton.d.ts +17 -0
  149. package/dist/components/Icon/IconButton.js +49 -0
  150. package/dist/components/Icon/IconButton.jsx +21 -0
  151. package/dist/components/Icon/canonicalIconNames.d.ts +10 -0
  152. package/dist/components/Icon/canonicalIconNames.js +547 -0
  153. package/dist/components/Icon/canonicalIconNames.jsx +534 -0
  154. package/dist/components/Iframe/Iframe.d.ts +18 -0
  155. package/dist/components/Iframe/Iframe.js +92 -0
  156. package/dist/components/Iframe/Iframe.jsx +79 -0
  157. package/dist/components/Iframe/IframeModal.d.ts +12 -0
  158. package/dist/components/Iframe/IframeModal.js +66 -0
  159. package/dist/components/Iframe/IframeModal.jsx +49 -0
  160. package/dist/components/Label/Label.d.ts +3 -0
  161. package/dist/components/Label/Label.js +58 -0
  162. package/dist/components/Label/Label.jsx +32 -0
  163. package/dist/components/Link/Link.d.ts +3 -0
  164. package/dist/components/Link/Link.js +36 -0
  165. package/dist/components/Link/Link.jsx +22 -0
  166. package/dist/components/List/List.d.ts +17 -0
  167. package/dist/components/List/List.js +50 -0
  168. package/dist/components/List/List.jsx +44 -0
  169. package/dist/components/Menu/Menu.d.ts +3 -0
  170. package/dist/components/Menu/Menu.js +29 -0
  171. package/dist/components/Menu/Menu.jsx +19 -0
  172. package/dist/components/Menu/MenuDivider.d.ts +3 -0
  173. package/dist/components/Menu/MenuDivider.js +29 -0
  174. package/dist/components/Menu/MenuDivider.jsx +19 -0
  175. package/dist/components/Menu/MenuItem.d.ts +13 -0
  176. package/dist/components/Menu/MenuItem.js +45 -0
  177. package/dist/components/Menu/MenuItem.jsx +27 -0
  178. package/dist/components/Notification/Notification.d.ts +3 -0
  179. package/dist/components/Notification/Notification.js +79 -0
  180. package/dist/components/Notification/Notification.jsx +48 -0
  181. package/dist/components/Notification/Toast.d.ts +3 -0
  182. package/dist/components/Notification/Toast.js +31 -0
  183. package/dist/components/Notification/Toast.jsx +21 -0
  184. package/dist/components/NumericInput/NumericInput.d.ts +4 -0
  185. package/dist/components/NumericInput/NumericInput.js +14 -0
  186. package/dist/components/NumericInput/NumericInput.jsx +3 -0
  187. package/dist/components/OverviewItem/OverviewItem.d.ts +17 -0
  188. package/dist/components/OverviewItem/OverviewItem.js +45 -0
  189. package/dist/components/OverviewItem/OverviewItem.jsx +37 -0
  190. package/dist/components/OverviewItem/OverviewItemActions.d.ts +13 -0
  191. package/dist/components/OverviewItem/OverviewItemActions.js +32 -0
  192. package/dist/components/OverviewItem/OverviewItemActions.jsx +26 -0
  193. package/dist/components/OverviewItem/OverviewItemDepiction.d.ts +6 -0
  194. package/dist/components/OverviewItem/OverviewItemDepiction.js +28 -0
  195. package/dist/components/OverviewItem/OverviewItemDepiction.jsx +22 -0
  196. package/dist/components/OverviewItem/OverviewItemDescription.d.ts +3 -0
  197. package/dist/components/OverviewItem/OverviewItemDescription.js +27 -0
  198. package/dist/components/OverviewItem/OverviewItemDescription.jsx +20 -0
  199. package/dist/components/OverviewItem/OverviewItemLine.d.ts +19 -0
  200. package/dist/components/OverviewItem/OverviewItemLine.js +35 -0
  201. package/dist/components/OverviewItem/OverviewItemLine.jsx +29 -0
  202. package/dist/components/OverviewItem/OverviewItemList.d.ts +26 -0
  203. package/dist/components/OverviewItem/OverviewItemList.js +38 -0
  204. package/dist/components/OverviewItem/OverviewItemList.jsx +31 -0
  205. package/dist/components/OverviewItem/index.d.ts +7 -0
  206. package/dist/components/OverviewItem/index.js +55 -0
  207. package/dist/components/OverviewItem/index.jsx +7 -0
  208. package/dist/components/Pagination/Pagination.d.ts +17 -0
  209. package/dist/components/Pagination/Pagination.js +80 -0
  210. package/dist/components/Pagination/Pagination.jsx +81 -0
  211. package/dist/components/ProgressBar/ProgressBar.d.ts +3 -0
  212. package/dist/components/ProgressBar/ProgressBar.js +12 -0
  213. package/dist/components/ProgressBar/ProgressBar.jsx +3 -0
  214. package/dist/components/PropertyValuePair/PropertyName.d.ts +3 -0
  215. package/dist/components/PropertyValuePair/PropertyName.js +32 -0
  216. package/dist/components/PropertyValuePair/PropertyName.jsx +21 -0
  217. package/dist/components/PropertyValuePair/PropertyValue.d.ts +3 -0
  218. package/dist/components/PropertyValuePair/PropertyValue.js +27 -0
  219. package/dist/components/PropertyValuePair/PropertyValue.jsx +20 -0
  220. package/dist/components/PropertyValuePair/PropertyValueList.d.ts +3 -0
  221. package/dist/components/PropertyValuePair/PropertyValueList.js +27 -0
  222. package/dist/components/PropertyValuePair/PropertyValueList.jsx +20 -0
  223. package/dist/components/PropertyValuePair/PropertyValuePair.d.ts +3 -0
  224. package/dist/components/PropertyValuePair/PropertyValuePair.js +29 -0
  225. package/dist/components/PropertyValuePair/PropertyValuePair.jsx +23 -0
  226. package/dist/components/PropertyValuePair/index.d.ts +5 -0
  227. package/dist/components/PropertyValuePair/index.js +39 -0
  228. package/dist/components/PropertyValuePair/index.jsx +5 -0
  229. package/dist/components/RadioButton/RadioButton.d.ts +3 -0
  230. package/dist/components/RadioButton/RadioButton.js +30 -0
  231. package/dist/components/RadioButton/RadioButton.jsx +22 -0
  232. package/dist/components/Separation/Divider.d.ts +3 -0
  233. package/dist/components/Separation/Divider.js +23 -0
  234. package/dist/components/Separation/Divider.jsx +7 -0
  235. package/dist/components/Separation/Spacing.d.ts +9 -0
  236. package/dist/components/Separation/Spacing.js +27 -0
  237. package/dist/components/Separation/Spacing.jsx +11 -0
  238. package/dist/components/SimpleTable/TableContainer.d.ts +3 -0
  239. package/dist/components/SimpleTable/TableContainer.js +37 -0
  240. package/dist/components/SimpleTable/TableContainer.jsx +27 -0
  241. package/dist/components/SimpleTable/index.d.ts +3 -0
  242. package/dist/components/SimpleTable/index.js +53 -0
  243. package/dist/components/SimpleTable/index.jsx +3 -0
  244. package/dist/components/Spinner/Spinner.d.ts +19 -0
  245. package/dist/components/Spinner/Spinner.js +98 -0
  246. package/dist/components/Spinner/Spinner.jsx +83 -0
  247. package/dist/components/Structure/Section.d.ts +3 -0
  248. package/dist/components/Structure/Section.js +27 -0
  249. package/dist/components/Structure/Section.jsx +20 -0
  250. package/dist/components/Structure/SectionHeader.d.ts +3 -0
  251. package/dist/components/Structure/SectionHeader.js +27 -0
  252. package/dist/components/Structure/SectionHeader.jsx +20 -0
  253. package/dist/components/Structure/TitleMainsection.d.ts +3 -0
  254. package/dist/components/Structure/TitleMainsection.js +35 -0
  255. package/dist/components/Structure/TitleMainsection.jsx +26 -0
  256. package/dist/components/Structure/TitlePage.d.ts +3 -0
  257. package/dist/components/Structure/TitlePage.js +35 -0
  258. package/dist/components/Structure/TitlePage.jsx +26 -0
  259. package/dist/components/Structure/TitleSubsection.d.ts +3 -0
  260. package/dist/components/Structure/TitleSubsection.js +32 -0
  261. package/dist/components/Structure/TitleSubsection.jsx +23 -0
  262. package/dist/components/Switch/Switch.d.ts +4 -0
  263. package/dist/components/Switch/Switch.js +39 -0
  264. package/dist/components/Switch/Switch.jsx +22 -0
  265. package/dist/components/Tabs/Tabs.d.ts +24 -0
  266. package/dist/components/Tabs/Tabs.js +95 -0
  267. package/dist/components/Tabs/Tabs.jsx +49 -0
  268. package/dist/components/Tag/Tag.d.ts +27 -0
  269. package/dist/components/Tag/Tag.js +50 -0
  270. package/dist/components/Tag/Tag.jsx +46 -0
  271. package/dist/components/Tag/TagList.d.ts +3 -0
  272. package/dist/components/Tag/TagList.js +44 -0
  273. package/dist/components/Tag/TagList.jsx +38 -0
  274. package/dist/components/TextField/SearchField.d.ts +23 -0
  275. package/dist/components/TextField/SearchField.js +54 -0
  276. package/dist/components/TextField/SearchField.jsx +27 -0
  277. package/dist/components/TextField/TextArea.d.ts +22 -0
  278. package/dist/components/TextField/TextArea.js +60 -0
  279. package/dist/components/TextField/TextArea.jsx +36 -0
  280. package/dist/components/TextField/TextField.d.ts +34 -0
  281. package/dist/components/TextField/TextField.js +73 -0
  282. package/dist/components/TextField/TextField.jsx +40 -0
  283. package/dist/components/Toolbar/Toolbar.d.ts +18 -0
  284. package/dist/components/Toolbar/Toolbar.js +32 -0
  285. package/dist/components/Toolbar/Toolbar.jsx +26 -0
  286. package/dist/components/Toolbar/ToolbarSection.d.ts +22 -0
  287. package/dist/components/Toolbar/ToolbarSection.js +34 -0
  288. package/dist/components/Toolbar/ToolbarSection.jsx +28 -0
  289. package/dist/components/Tooltip/Tooltip.d.ts +17 -0
  290. package/dist/components/Tooltip/Tooltip.js +40 -0
  291. package/dist/components/Tooltip/Tooltip.jsx +25 -0
  292. package/dist/components/Typography/Highlighter.d.ts +18 -0
  293. package/dist/components/Typography/Highlighter.js +89 -0
  294. package/dist/components/Typography/Highlighter.jsx +58 -0
  295. package/dist/components/Typography/HtmlContentBlock.d.ts +6 -0
  296. package/dist/components/Typography/HtmlContentBlock.js +38 -0
  297. package/dist/components/Typography/HtmlContentBlock.jsx +31 -0
  298. package/dist/components/Typography/OverflowText.d.ts +12 -0
  299. package/dist/components/Typography/OverflowText.js +34 -0
  300. package/dist/components/Typography/OverflowText.jsx +31 -0
  301. package/dist/components/Typography/WhiteSpaceContainer.d.ts +5 -0
  302. package/dist/components/Typography/WhiteSpaceContainer.js +38 -0
  303. package/dist/components/Typography/WhiteSpaceContainer.jsx +34 -0
  304. package/dist/components/Typography/classnames.d.ts +7 -0
  305. package/dist/components/Typography/classnames.js +24 -0
  306. package/dist/components/Workspace/WorkspaceContent.d.ts +3 -0
  307. package/dist/components/Workspace/WorkspaceContent.js +34 -0
  308. package/dist/components/Workspace/WorkspaceContent.jsx +25 -0
  309. package/dist/components/Workspace/WorkspaceHeader.d.ts +10 -0
  310. package/dist/components/Workspace/WorkspaceHeader.js +27 -0
  311. package/dist/components/Workspace/WorkspaceHeader.jsx +20 -0
  312. package/dist/components/Workspace/WorkspaceMain.d.ts +3 -0
  313. package/dist/components/Workspace/WorkspaceMain.js +30 -0
  314. package/dist/components/Workspace/WorkspaceMain.jsx +22 -0
  315. package/dist/components/Workspace/WorkspaceSide.d.ts +3 -0
  316. package/dist/components/Workspace/WorkspaceSide.js +34 -0
  317. package/dist/components/Workspace/WorkspaceSide.jsx +22 -0
  318. package/dist/components/interfaces.d.ts +3 -0
  319. package/dist/components/interfaces.js +1 -0
  320. package/dist/configuration/constants.d.ts +1 -0
  321. package/dist/configuration/constants.js +9 -0
  322. package/dist/extensions/react-flow/edges/EdgeDefault.d.ts +10 -0
  323. package/dist/extensions/react-flow/edges/EdgeDefault.js +62 -0
  324. package/dist/extensions/react-flow/edges/EdgeDefault.jsx +45 -0
  325. package/dist/extensions/react-flow/edges/EdgeStep.d.ts +9 -0
  326. package/dist/extensions/react-flow/edges/EdgeStep.js +27 -0
  327. package/dist/extensions/react-flow/edges/EdgeStep.jsx +6 -0
  328. package/dist/extensions/react-flow/edges/EdgeTools.d.ts +12 -0
  329. package/dist/extensions/react-flow/edges/EdgeTools.js +48 -0
  330. package/dist/extensions/react-flow/edges/EdgeTools.jsx +32 -0
  331. package/dist/extensions/react-flow/edges/edgeTypes.d.ts +15 -0
  332. package/dist/extensions/react-flow/edges/edgeTypes.js +32 -0
  333. package/dist/extensions/react-flow/edges/utils.d.ts +4 -0
  334. package/dist/extensions/react-flow/edges/utils.js +41 -0
  335. package/dist/extensions/react-flow/handles/HandleContent.d.ts +6 -0
  336. package/dist/extensions/react-flow/handles/HandleContent.js +40 -0
  337. package/dist/extensions/react-flow/handles/HandleContent.jsx +15 -0
  338. package/dist/extensions/react-flow/handles/HandleDefault.d.ts +9 -0
  339. package/dist/extensions/react-flow/handles/HandleDefault.js +33 -0
  340. package/dist/extensions/react-flow/handles/HandleDefault.jsx +23 -0
  341. package/dist/extensions/react-flow/index.d.ts +14 -0
  342. package/dist/extensions/react-flow/index.js +83 -0
  343. package/dist/extensions/react-flow/minimap/MiniMap.d.ts +8 -0
  344. package/dist/extensions/react-flow/minimap/MiniMap.js +111 -0
  345. package/dist/extensions/react-flow/minimap/MiniMap.jsx +83 -0
  346. package/dist/extensions/react-flow/minimap/utils.d.ts +2 -0
  347. package/dist/extensions/react-flow/minimap/utils.js +29 -0
  348. package/dist/extensions/react-flow/nodes/NodeContentExtension.js +56 -0
  349. package/dist/extensions/react-flow/nodes/NodeDefault.d.ts +133 -0
  350. package/dist/extensions/react-flow/nodes/NodeDefault.js +223 -0
  351. package/dist/extensions/react-flow/nodes/NodeDefault.jsx +175 -0
  352. package/dist/extensions/react-flow/nodes/NodeTools.d.ts +9 -0
  353. package/dist/extensions/react-flow/nodes/NodeTools.js +58 -0
  354. package/dist/extensions/react-flow/nodes/NodeTools.jsx +46 -0
  355. package/dist/extensions/react-flow/nodes/nodeTypes.d.ts +13 -0
  356. package/dist/extensions/react-flow/nodes/nodeTypes.js +22 -0
  357. package/dist/index.d.ts +92 -0
  358. package/dist/index.js +876 -0
  359. package/dist/legacy-replacements/Button/AffirmativeButton.js +23 -0
  360. package/dist/legacy-replacements/Button/Button.js +91 -0
  361. package/dist/legacy-replacements/Button/DismissiveButton.js +23 -0
  362. package/dist/legacy-replacements/Button/DisruptiveButton.js +23 -0
  363. package/dist/legacy-replacements/Checkbox/Checkbox.js +66 -0
  364. package/dist/legacy-replacements/Radio/RadioButton.js +48 -0
  365. package/dist/legacy-replacements/TextField/TextField.js +96 -0
  366. package/package.json +151 -71
  367. package/src/_shame.scss +111 -0
  368. package/src/cmem/ActivityControl/ActivityControlTypes.ts +28 -0
  369. package/src/cmem/ActivityControl/ActivityControlWidget.tsx +165 -0
  370. package/src/cmem/ActivityControl/ActivityExecutionErrorReportModal.tsx +55 -0
  371. package/src/cmem/ActivityControl/SilkActivityControl.tsx +303 -0
  372. package/src/cmem/ActivityControl/activitycontrol.scss +27 -0
  373. package/src/cmem/ContentBlobToggler/ContentBlobToggler.tsx +95 -0
  374. package/src/cmem/ContentBlobToggler/StringPreviewContentBlobToggler.tsx +76 -0
  375. package/src/cmem/DateTimeDisplay/ElapsedDateTimeDisplay.tsx +69 -0
  376. package/src/cmem/DateTimeDisplay/tests/ElapsedDateTimeDisplay.test.tsx +29 -0
  377. package/src/cmem/_index.scss +2 -0
  378. package/src/cmem/index.ts +35 -0
  379. package/src/cmem/markdown/Markdown.tsx +89 -0
  380. package/src/cmem/markdown/highlightSearchWords.test.ts +36 -0
  381. package/src/cmem/markdown/highlightSearchWords.ts +67 -0
  382. package/src/cmem/markdown/markdown.scss +32 -0
  383. package/src/common/Intent/index.ts +23 -0
  384. package/src/common/utils/openInNewTab.ts +17 -0
  385. package/src/components/Accordion/Accordion.tsx +13 -0
  386. package/src/components/Accordion/AccordionItem.tsx +73 -0
  387. package/src/components/Accordion/accordion.scss +96 -0
  388. package/src/components/Application/ApplicationContainer.tsx +21 -0
  389. package/src/components/Application/ApplicationContent.tsx +57 -0
  390. package/src/components/Application/ApplicationHeader.tsx +14 -0
  391. package/src/components/Application/ApplicationSidebarNavigation.tsx +39 -0
  392. package/src/components/Application/ApplicationSidebarToggler.tsx +15 -0
  393. package/src/components/Application/ApplicationTitle.tsx +95 -0
  394. package/src/components/Application/ApplicationToolbar.tsx +17 -0
  395. package/src/components/Application/ApplicationToolbarAction.tsx +17 -0
  396. package/src/components/Application/ApplicationToolbarPanel.tsx +17 -0
  397. package/src/components/Application/ApplicationToolbarSection.tsx +15 -0
  398. package/src/components/Application/_config.scss +40 -0
  399. package/src/components/Application/_content.scss +27 -0
  400. package/src/components/Application/_header.scss +237 -0
  401. package/src/components/Application/_sidebar.scss +37 -0
  402. package/src/components/Application/_toolbar.scss +75 -0
  403. package/src/components/Application/application.scss +9 -0
  404. package/src/components/AutocompleteField/AutoCompleteField.tsx +399 -0
  405. package/src/components/AutocompleteField/autoCompleteFieldUtils.tsx +32 -0
  406. package/src/components/AutocompleteField/autocompletefield.scss +6 -0
  407. package/src/components/Breadcrumb/BreadcrumbItem.tsx +46 -0
  408. package/src/components/Breadcrumb/BreadcrumbList.tsx +81 -0
  409. package/src/components/Breadcrumb/breadcrumb.scss +47 -0
  410. package/src/components/Button/Button.stories.tsx +199 -0
  411. package/src/components/Button/Button.test.tsx +37 -0
  412. package/src/components/Button/Button.tsx +127 -0
  413. package/src/components/Button/button.scss +55 -0
  414. package/src/components/Card/Card.tsx +58 -0
  415. package/src/components/Card/CardActions.tsx +36 -0
  416. package/src/components/Card/CardActionsAux.tsx +29 -0
  417. package/src/components/Card/CardContent.tsx +26 -0
  418. package/src/components/Card/CardHeader.tsx +44 -0
  419. package/src/components/Card/CardOptions.tsx +32 -0
  420. package/src/components/Card/CardTitle.tsx +32 -0
  421. package/src/components/Card/card.scss +138 -0
  422. package/src/components/Card/index.tsx +17 -0
  423. package/src/components/Card/stories/Card.stories.tsx +82 -0
  424. package/src/components/Card/stories/CardActions.stories.tsx +41 -0
  425. package/src/components/Card/stories/CardContent.stories.tsx +28 -0
  426. package/src/components/Card/stories/CardHeader.stories.tsx +38 -0
  427. package/src/components/Card/stories/CardOptions.stories.tsx +27 -0
  428. package/src/components/Card/stories/CardTitle.stories.tsx +27 -0
  429. package/src/components/Checkbox/Checkbox.tsx +20 -0
  430. package/src/components/Checkbox/checkbox.scss +61 -0
  431. package/src/components/ContextOverlay/ContextMenu.tsx +36 -0
  432. package/src/components/ContextOverlay/ContextOverlay.tsx +29 -0
  433. package/src/components/ContextOverlay/contextoverlay.scss +15 -0
  434. package/src/components/Dialog/AlertDialog.tsx +52 -0
  435. package/src/components/Dialog/Modal.tsx +86 -0
  436. package/src/components/Dialog/SimpleDialog.tsx +113 -0
  437. package/src/components/Dialog/dialog.scss +75 -0
  438. package/src/components/Dialog/stories/AlertDialog.stories.tsx +42 -0
  439. package/src/components/Dialog/stories/Modal.stories.tsx +88 -0
  440. package/src/components/Dialog/stories/SimpleDialog.stories.tsx +39 -0
  441. package/src/components/Form/FieldItem.tsx +95 -0
  442. package/src/components/Form/FieldItemRow.tsx +14 -0
  443. package/src/components/Form/FieldSet.tsx +71 -0
  444. package/src/components/Form/form.scss +159 -0
  445. package/src/components/Grid/Grid.tsx +29 -0
  446. package/src/components/Grid/GridColumn.tsx +33 -0
  447. package/src/components/Grid/GridRow.tsx +30 -0
  448. package/src/components/Grid/grid.scss +89 -0
  449. package/src/components/Icon/Icon.tsx +96 -0
  450. package/src/components/Icon/IconButton.tsx +59 -0
  451. package/src/components/Icon/canonicalIconNames.json +120 -0
  452. package/src/components/Icon/canonicalIconNames.tsx +661 -0
  453. package/src/components/Icon/icon.scss +40 -0
  454. package/src/components/Iframe/Iframe.tsx +89 -0
  455. package/src/components/Iframe/IframeModal.tsx +77 -0
  456. package/src/components/Iframe/iframe.scss +49 -0
  457. package/src/components/Label/Label.tsx +43 -0
  458. package/src/components/Label/label.scss +75 -0
  459. package/src/components/Link/Link.tsx +19 -0
  460. package/src/components/Link/link.scss +6 -0
  461. package/src/components/List/List.tsx +46 -0
  462. package/src/components/Menu/Menu.tsx +9 -0
  463. package/src/components/Menu/MenuDivider.tsx +9 -0
  464. package/src/components/Menu/MenuItem.tsx +46 -0
  465. package/src/components/Menu/menu.scss +79 -0
  466. package/src/components/Notification/Notification.tsx +69 -0
  467. package/src/components/Notification/Toast.tsx +17 -0
  468. package/src/components/Notification/notification.scss +83 -0
  469. package/src/components/NumericInput/NumericInput.tsx +4 -0
  470. package/src/components/OverviewItem/OverviewItem.tsx +61 -0
  471. package/src/components/OverviewItem/OverviewItemActions.tsx +35 -0
  472. package/src/components/OverviewItem/OverviewItemDepiction.tsx +29 -0
  473. package/src/components/OverviewItem/OverviewItemDescription.tsx +16 -0
  474. package/src/components/OverviewItem/OverviewItemLine.tsx +43 -0
  475. package/src/components/OverviewItem/OverviewItemList.tsx +58 -0
  476. package/src/components/OverviewItem/index.tsx +15 -0
  477. package/src/components/OverviewItem/overviewitem.scss +193 -0
  478. package/src/components/OverviewItem/stories/OverviewItem.stories.tsx +56 -0
  479. package/src/components/OverviewItem/stories/OverviewItemActions.stories.tsx +31 -0
  480. package/src/components/OverviewItem/stories/OverviewItemDepiction.stories.tsx +26 -0
  481. package/src/components/OverviewItem/stories/OverviewItemDescription.stories.tsx +32 -0
  482. package/src/components/OverviewItem/stories/OverviewItemLine.stories.tsx +25 -0
  483. package/src/components/OverviewItem/stories/OverviewItemList.stories.tsx +41 -0
  484. package/src/components/Pagination/Pagination.tsx +80 -0
  485. package/src/components/Pagination/pagination.scss +47 -0
  486. package/src/components/ProgressBar/ProgressBar.tsx +8 -0
  487. package/src/components/PropertyValuePair/PropertyName.tsx +13 -0
  488. package/src/components/PropertyValuePair/PropertyValue.tsx +12 -0
  489. package/src/components/PropertyValuePair/PropertyValueList.tsx +12 -0
  490. package/src/components/PropertyValuePair/PropertyValuePair.tsx +20 -0
  491. package/src/components/PropertyValuePair/index.tsx +6 -0
  492. package/src/components/PropertyValuePair/propertyvalue.scss +56 -0
  493. package/src/components/RadioButton/RadioButton.tsx +20 -0
  494. package/src/components/RadioButton/radiobutton.scss +29 -0
  495. package/src/components/Separation/Divider.tsx +8 -0
  496. package/src/components/Separation/Spacing.tsx +25 -0
  497. package/src/components/Separation/separation.scss +77 -0
  498. package/src/components/SimpleTable/TableContainer.tsx +20 -0
  499. package/src/components/SimpleTable/index.tsx +4 -0
  500. package/src/components/SimpleTable/simpletable.scss +121 -0
  501. package/src/components/Spinner/Spinner.tsx +113 -0
  502. package/src/components/Spinner/spinner.scss +85 -0
  503. package/src/components/Structure/Section.tsx +15 -0
  504. package/src/components/Structure/SectionHeader.tsx +15 -0
  505. package/src/components/Structure/TitleMainsection.tsx +29 -0
  506. package/src/components/Structure/TitlePage.tsx +29 -0
  507. package/src/components/Structure/TitleSubsection.tsx +16 -0
  508. package/src/components/Structure/_titles.scss +56 -0
  509. package/src/components/Switch/Switch.tsx +17 -0
  510. package/src/components/Switch/switch.scss +4 -0
  511. package/src/components/Tabs/Tabs.tsx +121 -0
  512. package/src/components/Tabs/tabs.scss +65 -0
  513. package/src/components/Tag/Tag.stories.tsx +41 -0
  514. package/src/components/Tag/Tag.tsx +84 -0
  515. package/src/components/Tag/TagList.tsx +51 -0
  516. package/src/components/Tag/tag.scss +132 -0
  517. package/src/components/TagInput/taginput.scss +1 -0
  518. package/src/components/TextField/SearchField.tsx +71 -0
  519. package/src/components/TextField/TextArea.tsx +66 -0
  520. package/src/components/TextField/TextField.tsx +96 -0
  521. package/src/components/TextField/stories/SearchField.stories.tsx +40 -0
  522. package/src/components/TextField/stories/TextArea.stories.tsx +39 -0
  523. package/src/components/TextField/stories/TextField.stories.tsx +99 -0
  524. package/src/components/TextField/textfield.scss +63 -0
  525. package/src/components/Toolbar/Toolbar.stories.tsx +41 -0
  526. package/src/components/Toolbar/Toolbar.tsx +42 -0
  527. package/src/components/Toolbar/ToolbarSection.tsx +48 -0
  528. package/src/components/Toolbar/toolbar.scss +52 -0
  529. package/src/components/Tooltip/Tooltip.tsx +53 -0
  530. package/src/components/Tooltip/tooltip.scss +37 -0
  531. package/src/components/Typography/Highlighter.tsx +70 -0
  532. package/src/components/Typography/HtmlContentBlock.tsx +30 -0
  533. package/src/components/Typography/OverflowText.tsx +46 -0
  534. package/src/components/Typography/WhiteSpaceContainer.tsx +41 -0
  535. package/src/components/Typography/_reset.scss +36 -0
  536. package/src/components/Typography/classnames.ts +10 -0
  537. package/src/components/Typography/typography.scss +282 -0
  538. package/src/components/Workspace/WorkspaceContent.tsx +22 -0
  539. package/src/components/Workspace/WorkspaceHeader.tsx +20 -0
  540. package/src/components/Workspace/WorkspaceMain.tsx +14 -0
  541. package/src/components/Workspace/WorkspaceSide.tsx +18 -0
  542. package/src/components/Workspace/_header.scss +9 -0
  543. package/src/components/Workspace/workspace.scss +1 -0
  544. package/src/components/interfaces.ts +3 -0
  545. package/src/configuration/_variables.scss +130 -0
  546. package/src/configuration/constants.ts +2 -0
  547. package/src/extensions/_index.scss +1 -0
  548. package/src/extensions/react-flow/_config.scss +16 -0
  549. package/src/extensions/react-flow/_react-flow.scss +5 -0
  550. package/src/extensions/react-flow/edges/EdgeDefault.tsx +77 -0
  551. package/src/extensions/react-flow/edges/EdgeStep.tsx +19 -0
  552. package/src/extensions/react-flow/edges/EdgeTools.tsx +39 -0
  553. package/src/extensions/react-flow/edges/_edges.scss +181 -0
  554. package/src/extensions/react-flow/edges/edgeTypes.ts +24 -0
  555. package/src/extensions/react-flow/edges/utils.ts +32 -0
  556. package/src/extensions/react-flow/handles/HandleContent.tsx +39 -0
  557. package/src/extensions/react-flow/handles/HandleDefault.tsx +29 -0
  558. package/src/extensions/react-flow/handles/_handles.scss +208 -0
  559. package/src/extensions/react-flow/index.ts +15 -0
  560. package/src/extensions/react-flow/minimap/MiniMap.tsx +110 -0
  561. package/src/extensions/react-flow/minimap/_minimap.scss +79 -0
  562. package/src/extensions/react-flow/minimap/utils.ts +13 -0
  563. package/src/extensions/react-flow/nodes/NodeContent.stories.tsx +83 -0
  564. package/src/extensions/react-flow/nodes/NodeContentExtension.stories.tsx +36 -0
  565. package/src/extensions/react-flow/nodes/NodeContentExtension.tsx +87 -0
  566. package/src/extensions/react-flow/nodes/NodeDefault.stories.tsx +138 -0
  567. package/src/extensions/react-flow/nodes/NodeDefault.tsx +376 -0
  568. package/src/extensions/react-flow/nodes/NodeTools.tsx +48 -0
  569. package/src/extensions/react-flow/nodes/_nodes.scss +490 -0
  570. package/src/extensions/react-flow/nodes/nodeTypes.ts +14 -0
  571. package/src/includes/blueprintjs/_variables.scss +195 -0
  572. package/src/includes/carbon-components/_variables.scss +107 -0
  573. package/src/index.scss +190 -0
  574. package/src/index.ts +238 -0
  575. package/src/legacy-replacements/Button/AffirmativeButton.tsx +16 -0
  576. package/src/legacy-replacements/Button/Button.tsx +73 -0
  577. package/src/legacy-replacements/Button/DismissiveButton.tsx +16 -0
  578. package/src/legacy-replacements/Button/DisruptiveButton.tsx +16 -0
  579. package/src/legacy-replacements/Checkbox/Checkbox.tsx +54 -0
  580. package/src/legacy-replacements/Radio/RadioButton.tsx +38 -0
  581. package/src/legacy-replacements/TextField/TextField.tsx +90 -0
  582. package/src/test/setupTests.js +2 -0
  583. package/.cached-fonts +0 -1
  584. package/Ruleset.md +0 -93
  585. package/additionalLicenses.yml +0 -21
  586. package/buildConfig.js +0 -25
  587. package/dist/fonts/iconfont/MaterialIcons-Regular.woff +0 -0
  588. package/dist/fonts/iconfont/MaterialIcons-Regular.woff2 +0 -0
  589. package/dist/fonts/iconfont/codepoints +0 -932
  590. package/dist/fonts/roboto/Black/Roboto-Black.woff +0 -0
  591. package/dist/fonts/roboto/Black/Roboto-Black.woff2 +0 -0
  592. package/dist/fonts/roboto/BlackItalic/Roboto-BlackItalic.woff +0 -0
  593. package/dist/fonts/roboto/BlackItalic/Roboto-BlackItalic.woff2 +0 -0
  594. package/dist/fonts/roboto/Bold/Roboto-Bold.woff +0 -0
  595. package/dist/fonts/roboto/Bold/Roboto-Bold.woff2 +0 -0
  596. package/dist/fonts/roboto/BoldItalic/Roboto-BoldItalic.woff +0 -0
  597. package/dist/fonts/roboto/BoldItalic/Roboto-BoldItalic.woff2 +0 -0
  598. package/dist/fonts/roboto/Italic/Roboto-Italic.woff +0 -0
  599. package/dist/fonts/roboto/Italic/Roboto-Italic.woff2 +0 -0
  600. package/dist/fonts/roboto/Light/Roboto-Light.woff +0 -0
  601. package/dist/fonts/roboto/Light/Roboto-Light.woff2 +0 -0
  602. package/dist/fonts/roboto/LightItalic/Roboto-LightItalic.woff +0 -0
  603. package/dist/fonts/roboto/LightItalic/Roboto-LightItalic.woff2 +0 -0
  604. package/dist/fonts/roboto/Medium/Roboto-Medium.woff +0 -0
  605. package/dist/fonts/roboto/Medium/Roboto-Medium.woff2 +0 -0
  606. package/dist/fonts/roboto/MediumItalic/Roboto-MediumItalic.woff +0 -0
  607. package/dist/fonts/roboto/MediumItalic/Roboto-MediumItalic.woff2 +0 -0
  608. package/dist/fonts/roboto/Regular/Roboto-Regular.woff +0 -0
  609. package/dist/fonts/roboto/Regular/Roboto-Regular.woff2 +0 -0
  610. package/dist/fonts/roboto/Thin/Roboto-Thin.woff +0 -0
  611. package/dist/fonts/roboto/Thin/Roboto-Thin.woff2 +0 -0
  612. package/dist/fonts/roboto/ThinItalic/Roboto-ThinItalic.woff +0 -0
  613. package/dist/fonts/roboto/ThinItalic/Roboto-ThinItalic.woff2 +0 -0
  614. package/docs/README.md +0 -951
  615. package/docs/docTemplate.md +0 -140
  616. package/es5/component.js +0 -6653
  617. package/index.js +0 -136
  618. package/jest.config.js +0 -42
  619. package/src/_configuration.default.scss +0 -97
  620. package/src/_configuration.mdl.scss +0 -518
  621. package/src/elements/Alert/Alert.jsx +0 -141
  622. package/src/elements/Alert/Error.jsx +0 -22
  623. package/src/elements/Alert/Info.jsx +0 -21
  624. package/src/elements/Alert/Success.jsx +0 -20
  625. package/src/elements/Alert/Warning.jsx +0 -19
  626. package/src/elements/Alert/_alert.scss +0 -93
  627. package/src/elements/Alert/index.js +0 -13
  628. package/src/elements/AutoCompleteBox/AutoCompleteBox.jsx +0 -149
  629. package/src/elements/AutoCompleteBox/_autocomplete.scss +0 -33
  630. package/src/elements/Breadcrumbs/BreadcrumbItem.jsx +0 -34
  631. package/src/elements/Breadcrumbs/BreadcrumbList.jsx +0 -56
  632. package/src/elements/Breadcrumbs/_breadcrumbs.scss +0 -47
  633. package/src/elements/Breadcrumbs/index.js +0 -7
  634. package/src/elements/Button/AffirmativeButton.jsx +0 -73
  635. package/src/elements/Button/Button.jsx +0 -216
  636. package/src/elements/Button/DismissiveButton.jsx +0 -77
  637. package/src/elements/Button/DisruptiveButton.jsx +0 -74
  638. package/src/elements/Button/ProgressButton.jsx +0 -95
  639. package/src/elements/Button/_button.scss +0 -61
  640. package/src/elements/Button/index.js +0 -13
  641. package/src/elements/Card/Card.jsx +0 -61
  642. package/src/elements/Card/CardActions.jsx +0 -37
  643. package/src/elements/Card/CardTitle.jsx +0 -78
  644. package/src/elements/Card/FloatingActionList.jsx +0 -260
  645. package/src/elements/Card/_card.scss +0 -179
  646. package/src/elements/Card/index.js +0 -18
  647. package/src/elements/Checkbox/Checkbox.jsx +0 -113
  648. package/src/elements/Checkbox/_checkbox.scss +0 -14
  649. package/src/elements/Chip/Chip.jsx +0 -118
  650. package/src/elements/Chip/ChipVisual.jsx +0 -88
  651. package/src/elements/Chip/_chip.scss +0 -49
  652. package/src/elements/Chip/index.js +0 -7
  653. package/src/elements/ContextMenu/ContextMenu.jsx +0 -101
  654. package/src/elements/ContextMenu/_contextmenu.scss +0 -23
  655. package/src/elements/DateField/DateField.jsx +0 -178
  656. package/src/elements/DateField/DateTimefield.jsx +0 -20
  657. package/src/elements/DateField/_datefield.scss +0 -116
  658. package/src/elements/DateField/index.js +0 -7
  659. package/src/elements/Dialog/BaseDialog.jsx +0 -161
  660. package/src/elements/Dialog/ConfirmationDialog.jsx +0 -48
  661. package/src/elements/Dialog/_dialog.scss +0 -58
  662. package/src/elements/Dialog/index.js +0 -7
  663. package/src/elements/Footer/Footer.jsx +0 -171
  664. package/src/elements/Footer/_footer.scss +0 -17
  665. package/src/elements/Grid/_grid.scss +0 -18
  666. package/src/elements/Icon/Icon.jsx +0 -97
  667. package/src/elements/Icon/canonicalicons.json +0 -32
  668. package/src/elements/Icon/canonicaltooltips.json +0 -32
  669. package/src/elements/Icon/icontable.json +0 -934
  670. package/src/elements/Layout/_layout.scss +0 -82
  671. package/src/elements/NotAvailable/NotAvailable.jsx +0 -87
  672. package/src/elements/NotAvailable/_notavailable.scss +0 -18
  673. package/src/elements/Pagination/Pagination.jsx +0 -414
  674. package/src/elements/Pagination/_pagination.scss +0 -98
  675. package/src/elements/Progressbar/Progressbar.jsx +0 -34
  676. package/src/elements/Progressbar/_progressbar.scss +0 -22
  677. package/src/elements/Radio/RadioButton.jsx +0 -129
  678. package/src/elements/Radio/RadioGroup.jsx +0 -35
  679. package/src/elements/Radio/_radio.scss +0 -46
  680. package/src/elements/Radio/index.js +0 -7
  681. package/src/elements/SelectBox/SelectBox.jsx +0 -321
  682. package/src/elements/SelectBox/_selectbox.scss +0 -144
  683. package/src/elements/Spinner/Spinner.jsx +0 -44
  684. package/src/elements/Spinner/_spinner.scss +0 -20
  685. package/src/elements/Switch/Switch.jsx +0 -38
  686. package/src/elements/Table/Table.jsx +0 -100
  687. package/src/elements/Table/TableBody.jsx +0 -66
  688. package/src/elements/Table/TableCell.jsx +0 -94
  689. package/src/elements/Table/TableHead.jsx +0 -66
  690. package/src/elements/Table/TableRow.jsx +0 -78
  691. package/src/elements/Table/_datatable.scss +0 -78
  692. package/src/elements/Table/_table.scss +0 -143
  693. package/src/elements/Tabs/Tabs.jsx +0 -116
  694. package/src/elements/TextField/TextField.jsx +0 -172
  695. package/src/elements/TextField/_textfield.scss +0 -80
  696. package/src/elements/Tooltip/Tooltip.jsx +0 -3
  697. package/src/elements/Tooltip/_tooltip.scss +0 -21
  698. package/src/elements/Version/Version.jsx +0 -19
  699. package/src/hocs/ScrollingHOC.js +0 -122
  700. package/src/main.scss +0 -83
  701. package/src/scss/_adjustments.scss +0 -16
  702. package/src/scss/_helpers.scss +0 -29
  703. package/src/scss/_iconfont.scss +0 -35
  704. package/src/scss/_patches.scss +0 -19
  705. package/src/scss/_roboto.scss +0 -30
  706. package/src/scss/main.build-css.scss +0 -4
  707. package/src/utils/classnameSeperator.js +0 -10
  708. package/src/utils/extendedOnChangeBoolean.jsx +0 -14
  709. package/src/utils/uniqueId.jsx +0 -36
  710. package/style/test.scss +0 -30
package/CHANGELOG.md CHANGED
@@ -1,880 +1,112 @@
1
1
  # Change Log
2
2
  All notable changes to this project will be documented in this file.
3
- This project adheres to [Semantic Versioning](http://semver.org/) and [Keep A Changelog's Format](http://keepachangelog.com/).
4
3
 
5
- ## [6.1.0] 2020-11-12
4
+ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
6
5
 
7
- ### Added
8
- - New properties for **Pagination**:
9
- - foundResultsText: text with placeholders. Default value `Found ::total:: results`
10
- - pageWithLimitText: text with placeholders. Default value `Page ::current:: of ::total::`
11
- - pageWithoutLimitText: text with placeholders. Default value `Page ::current::`
12
-
13
- ## [6.0.0] 2020-11-12
14
-
15
- ### Changed
16
-
17
- - **BREAKING** Tabs now require tabId besides tabTitle and tabContent.
18
- - Tabs now use tabId instead of tabTitle as identifier, to be compatible with translations.
19
-
20
- ## [5.1.4] 2020-11-04
21
-
22
- ### Added
23
- - add `data-test-id` property to items in FloatActionItems component.
24
-
25
- ## [5.1.3] 2020-04-02
26
-
27
- ### Changed
28
- - use latest `react-mdl@2.1.0`
29
-
30
- ## [5.1.2] 2019-10-29
31
-
32
- ### Added
33
- - add unit test for all components
34
-
35
- ### Fixed
36
- - `<Selectbox />` clear icon was selectable when tabbing through elements.
37
-
38
- ## [5.1.1] 2019-07-10
39
- ### Fixed
40
- - `<FloatingActionList />` did not closed its listener event.
41
- - Prevent empty tooltips on `<NotAvailable/>` elements that contain a label but no description.
42
-
43
- ## [5.1.0] 2019-07-05
44
-
45
- ### Added
46
- - `<AutoCompleteBox />` option content can now be disabled.
47
-
48
- ## [5.0.0] 2019-06-24
49
-
50
- ### Changed
51
-
52
- - Change openToBottom bool parameter to a function parameter returning a bool value
53
-
54
- ## [4.5.0] 2019-06-20
55
-
56
- ### Added
57
- - add option `openToBottom` to allow `<FloatingActionList />` menu list to get opened to the bottom side
58
-
59
- ## [4.4.0] 2019-06-19
60
-
61
- ### Added
62
- - allow disabled actionitems in floating menu lists, use the `disabled` property
63
- - add option `allowSingleItemList` to allow `<FloatingActionList />` elements with menu lists containing only one action item
64
-
65
- ### Changed
66
- - do not auto close FAB menu when mouse cursor moved out of it
67
-
68
- ## [4.3.1] 2019-06-18
69
-
70
- ### Fixed
71
- - repair progress buttons to make them appear correctly
72
-
73
- ## [4.3.0] 2019-06-06
74
-
75
- ### Added
76
- - add a `reducedHeight` option to `<Alert/>` element, forcing it to be not larger than 50% of the viewport
77
-
78
- ### Fixed
79
- - use `not-allowed` cursor on disabled select inputs to align it with disabled textfields
80
- - use input elements with reduced vertical margins in pagination to prevent too much white space
81
-
82
- ## [4.2.4] 2019-05-27
83
-
84
- ### Fixed
85
- - change rendering styles of clearance button in TextField to prevent strange behaviour of table wrappers
86
- - fix line breaks in tooltips within table cells
87
-
88
- ## [4.2.3] 2019-04-29
89
-
90
- ### Fixed
91
- - justify `SelectBox` behaviour to other inout input fields, so focused state with placeholder and reduced size option work correctly
92
-
93
- ## [4.2.2] 2019-04-26
94
-
95
- ### Changed
96
- - remove upper textfield padding when it is visually reduced and misses a label
97
- - adjust Card title size
98
-
99
- ### Fixed
100
- - prevent line breaks on multiselect values without clearance button
101
- - fix state of clearance buttons on disabled textfields
102
- - fix hover effect on disable clearance buttons
103
- - fix maximum value of table cell width for very large displays
104
- - `AutoCompleteBox` error in highlighting when using chars which need to be escaped
105
-
106
- ## [4.2.1] 2019-04-11
107
-
108
- ### Added
109
- - add canonical definitions for reste and back buttons
110
-
111
- ### Changed
112
- - increase visibility of clearance buttons to prevent mismatch with disabled buttons
113
-
114
- ### Fixed
115
- - improve position of icons in normal buttons
116
-
117
- ## [4.2.0] 2019-04-11
118
-
119
- ### Changed
120
- - prop `totalResults` can be undefined if the value is unknown.
121
-
122
- ### Fixed
123
- - calculation of offset when using the page input field
124
-
125
- ## [4.0.0] 2019-03-28
126
- ### Changed
127
- - Prepared component for react 16
128
- - rules for sizes and colors now build on available configuration vars
129
- - clean up `<Footer/>` sub elements
130
-
131
- ### Removed
132
- - messagebus
133
- - PerformanceMixin
134
- - MaterialMixin
135
- - Nothing component
136
-
137
- ### Added
138
- - ScrollingHOC
139
- - ScrollingHOC and usage ScrollingHOC in README
140
- - include full configuration stack of MDL variables, all sizes there are calculated based on very few own base configurations: `$ecc-size-typo-base`, `$ecc-size-typo-base-lineheight` and `$ecc-size-type-levelratio`, see README.md under "Justify default configuration"
141
- - allow children in `<Footer/>` element
142
-
143
- ### Breaking
144
- - mixin replaced with hocs
145
-
146
- ## [3.5.0] 2019-03-20
147
- ### Added
148
- - Footer now contain user credential info
149
-
150
- ## [3.4.2] 2019-03-12
151
-
152
- ### Fixed
153
-
154
- - Button element now allows a badge property to use them (mainly) with icon buttons
155
-
156
- ## [3.4.1] 2019-02-07
157
- ### Fixed
158
-
159
- - fix specifity of CSS selector for reduced Cards sub elements and improve its layout
160
- ## [3.4.0] 2019-01-16
161
-
162
- ### Added
163
- - Routing to test cases
164
- - New Cards test
165
-
166
- ### Changed
167
- - Cut value description in `<AutoCompleteBox/>` on the left side if value is to big to get shown completely
168
- - Redesign the content using MDL sidebar with `<Drawer>` and `<Navigation>` elements
169
- - Separate chips test from buttons test
170
-
171
- ## [3.3.1] 2018-12-11
172
-
173
- ### Changed
174
- - use <Card/> element as foundation for the dialogs to align them visually
175
-
176
- ## [3.3.0] 2018-11-29
177
-
178
- ### Fixed
179
- - clearing button on TextField is now positioned correctly when it has an tooltip
180
-
181
- ### Added
182
- - add `onClearValue` and `reducedSize` options to `<TextField />` element
183
-
184
- ## [3.2.0] 2018-11-28
185
-
186
- ### Added
187
- - new param `inputRestriction` for `<AutoCompleteBox />` which allows to manipulate user input before reacting on it
188
- ### Fixed
189
- - fatal error when enter '$' into `<AutoCompleteBox />` when `creatable` is true
190
- - fatal error in `<AutoCompleteBox />`'s highlighter when using special characters sometimes
191
-
192
- ### Added
193
- - add canonical icon names for 'add', 'clear', 'help', 'visibility_on' and 'visibility_off'
194
-
195
- ## [3.1.1] 2018-11-21
196
-
197
- ### Fixed
198
- - prevent nested tables from inherit usage of multiline/overflow configuration of the parent table
199
-
200
- ## [3.1.0] 2018-11-07
201
-
202
- ### Fixed
203
- - version
204
-
205
- ## [2.32.0] 2018-11-07
206
-
207
- ### Added
208
- - `scrollTableOverflow` option for `<Table />`, this is now not enabled by default
209
- - `preventCellOverflow` option for `<Table />`, this is now not enabled by default
210
- - `showPageInput` option for `<Pagination />`, enables direct jump to page number
211
- - `disabled` option for `<Pagination />`, allows disabling the pagination controls
212
- - show number of results in `<Pagination />` and option to hide it
213
-
214
- ### Changed
215
- - `<Pagination />` shows page offset by default now, can be changed by `showElementOffsetPagination` option
216
-
217
- ## [3.0.0] 2018-10-23
218
-
219
- ### Added
220
- - add new GUI elements: `<Table/>`, `<TableHead/>`, `<TableBody/>`, `<TableRow/>`, `<TableCell/>`
221
- - add `hideLabel` option to `<Checkbox/>` and `<Radio/>` elements, when true then labels are not visible but accessible
222
-
223
- ### Changed
224
- - Pagination: left default alignement and smaller font sizes
225
- - Data Table: styles now provided by new `<Table/>` element
226
-
227
- ### Removed
228
- - remove support for `$color-primary-dark`, `$ecc-typo-display-3-font-size`, `$ecc-typo-display-2-font-size`, `$ecc-typo-display-1-font-size`, `$ecc-typo-headline-font-size`, `$ecc-typo-title-font-size`, `$ecc-typo-subhead-font-size` and remove the info about their deprecation
229
-
230
- ## [2.31.4] 2018-06-13
231
-
232
- ### Added
233
- - possibility for `AutoCompleteBox` to directly pass user input to parent component with `handleValueChange`
234
-
235
- ## [2.31.3] 2018-04-20
236
-
237
- ### Fixed
238
- - replace native array method for IE11 compatibility
239
-
240
- ## [2.31.2] 2018-04-16
241
-
242
- ### Fixed
243
- - replace native array method for IE11 compatibility
244
-
245
- ## [2.31.1] 2018-03-19
246
-
247
- ### Changed
248
- - use unsubscribe instead of dispose (breaking change in rx)
249
-
250
- ## [2.31.0] 2018-02-28
251
-
252
- ### Added
253
- - Footer Component
254
-
255
- ## [2.30.0] 2018-02-07
256
-
257
- ### Added
258
- - make option for <Card /> available to get rendered with reduced size, paddings, margins
259
- - flex layout support for CardMenu that is part of CardTitle
260
- - CardMenu layout for reduced Cards
261
-
262
- ### Changed
263
- - small adjustment od CardMenu position (littlebit more right and top)
264
-
265
- ## [2.29.1] 2018-01-24
266
-
267
- ### Fixed
268
- - Fonts can now be resolved correctly (still pointed `ecc-gui-elements`)
269
- - Examples and README still pointed to `ecc-gui-elements`
270
-
271
- ## [2.29.0] 2018-01-24
272
-
273
- ### Changed
274
- - Fixed registry to be `https://registry.npmjs.org/`
275
- - Name to `@eccenca/gui-elements`
276
-
277
- ## [2.28.1] 2018-01-15
278
-
279
- ### Fixed
280
- - use correct max height on scroll bars for FloatingActionList menus with more than six action items
281
-
282
- ## [2.28.0] 2018-01-10
283
-
284
- ### Added
285
- - Support for badges on icons (`badge`)
286
-
287
- ### Changed
288
- - Updated roboto
289
- - Switched from code points to ligatures for icon font
290
-
291
- ### Fixed
292
- - Disable false warnings, if deprecated `delete` Icon is used
293
-
294
- ### Removed
295
- - removed eot and ttf versions of fonts
296
-
297
- ## [2.27.0] 2017-12-18
298
-
299
- ### Added
300
- - `AutoCompleteBox` wrapper around `SelectBox`
301
- - `name` property to `SelectBox`, which is also returned in the onChange event as a second parameter:
302
- ```
303
- <SelectBox
304
- name="selectBoxValue"
305
- value={this.state.selectBoxValue}
306
- onChange={(value, name) => this.setState({[name]: value})}
307
- >
308
- ```
309
- - `name` property support to `Checkbox`, `RadioGroup`, `Switch`, `TextField` and `DateField`, which is also returned in the onChange event:
310
- ```
311
- <Checkbox
312
- name="checkbox"
313
- value={this.state.checkbox}
314
- onChange={({value, name}) => this.setState({[name]: value})}
315
- >
316
- ```
317
-
318
- ## [2.26.0] 2017-12-12
319
-
320
- ### Added
321
- - provide class `.mdl-button-clearance` for buttons, see `README.md` for more info
322
-
323
- ### Fixed
324
- - react-select version set to `v1.0.1`, waiting for [this PR](https://github.com/JedWatson/react-select/pull/2198) to land
325
-
326
- ## [2.25.2] 2017-12-06
327
-
328
- ### Fixed
329
- - `<FloatingActionList/>`: remove active state before re-rendering with new options
330
-
331
- ## [2.25.1] 2017-12-04
332
-
333
- ### Fixed
334
- - add more secifity to DateTime element styles
335
-
336
- ## [2.25.0] 2017-12-04
337
-
338
- ### Changed
339
- - Set default time format to 24-hour format for date input
340
-
341
- ## [2.24.3] 2017-12-04
342
-
343
- ### Fixed
344
- - adjust position of fixed <CardActions> regarding wrapping layout classes from applications
345
- - increase specifity of DateTime element styles
346
-
347
- ## [2.24.2] 2017-11-30
348
-
349
- ### Fixed
350
- - render `<SelectBox/>` options over other elements
351
-
352
- ## [2.24.1] 2017-11-29
353
-
354
- ### Fixed
355
- - harden style of DateTime element to prevent problems when used in data tables
356
-
357
- ## [2.24.0] 2017-11-28
358
-
359
- ### Added
360
- - provide <Tooltip /> element for separate tooltips, usable in combination with all other elements independently
361
- - use tooltip element for buttons, icons and n/a elements
362
-
363
- ### Fixed
364
- - use error icon for icons with unknown icon name
365
-
366
- ## [2.23.2] 2017-11-27
367
-
368
- ### Fixed
369
- - calculation of current page in case of 0 results
370
-
371
- ## [2.23.1] 2017-11-23
372
-
373
- ### Fixed
374
- - auto scroll always to top of element to prevent problems in cases when the element is higher than the viewport
375
-
376
- ## [2.23.0] 2017-11-23
377
-
378
- ### Added
379
- - `DateTimeField` and `DateField` components
380
-
381
- ## [2.22.0] 2017-11-20
382
-
383
- ### Fixed
384
- - use icon from `<FloatingActionList/>` on one item lists as fallback if the single action item has no icon configured
385
-
386
- ## [2.21.0] 2017-11-02
387
-
388
- ### Fixed
389
- - fix the fallback tooltip for the delete/remove icon to "Remove."
390
-
391
- ### Added
392
- - insert canonical icons and fallback tooltips for 'save', 'confirm', 'cancel', 'adjust' and 'settings'
393
-
394
- ## [2.20.1] 2017-10-16
395
-
396
- ### Fixed
397
- - Remove reference to original material-design-lite
398
-
399
- ## [2.20.0] 2017-10-04
400
-
401
- ### Changed
402
- - Migrate to new fork of mdl
403
-
404
- ## [2.19.0] 2017-09-06
405
-
406
- ### Added
407
- - 'ScrollingMixin' mixin to scroll elements into the visible viewport of scrollable areas
408
- - provide `<BreadcrumbList/>` and `<BreadcrumbItem/>` to create breadcrumb navigations
409
-
410
- ## [2.18.2] 2017-08-31
411
- ### Added
412
- - `<ProgressButton />` event `progressTopic` can now additionally contain param `lastUpdate`.
413
-
414
- ## [2.18.1] 2017-08-29
415
-
416
- ### Removed
417
- - Circular dependency on ecc-mixins
418
-
419
- ### Fixed
420
- - How subscriptions in progress buttons are handled
421
-
422
- ## [2.18.0] 2017-08-29
423
-
424
- ### Added
425
- - `<Chip/>` element support `href` option now, if given it is rendered as HTML link anchor
426
- - `<ProgressButton />` element to show feedback of running backround processes to user in button
427
- - `progress` and `progressTopic` for `<AffirmativeButton/>`, `<DismissiveButton/>` and `<DisruptiveButton/>` elements
428
-
429
- ## [2.17.1] 2017-08-22
430
-
431
- ### Fixed
432
- - use correct inline imports
433
-
434
- ## [2.17.0] 2017-08-21
435
-
436
- ### Added
437
- - `<Card />` element including sub elements to insert application card sections, see readme doc
438
- - `<FloatingActionList />` element that provides simple FAB functionality, e.g. for cards
439
-
440
- ### Fixed
441
- - size of large Floating Action Button (FAB) is now rendered corrently
442
- - use MDL color syntax and revert prior fixes using double MDL files
443
-
444
- ## [2.16.2] 2017-08-10
445
-
446
- ### Fixed
447
- - Remove gulp tasks from peer dependency
448
-
449
- ## [2.16.1] 2017-08-10
450
-
451
- ### Fixed
452
- - reset margin of alerts to 1 REM (https://www.youtube.com/watch?v=xwtdhWltSIg)
453
-
454
- ## [2.16.0] 2017-08-10
455
-
456
- ## Changed
457
- - Added patched versions of MDL libraries that are using real colors
458
-
459
- ### Fixed
460
- - Resolve gui-elements to itself with the help of webpack aliases
461
-
462
- ## [2.15.3] 2017-08-08
463
-
464
- ### Added
465
- - introduce `ecc` prefixed variables for global configuration stack of colors and sizes
466
-
467
- ### Fixed
468
- - improve cursor position on focused `<SelectBox />` elements and narrow active select option
469
-
470
- ## [2.15.2] 2017-07-21
471
- ### Fixed
472
- - `SelectBox` now pass `isOptionUnique` correctly
473
-
474
- ## [2.15.1] 2017-07-06
475
- ### Fixed
476
- - documentation of `<Pagination />`
477
-
478
- ## [2.15.0] 2017-06-28
479
-
480
- ### Added
481
- - add `<Alert/>` parameter to set icon used for handler button
482
-
483
- ### Changed
484
- - update react-mdl and react-select to newest version
485
- - Async Selects do not normalize input per default
486
-
487
- ### Fixed
488
- - correct icon size and alignment in textfield label
489
-
490
- ## [2.14.0] 2017-06-23
491
-
492
- ### Added
493
-
494
- - SelectBox can now be async
495
-
496
- ### Fixed
497
- - optical adjustment of margin/padding for textarea textfields compared to single line textfields
498
-
499
- ## [2.13.0] 2017-06-20
500
-
501
- ### Added
502
- - provide very simple `<NotAvailable />` element for configurable "not available" placeholder information
503
-
504
- ## [2.12.1] 2017-06-14
505
- ### Removed
506
- - Dependencies which are unneeded after the vis removal
507
-
508
- ## [2.12.0] 2017-06-13
509
-
510
- ### Removed
511
- - Timeline and vis dependency (Potentially breaking, no major change, as we migrated all components)
512
-
513
- ## [2.11.7] 2017-04-26
514
-
515
- ### Fixed
516
- - prevent overflow of hovered menu items
517
-
518
- ## [2.11.6] 2017-04-24
519
-
520
- ### Fixed
521
- - tooltips for no-access icons changed
522
-
523
- ## [2.11.5] 2017-04-12
524
- ### Fixed
525
- - click on an already active Tab will no longer trigger rerender
526
-
527
- ## [2.11.4] 2017-03-29
528
- ### Fixed
529
- - reduce icon size in chips to font size of parent element
530
-
531
- ## [2.11.3] 2017-03-28
532
- ### Fixed
533
- - use separated chip scss stylesheet to include patches
534
- - fix layout to use Chip on smaller spaces
535
- - allow additional class names for `<ChipVisual/>` elements
536
- - enable icons as content in `<ChipVisual/>` elements
537
-
538
- ## [2.11.2] 2017-03-24
539
- ### Fixed
540
- - Only use vis css which is really needed
541
-
542
- ## [2.11.1] 2017-03-24
543
- ### Fixed
544
- - made npm package ~3MB smaller by not including useless vis code
545
- - remove faulty code from BaseDialog
6
+ ## [Unreleased]
546
7
 
547
- ## [2.11.0] 2017-03-24
548
8
  ### Added
549
- - provide own `<Chip/>` and `<ChipVisual/>` element
550
-
551
- ## [2.10.0] 2017-03-21
552
- ### Added
553
- - insert helper for justified usage of color definitions as strings and color types
554
-
555
- ## [2.9.1] 2017-03-21
556
- ### Fixed
557
- - Unignore lib folder in npmignore
558
-
559
- ## [2.9.0] 2017-03-20
560
-
561
- This release includes all changes included in `3.0.0`
562
9
 
563
- ### Changed
564
- - `vis` dependency is managed as submodule again:
565
- - update to `vis@4.19.1`
566
- - update of `vis` license
567
- - removal of `vis` dependency from package.json
568
-
569
- ## [3.0.0] 2017-03-16 (deprecated)
570
-
571
- This release has been deprecated and should not be used. Please use the a release `>= 2.9.0` to include the changes listed below
10
+ * `Tag` element got new property for `backgroundColor`
11
+ * Styles for footnotes and task lists, rendered by Markdown GFM parser.
12
+ * React-Flow `NodeContent` element can now be extented by `contentExtension` property containing a `NodeContentExtension` element.
572
13
 
573
14
  ### Changed
574
- - update to `material-design-lite@1.3.0`
575
- - with this update we use the official `material-design-lite` repo instead of an old fork
576
- - update to `react-mdl@1.9.0`
577
- - removed usage of eccenca clone of MDL, use JS directly from React-MDL
578
- - use visjs Timeline via import from `package.json`
579
- - restructure scss imports
580
-
581
- ### Added
582
- - elements for `<Layout/>` and `<Content/>` containers
583
-
584
- ## [2.8.2] 2017-03-08
585
- ### Fixed
586
- - revert to old Tabs workflow regarding to accidentally changes of behaviour with empty tabs content and non-avtive tabs
587
-
588
- ## [2.8.1] 2017-03-01
589
- ### Fixed
590
- - Re-enable mixin side effect
591
-
592
- ## [2.8.0] 2017-02-24
593
- ### Fixed
594
- - improve rendering of `ContextMenu`, prevent re-rendering cascade (replace react-mdl element)
595
- - add prop `valign` with defauly `bottom` to `ContextMenu`
596
-
597
- ### Added
598
- - `PerformanceMixin` provides default checks for shouldComponentUpdate() to prevent unnecessary renderings
599
-
600
- ## [2.7.0] 2017-02-13
601
-
602
- ### Added
603
- - new elements for `<Radio/>` and `<RadioGroup/>`
604
-
605
- ## [2.6.2] 2017-02-07
606
-
607
- ### Fixed
608
- - `<ContextMenu/>` with only one MenuItem does not break the application anymore
609
-
610
- ## [2.6.1] 2017-02-03
611
-
612
- ### Fixed
613
- - use correct capitalization for fallback tooltips of icons and buttons
614
-
615
- ## [2.6.0] 2017-01-31
616
-
617
- ### Added
618
- - new button elements: `<AffirmativeButton/>`, `<DismissiveButton/>`, `<DisruptiveButton/>`
619
-
620
- ## [2.5.0] 2017-01-24
15
+ * `TextField` elements are using `fullWidth=true` by default
16
+ * `SearchField` uses now by default `"operation-search"` as `leftIcon`
621
17
 
622
18
  ### Fixed
623
- - improve layout of multi select values to prevent box overflows
624
-
625
- ### Changed
626
- - move remove button of multi select values to left side again
627
-
628
- ## [2.4.0] 2017-01-23
629
-
630
- ### Added
631
- - add config option to overwrite default icon of context menu element
632
-
633
- ## [2.3.1] 2017-01-11
634
- ### Fixed
635
- - Added missing licenses for `material-design-icons`, `roboto` and `vis`
636
- - Tabs: No Error is thrown anymore if onTabClick is undefined
637
-
638
- ## [2.3.0] 2017-01-09
639
- ### Added
640
- - classnames for `Pagination`, `ContextMenu` and `Dialog` buttons
641
-
642
- ## [2.2.0] 2016-12-01
643
- ### Changes
644
- - add stretch option (default: true) to TextField element
645
- - add multiline option (default: false) to TextField element
646
-
647
- ## [2.1.0] 2016-12-01
648
- ### Added
649
- - SelectBox now has the `optionsOnTop` property (boolean, default `false`). If set to `true`, the dropdown will open to the top
650
- - Pagination now has the `isTopPagination` property (boolean, default `false`). If set to `true`, the limit selector will open to the bottom
651
-
652
- ### Changed
653
- - SelectBox uses MDL floating label pattern
654
-
655
- ## [2.0.0] 2016-11-28
656
- ### Breaking
657
- - Removed `<Dialog>`. Please use `<ConfirmationDialog>` or `<BaseDialog>` instead:
658
-
659
- ```jsx
660
- //Converting old Dialog to ConfirmationDialog:
661
- <Dialog cancelButton={...} confirmButton={...}/>
662
- // =>
663
- <ConfirmationDialog cancelButton={...} confirmButton={...}/>
664
-
665
- //If you used Dialog with just one button, please use BaseDialog instead:
666
- <Dialog confirmButton={this.exampleButton}/>
667
- // =>
668
- <BaseDialog buttonRow={[this.exampleButton]}/>
669
- ```
670
-
671
- - Checkbox/Switch have been changed to a controlled input.
672
-
673
- Furthermore the onChange function has been changed:
674
-
675
- ```jsx
676
- //New Usage
677
-
678
- let isChecked = false;
679
-
680
- const handleChange(data) => {
681
-
682
- const {
683
- //contains the react synthetic event
684
- event,
685
- //contains the content of the value prop
686
- rawValue,
687
- // contains true or false
688
- value,
689
- } = data;
690
-
691
- isChecked = value;
692
-
693
- }
694
-
695
- <Checkbox
696
- onChange={handleChange}
697
- checked={isChecked}
698
- value="foo"
699
- />
700
- ```
701
-
702
- - Pagination has now a simpler onChange handler:
703
-
704
- ```jsx
705
- //before
706
- <Pagination
707
- handleNewLimit={(limit) => console.log(limit)}
708
- handleNewOffset={(offset) => console.log(offset)}
709
- />
710
- //after
711
- <Pagination
712
- onChange={({offset, limit}) => console.log(offset, limit)}
713
- />
714
- ```
715
-
716
- ### Changed
717
- - Disabled buttons do not show their tooltip anymore
718
- - `SelectBox` now support multi selection and new value creation
719
-
720
- ## [1.17.3] 2016-11-24
721
- ### Changed
722
- - Reverted Changes to Confirmation Dialog, as a Confirmation Dialog should always have two buttons [per spec](https://material.google.com/components/dialogs.html#dialogs-confirmation-dialogs).
723
-
724
- ## [1.17.1] 2016-11-15
725
- ### Fixed
726
- - Missing mdl icons are now shown again
727
-
728
- ### Changed
729
- - bumped `ecc-uitest-helpers`
730
-
731
- ## [1.17.0] 2016-11-15
732
- ### Changed
733
- - Merged `ecc-style-core@1.7.5` into this project, with complete history.
734
- You can find the `ecc-style-core` changelog at the end of this file.
735
-
736
- ## [1.16.4] 2016-11-07
737
- ### Fixed
738
- - readd `Tabs` className
739
-
740
- ## [1.16.3] 2016-11-07
741
- ### Fixed
742
- - issue with not shown `Tabs` content caused by className troubles
743
-
744
- ## [1.16.2] 2016-11-02
745
- ### Fixed
746
- - add mdl class for tab panels to tab content section
747
-
748
- ## [1.16.1] 2016-10-28
749
- ### Fixed
750
- - Fixed incorrect context menu style.
751
-
752
- ## [1.16.0] 2016-10-24
753
- ### Fixed
754
- - `Pagination`: 'Last Page' button now returns correct offset if number of total results is a multiple of limit
755
-
756
- ## [1.15.0] 2016-10-18
757
- ### Changed
758
- - Updated to `lodash@4`, `react-select@1.0.0-rc.2` and `classnames@^2.2.5`
759
- - `Switch` and `Checkbox` now use `uniqueId` Higher Order Component
760
-
761
- ### Added
762
- - `TextField` component
763
- - `uniqueId` Higher Order Component
764
-
765
- ## [1.14.4] 2016-10-06
766
- ### Fixed
767
- - `ContextMenu`: using more than one ContextMenu element per side without setting `target` results in the same id for every element
768
- - `Pagination`: if no data exists offset was 0 instead of 1
769
-
770
- ## [1.14.3] 2016-09-27
771
- ### Fixed
772
- - `Button`: forwarded info about to prevented tooltip to icon if used
773
-
774
- ## [1.14.2] 2016-09-27
775
- ### Fixed
776
- - `ContextMenu`: fixed bug that it did not work properly with only one menu item
777
-
778
- ## [1.14.1] 2016-09-26
779
- ### Fixed
780
- - `Pagination`: 'Last Page' button returned wrong offset
781
-
782
- ## [1.14.0] 2016-09-21
783
- ### Added
784
- - `ContextMenu` element
785
-
786
- ## [1.13.0] 2016-09-12
787
- ### Added
788
- - `Pagination` element
789
-
790
- ## [1.12.0] 2016-09-05
791
- ### Changed
792
- - TimeLine: Instead of including the `vis` library completely,
793
- we just build the relevant parts directly from a submodule.
794
-
795
- If you want or need to update the `vis` dependency, please forward the submodule in `lib/vis` and run `npm run prepublish`.
796
-
797
- ## [1.11.2] 2016-08-30
798
- ### Fixed
799
- - SelectBox: fixed type handling for strings and numbers
800
- - SelectBox: correctly export react-select styles
801
-
802
- ## [1.11.1] 2016-08-28
803
- ### Changed
804
- - Tabs onTabClick propType is now optional
805
- - removed checks for changed content from Tabs regarding to some irregular behavior. Content should now check props changes by its own
806
-
807
- ## [1.11.0] 2016-08-18
808
- ### Added
809
- - SelectBox, which is a wrapper around react-select
810
-
811
- ### Fixed
812
- - pushing wrong properties into Buttons
813
-
814
- ## [1.10.1] 2016-06-30
815
- ### Fixed
816
- - switch button order of confirmationDialog due to mdl guideline
817
-
818
- ## [1.10.0] 2016-06-17
819
- ### Added
820
- - alternative dialog with customizable action row
821
-
822
- ### Changed
823
- - renamed Dialog into ConfirmationDialog
19
+ * Add missing import to `components/Spinner/Spinner.tsx`.
20
+ * Add bottom white space in tables in content block elements.
21
+ * `fullWidth` on/off display of `TextField` is now working like expected
824
22
 
825
23
  ### Deprecated
826
- - Dialog should be renamed to ConfirmationDialog
827
-
828
- ### Fixed
829
- - removed class from react tabs to prevent null errors
830
-
831
- ## [v1.9.0] 2016-05-23
832
- ### Added
833
- - Add Version to provide standard output of product version.
834
-
835
- ## [v1.8.0] 2016-05-17
836
- ### Changed
837
- - Upgrade React development version to v15.
838
- - Upgrade devvtools.
839
-
840
- ## ecc-style-core history
841
-
842
- `ecc-style-core` was merged into this project. You can find the history here:
843
-
844
- ### [ecc-style-core@1.7.5] 2016-09-27
845
-
846
- #### Fixed
847
- - Improve visibility of tooltips by darker background and light border
848
-
849
- ### [ecc-style-core@1.7.4] 2016-09-21
850
-
851
- #### Fixed
852
- - (Workaround) do not show tooltips for disabled buttons, @see https://openproject.brox.de/work_packages/11918
853
-
854
- ### [ecc-style-core@1.7.3] 2016-09-13
855
-
856
- #### Fixed
857
- - Disabled animation of tooltips, as it causes problems in Chrome 53
858
-
859
- ### [ecc-style-core@1.7.2] 2016-09-12
860
-
861
- #### Fixed
862
- - Fix Page Size Selection in Pagination in Chrome
863
-
864
- ### [ecc-style-core@1.7.1] 2016-09-12
865
-
866
- #### Fixed
867
- - Tooltips are not blurry anymore in Chrome 53
868
-
869
- ### [ecc-style-core@1.7.0] 2016-09-08
870
-
871
- #### Added
872
- - basic styles for Pagination element
873
-
874
- ### [ecc-style-core@1.6.0] 2016-06-27
875
-
876
- #### Added
877
- - Added `ecc-dotfiles` dev dependency
878
24
 
879
- #### Removed
880
- - `mdl-stepper` dependency due to license problems. Was not used anyway
25
+ * `SimpleDialog` element now uses `intent` property instead of `intentClassName`
26
+
27
+ ## [21.11.1] 2021-11-24
28
+
29
+ ### Added
30
+
31
+ * Changelog documentation
32
+ * Readme project overview
33
+
34
+ ## 21.11
35
+
36
+ ### Added
37
+
38
+ * Iframe and IframeModal basic elements
39
+ * Support for special components shared between applications of the eccenca Corporate Memory GUI
40
+ * ActivityControl widget
41
+ * ContentBlobToggler component
42
+ * Markdown parser widget
43
+ * Support animated NodeDefault shadows to visualize activities
44
+ * Height of NodeDefault can be aligned to number of handles
45
+ * React-Flow Minipmap can be used for navigation on canvas
46
+ * Support more icons
47
+ * Support intent states for Icon
48
+
49
+ ### Changed
50
+
51
+ * ApplicationContainer is not based on Carbon anymore
52
+ * sidenav expansion state must be managed outside of that element now
53
+ * OverviewItemActions can be shown only when OverviewItem is hovered
54
+ * Rail naviagtion is openen just after a short delay to prevent openeing on wrong hover actions
55
+ * Use own property to hide overflow content in ToolbarSection
56
+
57
+ ### Fixed
58
+
59
+ * Stabilize icon dimensions
60
+ * Small font size amrkup now works inside HTML content block
61
+ * Stabilize tabs
62
+ * Do not ignore size and stroke properties for Spinner
63
+
64
+ ## 21.06
65
+
66
+ ### Added
67
+
68
+ * First release, it provides:
69
+ * Basic GUI elements based on BlueprintJS and IBM Carbon Design System
70
+ * Accordion
71
+ * Application layout
72
+ * AutocompleteField
73
+ * Breadcrumb
74
+ * Button
75
+ * Card
76
+ * Checkbox
77
+ * ContextOverlay
78
+ * Dialog
79
+ * Form
80
+ * Grid
81
+ * Icon
82
+ * Intent
83
+ * Label
84
+ * Link
85
+ * Menu
86
+ * Notification
87
+ * NumericInput
88
+ * OverviewItem
89
+ * Pagination
90
+ * PropertyValuePair
91
+ * RadioButton
92
+ * Separation
93
+ * SimpleTable
94
+ * Spinner
95
+ * Structure
96
+ * Switch
97
+ * Tabs
98
+ * Tag
99
+ * TagInput
100
+ * TextField
101
+ * Toolbar
102
+ * Tooltip
103
+ * Typography
104
+ * Workspace view parts
105
+ * Extensions for React-Flow
106
+ * EdgeDefault
107
+ * EdgeStep
108
+ * EdgeTools
109
+ * HandleContent
110
+ * HandleDefault
111
+ * NodeDefault
112
+ * NodeTools