superdesk-ui-framework 3.0.65 → 3.0.67

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 (443) hide show
  1. package/app/styles/_boxed-list.scss +10 -3
  2. package/app/styles/_helpers.scss +3 -1
  3. package/app/styles/components/_list-item.scss +22 -11
  4. package/app/styles/components/_sd-searchbar.scss +20 -1
  5. package/app/styles/primereact/_pr-dialog.scss +29 -13
  6. package/app-typescript/components/Autocomplete.tsx +9 -3
  7. package/app-typescript/components/Badge.tsx +16 -2
  8. package/app-typescript/components/Dropdown.tsx +3 -1
  9. package/app-typescript/components/DropdownFirst.tsx +14 -2
  10. package/app-typescript/components/DurationInput.tsx +19 -4
  11. package/app-typescript/components/EmptyState.tsx +11 -2
  12. package/app-typescript/components/Layouts/Panel.tsx +12 -1
  13. package/app-typescript/components/Lists/ContentList.tsx +5 -1
  14. package/app-typescript/components/Modal.tsx +12 -3
  15. package/app-typescript/components/Navigation/BottomNav.tsx +9 -2
  16. package/app-typescript/components/Navigation/QuickNavBar.tsx +10 -2
  17. package/app-typescript/components/Navigation/SideBarMenu.tsx +9 -4
  18. package/app-typescript/components/SearchBar.tsx +1 -0
  19. package/app-typescript/components/SidebarMenu.tsx +8 -1
  20. package/app-typescript/components/TabList.tsx +5 -1
  21. package/app-typescript/components/TagInput.tsx +4 -1
  22. package/app-typescript/components/ThemeSelector.tsx +13 -2
  23. package/app-typescript/components/TreeMenu.tsx +127 -122
  24. package/app-typescript/components/TreeSelect/TreeSelect.tsx +157 -141
  25. package/app-typescript/components/WithPortal.tsx +49 -0
  26. package/app-typescript/components/avatar/avatar-image.tsx +2 -0
  27. package/app-typescript/components/avatar/avatar.tsx +2 -1
  28. package/dist/examples.bundle.js +1409 -1278
  29. package/dist/playgrounds/planning.html +121 -43
  30. package/dist/playgrounds/react-playgrounds/CoreLayout.tsx +398 -385
  31. package/dist/playgrounds/react-playgrounds/EditorTest.tsx +359 -365
  32. package/dist/playgrounds/react-playgrounds/FirstPlayground.tsx +33 -33
  33. package/dist/playgrounds/react-playgrounds/Multiedit.tsx +227 -231
  34. package/dist/playgrounds/react-playgrounds/PageLayoutTest.tsx +41 -38
  35. package/dist/playgrounds/react-playgrounds/PersonalProfile.tsx +76 -96
  36. package/dist/playgrounds/react-playgrounds/RundownEditor.tsx +73 -101
  37. package/dist/playgrounds/react-playgrounds/Rundowns.tsx +788 -729
  38. package/dist/playgrounds/react-playgrounds/SamsPlayground.tsx +35 -26
  39. package/dist/playgrounds/react-playgrounds/TestGround.tsx +140 -121
  40. package/dist/playgrounds/react-playgrounds/UiPlayground.tsx +40 -25
  41. package/dist/playgrounds/react-playgrounds/components/GraphicButton.tsx +6 -5
  42. package/dist/playgrounds/react-playgrounds/components/Layout.tsx +0 -2
  43. package/dist/playgrounds/react-playgrounds/components/SearchBar.tsx +16 -9
  44. package/dist/superdesk-ui.bundle.css +79 -33
  45. package/dist/superdesk-ui.bundle.js +833 -729
  46. package/dist/vendor.bundle.js +14 -14
  47. package/examples/pages/playgrounds/planning.html +121 -43
  48. package/examples/pages/playgrounds/react-playgrounds/CoreLayout.tsx +398 -385
  49. package/examples/pages/playgrounds/react-playgrounds/EditorTest.tsx +359 -365
  50. package/examples/pages/playgrounds/react-playgrounds/FirstPlayground.tsx +33 -33
  51. package/examples/pages/playgrounds/react-playgrounds/Multiedit.tsx +227 -231
  52. package/examples/pages/playgrounds/react-playgrounds/PageLayoutTest.tsx +41 -38
  53. package/examples/pages/playgrounds/react-playgrounds/PersonalProfile.tsx +76 -96
  54. package/examples/pages/playgrounds/react-playgrounds/RundownEditor.tsx +73 -101
  55. package/examples/pages/playgrounds/react-playgrounds/Rundowns.tsx +788 -729
  56. package/examples/pages/playgrounds/react-playgrounds/SamsPlayground.tsx +35 -26
  57. package/examples/pages/playgrounds/react-playgrounds/TestGround.tsx +140 -121
  58. package/examples/pages/playgrounds/react-playgrounds/UiPlayground.tsx +40 -25
  59. package/examples/pages/playgrounds/react-playgrounds/components/GraphicButton.tsx +6 -5
  60. package/examples/pages/playgrounds/react-playgrounds/components/Layout.tsx +0 -2
  61. package/examples/pages/playgrounds/react-playgrounds/components/SearchBar.tsx +16 -9
  62. package/package.json +1 -1
  63. package/react/{components → app-typescript/components}/Autocomplete.js +2 -2
  64. package/react/{components → app-typescript/components}/Badge.js +1 -1
  65. package/react/{components → app-typescript/components}/Dropdown.js +3 -1
  66. package/react/{components → app-typescript/components}/DropdownFirst.js +6 -2
  67. package/react/{components → app-typescript/components}/DurationInput.js +5 -1
  68. package/react/{components → app-typescript/components}/EmptyState.js +2 -1
  69. package/react/{components → app-typescript/components}/Lists/ContentList.js +1 -1
  70. package/react/{components → app-typescript/components}/Modal.js +2 -2
  71. package/react/{components → app-typescript/components}/Navigation/BottomNav.js +4 -1
  72. package/react/{components → app-typescript/components}/Navigation/QuickNavBar.js +2 -1
  73. package/react/{components → app-typescript/components}/Navigation/SideBarMenu.js +3 -1
  74. package/react/{components → app-typescript/components}/SearchBar.js +1 -0
  75. package/react/{components → app-typescript/components}/TabList.js +2 -1
  76. package/react/{components → app-typescript/components}/TagInput.js +1 -1
  77. package/react/{components → app-typescript/components}/TreeSelect/TreeSelect.d.ts +3 -2
  78. package/react/{components → app-typescript/components}/TreeSelect/TreeSelect.js +81 -73
  79. package/react/app-typescript/components/WithPortal.d.ts +14 -0
  80. package/react/app-typescript/components/WithPortal.js +69 -0
  81. package/react/{components → app-typescript/components}/avatar/avatar.js +2 -1
  82. package/react/examples/pages/playgrounds/dummy-data/items.d.ts +16 -0
  83. package/react/examples/pages/playgrounds/dummy-data/items.js +95 -0
  84. package/react/examples/pages/playgrounds/react-playgrounds/CoreLayout.d.ts +51 -0
  85. package/react/examples/pages/playgrounds/react-playgrounds/CoreLayout.js +454 -0
  86. package/react/examples/pages/playgrounds/react-playgrounds/EditorTest.d.ts +27 -0
  87. package/react/examples/pages/playgrounds/react-playgrounds/EditorTest.js +256 -0
  88. package/react/examples/pages/playgrounds/react-playgrounds/FirstPlayground.d.ts +19 -0
  89. package/react/examples/pages/playgrounds/react-playgrounds/FirstPlayground.js +160 -0
  90. package/react/examples/pages/playgrounds/react-playgrounds/Index.d.ts +11 -0
  91. package/react/examples/pages/playgrounds/react-playgrounds/Index.js +25 -0
  92. package/react/examples/pages/playgrounds/react-playgrounds/Multiedit.d.ts +36 -0
  93. package/react/examples/pages/playgrounds/react-playgrounds/Multiedit.js +200 -0
  94. package/react/examples/pages/playgrounds/react-playgrounds/PageLayoutTest.d.ts +22 -0
  95. package/react/examples/pages/playgrounds/react-playgrounds/PageLayoutTest.js +134 -0
  96. package/react/examples/pages/playgrounds/react-playgrounds/PersonalProfile.d.ts +40 -0
  97. package/react/examples/pages/playgrounds/react-playgrounds/PersonalProfile.js +350 -0
  98. package/react/examples/pages/playgrounds/react-playgrounds/RundownEditor.d.ts +32 -0
  99. package/react/examples/pages/playgrounds/react-playgrounds/RundownEditor.js +267 -0
  100. package/react/examples/pages/playgrounds/react-playgrounds/Rundowns.d.ts +39 -0
  101. package/react/examples/pages/playgrounds/react-playgrounds/Rundowns.js +558 -0
  102. package/react/examples/pages/playgrounds/react-playgrounds/SamsPlayground.d.ts +24 -0
  103. package/react/examples/pages/playgrounds/react-playgrounds/SamsPlayground.js +241 -0
  104. package/react/examples/pages/playgrounds/react-playgrounds/TestGround.d.ts +27 -0
  105. package/react/examples/pages/playgrounds/react-playgrounds/TestGround.js +508 -0
  106. package/react/examples/pages/playgrounds/react-playgrounds/UiPlayground.d.ts +24 -0
  107. package/react/examples/pages/playgrounds/react-playgrounds/UiPlayground.js +239 -0
  108. package/react/examples/pages/playgrounds/react-playgrounds/components/AuthoringContainer.d.ts +11 -0
  109. package/react/examples/pages/playgrounds/react-playgrounds/components/AuthoringContainer.js +64 -0
  110. package/react/examples/pages/playgrounds/react-playgrounds/components/ContentSplitter.d.ts +10 -0
  111. package/react/examples/pages/playgrounds/react-playgrounds/components/ContentSplitter.js +62 -0
  112. package/react/examples/pages/playgrounds/react-playgrounds/components/GraphicButton.d.ts +14 -0
  113. package/react/examples/pages/playgrounds/react-playgrounds/components/GraphicButton.js +65 -0
  114. package/react/examples/pages/playgrounds/react-playgrounds/components/GraphicButtonsGroup.d.ts +8 -0
  115. package/react/examples/pages/playgrounds/react-playgrounds/components/GraphicButtonsGroup.js +53 -0
  116. package/react/examples/pages/playgrounds/react-playgrounds/components/HeaderPanel.d.ts +8 -0
  117. package/react/examples/pages/playgrounds/react-playgrounds/components/HeaderPanel.js +53 -0
  118. package/react/examples/pages/playgrounds/react-playgrounds/components/Index.d.ts +19 -0
  119. package/react/examples/pages/playgrounds/react-playgrounds/components/Index.js +41 -0
  120. package/react/examples/pages/playgrounds/react-playgrounds/components/Layout.d.ts +8 -0
  121. package/react/examples/pages/playgrounds/react-playgrounds/components/Layout.js +40 -0
  122. package/react/examples/pages/playgrounds/react-playgrounds/components/LayoutContainer.d.ts +8 -0
  123. package/react/examples/pages/playgrounds/react-playgrounds/components/LayoutContainer.js +53 -0
  124. package/react/examples/pages/playgrounds/react-playgrounds/components/LeftPanel.d.ts +9 -0
  125. package/react/examples/pages/playgrounds/react-playgrounds/components/LeftPanel.js +53 -0
  126. package/react/examples/pages/playgrounds/react-playgrounds/components/MainPanel.d.ts +10 -0
  127. package/react/examples/pages/playgrounds/react-playgrounds/components/MainPanel.js +63 -0
  128. package/react/examples/pages/playgrounds/react-playgrounds/components/OverlayPanel.d.ts +8 -0
  129. package/react/examples/pages/playgrounds/react-playgrounds/components/OverlayPanel.js +55 -0
  130. package/react/examples/pages/playgrounds/react-playgrounds/components/Panel.d.ts +10 -0
  131. package/react/examples/pages/playgrounds/react-playgrounds/components/Panel.js +63 -0
  132. package/react/examples/pages/playgrounds/react-playgrounds/components/PanelContent.d.ts +8 -0
  133. package/react/examples/pages/playgrounds/react-playgrounds/components/PanelContent.js +53 -0
  134. package/react/examples/pages/playgrounds/react-playgrounds/components/PanelContentBlock.d.ts +11 -0
  135. package/react/examples/pages/playgrounds/react-playgrounds/components/PanelContentBlock.js +63 -0
  136. package/react/examples/pages/playgrounds/react-playgrounds/components/PanelFooter.d.ts +8 -0
  137. package/react/examples/pages/playgrounds/react-playgrounds/components/PanelFooter.js +54 -0
  138. package/react/examples/pages/playgrounds/react-playgrounds/components/PanelHeader.d.ts +12 -0
  139. package/react/examples/pages/playgrounds/react-playgrounds/components/PanelHeader.js +63 -0
  140. package/react/examples/pages/playgrounds/react-playgrounds/components/RightPanel.d.ts +9 -0
  141. package/react/examples/pages/playgrounds/react-playgrounds/components/RightPanel.js +53 -0
  142. package/react/examples/pages/playgrounds/react-playgrounds/components/SearchBar.d.ts +23 -0
  143. package/react/examples/pages/playgrounds/react-playgrounds/components/SearchBar.js +92 -0
  144. package/react/examples/pages/playgrounds/react-playgrounds/components/SidebarMenu.d.ts +20 -0
  145. package/react/examples/pages/playgrounds/react-playgrounds/components/SidebarMenu.js +83 -0
  146. package/react/examples/pages/playgrounds/react-playgrounds/components/SubNav.d.ts +9 -0
  147. package/react/examples/pages/playgrounds/react-playgrounds/components/SubNav.js +60 -0
  148. package/tsconfig.json +5 -1
  149. /package/dist/playgrounds/dummy-data/{items.js → items.ts} +0 -0
  150. /package/examples/pages/playgrounds/dummy-data/{items.js → items.ts} +0 -0
  151. /package/react/{components → app-typescript/components}/Alert.d.ts +0 -0
  152. /package/react/{components → app-typescript/components}/Alert.js +0 -0
  153. /package/react/{components → app-typescript/components}/Autocomplete.d.ts +0 -0
  154. /package/react/{components → app-typescript/components}/Badge.d.ts +0 -0
  155. /package/react/{components → app-typescript/components}/Button.d.ts +0 -0
  156. /package/react/{components → app-typescript/components}/Button.js +0 -0
  157. /package/react/{components → app-typescript/components}/ButtonGroup.d.ts +0 -0
  158. /package/react/{components → app-typescript/components}/ButtonGroup.js +0 -0
  159. /package/react/{components → app-typescript/components}/Carousel.d.ts +0 -0
  160. /package/react/{components → app-typescript/components}/Carousel.js +0 -0
  161. /package/react/{components → app-typescript/components}/CheckButtonGroup.d.ts +0 -0
  162. /package/react/{components → app-typescript/components}/CheckButtonGroup.js +0 -0
  163. /package/react/{components → app-typescript/components}/CheckGroup.d.ts +0 -0
  164. /package/react/{components → app-typescript/components}/CheckGroup.js +0 -0
  165. /package/react/{components → app-typescript/components}/Checkbox.d.ts +0 -0
  166. /package/react/{components → app-typescript/components}/Checkbox.js +0 -0
  167. /package/react/{components → app-typescript/components}/CheckboxButton.d.ts +0 -0
  168. /package/react/{components → app-typescript/components}/CheckboxButton.js +0 -0
  169. /package/react/{components → app-typescript/components}/ContentDivider.d.ts +0 -0
  170. /package/react/{components → app-typescript/components}/ContentDivider.js +0 -0
  171. /package/react/{components → app-typescript/components}/CreateButton.d.ts +0 -0
  172. /package/react/{components → app-typescript/components}/CreateButton.js +0 -0
  173. /package/react/{components → app-typescript/components}/DatePicker.d.ts +0 -0
  174. /package/react/{components → app-typescript/components}/DatePicker.js +0 -0
  175. /package/react/{components → app-typescript/components}/Divider.d.ts +0 -0
  176. /package/react/{components → app-typescript/components}/Divider.js +0 -0
  177. /package/react/{components → app-typescript/components}/DonutChart.d.ts +0 -0
  178. /package/react/{components → app-typescript/components}/DonutChart.js +0 -0
  179. /package/react/{components → app-typescript/components}/DragHandle.d.ts +0 -0
  180. /package/react/{components → app-typescript/components}/DragHandle.js +0 -0
  181. /package/react/{components → app-typescript/components}/DropZone.d.ts +0 -0
  182. /package/react/{components → app-typescript/components}/DropZone.js +0 -0
  183. /package/react/{components → app-typescript/components}/Dropdown.d.ts +0 -0
  184. /package/react/{components → app-typescript/components}/DropdownFirst.d.ts +0 -0
  185. /package/react/{components → app-typescript/components}/DurationInput.d.ts +0 -0
  186. /package/react/{components → app-typescript/components}/EmptyState.d.ts +0 -0
  187. /package/react/{components → app-typescript/components}/Form/FormGroup.d.ts +0 -0
  188. /package/react/{components → app-typescript/components}/Form/FormGroup.js +0 -0
  189. /package/react/{components → app-typescript/components}/Form/FormItem.d.ts +0 -0
  190. /package/react/{components → app-typescript/components}/Form/FormItem.js +0 -0
  191. /package/react/{components → app-typescript/components}/Form/FormLabel.d.ts +0 -0
  192. /package/react/{components → app-typescript/components}/Form/FormLabel.js +0 -0
  193. /package/react/{components → app-typescript/components}/Form/FormRow.d.ts +0 -0
  194. /package/react/{components → app-typescript/components}/Form/FormRow.js +0 -0
  195. /package/react/{components → app-typescript/components}/Form/FormRowNew.d.ts +0 -0
  196. /package/react/{components → app-typescript/components}/Form/FormRowNew.js +0 -0
  197. /package/react/{components → app-typescript/components}/Form/FormText.d.ts +0 -0
  198. /package/react/{components → app-typescript/components}/Form/FormText.js +0 -0
  199. /package/react/{components → app-typescript/components}/Form/InputBase.d.ts +0 -0
  200. /package/react/{components → app-typescript/components}/Form/InputBase.js +0 -0
  201. /package/react/{components → app-typescript/components}/Form/InputNew.d.ts +0 -0
  202. /package/react/{components → app-typescript/components}/Form/InputNew.js +0 -0
  203. /package/react/{components → app-typescript/components}/Form/InputWrapper.d.ts +0 -0
  204. /package/react/{components → app-typescript/components}/Form/InputWrapper.js +0 -0
  205. /package/react/{components → app-typescript/components}/Form/index.d.ts +0 -0
  206. /package/react/{components → app-typescript/components}/Form/index.js +0 -0
  207. /package/react/{components → app-typescript/components}/FormLabel.d.ts +0 -0
  208. /package/react/{components → app-typescript/components}/FormLabel.js +0 -0
  209. /package/react/{components → app-typescript/components}/GridItem.d.ts +0 -0
  210. /package/react/{components → app-typescript/components}/GridItem.js +0 -0
  211. /package/react/{components → app-typescript/components}/GridList.d.ts +0 -0
  212. /package/react/{components → app-typescript/components}/GridList.js +0 -0
  213. /package/react/{components → app-typescript/components}/HeadingText.d.ts +0 -0
  214. /package/react/{components → app-typescript/components}/HeadingText.js +0 -0
  215. /package/react/{components → app-typescript/components}/HelloWorld.d.ts +0 -0
  216. /package/react/{components → app-typescript/components}/HelloWorld.js +0 -0
  217. /package/react/{components → app-typescript/components}/Icon.d.ts +0 -0
  218. /package/react/{components → app-typescript/components}/Icon.js +0 -0
  219. /package/react/{components → app-typescript/components}/IconButton.d.ts +0 -0
  220. /package/react/{components → app-typescript/components}/IconButton.js +0 -0
  221. /package/react/{components → app-typescript/components}/IconLabel.d.ts +0 -0
  222. /package/react/{components → app-typescript/components}/IconLabel.js +0 -0
  223. /package/react/{components → app-typescript/components}/IconPicker.d.ts +0 -0
  224. /package/react/{components → app-typescript/components}/IconPicker.js +0 -0
  225. /package/react/{components → app-typescript/components}/Input.d.ts +0 -0
  226. /package/react/{components → app-typescript/components}/Input.js +0 -0
  227. /package/react/{components → app-typescript/components}/Label.d.ts +0 -0
  228. /package/react/{components → app-typescript/components}/Label.js +0 -0
  229. /package/react/{components → app-typescript/components}/Layouts/AuthorinInnerSideBar.d.ts +0 -0
  230. /package/react/{components → app-typescript/components}/Layouts/AuthorinInnerSideBar.js +0 -0
  231. /package/react/{components → app-typescript/components}/Layouts/AuthoringContainer.d.ts +0 -0
  232. /package/react/{components → app-typescript/components}/Layouts/AuthoringContainer.js +0 -0
  233. /package/react/{components → app-typescript/components}/Layouts/AuthoringFrame.d.ts +0 -0
  234. /package/react/{components → app-typescript/components}/Layouts/AuthoringFrame.js +0 -0
  235. /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameContainer.d.ts +0 -0
  236. /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameContainer.js +0 -0
  237. /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameLeftBar.d.ts +0 -0
  238. /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameLeftBar.js +0 -0
  239. /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameMain.d.ts +0 -0
  240. /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameMain.js +0 -0
  241. /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameNavBar.d.ts +0 -0
  242. /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameNavBar.js +0 -0
  243. /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameOverlay.d.ts +0 -0
  244. /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameOverlay.js +0 -0
  245. /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameRightBar.d.ts +0 -0
  246. /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameRightBar.js +0 -0
  247. /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameSidePanel.d.ts +0 -0
  248. /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameSidePanel.js +0 -0
  249. /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameSidePanelOverlay.d.ts +0 -0
  250. /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameSidePanelOverlay.js +0 -0
  251. /package/react/{components → app-typescript/components}/Layouts/AuthoringInnerBody.d.ts +0 -0
  252. /package/react/{components → app-typescript/components}/Layouts/AuthoringInnerBody.js +0 -0
  253. /package/react/{components → app-typescript/components}/Layouts/AuthoringInnerHeader.d.ts +0 -0
  254. /package/react/{components → app-typescript/components}/Layouts/AuthoringInnerHeader.js +0 -0
  255. /package/react/{components → app-typescript/components}/Layouts/AuthoringMain.d.ts +0 -0
  256. /package/react/{components → app-typescript/components}/Layouts/AuthoringMain.js +0 -0
  257. /package/react/{components → app-typescript/components}/Layouts/AuthoringMainContainer.d.ts +0 -0
  258. /package/react/{components → app-typescript/components}/Layouts/AuthoringMainContainer.js +0 -0
  259. /package/react/{components → app-typescript/components}/Layouts/AuthoringMainContent.d.ts +0 -0
  260. /package/react/{components → app-typescript/components}/Layouts/AuthoringMainContent.js +0 -0
  261. /package/react/{components → app-typescript/components}/Layouts/AuthoringMainToolBar.d.ts +0 -0
  262. /package/react/{components → app-typescript/components}/Layouts/AuthoringMainToolBar.js +0 -0
  263. /package/react/{components → app-typescript/components}/Layouts/BottomBarAction.d.ts +0 -0
  264. /package/react/{components → app-typescript/components}/Layouts/BottomBarAction.js +0 -0
  265. /package/react/{components → app-typescript/components}/Layouts/Container.d.ts +0 -0
  266. /package/react/{components → app-typescript/components}/Layouts/Container.js +0 -0
  267. /package/react/{components → app-typescript/components}/Layouts/ContentSplitter.d.ts +0 -0
  268. /package/react/{components → app-typescript/components}/Layouts/ContentSplitter.js +0 -0
  269. /package/react/{components → app-typescript/components}/Layouts/CoreLayout.d.ts +0 -0
  270. /package/react/{components → app-typescript/components}/Layouts/CoreLayout.js +0 -0
  271. /package/react/{components → app-typescript/components}/Layouts/CoreLayoutContainer.d.ts +0 -0
  272. /package/react/{components → app-typescript/components}/Layouts/CoreLayoutContainer.js +0 -0
  273. /package/react/{components → app-typescript/components}/Layouts/CoreLayoutFooter.d.ts +0 -0
  274. /package/react/{components → app-typescript/components}/Layouts/CoreLayoutFooter.js +0 -0
  275. /package/react/{components → app-typescript/components}/Layouts/CoreLayoutMain.d.ts +0 -0
  276. /package/react/{components → app-typescript/components}/Layouts/CoreLayoutMain.js +0 -0
  277. /package/react/{components → app-typescript/components}/Layouts/CoreLayoutOverlay.d.ts +0 -0
  278. /package/react/{components → app-typescript/components}/Layouts/CoreLayoutOverlay.js +0 -0
  279. /package/react/{components → app-typescript/components}/Layouts/CoreLayoutSlideInMenu.d.ts +0 -0
  280. /package/react/{components → app-typescript/components}/Layouts/CoreLayoutSlideInMenu.js +0 -0
  281. /package/react/{components → app-typescript/components}/Layouts/CoreLayoutTopMenu.d.ts +0 -0
  282. /package/react/{components → app-typescript/components}/Layouts/CoreLayoutTopMenu.js +0 -0
  283. /package/react/{components → app-typescript/components}/Layouts/HamburgerButton.d.ts +0 -0
  284. /package/react/{components → app-typescript/components}/Layouts/HamburgerButton.js +0 -0
  285. /package/react/{components → app-typescript/components}/Layouts/HeaderPanel.d.ts +0 -0
  286. /package/react/{components → app-typescript/components}/Layouts/HeaderPanel.js +0 -0
  287. /package/react/{components → app-typescript/components}/Layouts/Layout.d.ts +0 -0
  288. /package/react/{components → app-typescript/components}/Layouts/Layout.js +0 -0
  289. /package/react/{components → app-typescript/components}/Layouts/LayoutContainer.d.ts +0 -0
  290. /package/react/{components → app-typescript/components}/Layouts/LayoutContainer.js +0 -0
  291. /package/react/{components → app-typescript/components}/Layouts/LeftPanel.d.ts +0 -0
  292. /package/react/{components → app-typescript/components}/Layouts/LeftPanel.js +0 -0
  293. /package/react/{components → app-typescript/components}/Layouts/MainMenu.d.ts +0 -0
  294. /package/react/{components → app-typescript/components}/Layouts/MainMenu.js +0 -0
  295. /package/react/{components → app-typescript/components}/Layouts/MainPanel.d.ts +0 -0
  296. /package/react/{components → app-typescript/components}/Layouts/MainPanel.js +0 -0
  297. /package/react/{components → app-typescript/components}/Layouts/NotificationPanel.d.ts +0 -0
  298. /package/react/{components → app-typescript/components}/Layouts/NotificationPanel.js +0 -0
  299. /package/react/{components → app-typescript/components}/Layouts/OverlayPanel.d.ts +0 -0
  300. /package/react/{components → app-typescript/components}/Layouts/OverlayPanel.js +0 -0
  301. /package/react/{components → app-typescript/components}/Layouts/PageLayout.d.ts +0 -0
  302. /package/react/{components → app-typescript/components}/Layouts/PageLayout.js +0 -0
  303. /package/react/{components → app-typescript/components}/Layouts/Panel.d.ts +0 -0
  304. /package/react/{components → app-typescript/components}/Layouts/Panel.js +0 -0
  305. /package/react/{components → app-typescript/components}/Layouts/RightPanel.d.ts +0 -0
  306. /package/react/{components → app-typescript/components}/Layouts/RightPanel.js +0 -0
  307. /package/react/{components → app-typescript/components}/Layouts/index.d.ts +0 -0
  308. /package/react/{components → app-typescript/components}/Layouts/index.js +0 -0
  309. /package/react/{components → app-typescript/components}/LeftMenu.d.ts +0 -0
  310. /package/react/{components → app-typescript/components}/LeftMenu.js +0 -0
  311. /package/react/{components → app-typescript/components}/ListItemLoader.d.ts +0 -0
  312. /package/react/{components → app-typescript/components}/ListItemLoader.js +0 -0
  313. /package/react/{components → app-typescript/components}/Lists/BoxedList.d.ts +0 -0
  314. /package/react/{components → app-typescript/components}/Lists/BoxedList.js +0 -0
  315. /package/react/{components → app-typescript/components}/Lists/ContentList.d.ts +0 -0
  316. /package/react/{components → app-typescript/components}/Lists/SimpleList.d.ts +0 -0
  317. /package/react/{components → app-typescript/components}/Lists/SimpleList.js +0 -0
  318. /package/react/{components → app-typescript/components}/Lists/TableList.d.ts +0 -0
  319. /package/react/{components → app-typescript/components}/Lists/TableList.js +0 -0
  320. /package/react/{components → app-typescript/components}/Lists/index.d.ts +0 -0
  321. /package/react/{components → app-typescript/components}/Lists/index.js +0 -0
  322. /package/react/{components → app-typescript/components}/Loader.d.ts +0 -0
  323. /package/react/{components → app-typescript/components}/Loader.js +0 -0
  324. /package/react/{components → app-typescript/components}/Menu.d.ts +0 -0
  325. /package/react/{components → app-typescript/components}/Menu.js +0 -0
  326. /package/react/{components → app-typescript/components}/Modal.d.ts +0 -0
  327. /package/react/{components → app-typescript/components}/MultiSelect.d.ts +0 -0
  328. /package/react/{components → app-typescript/components}/MultiSelect.js +0 -0
  329. /package/react/{components → app-typescript/components}/NavButton.d.ts +0 -0
  330. /package/react/{components → app-typescript/components}/NavButton.js +0 -0
  331. /package/react/{components → app-typescript/components}/Navigation/BottomNav.d.ts +0 -0
  332. /package/react/{components → app-typescript/components}/Navigation/QuickNavBar.d.ts +0 -0
  333. /package/react/{components → app-typescript/components}/Navigation/SideBarMenu.d.ts +0 -0
  334. /package/react/{components → app-typescript/components}/Navigation/SideBarTabs.d.ts +0 -0
  335. /package/react/{components → app-typescript/components}/Navigation/SideBarTabs.js +0 -0
  336. /package/react/{components → app-typescript/components}/Navigation/index.d.ts +0 -0
  337. /package/react/{components → app-typescript/components}/Navigation/index.js +0 -0
  338. /package/react/{components → app-typescript/components}/Popover.d.ts +0 -0
  339. /package/react/{components → app-typescript/components}/Popover.js +0 -0
  340. /package/react/{components → app-typescript/components}/PropsList.d.ts +0 -0
  341. /package/react/{components → app-typescript/components}/PropsList.js +0 -0
  342. /package/react/{components → app-typescript/components}/RadioButtonGroup.d.ts +0 -0
  343. /package/react/{components → app-typescript/components}/RadioButtonGroup.js +0 -0
  344. /package/react/{components → app-typescript/components}/RadioGroup.d.ts +0 -0
  345. /package/react/{components → app-typescript/components}/RadioGroup.js +0 -0
  346. /package/react/{components → app-typescript/components}/ResizablePanels.d.ts +0 -0
  347. /package/react/{components → app-typescript/components}/ResizablePanels.js +0 -0
  348. /package/react/{components → app-typescript/components}/ResizeObserverComponent.d.ts +0 -0
  349. /package/react/{components → app-typescript/components}/ResizeObserverComponent.js +0 -0
  350. /package/react/{components → app-typescript/components}/Rotate.d.ts +0 -0
  351. /package/react/{components → app-typescript/components}/Rotate.js +0 -0
  352. /package/react/{components → app-typescript/components}/SearchBar.d.ts +0 -0
  353. /package/react/{components → app-typescript/components}/Select.d.ts +0 -0
  354. /package/react/{components → app-typescript/components}/Select.js +0 -0
  355. /package/react/{components → app-typescript/components}/SelectGrid.d.ts +0 -0
  356. /package/react/{components → app-typescript/components}/SelectGrid.js +0 -0
  357. /package/react/{components → app-typescript/components}/SelectPreview.d.ts +0 -0
  358. /package/react/{components → app-typescript/components}/SelectPreview.js +0 -0
  359. /package/react/{components → app-typescript/components}/SelectWithTemplate.d.ts +0 -0
  360. /package/react/{components → app-typescript/components}/SelectWithTemplate.js +0 -0
  361. /package/react/{components → app-typescript/components}/ShowPopup.d.ts +0 -0
  362. /package/react/{components → app-typescript/components}/ShowPopup.js +0 -0
  363. /package/react/{components → app-typescript/components}/SingleAndDoubleClickFunction.d.ts +0 -0
  364. /package/react/{components → app-typescript/components}/SingleAndDoubleClickFunction.js +0 -0
  365. /package/react/{components → app-typescript/components}/Skeleton.d.ts +0 -0
  366. /package/react/{components → app-typescript/components}/Skeleton.js +0 -0
  367. /package/react/{components → app-typescript/components}/SlidingToolbar.d.ts +0 -0
  368. /package/react/{components → app-typescript/components}/SlidingToolbar.js +0 -0
  369. /package/react/{components → app-typescript/components}/Spacer.d.ts +0 -0
  370. /package/react/{components → app-typescript/components}/Spacer.js +0 -0
  371. /package/react/{components → app-typescript/components}/Spinner.d.ts +0 -0
  372. /package/react/{components → app-typescript/components}/Spinner.js +0 -0
  373. /package/react/{components → app-typescript/components}/StrechBar.d.ts +0 -0
  374. /package/react/{components → app-typescript/components}/StrechBar.js +0 -0
  375. /package/react/{components → app-typescript/components}/SubNav.d.ts +0 -0
  376. /package/react/{components → app-typescript/components}/SubNav.js +0 -0
  377. /package/react/{components → app-typescript/components}/Switch.d.ts +0 -0
  378. /package/react/{components → app-typescript/components}/Switch.js +0 -0
  379. /package/react/{components → app-typescript/components}/SwitchGroup.d.ts +0 -0
  380. /package/react/{components → app-typescript/components}/SwitchGroup.js +0 -0
  381. /package/react/{components → app-typescript/components}/TabCustom.d.ts +0 -0
  382. /package/react/{components → app-typescript/components}/TabCustom.js +0 -0
  383. /package/react/{components → app-typescript/components}/TabList.d.ts +0 -0
  384. /package/react/{components → app-typescript/components}/Tag.d.ts +0 -0
  385. /package/react/{components → app-typescript/components}/Tag.js +0 -0
  386. /package/react/{components → app-typescript/components}/TagInput.d.ts +0 -0
  387. /package/react/{components → app-typescript/components}/Text/Heading.d.ts +0 -0
  388. /package/react/{components → app-typescript/components}/Text/Heading.js +0 -0
  389. /package/react/{components → app-typescript/components}/Text/Text.d.ts +0 -0
  390. /package/react/{components → app-typescript/components}/Text/Text.js +0 -0
  391. /package/react/{components → app-typescript/components}/Text/Time.d.ts +0 -0
  392. /package/react/{components → app-typescript/components}/Text/Time.js +0 -0
  393. /package/react/{components → app-typescript/components}/ThemeSelector.d.ts +0 -0
  394. /package/react/{components → app-typescript/components}/ThemeSelector.js +0 -0
  395. /package/react/{components → app-typescript/components}/TimePicker.d.ts +0 -0
  396. /package/react/{components → app-typescript/components}/TimePicker.js +0 -0
  397. /package/react/{components → app-typescript/components}/Toast.d.ts +0 -0
  398. /package/react/{components → app-typescript/components}/Toast.js +0 -0
  399. /package/react/{components → app-typescript/components}/ToastMessage.d.ts +0 -0
  400. /package/react/{components → app-typescript/components}/ToastMessage.js +0 -0
  401. /package/react/{components → app-typescript/components}/ToastText.d.ts +0 -0
  402. /package/react/{components → app-typescript/components}/ToastText.js +0 -0
  403. /package/react/{components → app-typescript/components}/ToastWrapper.d.ts +0 -0
  404. /package/react/{components → app-typescript/components}/ToastWrapper.js +0 -0
  405. /package/react/{components → app-typescript/components}/Togglebox.d.ts +0 -0
  406. /package/react/{components → app-typescript/components}/Togglebox.js +0 -0
  407. /package/react/{components → app-typescript/components}/Tooltip.d.ts +0 -0
  408. /package/react/{components → app-typescript/components}/Tooltip.js +0 -0
  409. /package/react/{components → app-typescript/components}/TreeSelect/KeyboardNavigation.d.ts +0 -0
  410. /package/react/{components → app-typescript/components}/TreeSelect/KeyboardNavigation.js +0 -0
  411. /package/react/{components → app-typescript/components}/TreeSelect/TreeSelectItem.d.ts +0 -0
  412. /package/react/{components → app-typescript/components}/TreeSelect/TreeSelectItem.js +0 -0
  413. /package/react/{components → app-typescript/components}/TreeSelect/TreeSelectPill.d.ts +0 -0
  414. /package/react/{components → app-typescript/components}/TreeSelect/TreeSelectPill.js +0 -0
  415. /package/react/{components → app-typescript/components}/WithPagination.d.ts +0 -0
  416. /package/react/{components → app-typescript/components}/WithPagination.js +0 -0
  417. /package/react/{components → app-typescript/components}/WithPopover.d.ts +0 -0
  418. /package/react/{components → app-typescript/components}/WithPopover.js +0 -0
  419. /package/react/{components → app-typescript/components}/WithSizeObserver.d.ts +0 -0
  420. /package/react/{components → app-typescript/components}/WithSizeObserver.js +0 -0
  421. /package/react/{components → app-typescript/components}/_Positioner.d.ts +0 -0
  422. /package/react/{components → app-typescript/components}/_Positioner.js +0 -0
  423. /package/react/{components → app-typescript/components}/avatar/avatar-action-add.d.ts +0 -0
  424. /package/react/{components → app-typescript/components}/avatar/avatar-action-add.js +0 -0
  425. /package/react/{components → app-typescript/components}/avatar/avatar-group.d.ts +0 -0
  426. /package/react/{components → app-typescript/components}/avatar/avatar-group.js +0 -0
  427. /package/react/{components → app-typescript/components}/avatar/avatar-image.d.ts +0 -0
  428. /package/react/{components → app-typescript/components}/avatar/avatar-image.js +0 -0
  429. /package/react/{components → app-typescript/components}/avatar/avatar-number.d.ts +0 -0
  430. /package/react/{components → app-typescript/components}/avatar/avatar-number.js +0 -0
  431. /package/react/{components → app-typescript/components}/avatar/avatar-placeholder.d.ts +0 -0
  432. /package/react/{components → app-typescript/components}/avatar/avatar-placeholder.js +0 -0
  433. /package/react/{components → app-typescript/components}/avatar/avatar-text.d.ts +0 -0
  434. /package/react/{components → app-typescript/components}/avatar/avatar-text.js +0 -0
  435. /package/react/{components → app-typescript/components}/avatar/avatar-wrapper.d.ts +0 -0
  436. /package/react/{components → app-typescript/components}/avatar/avatar-wrapper.js +0 -0
  437. /package/react/{components → app-typescript/components}/avatar/avatar.d.ts +0 -0
  438. /package/react/{components → app-typescript/components}/avatar/interfaces.d.ts +0 -0
  439. /package/react/{components → app-typescript/components}/avatar/interfaces.js +0 -0
  440. /package/react/{helpers.d.ts → app-typescript/helpers.d.ts} +0 -0
  441. /package/react/{helpers.js → app-typescript/helpers.js} +0 -0
  442. /package/react/{index.d.ts → app-typescript/index.d.ts} +0 -0
  443. /package/react/{index.js → app-typescript/index.js} +0 -0
@@ -1,6 +1,6 @@
1
1
  import * as React from 'react';
2
2
  import * as Components from './components/Index';
3
- import { ButtonGroup, Button, NavButton, SubNav, Dropdown, CheckButtonGroup, RadioGroup, RadioButtonGroup, Input, Select, Option, Label, Icon, IconButton, Checkbox, GridList, Badge } from '../../../../app-typescript/index';
3
+ import { ButtonGroup, Button, NavButton, SubNav, Dropdown, RadioButtonGroup, Input, Select, Option, Label, Icon, IconButton, Checkbox, GridList, Badge } from '../../../../app-typescript/index';
4
4
  import * as GridElements from '../../../../app-typescript/components/GridItem';
5
5
 
6
6
  import dummy_items from '../dummy-data/items';
@@ -77,7 +77,9 @@ export class UiPlayground extends React.Component<IProps, IState> {
77
77
  { icon: 'spike', size: 'big' },
78
78
  { icon: 'personal', size: 'big' },
79
79
  { icon: 'global-search', size: 'big' },
80
- { icon: 'picture', size: 'big', active: true }]} />
80
+ { icon: 'picture', size: 'big', active: true }
81
+ ]}
82
+ />
81
83
 
82
84
  <Components.LayoutContainer>
83
85
  <Components.HeaderPanel>
@@ -93,7 +95,9 @@ export class UiPlayground extends React.Component<IProps, IState> {
93
95
  { label: 'File archive', onSelect: () => this.setState({ dropDownState: 'File archive' }) },
94
96
  { label: 'AP images', onSelect: () => this.setState({ dropDownState: 'AP archive' }) },
95
97
  ]
96
- }]}>
98
+ }
99
+ ]}
100
+ >
97
101
  <NavButton text={this.state.dropDownState ? this.state.dropDownState : 'All Archives'} onClick={() => false} />
98
102
  </Dropdown>
99
103
  </ButtonGroup>
@@ -107,11 +111,16 @@ export class UiPlayground extends React.Component<IProps, IState> {
107
111
  <ButtonGroup align='inline'>
108
112
  <NavButton icon='filter-large' onClick={this.handleFilter} />
109
113
  </ButtonGroup>
110
- <RadioButtonGroup options={[
111
- {value:'test10', label:'Radio button with icon'},
112
- {value:'test11', label:'I have an icon!'},
113
- {value:'test12', label:'Yeah, me too!'},
114
- ]} group={{padded:true}} value={this.state.itemType} onChange={(value) => this.setState({ itemType: value })} />
114
+ <RadioButtonGroup
115
+ options={[
116
+ {value:'test10', label:'Radio button with icon'},
117
+ {value:'test11', label:'I have an icon!'},
118
+ {value:'test12', label:'Yeah, me too!'},
119
+ ]}
120
+ group={{padded:true}}
121
+ value={this.state.itemType}
122
+ onChange={(value) => this.setState({ itemType: value })}
123
+ />
115
124
  <ButtonGroup align='end' spaces='no-space'>
116
125
  <Dropdown
117
126
  items={[
@@ -123,7 +132,8 @@ export class UiPlayground extends React.Component<IProps, IState> {
123
132
  { label: 'Accessible Light', icon: 'adjust', onSelect: () => this.handleTheme('accessible-light-ui')},
124
133
  ]
125
134
  },
126
- ]}>
135
+ ]}
136
+ >
127
137
  <NavButton type='default' icon='adjust' onClick={()=> false} />
128
138
  </Dropdown>
129
139
  <NavButton icon='th-list' onClick={() => false} />
@@ -145,8 +155,8 @@ export class UiPlayground extends React.Component<IProps, IState> {
145
155
  value='Title'
146
156
  inlineLabel={false}
147
157
  disabled={false}
148
- invalid={false}
149
- onChange={(value) => { }} />
158
+ onChange={() => false}
159
+ />
150
160
  </div>
151
161
  </div>
152
162
  <div className="form__group">
@@ -156,8 +166,8 @@ export class UiPlayground extends React.Component<IProps, IState> {
156
166
  error='This is error message'
157
167
  inlineLabel={false}
158
168
  disabled={false}
159
- invalid={false}
160
- onChange={(value) => { }}>
169
+ onChange={() => false}
170
+ >
161
171
  <Option value="option-1">Select ingest source...</Option>
162
172
  <Option value="option-2">Associated Press</Option>
163
173
  <Option value="option-3">Reuters</Option>
@@ -173,8 +183,8 @@ export class UiPlayground extends React.Component<IProps, IState> {
173
183
  value='Keyword'
174
184
  inlineLabel={false}
175
185
  disabled={false}
176
- invalid={false}
177
- onChange={(value) => { }} />
186
+ onChange={() => false}
187
+ />
178
188
  </div>
179
189
  </div>
180
190
 
@@ -186,8 +196,8 @@ export class UiPlayground extends React.Component<IProps, IState> {
186
196
  info='Dolor in hendrerit.'
187
197
  inlineLabel={false}
188
198
  disabled={false}
189
- invalid={false}
190
- onChange={(value) => { }}>
199
+ onChange={() => false}
200
+ >
191
201
  <Option value="">--- Not selected ---</Option>
192
202
  <Option value="single">Single usage</Option>
193
203
  <Option value="time">Time restricted</Option>
@@ -206,16 +216,19 @@ export class UiPlayground extends React.Component<IProps, IState> {
206
216
  </Components.LeftPanel>
207
217
  {/* FILTER PANEL*/}
208
218
 
209
- <Components.MainPanel >
210
-
219
+ <Components.MainPanel>
211
220
  <GridList size="small" gap="medium" margin="3">
212
- {dummy_items.map((item, index) =>
221
+ {dummy_items.map((item: any, index: any) =>
213
222
  <GridElements.GridItem locked={item.locked} status={item.status} onClick={this.handlePreview} itemtype={item.type} key={index}>
214
223
  <GridElements.GridItemCheckWrapper>
215
- <Checkbox checked={item.selected} label={{text:''}} onChange={(value) => {
216
- item.selected = value;
217
- this.changeStatus(item, 'selected');
218
- }} />
224
+ <Checkbox
225
+ checked={item.selected}
226
+ label={{text:''}}
227
+ onChange={(value) => {
228
+ item.selected = value;
229
+ this.changeStatus(item, 'selected');
230
+ }}
231
+ />
219
232
  </GridElements.GridItemCheckWrapper>
220
233
  <GridElements.GridItemTopActions>
221
234
  <IconButton icon='fullscreen' ariaValue='More actions' onClick={()=> false} />
@@ -265,7 +278,9 @@ export class UiPlayground extends React.Component<IProps, IState> {
265
278
  { label: 'Download', icon: 'download', onSelect: () => this.setState({ dropDownState: 'Download' }) },
266
279
  { label: 'Delete', icon: 'trash', onSelect: () => this.setState({ dropDownState: 'Delete' }) },
267
280
  ]
268
- }]}>
281
+ }
282
+ ]}
283
+ >
269
284
  <IconButton ariaValue='dropdown-more-options' icon='dots-vertical' onClick={() => false} />
270
285
  </Dropdown>
271
286
  </div>
@@ -1,5 +1,4 @@
1
1
  import * as React from 'react';
2
- import {Redirect} from 'react-router-dom';
3
2
 
4
3
  interface IGraphicButton {
5
4
  children?: never;
@@ -10,12 +9,14 @@ interface IGraphicButton {
10
9
  }
11
10
 
12
11
  export class GraphicButton extends React.PureComponent<IGraphicButton> {
13
- constructor(props){
12
+ constructor(props: IGraphicButton){
14
13
  super(props);
15
14
  this.onSubmit=this.onSubmit.bind(this);
16
15
  }
17
- onSubmit=() =>{
18
- window.location.href = this.props.link;
16
+ onSubmit=() => {
17
+ if (this.props.link != null) {
18
+ window.location.href = this.props.link;
19
+ }
19
20
  }
20
21
  render() {
21
22
  return (
@@ -30,4 +31,4 @@ export class GraphicButton extends React.PureComponent<IGraphicButton> {
30
31
  </a>
31
32
  );
32
33
  }
33
- }
34
+ }
@@ -1,6 +1,4 @@
1
1
  import * as React from 'react';
2
- import { SidebarMenu } from './SidebarMenu';
3
- import { AuthoringContent } from './AuthoringContent';
4
2
 
5
3
  interface IProps {
6
4
  header: string;
@@ -20,7 +20,7 @@ interface IState {
20
20
 
21
21
  export class SearchBar extends React.PureComponent<IProps, IState> {
22
22
  private inputRef: any;
23
- constructor(props) {
23
+ constructor(props: IProps) {
24
24
  super(props);
25
25
  this.state = {
26
26
  inputValue: this.props.value ? this.props.value : '',
@@ -46,27 +46,34 @@ export class SearchBar extends React.PureComponent<IProps, IState> {
46
46
  }
47
47
 
48
48
  render() {
49
- let classes = classNames('sd-searchbar', {
49
+ const classes = classNames('sd-searchbar', {
50
50
  [`sd-searchbar--${this.state.type}`] : this.props.type,
51
51
  'sd-searchbar--expanded': this.state.type === 'expanded' || this.props.type === undefined,
52
52
  'sd-searchbar--focused' : this.state.focused,
53
53
  'sd-searchbar--boxed': this.state.boxed,
54
54
  });
55
+
55
56
  return (
56
57
  <div className={classes} ref={this.inputRef}>
57
58
  <label className="sd-searchbar__icon"></label>
58
- <input id="search-input"
59
- ref={(input: any) => (input && this.props.focused) && input.focus()}
59
+
60
+ <input
61
+ id="search-input"
62
+ ref={(input: any) => (input && this.props.focused) && input.focus()}
60
63
  className="sd-searchbar__input"
61
64
  type="text"
62
65
  placeholder={this.props.placeholder}
63
66
  value={this.state.inputValue}
64
67
  onChange={(e) => this.setState({inputValue: e.target.value})}
65
- onFocus={() => this.setState({focused: true})} />
66
- {this.state.inputValue &&
67
- <button className="sd-searchbar__cancel" onClick={() => this.setState({inputValue: ''})}>
68
- <Icon name='remove-sign' />
69
- </button>}
68
+ onFocus={() => this.setState({focused: true})}
69
+ />
70
+
71
+ {this.state.inputValue && (
72
+ <button className="sd-searchbar__cancel" onClick={() => this.setState({inputValue: ''})}>
73
+ <Icon name='remove-sign' />
74
+ </button>
75
+ )}
76
+
70
77
  <button id="sd-searchbar__search-btn" className="sd-searchbar__search-btn" onSubmit={() => this.props.onSubmit}>
71
78
  <Icon name='chevron-right-thin' />
72
79
  </button>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "superdesk-ui-framework",
3
- "version": "3.0.65",
3
+ "version": "3.0.67",
4
4
  "license": "AGPL-3.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -142,8 +142,8 @@ var Autocomplete = /** @class */ (function (_super) {
142
142
  this.props.label && !this.props.isSearchField ? React.createElement("label", { className: 'sd-input__label', htmlFor: this.htmlId }, this.props.label) : null,
143
143
  this.props.label && this.props.isSearchField ? React.createElement("label", { className: 'sd-searchbar__icon', htmlFor: this.htmlId, "aria-label": this.props.label }) : null,
144
144
  React.createElement(autocomplete_1.AutoComplete, { id: this.htmlId, inputClassName: inputFieldClass, value: this.state.selectedItem, placeholder: this.props.placeholder, suggestions: this.state.filteredItems, completeMethod: this.searchItem, itemTemplate: this.props.listItemTemplate, field: this.props.keyValue, disabled: this.props.disabled, minLength: this.props.minLength ? this.props.minLength : 1, onFocus: function () { _this.setState({ focused: true }); }, onBlur: function () { _this.setState({ focused: false }); }, onChange: function (event) { return _this.handleChange(event); }, onSelect: function (event) { return _this.handleSelect(event); } }),
145
- this.props.isSearchField && this.state.selectedItem ?
146
- React.createElement("button", { className: "sd-searchbar__cancel", onClick: function () { return _this.handleInputClear(); } },
145
+ this.props.isSearchField && this.state.selectedItem
146
+ ? React.createElement("button", { className: "sd-searchbar__cancel", onClick: function () { return _this.handleInputClear(); } },
147
147
  React.createElement("i", { className: "icon-remove-sign", "aria-label": "remove-sign" }))
148
148
  : null,
149
149
  !this.props.isSearchField ?
@@ -62,7 +62,7 @@ var Badge = /** @class */ (function (_super) {
62
62
  React.createElement("span", { className: classes, style: { backgroundColor: this.props.hexColor }, "data-test-id": "badge-content" }, this.props.text)));
63
63
  }
64
64
  else {
65
- return React.createElement("span", { className: classes, style: { backgroundColor: this.props.hexColor }, "data-test-id": this.props['data-test-id'] }, this.props.text);
65
+ return (React.createElement("span", { className: classes, style: { backgroundColor: this.props.hexColor }, "data-test-id": this.props['data-test-id'] }, this.props.text));
66
66
  }
67
67
  };
68
68
  return Badge;
@@ -174,7 +174,9 @@ var Dropdown = function (_a) {
174
174
  (React.isValidElement(children) ?
175
175
  React.createElement("div", { ref: buttonRef, style: { display: 'content' } }, (function () {
176
176
  var attrs = {
177
- className: children.props.className ? (children.props.className + ' dropdown__toggle dropdown-toggle') : 'dropdown__toggle dropdown-toggle',
177
+ className: children.props.className
178
+ ? (children.props.className + ' dropdown__toggle dropdown-toggle')
179
+ : 'dropdown__toggle dropdown-toggle',
178
180
  'aria-haspopup': "menu",
179
181
  'aria-expanded': open,
180
182
  onClick: toggleDisplay,
@@ -107,7 +107,9 @@ var DropdownFirst = function (_a) {
107
107
  }
108
108
  if (headerFooter) {
109
109
  return (React.createElement("div", { className: classes },
110
- React.createElement("button", { className: navDropdown ? 'dropdown__toggle navbtn dropdown-toggle' : 'dropdown__toggle nav-btn dropdown-toggle', onClick: isOpen }, icon ?
110
+ React.createElement("button", { className: navDropdown
111
+ ? 'dropdown__toggle navbtn dropdown-toggle'
112
+ : 'dropdown__toggle nav-btn dropdown-toggle', onClick: isOpen }, icon ?
111
113
  (React.createElement("i", { className: "icon-" + icon })) :
112
114
  (React.createElement(React.Fragment, null,
113
115
  name,
@@ -128,7 +130,9 @@ var DropdownFirst = function (_a) {
128
130
  }
129
131
  else {
130
132
  return (React.createElement("div", { className: classes },
131
- React.createElement("button", { className: navDropdown ? 'dropdown__toggle navbtn dropdown-toggle' : 'dropdown__toggle nav-btn dropdown-toggle', onClick: isOpen }, icon ?
133
+ React.createElement("button", { className: navDropdown
134
+ ? 'dropdown__toggle navbtn dropdown-toggle'
135
+ : 'dropdown__toggle nav-btn dropdown-toggle', onClick: isOpen }, icon ?
132
136
  (React.createElement("i", { className: "icon-" + icon })) :
133
137
  (React.createElement(React.Fragment, null,
134
138
  name,
@@ -286,7 +286,11 @@ var DurationInput = /** @class */ (function (_super) {
286
286
  this.setState(stateClone);
287
287
  };
288
288
  DurationInput.prototype.handleFocusOnKeyUp = function (event, ref) {
289
- if (event.key !== 'ArrowRight' && event.key !== 'ArrowLeft' && event.key !== 'ArrowUp' && event.key !== 'ArrowDown' && event.key !== 'Backspace') {
289
+ if (event.key !== 'ArrowRight'
290
+ && event.key !== 'ArrowLeft'
291
+ && event.key !== 'ArrowUp'
292
+ && event.key !== 'ArrowDown'
293
+ && event.key !== 'Backspace') {
290
294
  if ((event.keyCode > 46 && event.keyCode < 58) || (event.keyCode > 95 && event.keyCode < 106)) {
291
295
  var target = event.target;
292
296
  if (target.value.length >= 2) {
@@ -57,7 +57,8 @@ var EmptyState = /** @class */ (function (_super) {
57
57
  _a["content-state__image--".concat(this.props.size)] = this.props.size || this.props.size !== undefined,
58
58
  _a));
59
59
  var image = require("../../app/img/empty_states/empty-state--".concat(this.props.size ? this.props.size : 'small', "-").concat(this.props.illustration ? this.props.illustration : '1', ".svg"));
60
- return (React.createElement("div", { className: 'content-state--empty-container' + (this.props.absolutePositioned ? ' content-state__empty-container--absolute' : '') },
60
+ return (React.createElement("div", { className: 'content-state--empty-container'
61
+ + (this.props.absolutePositioned ? ' content-state__empty-container--absolute' : '') },
61
62
  React.createElement("div", { className: 'content-state__empty-info' },
62
63
  React.createElement("figure", { className: classes },
63
64
  React.createElement("img", { src: image, alt: this.props.illustration })),
@@ -83,7 +83,7 @@ var ContentListItem = /** @class */ (function (_super) {
83
83
  ? React.createElement("div", { className: "sd-list-item__border sd-list-item__border--locked" })
84
84
  : React.createElement("div", { className: "sd-list-item__border" }),
85
85
  this.props.itemColum.map(function (item, index) {
86
- return React.createElement("div", { className: "sd-list-item__column ".concat(item.fullwidth && 'sd-list-item__column--grow', " ").concat(!item.border && 'sd-list-item__column--no-border'), key: index }, item.itemRow.map(function (e, i) {
86
+ return React.createElement("div", { className: "\n sd-list-item__column\n ".concat(item.fullwidth && 'sd-list-item__column--grow', "\n ").concat(!item.border && 'sd-list-item__column--no-border'), key: index }, item.itemRow.map(function (e, i) {
87
87
  return (item.itemRow.length <= 1
88
88
  ? React.createElement(React.Fragment, { key: i }, e.content)
89
89
  : React.createElement("div", { className: "sd-list-item__row", key: i }, e.content));
@@ -58,8 +58,8 @@ var Modal = /** @class */ (function (_super) {
58
58
  _a["p-dialog-content--".concat(this.props.size)] = this.props.size,
59
59
  _a['p-dialog-content-bg--default'] = this.props.contentBg === undefined,
60
60
  _a["p-dialog-content-bg--".concat(this.props.contentBg)] = this.props.contentBg,
61
- _a['p-dialog-content--s-padding'] = this.props.contentPadding === undefined,
62
- _a["p-dialog-content--".concat(this.props.contentPadding)] = this.props.contentPadding,
61
+ _a['p-dialog-content--padding-small'] = this.props.contentPadding === undefined,
62
+ _a["p-dialog-content--padding-".concat(this.props.contentPadding)] = this.props.contentPadding,
63
63
  _a), this.props.className);
64
64
  return (React.createElement("div", { style: { display: 'content' }, "data-theme": this.props.theme !== 'dark' ? null : 'dark-ui' },
65
65
  React.createElement(dialog_1.Dialog, { id: this.props.id, visible: this.props.visible, header: this.props.headerTemplate, footer: this.props.footerTemplate, closeOnEscape: this.props.closeOnEscape, maximized: this.props.maximized, maximizable: this.props.maximizable, contentClassName: classes, onShow: this.props.onShow, onHide: (_b = this.props.onHide) !== null && _b !== void 0 ? _b : lodash_1.noop, zIndex: this.props.zIndex ? this.props.zIndex : 1000, position: this.props.position, closable: this.props.onHide != null ? true : false }, this.props.children)));
@@ -76,7 +76,10 @@ var BottomNav = /** @class */ (function (_super) {
76
76
  BottomNav.prototype.render = function () {
77
77
  var _this = this;
78
78
  return (React.createElement("ul", { className: 'sd-bottom-nav-list' }, this.props.items.map(function (item, index) {
79
- return (React.createElement("li", { key: index, className: 'sd-bottom-nav-list__item' + (item['active'] ? ' sd-bottom-nav-list__item--active' : (index === _this.state.index ? ' sd-bottom-nav-list__item--active' : '')) },
79
+ return (React.createElement("li", { key: index, className: 'sd-bottom-nav-list__item'
80
+ + (item['active']
81
+ ? ' sd-bottom-nav-list__item--active'
82
+ : (index === _this.state.index ? ' sd-bottom-nav-list__item--active' : '')) },
80
83
  React.createElement("a", { className: 'sd-bottom-nav-list__item-title', onClick: function (event) {
81
84
  _this.handleClick(index);
82
85
  item.onClick(event);
@@ -111,7 +111,8 @@ var QuickNavBar = /** @class */ (function (_super) {
111
111
  }
112
112
  else {
113
113
  return (React.createElement("li", { key: index, "data-sd-tooltip": item['tooltip'], "data-flow": 'right' },
114
- React.createElement("a", { role: 'button', "aria-label": item['tooltip'], className: 'sd-quickbar__btn' + (index === _this.state.index ? ' sd-quickbar__btn--active' : ''), onClick: function () { return _this.handleClick(item, index, event); } },
114
+ React.createElement("a", { role: 'button', "aria-label": item['tooltip'], className: 'sd-quickbar__btn'
115
+ + (index === _this.state.index ? ' sd-quickbar__btn--active' : ''), onClick: function () { return _this.handleClick(item, index, event); } },
115
116
  React.createElement(Icon_1.Icon, { size: 'small', name: item['icon'] }))));
116
117
  }
117
118
  }))));
@@ -80,7 +80,9 @@ var SideBarMenu = /** @class */ (function (_super) {
80
80
  return (React.createElement("li", { key: index, "data-sd-tooltip": item['tooltip'], "data-flow": 'right', className: item.hover ? 'authoring-active__item' : '' },
81
81
  React.createElement("a", { className: 'sd-sidebar-menu__btn'
82
82
  + (_this.state.hover ? ' sd-sidebar-menu__btn--closed ' : '')
83
- + (item['active'] ? ' sd-sidebar-menu__btn--active' : (index === _this.state.index ? ' sd-sidebar-menu__btn--active' : '')), onClick: function () {
83
+ + (item['active']
84
+ ? ' sd-sidebar-menu__btn--active'
85
+ : (index === _this.state.index ? ' sd-sidebar-menu__btn--active' : '')), onClick: function () {
84
86
  _this.handleClick(index);
85
87
  if (item.hover) {
86
88
  _this.handleArrows();
@@ -81,6 +81,7 @@ var SearchBar = /** @class */ (function (_super) {
81
81
  _a['sd-searchbar--boxed'] = this.state.boxed,
82
82
  _a));
83
83
  return (React.createElement("div", { className: classes, ref: this.inputRef },
84
+ this.props.children,
84
85
  React.createElement("label", { className: "sd-searchbar__icon" }),
85
86
  React.createElement("input", { id: "search-input", ref: function (input) { return (input && _this.props.focused) && input.focus(); }, className: "sd-searchbar__input", type: "text", placeholder: this.props.placeholder, value: this.state.inputValue, onKeyPress: function (event) {
86
87
  if (event.key === 'Enter') {
@@ -86,7 +86,8 @@ var TabList = /** @class */ (function (_super) {
86
86
  _a));
87
87
  return (React.createElement(React.Fragment, null,
88
88
  React.createElement("div", { className: classes, role: 'tablist' }, this.props.children.map(function (item, index) {
89
- return React.createElement("button", { key: index, onClick: function () { return _this.handleChange(index); }, role: 'tab', "aria-selected": _this.state.index === index ? 'true' : 'false', className: 'sd-nav-tabs__tab' + (_this.state.index === index ? ' sd-nav-tabs__tab--active' : '') },
89
+ return React.createElement("button", { key: index, onClick: function () { return _this.handleChange(index); }, role: 'tab', "aria-selected": _this.state.index === index ? 'true' : 'false', className: 'sd-nav-tabs__tab'
90
+ + (_this.state.index === index ? ' sd-nav-tabs__tab--active' : '') },
90
91
  React.createElement("span", null, item.props.label));
91
92
  })),
92
93
  React.createElement("div", { className: 'sd-nav-tabs__content' +
@@ -60,7 +60,7 @@ var TagInput = /** @class */ (function (_super) {
60
60
  return (React.createElement(SelectPreview_1.SelectPreview, { kind: { mode: 'multi-select' }, items: this.props.value, getLabel: function (item) { return item; } }));
61
61
  }
62
62
  return (React.createElement(Form_1.InputWrapper, { label: this.props.label, error: this.props.error, invalid: this.props.error != null, required: this.props.required, disabled: this.props.disabled, info: this.props.info, inlineLabel: this.props.inlineLabel, labelHidden: this.props.labelHidden, htmlId: this.htmlId, tabindex: this.props.tabindex },
63
- React.createElement(chips_1.Chips, { className: "tags-input--multi-select sd-input__input ".concat(this.props.disabled ? ' tags-input__padding-disabled' : ''), allowDuplicate: false, separator: ",", onChange: function (event) { return onChange(event.value); }, value: value, placeholder: this.props.disabled ? undefined : placeholder, disabled: this.props.disabled })));
63
+ React.createElement(chips_1.Chips, { className: "\n tags-input--multi-select sd-input__input\n ".concat(this.props.disabled ? ' tags-input__padding-disabled' : ''), allowDuplicate: false, separator: ",", onChange: function (event) { return onChange(event.value); }, value: value, placeholder: this.props.disabled ? undefined : placeholder, disabled: this.props.disabled })));
64
64
  };
65
65
  return TagInput;
66
66
  }(React.Component));
@@ -18,7 +18,7 @@ interface IPropsBase<T> extends IInputWrapper {
18
18
  value?: Array<T>;
19
19
  selectBranchWithChildren?: boolean;
20
20
  readOnly?: boolean;
21
- popoverWidth?: 'medium' | 'match-input';
21
+ width?: 'medium' | 'match-input';
22
22
  inputWidth?: '100%';
23
23
  allowMultiple?: boolean;
24
24
  loading?: boolean;
@@ -26,6 +26,7 @@ interface IPropsBase<T> extends IInputWrapper {
26
26
  placeholder?: string;
27
27
  searchPlaceholder?: string;
28
28
  zIndex?: number;
29
+ 'data-test-id'?: string;
29
30
  getLabel(item: T): string;
30
31
  getId(item: T): string;
31
32
  getBackgroundColor?(item: T): string;
@@ -33,7 +34,6 @@ interface IPropsBase<T> extends IInputWrapper {
33
34
  optionTemplate?(item: T): React.ComponentType<T> | JSX.Element;
34
35
  valueTemplate?(item: T, Wrapper: React.ElementType): React.ComponentType<T> | JSX.Element;
35
36
  onChange(e: Array<T>): void;
36
- 'data-test-id'?: string;
37
37
  }
38
38
  interface IPropsSync<T> extends IPropsBase<T> {
39
39
  kind: 'synchronous';
@@ -65,6 +65,7 @@ export declare class TreeSelect<T> extends React.Component<IProps<T>, IState<T>>
65
65
  buttonFocus: () => void;
66
66
  onMouseDown: (event: MouseEvent) => void;
67
67
  onKeyDown: (e: KeyboardEvent) => void;
68
+ onPressEsc: (event: KeyboardEvent) => void;
68
69
  componentDidMount: () => void;
69
70
  componentWillUnmount(): void;
70
71
  componentDidUpdate(prevProps: Readonly<IProps<T>>, prevState: Readonly<IState<T>>): void;