superdesk-ui-framework 3.0.1-beta.2 → 3.0.1-beta.20

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/.vscode/settings.json +5 -0
  2. package/app/fonts/sd_icons.eot +0 -0
  3. package/app/fonts/sd_icons.svg +14 -7
  4. package/app/fonts/sd_icons.ttf +0 -0
  5. package/app/fonts/sd_icons.woff +0 -0
  6. package/app/img/SD-logo.svg +52 -0
  7. package/app/scripts/toggleBoxNext.js +1 -1
  8. package/app/styles/_accessibility.scss +1 -0
  9. package/app/styles/_big-icon-font.scss +3 -0
  10. package/app/styles/_boxed-list.scss +3 -0
  11. package/app/styles/_buttons.scss +1 -1
  12. package/app/styles/_content-divider.scss +63 -8
  13. package/app/styles/_hamburger.scss +160 -0
  14. package/app/styles/_helpers.scss +35 -5
  15. package/app/styles/_icon-font.scss +19 -9
  16. package/app/styles/_master-desk.scss +3 -2
  17. package/app/styles/_modals.scss +6 -3
  18. package/app/styles/_normalize.scss +4 -0
  19. package/app/styles/_sd-tag-input.scss +221 -296
  20. package/app/styles/_simple-list.scss +1 -0
  21. package/app/styles/_table-list.scss +115 -12
  22. package/app/styles/app.scss +4 -0
  23. package/app/styles/components/_list-item.scss +36 -17
  24. package/app/styles/components/_sd-collapse-box.scss +6 -6
  25. package/app/styles/components/_sd-grid-item.scss +30 -16
  26. package/app/styles/components/_sd-notification-panel.scss +48 -0
  27. package/app/styles/components/_sd-photo-preview.scss +3 -3
  28. package/app/styles/components/_sd-searchbar.scss +7 -0
  29. package/app/styles/design-tokens/_design-tokens-general.scss +3 -6
  30. package/app/styles/design-tokens/_new-colors.scss +16 -6
  31. package/app/styles/dropdowns/_basic-dropdown.scss +6 -0
  32. package/app/styles/form-elements/_forms-general.scss +81 -7
  33. package/app/styles/form-elements/_input-wrap.scss +138 -0
  34. package/app/styles/form-elements/_inputs.scss +577 -102
  35. package/app/styles/grids/_grid-layout.scss +147 -40
  36. package/app/styles/interface-elements/_side-panel.scss +1 -1
  37. package/app/styles/layout/_basic-layout.scss +2 -2
  38. package/app/styles/layout/_editor.scss +10 -4
  39. package/app/styles/menus/_sd-bottom-tabs.scss +70 -0
  40. package/app/styles/menus/_sd-left-navigation.scss +24 -1
  41. package/app/styles/menus/_sd-sidebar-menu.scss +10 -14
  42. package/app/styles/menus/_sd-top-menu.scss +19 -5
  43. package/app/styles/primereact/_pr-dialog.scss +1 -0
  44. package/app/styles/primereact/_pr-dropdown.scss +17 -3
  45. package/app/styles/primereact/_pr-menu.scss +6 -5
  46. package/app-typescript/components/Badge.tsx +3 -2
  47. package/app-typescript/components/ContentDivider.tsx +3 -0
  48. package/app-typescript/components/DatePicker.tsx +71 -36
  49. package/app-typescript/components/DonutChart.tsx +1 -1
  50. package/app-typescript/components/Dropdown.tsx +127 -82
  51. package/app-typescript/components/DurationInput.tsx +400 -0
  52. package/app-typescript/components/EmptyState.tsx +2 -1
  53. package/app-typescript/components/Form/FormLabel.tsx +8 -1
  54. package/app-typescript/components/Form/FormRowNew.tsx +41 -0
  55. package/app-typescript/components/Form/InputBase.tsx +95 -0
  56. package/app-typescript/components/Form/InputNew.tsx +107 -0
  57. package/app-typescript/components/Form/InputWrapper.tsx +79 -0
  58. package/app-typescript/components/Form/index.tsx +4 -0
  59. package/app-typescript/components/Icon.tsx +1 -1
  60. package/app-typescript/components/IconButton.tsx +5 -1
  61. package/app-typescript/components/Input.tsx +39 -42
  62. package/app-typescript/components/Label.tsx +49 -10
  63. package/app-typescript/components/Layouts/AuthoringContainer.tsx +2 -1
  64. package/app-typescript/components/Layouts/AuthoringInnerHeader.tsx +1 -1
  65. package/app-typescript/components/Layouts/AuthoringMain.tsx +4 -2
  66. package/app-typescript/components/Layouts/BottomBarAction.tsx +35 -0
  67. package/app-typescript/components/Layouts/CoreLayout.tsx +63 -0
  68. package/app-typescript/components/Layouts/CoreLayoutContainer.tsx +16 -0
  69. package/app-typescript/components/Layouts/CoreLayoutFooter.tsx +15 -0
  70. package/app-typescript/components/Layouts/CoreLayoutMain.tsx +22 -0
  71. package/app-typescript/components/Layouts/CoreLayoutOverlay.tsx +15 -0
  72. package/app-typescript/components/Layouts/CoreLayoutSlideInMenu.tsx +24 -0
  73. package/app-typescript/components/Layouts/CoreLayoutTopMenu.tsx +35 -0
  74. package/app-typescript/components/Layouts/HamburgerButton.tsx +41 -0
  75. package/app-typescript/components/Layouts/Layout.tsx +2 -2
  76. package/app-typescript/components/Layouts/MainMenu.tsx +101 -0
  77. package/app-typescript/components/Layouts/NotificationPanel.tsx +109 -0
  78. package/app-typescript/components/Layouts/index.tsx +12 -0
  79. package/app-typescript/components/LeftMenu.tsx +127 -116
  80. package/app-typescript/components/Lists/BoxedList.tsx +36 -4
  81. package/app-typescript/components/Lists/ContentList.tsx +38 -10
  82. package/app-typescript/components/Lists/TableList.tsx +283 -151
  83. package/app-typescript/components/Menu.tsx +31 -7
  84. package/app-typescript/components/Modal.tsx +5 -2
  85. package/app-typescript/components/MultiSelect.tsx +35 -5
  86. package/app-typescript/components/NavButton.tsx +4 -0
  87. package/app-typescript/components/Navigation/BottomNav.tsx +83 -0
  88. package/app-typescript/components/SearchBar.tsx +39 -12
  89. package/app-typescript/components/Select.tsx +27 -37
  90. package/app-typescript/components/SelectGrid.tsx +1 -1
  91. package/app-typescript/components/SelectWithTemplate.tsx +32 -7
  92. package/app-typescript/components/Skeleton.tsx +1 -1
  93. package/app-typescript/components/Spacer.tsx +87 -0
  94. package/app-typescript/components/Text/Time.tsx +34 -0
  95. package/app-typescript/components/TimePicker.tsx +38 -15
  96. package/app-typescript/components/Togglebox.tsx +1 -1
  97. package/app-typescript/components/Tooltip.tsx +7 -5
  98. package/app-typescript/components/TreeSelect.tsx +490 -208
  99. package/app-typescript/components/WithSizeObserver.tsx +88 -0
  100. package/app-typescript/dist/components/Alert.d.ts +16 -0
  101. package/app-typescript/dist/components/Autocomplete.d.ts +48 -0
  102. package/app-typescript/dist/components/Avatar.d.ts +33 -0
  103. package/app-typescript/dist/components/Badge.d.ts +13 -0
  104. package/app-typescript/dist/components/Button.d.ts +23 -0
  105. package/app-typescript/dist/components/ButtonGroup.d.ts +12 -0
  106. package/app-typescript/dist/components/CheckButtonGroup.d.ts +11 -0
  107. package/app-typescript/dist/components/CheckGroup.d.ts +9 -0
  108. package/app-typescript/dist/components/Checkbox.d.ts +19 -0
  109. package/app-typescript/dist/components/CheckboxButton.d.ts +19 -0
  110. package/app-typescript/dist/components/DatePicker.d.ts +37 -0
  111. package/app-typescript/dist/components/Divider.d.ts +9 -0
  112. package/app-typescript/dist/components/DonutChart.d.ts +12 -0
  113. package/app-typescript/dist/components/Dropdown.d.ts +28 -0
  114. package/app-typescript/dist/components/DropdownFirst.d.ts +42 -0
  115. package/app-typescript/dist/components/EmptyState.d.ts +11 -0
  116. package/app-typescript/dist/components/FormLabel.d.ts +9 -0
  117. package/app-typescript/dist/components/Genie.d.ts +13 -0
  118. package/app-typescript/dist/components/GridItem.d.ts +69 -0
  119. package/app-typescript/dist/components/GridList.d.ts +14 -0
  120. package/app-typescript/dist/components/HeadingText.d.ts +10 -0
  121. package/app-typescript/dist/components/HelloWorld.d.ts +8 -0
  122. package/app-typescript/dist/components/Icon.d.ts +12 -0
  123. package/app-typescript/dist/components/IconButton.d.ts +12 -0
  124. package/app-typescript/dist/components/IconLabel.d.ts +11 -0
  125. package/app-typescript/dist/components/Input.d.ts +24 -0
  126. package/app-typescript/dist/components/Label.d.ts +15 -0
  127. package/app-typescript/dist/components/LeftMenu.d.ts +26 -0
  128. package/app-typescript/dist/components/Loader.d.ts +8 -0
  129. package/app-typescript/dist/components/NavButton.d.ts +15 -0
  130. package/app-typescript/dist/components/Popover.d.ts +13 -0
  131. package/app-typescript/dist/components/PropsList.d.ts +15 -0
  132. package/app-typescript/dist/components/Radio.d.ts +19 -0
  133. package/app-typescript/dist/components/RadioButton.d.ts +20 -0
  134. package/app-typescript/dist/components/Select.d.ts +29 -0
  135. package/app-typescript/dist/components/SelectWithTemplate.d.ts +32 -0
  136. package/app-typescript/dist/components/SlidingToolbar.d.ts +8 -0
  137. package/app-typescript/dist/components/StrechBar.d.ts +4 -0
  138. package/app-typescript/dist/components/SubNav.d.ts +10 -0
  139. package/app-typescript/dist/components/Switch.d.ts +12 -0
  140. package/app-typescript/dist/components/TabCustom.d.ts +25 -0
  141. package/app-typescript/dist/components/TabList.d.ts +22 -0
  142. package/app-typescript/dist/components/Tag.d.ts +9 -0
  143. package/app-typescript/dist/components/TagInput.d.ts +7 -0
  144. package/app-typescript/dist/components/TagInputTest.d.ts +18 -0
  145. package/app-typescript/dist/components/TimePicker.d.ts +11 -0
  146. package/app-typescript/dist/components/Tooltip.d.ts +11 -0
  147. package/app-typescript/dist/components/_Positioner.d.ts +27 -0
  148. package/app-typescript/dist/index.d.ts +56 -0
  149. package/app-typescript/helpers.tsx +3 -0
  150. package/app-typescript/index.ts +8 -1
  151. package/dist/SD-logo.svg +52 -0
  152. package/dist/examples.bundle.css +941 -8
  153. package/dist/examples.bundle.js +71435 -66878
  154. package/dist/playgrounds/accessible-theme-test.html +1 -1
  155. package/dist/playgrounds/layout-test-2.html +1 -1
  156. package/dist/playgrounds/list-item-test.html +1 -1
  157. package/dist/playgrounds/master-desk.html +1 -1
  158. package/dist/playgrounds/media-carousel.html +1 -1
  159. package/dist/playgrounds/photo-desk.html +1 -1
  160. package/dist/playgrounds/planning.html +1 -1
  161. package/dist/playgrounds/publish.html +1 -1
  162. package/dist/playgrounds/publisher-content-analytics.html +1 -1
  163. package/dist/playgrounds/publisher-content-list-automatic.html +1 -1
  164. package/dist/playgrounds/publisher-content-list-manual.html +1 -1
  165. package/dist/playgrounds/publisher-content-lists.html +1 -1
  166. package/dist/playgrounds/publisher-dashboard.html +1 -1
  167. package/dist/playgrounds/publisher-output-control.html +1 -1
  168. package/dist/playgrounds/react-playgrounds/CoreLayout.tsx +156 -0
  169. package/dist/playgrounds/react-playgrounds/Index.tsx +1 -0
  170. package/dist/playgrounds/react-playgrounds/RundownEditor.tsx +26 -23
  171. package/dist/playgrounds/react-playgrounds/Rundowns.tsx +20 -21
  172. package/dist/playgrounds/react-playgrounds/SamsPlayground.tsx +12 -3
  173. package/dist/playgrounds/react-playgrounds/TestGround.tsx +415 -25
  174. package/dist/playgrounds/react-playgrounds/components/Layout.tsx +2 -2
  175. package/dist/playgrounds/swimlane-view.html +1 -1
  176. package/dist/playgrounds/toasts.html +1 -1
  177. package/dist/playgrounds/video-editor.html +1 -1
  178. package/dist/react/Badges.tsx +18 -0
  179. package/dist/react/ContentDivider.tsx +22 -18
  180. package/dist/react/ContentList.tsx +200 -18
  181. package/dist/react/DatePicker.tsx +31 -6
  182. package/dist/react/Dropdowns.tsx +580 -48
  183. package/dist/react/DurationInput.tsx +108 -0
  184. package/dist/react/Index.tsx +10 -0
  185. package/dist/react/Inputs.tsx +256 -8
  186. package/dist/react/Labels.tsx +51 -1
  187. package/dist/react/LeftNavigations.tsx +71 -44
  188. package/dist/react/MultiSelect.tsx +10 -2
  189. package/dist/react/SelectWithTemplate.tsx +6 -1
  190. package/dist/react/Selects.tsx +55 -0
  191. package/dist/react/TableList.tsx +77 -186
  192. package/dist/react/TimePicker.tsx +22 -12
  193. package/dist/react/Togglebox.tsx +1 -1
  194. package/dist/react/TreeSelect.tsx +270 -48
  195. package/dist/react/WithSizeObserver.tsx +44 -0
  196. package/dist/react/tree-select/TreeSelect.tsx +273 -0
  197. package/dist/react/tree-select/example-1.tsx +71 -0
  198. package/dist/react/tree-select/example-2.tsx +59 -0
  199. package/dist/sd_icons.eot +0 -0
  200. package/dist/sd_icons.svg +14 -7
  201. package/dist/sd_icons.ttf +0 -0
  202. package/dist/sd_icons.woff +0 -0
  203. package/dist/superdesk-ui.bundle.css +4313 -629
  204. package/dist/superdesk-ui.bundle.js +75364 -60124
  205. package/dist/vendor.bundle.js +25027 -25027
  206. package/examples/index.js +4 -0
  207. package/examples/pages/playgrounds/accessible-theme-test.html +1 -1
  208. package/examples/pages/playgrounds/layout-test-2.html +1 -1
  209. package/examples/pages/playgrounds/list-item-test.html +1 -1
  210. package/examples/pages/playgrounds/master-desk.html +1 -1
  211. package/examples/pages/playgrounds/media-carousel.html +1 -1
  212. package/examples/pages/playgrounds/photo-desk.html +1 -1
  213. package/examples/pages/playgrounds/planning.html +1 -1
  214. package/examples/pages/playgrounds/publish.html +1 -1
  215. package/examples/pages/playgrounds/publisher-content-analytics.html +1 -1
  216. package/examples/pages/playgrounds/publisher-content-list-automatic.html +1 -1
  217. package/examples/pages/playgrounds/publisher-content-list-manual.html +1 -1
  218. package/examples/pages/playgrounds/publisher-content-lists.html +1 -1
  219. package/examples/pages/playgrounds/publisher-dashboard.html +1 -1
  220. package/examples/pages/playgrounds/publisher-output-control.html +1 -1
  221. package/examples/pages/playgrounds/react-playgrounds/CoreLayout.tsx +156 -0
  222. package/examples/pages/playgrounds/react-playgrounds/Index.tsx +1 -0
  223. package/examples/pages/playgrounds/react-playgrounds/RundownEditor.tsx +26 -23
  224. package/examples/pages/playgrounds/react-playgrounds/Rundowns.tsx +20 -21
  225. package/examples/pages/playgrounds/react-playgrounds/SamsPlayground.tsx +12 -3
  226. package/examples/pages/playgrounds/react-playgrounds/TestGround.tsx +415 -25
  227. package/examples/pages/playgrounds/react-playgrounds/components/Layout.tsx +2 -2
  228. package/examples/pages/playgrounds/swimlane-view.html +1 -1
  229. package/examples/pages/playgrounds/toasts.html +1 -1
  230. package/examples/pages/playgrounds/video-editor.html +1 -1
  231. package/examples/pages/react/Badges.tsx +18 -0
  232. package/examples/pages/react/ContentDivider.tsx +22 -18
  233. package/examples/pages/react/ContentList.tsx +200 -18
  234. package/examples/pages/react/DatePicker.tsx +31 -6
  235. package/examples/pages/react/Dropdowns.tsx +580 -48
  236. package/examples/pages/react/DurationInput.tsx +108 -0
  237. package/examples/pages/react/Index.tsx +10 -0
  238. package/examples/pages/react/Inputs.tsx +256 -8
  239. package/examples/pages/react/Labels.tsx +51 -1
  240. package/examples/pages/react/LeftNavigations.tsx +71 -44
  241. package/examples/pages/react/MultiSelect.tsx +10 -2
  242. package/examples/pages/react/SelectWithTemplate.tsx +6 -1
  243. package/examples/pages/react/Selects.tsx +55 -0
  244. package/examples/pages/react/TableList.tsx +77 -186
  245. package/examples/pages/react/TimePicker.tsx +22 -12
  246. package/examples/pages/react/Togglebox.tsx +1 -1
  247. package/examples/pages/react/TreeSelect.tsx +270 -48
  248. package/examples/pages/react/WithSizeObserver.tsx +44 -0
  249. package/examples/pages/react/tree-select/TreeSelect.tsx +273 -0
  250. package/examples/pages/react/tree-select/example-1.tsx +71 -0
  251. package/examples/pages/react/tree-select/example-2.tsx +59 -0
  252. package/package.json +8 -8
  253. package/react/components/Alert.js +10 -8
  254. package/react/components/Autocomplete.js +16 -12
  255. package/react/components/Avatar.js +8 -6
  256. package/react/components/Badge.d.ts +1 -0
  257. package/react/components/Badge.js +9 -7
  258. package/react/components/Button.js +8 -6
  259. package/react/components/ButtonGroup.js +7 -5
  260. package/react/components/Carousel.js +4 -2
  261. package/react/components/CheckButtonGroup.js +6 -4
  262. package/react/components/CheckGroup.js +5 -3
  263. package/react/components/Checkbox.js +5 -3
  264. package/react/components/CheckboxButton.js +6 -4
  265. package/react/components/ContentDivider.d.ts +1 -0
  266. package/react/components/ContentDivider.js +10 -6
  267. package/react/components/CreateButton.js +6 -4
  268. package/react/components/DatePicker.d.ts +11 -0
  269. package/react/components/DatePicker.js +44 -35
  270. package/react/components/Divider.js +6 -4
  271. package/react/components/DonutChart.d.ts +1 -1
  272. package/react/components/DonutChart.js +24 -6
  273. package/react/components/DropZone.js +6 -4
  274. package/react/components/Dropdown.d.ts +6 -5
  275. package/react/components/Dropdown.js +63 -35
  276. package/react/components/DropdownFirst.js +18 -11
  277. package/react/components/DurationInput.d.ts +42 -0
  278. package/react/components/DurationInput.js +364 -0
  279. package/react/components/EmptyState.d.ts +1 -0
  280. package/react/components/EmptyState.js +8 -6
  281. package/react/components/Form/FormGroup.js +7 -5
  282. package/react/components/Form/FormItem.js +5 -3
  283. package/react/components/Form/FormLabel.d.ts +4 -1
  284. package/react/components/Form/FormLabel.js +13 -5
  285. package/react/components/Form/FormRow.js +5 -3
  286. package/react/components/Form/FormRowNew.d.ts +12 -0
  287. package/react/components/Form/FormRowNew.js +67 -0
  288. package/react/components/Form/FormText.js +4 -2
  289. package/react/components/Form/InputBase.d.ts +41 -0
  290. package/react/components/Form/InputBase.js +86 -0
  291. package/react/components/Form/InputNew.d.ts +45 -0
  292. package/react/components/Form/InputNew.js +75 -0
  293. package/react/components/Form/InputWrapper.d.ts +28 -0
  294. package/react/components/Form/InputWrapper.js +91 -0
  295. package/react/components/Form/index.d.ts +4 -0
  296. package/react/components/Form/index.js +9 -0
  297. package/react/components/FormLabel.js +5 -3
  298. package/react/components/GridItem.js +9 -7
  299. package/react/components/GridList.js +8 -6
  300. package/react/components/HeadingText.js +4 -2
  301. package/react/components/HelloWorld.js +4 -2
  302. package/react/components/Icon.d.ts +1 -1
  303. package/react/components/Icon.js +9 -7
  304. package/react/components/IconButton.js +8 -6
  305. package/react/components/IconLabel.js +7 -5
  306. package/react/components/IconPicker.js +13 -9
  307. package/react/components/Input.d.ts +6 -2
  308. package/react/components/Input.js +16 -31
  309. package/react/components/Label.d.ts +1 -0
  310. package/react/components/Label.js +28 -10
  311. package/react/components/Layouts/AuthorinInnerSideBar.js +4 -2
  312. package/react/components/Layouts/AuthoringContainer.d.ts +1 -0
  313. package/react/components/Layouts/AuthoringContainer.js +8 -6
  314. package/react/components/Layouts/AuthoringFrame.js +4 -2
  315. package/react/components/Layouts/AuthoringFrameContainer.js +4 -2
  316. package/react/components/Layouts/AuthoringFrameLeftBar.js +4 -2
  317. package/react/components/Layouts/AuthoringFrameMain.js +4 -2
  318. package/react/components/Layouts/AuthoringFrameNavBar.js +4 -2
  319. package/react/components/Layouts/AuthoringFrameOverlay.js +4 -2
  320. package/react/components/Layouts/AuthoringFrameRightBar.js +4 -2
  321. package/react/components/Layouts/AuthoringFrameSidePanel.js +5 -3
  322. package/react/components/Layouts/AuthoringFrameSidePanelOverlay.js +5 -3
  323. package/react/components/Layouts/AuthoringInnerBody.js +4 -2
  324. package/react/components/Layouts/AuthoringInnerHeader.js +7 -5
  325. package/react/components/Layouts/AuthoringMain.js +5 -3
  326. package/react/components/Layouts/AuthoringMainContainer.js +4 -2
  327. package/react/components/Layouts/AuthoringMainContent.js +4 -2
  328. package/react/components/Layouts/AuthoringMainToolBar.js +5 -3
  329. package/react/components/Layouts/BottomBarAction.d.ts +12 -0
  330. package/react/components/Layouts/BottomBarAction.js +59 -0
  331. package/react/components/Layouts/Container.js +9 -7
  332. package/react/components/Layouts/ContentSplitter.js +6 -4
  333. package/react/components/Layouts/CoreLayout.d.ts +20 -0
  334. package/react/components/Layouts/CoreLayout.js +55 -0
  335. package/react/components/Layouts/CoreLayoutContainer.d.ts +9 -0
  336. package/react/components/Layouts/CoreLayoutContainer.js +49 -0
  337. package/react/components/Layouts/CoreLayoutFooter.d.ts +8 -0
  338. package/react/components/Layouts/CoreLayoutFooter.js +49 -0
  339. package/react/components/Layouts/CoreLayoutMain.d.ts +10 -0
  340. package/react/components/Layouts/CoreLayoutMain.js +56 -0
  341. package/react/components/Layouts/CoreLayoutOverlay.d.ts +8 -0
  342. package/react/components/Layouts/CoreLayoutOverlay.js +49 -0
  343. package/react/components/Layouts/CoreLayoutSlideInMenu.d.ts +11 -0
  344. package/react/components/Layouts/CoreLayoutSlideInMenu.js +58 -0
  345. package/react/components/Layouts/CoreLayoutTopMenu.d.ts +14 -0
  346. package/react/components/Layouts/CoreLayoutTopMenu.js +54 -0
  347. package/react/components/Layouts/HamburgerButton.d.ts +14 -0
  348. package/react/components/Layouts/HamburgerButton.js +63 -0
  349. package/react/components/Layouts/HeaderPanel.js +4 -2
  350. package/react/components/Layouts/Layout.js +4 -3
  351. package/react/components/Layouts/LayoutContainer.js +4 -2
  352. package/react/components/Layouts/LeftPanel.js +5 -3
  353. package/react/components/Layouts/MainMenu.d.ts +41 -0
  354. package/react/components/Layouts/MainMenu.js +103 -0
  355. package/react/components/Layouts/MainPanel.js +5 -3
  356. package/react/components/Layouts/NotificationPanel.d.ts +45 -0
  357. package/react/components/Layouts/NotificationPanel.js +110 -0
  358. package/react/components/Layouts/OverlayPanel.js +4 -2
  359. package/react/components/Layouts/PageLayout.js +4 -2
  360. package/react/components/Layouts/Panel.js +16 -14
  361. package/react/components/Layouts/RightPanel.js +4 -2
  362. package/react/components/Layouts/index.d.ts +11 -0
  363. package/react/components/Layouts/index.js +23 -0
  364. package/react/components/LeftMenu.d.ts +5 -1
  365. package/react/components/LeftMenu.js +27 -13
  366. package/react/components/ListItemLoader.js +4 -2
  367. package/react/components/Lists/BoxedList.d.ts +6 -0
  368. package/react/components/Lists/BoxedList.js +36 -15
  369. package/react/components/Lists/ContentList.d.ts +50 -0
  370. package/react/components/Lists/ContentList.js +106 -0
  371. package/react/components/Lists/SimpleList.js +9 -7
  372. package/react/components/Lists/TableList.d.ts +62 -0
  373. package/react/components/Lists/TableList.js +208 -0
  374. package/react/components/Lists/index.js +1 -0
  375. package/react/components/Loader.js +4 -2
  376. package/react/components/Menu.d.ts +2 -1
  377. package/react/components/Menu.js +48 -12
  378. package/react/components/Modal.d.ts +2 -1
  379. package/react/components/Modal.js +30 -9
  380. package/react/components/NavButton.d.ts +1 -0
  381. package/react/components/NavButton.js +9 -4
  382. package/react/components/Navigation/BottomNav.d.ts +24 -0
  383. package/react/components/Navigation/BottomNav.js +88 -0
  384. package/react/components/Navigation/QuickNavBar.js +13 -9
  385. package/react/components/Navigation/SideBarMenu.js +4 -2
  386. package/react/components/Navigation/SideBarTabs.js +4 -2
  387. package/react/components/Navigation/index.js +1 -0
  388. package/react/components/Popover.js +4 -2
  389. package/react/components/PropsList.js +4 -2
  390. package/react/components/RadioButtonGroup.js +9 -7
  391. package/react/components/RadioGroup.js +6 -4
  392. package/react/components/SearchBar.d.ts +3 -2
  393. package/react/components/SearchBar.js +34 -8
  394. package/react/components/Select.d.ts +5 -1
  395. package/react/components/Select.js +9 -23
  396. package/react/components/SelectGrid.d.ts +1 -1
  397. package/react/components/SelectGrid.js +44 -23
  398. package/react/components/SelectWithTemplate.d.ts +11 -1
  399. package/react/components/SelectWithTemplate.js +23 -12
  400. package/react/components/Skeleton.d.ts +1 -1
  401. package/react/components/Skeleton.js +26 -5
  402. package/react/components/SlidingToolbar.js +6 -4
  403. package/react/components/Spinner.js +6 -4
  404. package/react/components/StrechBar.js +4 -2
  405. package/react/components/SubNav.js +9 -7
  406. package/react/components/Switch.js +6 -4
  407. package/react/components/SwitchGroup.js +5 -3
  408. package/react/components/TabCustom.js +11 -7
  409. package/react/components/TabList.js +6 -4
  410. package/react/components/Tag.js +5 -4
  411. package/react/components/TagInput.js +7 -6
  412. package/react/components/TagInputTest.js +13 -9
  413. package/react/components/Text/Heading.js +10 -8
  414. package/react/components/Text/Text.js +10 -8
  415. package/react/components/Text/Time.d.ts +15 -0
  416. package/react/components/Text/Time.js +65 -0
  417. package/react/components/ThemeSelector.js +7 -5
  418. package/react/components/TimePicker.d.ts +11 -1
  419. package/react/components/TimePicker.js +14 -5
  420. package/react/components/Toast.js +1 -1
  421. package/react/components/ToastMessage.js +6 -5
  422. package/react/components/ToastText.js +1 -1
  423. package/react/components/ToastWrapper.d.ts +2 -2
  424. package/react/components/ToastWrapper.js +14 -10
  425. package/react/components/Togglebox.d.ts +1 -1
  426. package/react/components/Togglebox.js +36 -15
  427. package/react/components/Tooltip.d.ts +1 -0
  428. package/react/components/Tooltip.js +14 -10
  429. package/react/components/TreeSelect.d.ts +80 -0
  430. package/react/components/TreeSelect.js +494 -0
  431. package/react/components/WithSizeObserver.d.ts +25 -0
  432. package/react/components/WithSizeObserver.js +95 -0
  433. package/react/components/_Positioner.js +4 -2
  434. package/react/helpers.d.ts +1 -0
  435. package/react/helpers.js +7 -0
  436. package/react/index.d.ts +8 -0
  437. package/react/index.js +20 -2
  438. package/yarn-error.log +111 -0
  439. package/patches/@superdesk+primereact+5.0.2-4.patch +0 -13
  440. package/sd_icons.eot +0 -0
  441. package/sd_icons.svg +0 -189
  442. package/sd_icons.ttf +0 -0
  443. package/sd_icons.woff +0 -0
@@ -3696,6 +3696,9 @@ doc-react-playground {
3696
3696
  .icon-photo.color--light {
3697
3697
  color: var(--color-text-lighter) !important; }
3698
3698
 
3699
+ .icon-photo.color--white {
3700
+ color: #e2e5e9 !important; }
3701
+
3699
3702
  .icon-photo.scale--2x {
3700
3703
  --icon-base-size: 32px
3701
3704
  ; }
@@ -3732,6 +3735,9 @@ doc-react-playground {
3732
3735
  .icon-video.color--light {
3733
3736
  color: var(--color-text-lighter) !important; }
3734
3737
 
3738
+ .icon-video.color--white {
3739
+ color: #e2e5e9 !important; }
3740
+
3735
3741
  .icon-video.scale--2x {
3736
3742
  --icon-base-size: 32px
3737
3743
  ; }
@@ -3768,6 +3774,9 @@ doc-react-playground {
3768
3774
  .icon-map-marker.color--light {
3769
3775
  color: var(--color-text-lighter) !important; }
3770
3776
 
3777
+ .icon-map-marker.color--white {
3778
+ color: #e2e5e9 !important; }
3779
+
3771
3780
  .icon-map-marker.scale--2x {
3772
3781
  --icon-base-size: 32px
3773
3782
  ; }
@@ -3804,6 +3813,9 @@ doc-react-playground {
3804
3813
  .icon-slideshow.color--light {
3805
3814
  color: var(--color-text-lighter) !important; }
3806
3815
 
3816
+ .icon-slideshow.color--white {
3817
+ color: #e2e5e9 !important; }
3818
+
3807
3819
  .icon-slideshow.scale--2x {
3808
3820
  --icon-base-size: 32px
3809
3821
  ; }
@@ -3840,6 +3852,9 @@ doc-react-playground {
3840
3852
  .icon-text.color--light {
3841
3853
  color: var(--color-text-lighter) !important; }
3842
3854
 
3855
+ .icon-text.color--white {
3856
+ color: #e2e5e9 !important; }
3857
+
3843
3858
  .icon-text.scale--2x {
3844
3859
  --icon-base-size: 32px
3845
3860
  ; }
@@ -3876,6 +3891,9 @@ doc-react-playground {
3876
3891
  .icon-file.color--light {
3877
3892
  color: var(--color-text-lighter) !important; }
3878
3893
 
3894
+ .icon-file.color--white {
3895
+ color: #e2e5e9 !important; }
3896
+
3879
3897
  .icon-file.scale--2x {
3880
3898
  --icon-base-size: 32px
3881
3899
  ; }
@@ -3912,6 +3930,9 @@ doc-react-playground {
3912
3930
  .icon-calendar.color--light {
3913
3931
  color: var(--color-text-lighter) !important; }
3914
3932
 
3933
+ .icon-calendar.color--white {
3934
+ color: #e2e5e9 !important; }
3935
+
3915
3936
  .icon-calendar.scale--2x {
3916
3937
  --icon-base-size: 32px
3917
3938
  ; }
@@ -3948,6 +3969,9 @@ doc-react-playground {
3948
3969
  .icon-composite.color--light {
3949
3970
  color: var(--color-text-lighter) !important; }
3950
3971
 
3972
+ .icon-composite.color--white {
3973
+ color: #e2e5e9 !important; }
3974
+
3951
3975
  .icon-composite.scale--2x {
3952
3976
  --icon-base-size: 32px
3953
3977
  ; }
@@ -3984,6 +4008,9 @@ doc-react-playground {
3984
4008
  .icon-audio.color--light {
3985
4009
  color: var(--color-text-lighter) !important; }
3986
4010
 
4011
+ .icon-audio.color--white {
4012
+ color: #e2e5e9 !important; }
4013
+
3987
4014
  .icon-audio.scale--2x {
3988
4015
  --icon-base-size: 32px
3989
4016
  ; }
@@ -4020,6 +4047,9 @@ doc-react-playground {
4020
4047
  .icon-stream.color--light {
4021
4048
  color: var(--color-text-lighter) !important; }
4022
4049
 
4050
+ .icon-stream.color--white {
4051
+ color: #e2e5e9 !important; }
4052
+
4023
4053
  .icon-stream.scale--2x {
4024
4054
  --icon-base-size: 32px
4025
4055
  ; }
@@ -4056,6 +4086,9 @@ doc-react-playground {
4056
4086
  .icon-ingest.color--light {
4057
4087
  color: var(--color-text-lighter) !important; }
4058
4088
 
4089
+ .icon-ingest.color--white {
4090
+ color: #e2e5e9 !important; }
4091
+
4059
4092
  .icon-ingest.scale--2x {
4060
4093
  --icon-base-size: 32px
4061
4094
  ; }
@@ -4092,6 +4125,9 @@ doc-react-playground {
4092
4125
  .icon-archive.color--light {
4093
4126
  color: var(--color-text-lighter) !important; }
4094
4127
 
4128
+ .icon-archive.color--white {
4129
+ color: #e2e5e9 !important; }
4130
+
4095
4131
  .icon-archive.scale--2x {
4096
4132
  --icon-base-size: 32px
4097
4133
  ; }
@@ -4128,6 +4164,9 @@ doc-react-playground {
4128
4164
  .icon-time.color--light {
4129
4165
  color: var(--color-text-lighter) !important; }
4130
4166
 
4167
+ .icon-time.color--white {
4168
+ color: #e2e5e9 !important; }
4169
+
4131
4170
  .icon-time.scale--2x {
4132
4171
  --icon-base-size: 32px
4133
4172
  ; }
@@ -4164,6 +4203,9 @@ doc-react-playground {
4164
4203
  .icon-pin.color--light {
4165
4204
  color: var(--color-text-lighter) !important; }
4166
4205
 
4206
+ .icon-pin.color--white {
4207
+ color: #e2e5e9 !important; }
4208
+
4167
4209
  .icon-pin.scale--2x {
4168
4210
  --icon-base-size: 32px
4169
4211
  ; }
@@ -4200,6 +4242,9 @@ doc-react-playground {
4200
4242
  .icon-expand.color--light {
4201
4243
  color: var(--color-text-lighter) !important; }
4202
4244
 
4245
+ .icon-expand.color--white {
4246
+ color: #e2e5e9 !important; }
4247
+
4203
4248
  .icon-expand.scale--2x {
4204
4249
  --icon-base-size: 32px
4205
4250
  ; }
@@ -4236,6 +4281,9 @@ doc-react-playground {
4236
4281
  .icon-ascending.color--light {
4237
4282
  color: var(--color-text-lighter) !important; }
4238
4283
 
4284
+ .icon-ascending.color--white {
4285
+ color: #e2e5e9 !important; }
4286
+
4239
4287
  .icon-ascending.scale--2x {
4240
4288
  --icon-base-size: 32px
4241
4289
  ; }
@@ -4267,6 +4315,8 @@ doc-react-playground {
4267
4315
  color: var(--sd-colour-highlight) !important; }
4268
4316
  .icon-descending.color--light {
4269
4317
  color: var(--color-text-lighter) !important; }
4318
+ .icon-descending.color--white {
4319
+ color: #e2e5e9 !important; }
4270
4320
  .icon-descending.scale--2x {
4271
4321
  --icon-base-size: 32px
4272
4322
  ; }
@@ -4301,6 +4351,9 @@ doc-react-playground {
4301
4351
  .icon-th.color--light {
4302
4352
  color: var(--color-text-lighter) !important; }
4303
4353
 
4354
+ .icon-th.color--white {
4355
+ color: #e2e5e9 !important; }
4356
+
4304
4357
  .icon-th.scale--2x {
4305
4358
  --icon-base-size: 32px
4306
4359
  ; }
@@ -4337,6 +4390,9 @@ doc-react-playground {
4337
4390
  .icon-grid-view.color--light {
4338
4391
  color: var(--color-text-lighter) !important; }
4339
4392
 
4393
+ .icon-grid-view.color--white {
4394
+ color: #e2e5e9 !important; }
4395
+
4340
4396
  .icon-grid-view.scale--2x {
4341
4397
  --icon-base-size: 32px
4342
4398
  ; }
@@ -4373,6 +4429,9 @@ doc-react-playground {
4373
4429
  .icon-th-list.color--light {
4374
4430
  color: var(--color-text-lighter) !important; }
4375
4431
 
4432
+ .icon-th-list.color--white {
4433
+ color: #e2e5e9 !important; }
4434
+
4376
4435
  .icon-th-list.scale--2x {
4377
4436
  --icon-base-size: 32px
4378
4437
  ; }
@@ -4409,6 +4468,9 @@ doc-react-playground {
4409
4468
  .icon-list-view.color--light {
4410
4469
  color: var(--color-text-lighter) !important; }
4411
4470
 
4471
+ .icon-list-view.color--white {
4472
+ color: #e2e5e9 !important; }
4473
+
4412
4474
  .icon-list-view.scale--2x {
4413
4475
  --icon-base-size: 32px
4414
4476
  ; }
@@ -4445,6 +4507,9 @@ doc-react-playground {
4445
4507
  .icon-pencil.color--light {
4446
4508
  color: var(--color-text-lighter) !important; }
4447
4509
 
4510
+ .icon-pencil.color--white {
4511
+ color: #e2e5e9 !important; }
4512
+
4448
4513
  .icon-pencil.scale--2x {
4449
4514
  --icon-base-size: 32px
4450
4515
  ; }
@@ -4481,6 +4546,9 @@ doc-react-playground {
4481
4546
  .icon-lock.color--light {
4482
4547
  color: var(--color-text-lighter) !important; }
4483
4548
 
4549
+ .icon-lock.color--white {
4550
+ color: #e2e5e9 !important; }
4551
+
4484
4552
  .icon-lock.scale--2x {
4485
4553
  --icon-base-size: 32px
4486
4554
  ; }
@@ -4517,6 +4585,9 @@ doc-react-playground {
4517
4585
  .icon-retweet.color--light {
4518
4586
  color: var(--color-text-lighter) !important; }
4519
4587
 
4588
+ .icon-retweet.color--white {
4589
+ color: #e2e5e9 !important; }
4590
+
4520
4591
  .icon-retweet.scale--2x {
4521
4592
  --icon-base-size: 32px
4522
4593
  ; }
@@ -4553,6 +4624,9 @@ doc-react-playground {
4553
4624
  .icon-unspike.color--light {
4554
4625
  color: var(--color-text-lighter) !important; }
4555
4626
 
4627
+ .icon-unspike.color--white {
4628
+ color: #e2e5e9 !important; }
4629
+
4556
4630
  .icon-unspike.scale--2x {
4557
4631
  --icon-base-size: 32px
4558
4632
  ; }
@@ -4589,6 +4663,9 @@ doc-react-playground {
4589
4663
  .icon-fullscreen.color--light {
4590
4664
  color: var(--color-text-lighter) !important; }
4591
4665
 
4666
+ .icon-fullscreen.color--white {
4667
+ color: #e2e5e9 !important; }
4668
+
4592
4669
  .icon-fullscreen.scale--2x {
4593
4670
  --icon-base-size: 32px
4594
4671
  ; }
@@ -4625,6 +4702,9 @@ doc-react-playground {
4625
4702
  .icon-fetch-as.color--light {
4626
4703
  color: var(--color-text-lighter) !important; }
4627
4704
 
4705
+ .icon-fetch-as.color--white {
4706
+ color: #e2e5e9 !important; }
4707
+
4628
4708
  .icon-fetch-as.scale--2x {
4629
4709
  --icon-base-size: 32px
4630
4710
  ; }
@@ -4661,6 +4741,9 @@ doc-react-playground {
4661
4741
  .icon-search.color--light {
4662
4742
  color: var(--color-text-lighter) !important; }
4663
4743
 
4744
+ .icon-search.color--white {
4745
+ color: #e2e5e9 !important; }
4746
+
4664
4747
  .icon-search.scale--2x {
4665
4748
  --icon-base-size: 32px
4666
4749
  ; }
@@ -4697,6 +4780,9 @@ doc-react-playground {
4697
4780
  .icon-star.color--light {
4698
4781
  color: var(--color-text-lighter) !important; }
4699
4782
 
4783
+ .icon-star.color--white {
4784
+ color: #e2e5e9 !important; }
4785
+
4700
4786
  .icon-star.scale--2x {
4701
4787
  --icon-base-size: 32px
4702
4788
  ; }
@@ -4733,6 +4819,9 @@ doc-react-playground {
4733
4819
  .icon-star-empty.color--light {
4734
4820
  color: var(--color-text-lighter) !important; }
4735
4821
 
4822
+ .icon-star-empty.color--white {
4823
+ color: #e2e5e9 !important; }
4824
+
4736
4825
  .icon-star-empty.scale--2x {
4737
4826
  --icon-base-size: 32px
4738
4827
  ; }
@@ -4769,6 +4858,9 @@ doc-react-playground {
4769
4858
  .icon-multi-star.color--light {
4770
4859
  color: var(--color-text-lighter) !important; }
4771
4860
 
4861
+ .icon-multi-star.color--white {
4862
+ color: #e2e5e9 !important; }
4863
+
4772
4864
  .icon-multi-star.scale--2x {
4773
4865
  --icon-base-size: 32px
4774
4866
  ; }
@@ -4805,6 +4897,9 @@ doc-react-playground {
4805
4897
  .icon-th-large.color--light {
4806
4898
  color: var(--color-text-lighter) !important; }
4807
4899
 
4900
+ .icon-th-large.color--white {
4901
+ color: #e2e5e9 !important; }
4902
+
4808
4903
  .icon-th-large.scale--2x {
4809
4904
  --icon-base-size: 32px
4810
4905
  ; }
@@ -4841,6 +4936,9 @@ doc-react-playground {
4841
4936
  .icon-grid-view-large.color--light {
4842
4937
  color: var(--color-text-lighter) !important; }
4843
4938
 
4939
+ .icon-grid-view-large.color--white {
4940
+ color: #e2e5e9 !important; }
4941
+
4844
4942
  .icon-grid-view-large.scale--2x {
4845
4943
  --icon-base-size: 32px
4846
4944
  ; }
@@ -4877,6 +4975,9 @@ doc-react-playground {
4877
4975
  .icon-ok.color--light {
4878
4976
  color: var(--color-text-lighter) !important; }
4879
4977
 
4978
+ .icon-ok.color--white {
4979
+ color: #e2e5e9 !important; }
4980
+
4880
4981
  .icon-ok.scale--2x {
4881
4982
  --icon-base-size: 32px
4882
4983
  ; }
@@ -4913,6 +5014,9 @@ doc-react-playground {
4913
5014
  .icon-zoom-in.color--light {
4914
5015
  color: var(--color-text-lighter) !important; }
4915
5016
 
5017
+ .icon-zoom-in.color--white {
5018
+ color: #e2e5e9 !important; }
5019
+
4916
5020
  .icon-zoom-in.scale--2x {
4917
5021
  --icon-base-size: 32px
4918
5022
  ; }
@@ -4949,6 +5053,9 @@ doc-react-playground {
4949
5053
  .icon-zoom-out.color--light {
4950
5054
  color: var(--color-text-lighter) !important; }
4951
5055
 
5056
+ .icon-zoom-out.color--white {
5057
+ color: #e2e5e9 !important; }
5058
+
4952
5059
  .icon-zoom-out.scale--2x {
4953
5060
  --icon-base-size: 32px
4954
5061
  ; }
@@ -4985,6 +5092,9 @@ doc-react-playground {
4985
5092
  .icon-signal.color--light {
4986
5093
  color: var(--color-text-lighter) !important; }
4987
5094
 
5095
+ .icon-signal.color--white {
5096
+ color: #e2e5e9 !important; }
5097
+
4988
5098
  .icon-signal.scale--2x {
4989
5099
  --icon-base-size: 32px
4990
5100
  ; }
@@ -5021,6 +5131,9 @@ doc-react-playground {
5021
5131
  .icon-filter-large.color--light {
5022
5132
  color: var(--color-text-lighter) !important; }
5023
5133
 
5134
+ .icon-filter-large.color--white {
5135
+ color: #e2e5e9 !important; }
5136
+
5024
5137
  .icon-filter-large.scale--2x {
5025
5138
  --icon-base-size: 32px
5026
5139
  ; }
@@ -5057,6 +5170,9 @@ doc-react-playground {
5057
5170
  .icon-trash.color--light {
5058
5171
  color: var(--color-text-lighter) !important; }
5059
5172
 
5173
+ .icon-trash.color--white {
5174
+ color: #e2e5e9 !important; }
5175
+
5060
5176
  .icon-trash.scale--2x {
5061
5177
  --icon-base-size: 32px
5062
5178
  ; }
@@ -5093,6 +5209,9 @@ doc-react-playground {
5093
5209
  .icon-user.color--light {
5094
5210
  color: var(--color-text-lighter) !important; }
5095
5211
 
5212
+ .icon-user.color--white {
5213
+ color: #e2e5e9 !important; }
5214
+
5096
5215
  .icon-user.scale--2x {
5097
5216
  --icon-base-size: 32px
5098
5217
  ; }
@@ -5129,6 +5248,9 @@ doc-react-playground {
5129
5248
  .icon-download.color--light {
5130
5249
  color: var(--color-text-lighter) !important; }
5131
5250
 
5251
+ .icon-download.color--white {
5252
+ color: #e2e5e9 !important; }
5253
+
5132
5254
  .icon-download.scale--2x {
5133
5255
  --icon-base-size: 32px
5134
5256
  ; }
@@ -5165,6 +5287,9 @@ doc-react-playground {
5165
5287
  .icon-upload.color--light {
5166
5288
  color: var(--color-text-lighter) !important; }
5167
5289
 
5290
+ .icon-upload.color--white {
5291
+ color: #e2e5e9 !important; }
5292
+
5168
5293
  .icon-upload.scale--2x {
5169
5294
  --icon-base-size: 32px
5170
5295
  ; }
@@ -5201,6 +5326,9 @@ doc-react-playground {
5201
5326
  .icon-repeat.color--light {
5202
5327
  color: var(--color-text-lighter) !important; }
5203
5328
 
5329
+ .icon-repeat.color--white {
5330
+ color: #e2e5e9 !important; }
5331
+
5204
5332
  .icon-repeat.scale--2x {
5205
5333
  --icon-base-size: 32px
5206
5334
  ; }
@@ -5237,6 +5365,9 @@ doc-react-playground {
5237
5365
  .icon-refresh.color--light {
5238
5366
  color: var(--color-text-lighter) !important; }
5239
5367
 
5368
+ .icon-refresh.color--white {
5369
+ color: #e2e5e9 !important; }
5370
+
5240
5371
  .icon-refresh.scale--2x {
5241
5372
  --icon-base-size: 32px
5242
5373
  ; }
@@ -5273,6 +5404,9 @@ doc-react-playground {
5273
5404
  .icon-list-alt.color--light {
5274
5405
  color: var(--color-text-lighter) !important; }
5275
5406
 
5407
+ .icon-list-alt.color--white {
5408
+ color: #e2e5e9 !important; }
5409
+
5276
5410
  .icon-list-alt.scale--2x {
5277
5411
  --icon-base-size: 32px
5278
5412
  ; }
@@ -5309,6 +5443,9 @@ doc-react-playground {
5309
5443
  .icon-plus-large.color--light {
5310
5444
  color: var(--color-text-lighter) !important; }
5311
5445
 
5446
+ .icon-plus-large.color--white {
5447
+ color: #e2e5e9 !important; }
5448
+
5312
5449
  .icon-plus-large.scale--2x {
5313
5450
  --icon-base-size: 32px
5314
5451
  ; }
@@ -5345,6 +5482,9 @@ doc-react-playground {
5345
5482
  .icon-picture.color--light {
5346
5483
  color: var(--color-text-lighter) !important; }
5347
5484
 
5485
+ .icon-picture.color--white {
5486
+ color: #e2e5e9 !important; }
5487
+
5348
5488
  .icon-picture.scale--2x {
5349
5489
  --icon-base-size: 32px
5350
5490
  ; }
@@ -5381,6 +5521,9 @@ doc-react-playground {
5381
5521
  .icon-question-sign.color--light {
5382
5522
  color: var(--color-text-lighter) !important; }
5383
5523
 
5524
+ .icon-question-sign.color--white {
5525
+ color: #e2e5e9 !important; }
5526
+
5384
5527
  .icon-question-sign.scale--2x {
5385
5528
  --icon-base-size: 32px
5386
5529
  ; }
@@ -5417,6 +5560,9 @@ doc-react-playground {
5417
5560
  .icon-info-sign.color--light {
5418
5561
  color: var(--color-text-lighter) !important; }
5419
5562
 
5563
+ .icon-info-sign.color--white {
5564
+ color: #e2e5e9 !important; }
5565
+
5420
5566
  .icon-info-sign.scale--2x {
5421
5567
  --icon-base-size: 32px
5422
5568
  ; }
@@ -5453,6 +5599,9 @@ doc-react-playground {
5453
5599
  .icon-plus-sign.color--light {
5454
5600
  color: var(--color-text-lighter) !important; }
5455
5601
 
5602
+ .icon-plus-sign.color--white {
5603
+ color: #e2e5e9 !important; }
5604
+
5456
5605
  .icon-plus-sign.scale--2x {
5457
5606
  --icon-base-size: 32px
5458
5607
  ; }
@@ -5489,6 +5638,9 @@ doc-react-playground {
5489
5638
  .icon-minus-sign.color--light {
5490
5639
  color: var(--color-text-lighter) !important; }
5491
5640
 
5641
+ .icon-minus-sign.color--white {
5642
+ color: #e2e5e9 !important; }
5643
+
5492
5644
  .icon-minus-sign.scale--2x {
5493
5645
  --icon-base-size: 32px
5494
5646
  ; }
@@ -5525,6 +5677,9 @@ doc-react-playground {
5525
5677
  .icon-remove-sign.color--light {
5526
5678
  color: var(--color-text-lighter) !important; }
5527
5679
 
5680
+ .icon-remove-sign.color--white {
5681
+ color: #e2e5e9 !important; }
5682
+
5528
5683
  .icon-remove-sign.scale--2x {
5529
5684
  --icon-base-size: 32px
5530
5685
  ; }
@@ -5561,6 +5716,9 @@ doc-react-playground {
5561
5716
  .icon-share-alt.color--light {
5562
5717
  color: var(--color-text-lighter) !important; }
5563
5718
 
5719
+ .icon-share-alt.color--white {
5720
+ color: #e2e5e9 !important; }
5721
+
5564
5722
  .icon-share-alt.scale--2x {
5565
5723
  --icon-base-size: 32px
5566
5724
  ; }
@@ -5597,6 +5755,9 @@ doc-react-playground {
5597
5755
  .icon-exclamation-sign.color--light {
5598
5756
  color: var(--color-text-lighter) !important; }
5599
5757
 
5758
+ .icon-exclamation-sign.color--white {
5759
+ color: #e2e5e9 !important; }
5760
+
5600
5761
  .icon-exclamation-sign.scale--2x {
5601
5762
  --icon-base-size: 32px
5602
5763
  ; }
@@ -5633,6 +5794,9 @@ doc-react-playground {
5633
5794
  .icon-eye-open.color--light {
5634
5795
  color: var(--color-text-lighter) !important; }
5635
5796
 
5797
+ .icon-eye-open.color--white {
5798
+ color: #e2e5e9 !important; }
5799
+
5636
5800
  .icon-eye-open.scale--2x {
5637
5801
  --icon-base-size: 32px
5638
5802
  ; }
@@ -5669,6 +5833,9 @@ doc-react-playground {
5669
5833
  .icon-copy.color--light {
5670
5834
  color: var(--color-text-lighter) !important; }
5671
5835
 
5836
+ .icon-copy.color--white {
5837
+ color: #e2e5e9 !important; }
5838
+
5672
5839
  .icon-copy.scale--2x {
5673
5840
  --icon-base-size: 32px
5674
5841
  ; }
@@ -5705,6 +5872,9 @@ doc-react-playground {
5705
5872
  .icon-comment.color--light {
5706
5873
  color: var(--color-text-lighter) !important; }
5707
5874
 
5875
+ .icon-comment.color--white {
5876
+ color: #e2e5e9 !important; }
5877
+
5708
5878
  .icon-comment.scale--2x {
5709
5879
  --icon-base-size: 32px
5710
5880
  ; }
@@ -5741,6 +5911,9 @@ doc-react-playground {
5741
5911
  .icon-warning-sign.color--light {
5742
5912
  color: var(--color-text-lighter) !important; }
5743
5913
 
5914
+ .icon-warning-sign.color--white {
5915
+ color: #e2e5e9 !important; }
5916
+
5744
5917
  .icon-warning-sign.scale--2x {
5745
5918
  --icon-base-size: 32px
5746
5919
  ; }
@@ -5777,6 +5950,9 @@ doc-react-playground {
5777
5950
  .icon-adjust.color--light {
5778
5951
  color: var(--color-text-lighter) !important; }
5779
5952
 
5953
+ .icon-adjust.color--white {
5954
+ color: #e2e5e9 !important; }
5955
+
5780
5956
  .icon-adjust.scale--2x {
5781
5957
  --icon-base-size: 32px
5782
5958
  ; }
@@ -5813,6 +5989,9 @@ doc-react-playground {
5813
5989
  .icon-folder-close.color--light {
5814
5990
  color: var(--color-text-lighter) !important; }
5815
5991
 
5992
+ .icon-folder-close.color--white {
5993
+ color: #e2e5e9 !important; }
5994
+
5816
5995
  .icon-folder-close.scale--2x {
5817
5996
  --icon-base-size: 32px
5818
5997
  ; }
@@ -5849,6 +6028,9 @@ doc-react-playground {
5849
6028
  .icon-folder-open.color--light {
5850
6029
  color: var(--color-text-lighter) !important; }
5851
6030
 
6031
+ .icon-folder-open.color--white {
6032
+ color: #e2e5e9 !important; }
6033
+
5852
6034
  .icon-folder-open.scale--2x {
5853
6035
  --icon-base-size: 32px
5854
6036
  ; }
@@ -5885,6 +6067,9 @@ doc-react-playground {
5885
6067
  .icon-download-alt.color--light {
5886
6068
  color: var(--color-text-lighter) !important; }
5887
6069
 
6070
+ .icon-download-alt.color--white {
6071
+ color: #e2e5e9 !important; }
6072
+
5888
6073
  .icon-download-alt.scale--2x {
5889
6074
  --icon-base-size: 32px
5890
6075
  ; }
@@ -5921,6 +6106,9 @@ doc-react-playground {
5921
6106
  .icon-tasks.color--light {
5922
6107
  color: var(--color-text-lighter) !important; }
5923
6108
 
6109
+ .icon-tasks.color--white {
6110
+ color: #e2e5e9 !important; }
6111
+
5924
6112
  .icon-tasks.scale--2x {
5925
6113
  --icon-base-size: 32px
5926
6114
  ; }
@@ -5957,6 +6145,9 @@ doc-react-playground {
5957
6145
  .icon-globe.color--light {
5958
6146
  color: var(--color-text-lighter) !important; }
5959
6147
 
6148
+ .icon-globe.color--white {
6149
+ color: #e2e5e9 !important; }
6150
+
5960
6151
  .icon-globe.scale--2x {
5961
6152
  --icon-base-size: 32px
5962
6153
  ; }
@@ -5993,6 +6184,9 @@ doc-react-playground {
5993
6184
  .icon-link.color--light {
5994
6185
  color: var(--color-text-lighter) !important; }
5995
6186
 
6187
+ .icon-link.color--white {
6188
+ color: #e2e5e9 !important; }
6189
+
5996
6190
  .icon-link.scale--2x {
5997
6191
  --icon-base-size: 32px
5998
6192
  ; }
@@ -6029,6 +6223,9 @@ doc-react-playground {
6029
6223
  .icon-expand-thin.color--light {
6030
6224
  color: var(--color-text-lighter) !important; }
6031
6225
 
6226
+ .icon-expand-thin.color--white {
6227
+ color: #e2e5e9 !important; }
6228
+
6032
6229
  .icon-expand-thin.scale--2x {
6033
6230
  --icon-base-size: 32px
6034
6231
  ; }
@@ -6065,6 +6262,9 @@ doc-react-playground {
6065
6262
  .icon-assign.color--light {
6066
6263
  color: var(--color-text-lighter) !important; }
6067
6264
 
6265
+ .icon-assign.color--white {
6266
+ color: #e2e5e9 !important; }
6267
+
6068
6268
  .icon-assign.scale--2x {
6069
6269
  --icon-base-size: 32px
6070
6270
  ; }
@@ -6101,6 +6301,9 @@ doc-react-playground {
6101
6301
  .icon-dots.color--light {
6102
6302
  color: var(--color-text-lighter) !important; }
6103
6303
 
6304
+ .icon-dots.color--white {
6305
+ color: #e2e5e9 !important; }
6306
+
6104
6307
  .icon-dots.scale--2x {
6105
6308
  --icon-base-size: 32px
6106
6309
  ; }
@@ -6132,6 +6335,8 @@ doc-react-playground {
6132
6335
  color: var(--sd-colour-highlight) !important; }
6133
6336
  .icon-dots-vertical.color--light {
6134
6337
  color: var(--color-text-lighter) !important; }
6338
+ .icon-dots-vertical.color--white {
6339
+ color: #e2e5e9 !important; }
6135
6340
  .icon-dots-vertical.scale--2x {
6136
6341
  --icon-base-size: 32px
6137
6342
  ; }
@@ -6166,6 +6371,9 @@ doc-react-playground {
6166
6371
  .icon-backward-thin.color--light {
6167
6372
  color: var(--color-text-lighter) !important; }
6168
6373
 
6374
+ .icon-backward-thin.color--white {
6375
+ color: #e2e5e9 !important; }
6376
+
6169
6377
  .icon-backward-thin.scale--2x {
6170
6378
  --icon-base-size: 32px
6171
6379
  ; }
@@ -6202,6 +6410,9 @@ doc-react-playground {
6202
6410
  .icon-forward-thin.color--light {
6203
6411
  color: var(--color-text-lighter) !important; }
6204
6412
 
6413
+ .icon-forward-thin.color--white {
6414
+ color: #e2e5e9 !important; }
6415
+
6205
6416
  .icon-forward-thin.scale--2x {
6206
6417
  --icon-base-size: 32px
6207
6418
  ; }
@@ -6238,6 +6449,9 @@ doc-react-playground {
6238
6449
  .icon-chevron-left-thin.color--light {
6239
6450
  color: var(--color-text-lighter) !important; }
6240
6451
 
6452
+ .icon-chevron-left-thin.color--white {
6453
+ color: #e2e5e9 !important; }
6454
+
6241
6455
  .icon-chevron-left-thin.scale--2x {
6242
6456
  --icon-base-size: 32px
6243
6457
  ; }
@@ -6274,6 +6488,9 @@ doc-react-playground {
6274
6488
  .icon-chevron-right-thin.color--light {
6275
6489
  color: var(--color-text-lighter) !important; }
6276
6490
 
6491
+ .icon-chevron-right-thin.color--white {
6492
+ color: #e2e5e9 !important; }
6493
+
6277
6494
  .icon-chevron-right-thin.scale--2x {
6278
6495
  --icon-base-size: 32px
6279
6496
  ; }
@@ -6310,6 +6527,9 @@ doc-react-playground {
6310
6527
  .icon-switches.color--light {
6311
6528
  color: var(--color-text-lighter) !important; }
6312
6529
 
6530
+ .icon-switches.color--white {
6531
+ color: #e2e5e9 !important; }
6532
+
6313
6533
  .icon-switches.scale--2x {
6314
6534
  --icon-base-size: 32px
6315
6535
  ; }
@@ -6346,6 +6566,9 @@ doc-react-playground {
6346
6566
  .icon-plus-small.color--light {
6347
6567
  color: var(--color-text-lighter) !important; }
6348
6568
 
6569
+ .icon-plus-small.color--white {
6570
+ color: #e2e5e9 !important; }
6571
+
6349
6572
  .icon-plus-small.scale--2x {
6350
6573
  --icon-base-size: 32px
6351
6574
  ; }
@@ -6382,6 +6605,9 @@ doc-react-playground {
6382
6605
  .icon-minus-small.color--light {
6383
6606
  color: var(--color-text-lighter) !important; }
6384
6607
 
6608
+ .icon-minus-small.color--white {
6609
+ color: #e2e5e9 !important; }
6610
+
6385
6611
  .icon-minus-small.scale--2x {
6386
6612
  --icon-base-size: 32px
6387
6613
  ; }
@@ -6418,6 +6644,9 @@ doc-react-playground {
6418
6644
  .icon-close-small.color--light {
6419
6645
  color: var(--color-text-lighter) !important; }
6420
6646
 
6647
+ .icon-close-small.color--white {
6648
+ color: #e2e5e9 !important; }
6649
+
6421
6650
  .icon-close-small.scale--2x {
6422
6651
  --icon-base-size: 32px
6423
6652
  ; }
@@ -6454,6 +6683,9 @@ doc-react-playground {
6454
6683
  .icon-post.color--light {
6455
6684
  color: var(--color-text-lighter) !important; }
6456
6685
 
6686
+ .icon-post.color--white {
6687
+ color: #e2e5e9 !important; }
6688
+
6457
6689
  .icon-post.scale--2x {
6458
6690
  --icon-base-size: 32px
6459
6691
  ; }
@@ -6490,6 +6722,9 @@ doc-react-playground {
6490
6722
  .icon-external.color--light {
6491
6723
  color: var(--color-text-lighter) !important; }
6492
6724
 
6725
+ .icon-external.color--white {
6726
+ color: #e2e5e9 !important; }
6727
+
6493
6728
  .icon-external.scale--2x {
6494
6729
  --icon-base-size: 32px
6495
6730
  ; }
@@ -6526,6 +6761,9 @@ doc-react-playground {
6526
6761
  .icon-chevron-up-thin.color--light {
6527
6762
  color: var(--color-text-lighter) !important; }
6528
6763
 
6764
+ .icon-chevron-up-thin.color--white {
6765
+ color: #e2e5e9 !important; }
6766
+
6529
6767
  .icon-chevron-up-thin.scale--2x {
6530
6768
  --icon-base-size: 32px
6531
6769
  ; }
@@ -6562,6 +6800,9 @@ doc-react-playground {
6562
6800
  .icon-chevron-down-thin.color--light {
6563
6801
  color: var(--color-text-lighter) !important; }
6564
6802
 
6803
+ .icon-chevron-down-thin.color--white {
6804
+ color: #e2e5e9 !important; }
6805
+
6565
6806
  .icon-chevron-down-thin.scale--2x {
6566
6807
  --icon-base-size: 32px
6567
6808
  ; }
@@ -6598,6 +6839,9 @@ doc-react-playground {
6598
6839
  .icon-pick.color--light {
6599
6840
  color: var(--color-text-lighter) !important; }
6600
6841
 
6842
+ .icon-pick.color--white {
6843
+ color: #e2e5e9 !important; }
6844
+
6601
6845
  .icon-pick.scale--2x {
6602
6846
  --icon-base-size: 32px
6603
6847
  ; }
@@ -6634,6 +6878,9 @@ doc-react-playground {
6634
6878
  .icon-revert.color--light {
6635
6879
  color: var(--color-text-lighter) !important; }
6636
6880
 
6881
+ .icon-revert.color--white {
6882
+ color: #e2e5e9 !important; }
6883
+
6637
6884
  .icon-revert.scale--2x {
6638
6885
  --icon-base-size: 32px
6639
6886
  ; }
@@ -6670,6 +6917,9 @@ doc-react-playground {
6670
6917
  .icon-package-plus.color--light {
6671
6918
  color: var(--color-text-lighter) !important; }
6672
6919
 
6920
+ .icon-package-plus.color--white {
6921
+ color: #e2e5e9 !important; }
6922
+
6673
6923
  .icon-package-plus.scale--2x {
6674
6924
  --icon-base-size: 32px
6675
6925
  ; }
@@ -6706,6 +6956,9 @@ doc-react-playground {
6706
6956
  .icon-list-plus.color--light {
6707
6957
  color: var(--color-text-lighter) !important; }
6708
6958
 
6959
+ .icon-list-plus.color--white {
6960
+ color: #e2e5e9 !important; }
6961
+
6709
6962
  .icon-list-plus.scale--2x {
6710
6963
  --icon-base-size: 32px
6711
6964
  ; }
@@ -6742,6 +6995,9 @@ doc-react-playground {
6742
6995
  .icon-envelope.color--light {
6743
6996
  color: var(--color-text-lighter) !important; }
6744
6997
 
6998
+ .icon-envelope.color--white {
6999
+ color: #e2e5e9 !important; }
7000
+
6745
7001
  .icon-envelope.scale--2x {
6746
7002
  --icon-base-size: 32px
6747
7003
  ; }
@@ -6778,6 +7034,9 @@ doc-react-playground {
6778
7034
  .icon-heart.color--light {
6779
7035
  color: var(--color-text-lighter) !important; }
6780
7036
 
7037
+ .icon-heart.color--white {
7038
+ color: #e2e5e9 !important; }
7039
+
6781
7040
  .icon-heart.scale--2x {
6782
7041
  --icon-base-size: 32px
6783
7042
  ; }
@@ -6814,6 +7073,9 @@ doc-react-playground {
6814
7073
  .icon-home.color--light {
6815
7074
  color: var(--color-text-lighter) !important; }
6816
7075
 
7076
+ .icon-home.color--white {
7077
+ color: #e2e5e9 !important; }
7078
+
6817
7079
  .icon-home.scale--2x {
6818
7080
  --icon-base-size: 32px
6819
7081
  ; }
@@ -6850,6 +7112,9 @@ doc-react-playground {
6850
7112
  .icon-print.color--light {
6851
7113
  color: var(--color-text-lighter) !important; }
6852
7114
 
7115
+ .icon-print.color--white {
7116
+ color: #e2e5e9 !important; }
7117
+
6853
7118
  .icon-print.scale--2x {
6854
7119
  --icon-base-size: 32px
6855
7120
  ; }
@@ -6886,6 +7151,9 @@ doc-react-playground {
6886
7151
  .icon-font.color--light {
6887
7152
  color: var(--color-text-lighter) !important; }
6888
7153
 
7154
+ .icon-font.color--white {
7155
+ color: #e2e5e9 !important; }
7156
+
6889
7157
  .icon-font.scale--2x {
6890
7158
  --icon-base-size: 32px
6891
7159
  ; }
@@ -6922,6 +7190,9 @@ doc-react-playground {
6922
7190
  .icon-bold.color--light {
6923
7191
  color: var(--color-text-lighter) !important; }
6924
7192
 
7193
+ .icon-bold.color--white {
7194
+ color: #e2e5e9 !important; }
7195
+
6925
7196
  .icon-bold.scale--2x {
6926
7197
  --icon-base-size: 32px
6927
7198
  ; }
@@ -6958,6 +7229,9 @@ doc-react-playground {
6958
7229
  .icon-italic.color--light {
6959
7230
  color: var(--color-text-lighter) !important; }
6960
7231
 
7232
+ .icon-italic.color--white {
7233
+ color: #e2e5e9 !important; }
7234
+
6961
7235
  .icon-italic.scale--2x {
6962
7236
  --icon-base-size: 32px
6963
7237
  ; }
@@ -6994,6 +7268,9 @@ doc-react-playground {
6994
7268
  .icon-underline.color--light {
6995
7269
  color: var(--color-text-lighter) !important; }
6996
7270
 
7271
+ .icon-underline.color--white {
7272
+ color: #e2e5e9 !important; }
7273
+
6997
7274
  .icon-underline.scale--2x {
6998
7275
  --icon-base-size: 32px
6999
7276
  ; }
@@ -7030,6 +7307,9 @@ doc-react-playground {
7030
7307
  .icon-strikethrough.color--light {
7031
7308
  color: var(--color-text-lighter) !important; }
7032
7309
 
7310
+ .icon-strikethrough.color--white {
7311
+ color: #e2e5e9 !important; }
7312
+
7033
7313
  .icon-strikethrough.scale--2x {
7034
7314
  --icon-base-size: 32px
7035
7315
  ; }
@@ -7066,6 +7346,9 @@ doc-react-playground {
7066
7346
  .icon-align-left.color--light {
7067
7347
  color: var(--color-text-lighter) !important; }
7068
7348
 
7349
+ .icon-align-left.color--white {
7350
+ color: #e2e5e9 !important; }
7351
+
7069
7352
  .icon-align-left.scale--2x {
7070
7353
  --icon-base-size: 32px
7071
7354
  ; }
@@ -7102,6 +7385,9 @@ doc-react-playground {
7102
7385
  .icon-align-center.color--light {
7103
7386
  color: var(--color-text-lighter) !important; }
7104
7387
 
7388
+ .icon-align-center.color--white {
7389
+ color: #e2e5e9 !important; }
7390
+
7105
7391
  .icon-align-center.scale--2x {
7106
7392
  --icon-base-size: 32px
7107
7393
  ; }
@@ -7138,6 +7424,9 @@ doc-react-playground {
7138
7424
  .icon-align-right.color--light {
7139
7425
  color: var(--color-text-lighter) !important; }
7140
7426
 
7427
+ .icon-align-right.color--white {
7428
+ color: #e2e5e9 !important; }
7429
+
7141
7430
  .icon-align-right.scale--2x {
7142
7431
  --icon-base-size: 32px
7143
7432
  ; }
@@ -7174,6 +7463,9 @@ doc-react-playground {
7174
7463
  .icon-align-justify.color--light {
7175
7464
  color: var(--color-text-lighter) !important; }
7176
7465
 
7466
+ .icon-align-justify.color--white {
7467
+ color: #e2e5e9 !important; }
7468
+
7177
7469
  .icon-align-justify.scale--2x {
7178
7470
  --icon-base-size: 32px
7179
7471
  ; }
@@ -7210,6 +7502,9 @@ doc-react-playground {
7210
7502
  .icon-unordered-list.color--light {
7211
7503
  color: var(--color-text-lighter) !important; }
7212
7504
 
7505
+ .icon-unordered-list.color--white {
7506
+ color: #e2e5e9 !important; }
7507
+
7213
7508
  .icon-unordered-list.scale--2x {
7214
7509
  --icon-base-size: 32px
7215
7510
  ; }
@@ -7246,6 +7541,9 @@ doc-react-playground {
7246
7541
  .icon-indent-left.color--light {
7247
7542
  color: var(--color-text-lighter) !important; }
7248
7543
 
7544
+ .icon-indent-left.color--white {
7545
+ color: #e2e5e9 !important; }
7546
+
7249
7547
  .icon-indent-left.scale--2x {
7250
7548
  --icon-base-size: 32px
7251
7549
  ; }
@@ -7282,6 +7580,9 @@ doc-react-playground {
7282
7580
  .icon-indent-right.color--light {
7283
7581
  color: var(--color-text-lighter) !important; }
7284
7582
 
7583
+ .icon-indent-right.color--white {
7584
+ color: #e2e5e9 !important; }
7585
+
7285
7586
  .icon-indent-right.scale--2x {
7286
7587
  --icon-base-size: 32px
7287
7588
  ; }
@@ -7318,6 +7619,9 @@ doc-react-playground {
7318
7619
  .icon-ban-circle.color--light {
7319
7620
  color: var(--color-text-lighter) !important; }
7320
7621
 
7622
+ .icon-ban-circle.color--white {
7623
+ color: #e2e5e9 !important; }
7624
+
7321
7625
  .icon-ban-circle.scale--2x {
7322
7626
  --icon-base-size: 32px
7323
7627
  ; }
@@ -7354,6 +7658,9 @@ doc-react-playground {
7354
7658
  .icon-bell.color--light {
7355
7659
  color: var(--color-text-lighter) !important; }
7356
7660
 
7661
+ .icon-bell.color--white {
7662
+ color: #e2e5e9 !important; }
7663
+
7357
7664
  .icon-bell.scale--2x {
7358
7665
  --icon-base-size: 32px
7359
7666
  ; }
@@ -7390,6 +7697,9 @@ doc-react-playground {
7390
7697
  .icon-random.color--light {
7391
7698
  color: var(--color-text-lighter) !important; }
7392
7699
 
7700
+ .icon-random.color--white {
7701
+ color: #e2e5e9 !important; }
7702
+
7393
7703
  .icon-random.scale--2x {
7394
7704
  --icon-base-size: 32px
7395
7705
  ; }
@@ -7426,6 +7736,9 @@ doc-react-playground {
7426
7736
  .icon-settings.color--light {
7427
7737
  color: var(--color-text-lighter) !important; }
7428
7738
 
7739
+ .icon-settings.color--white {
7740
+ color: #e2e5e9 !important; }
7741
+
7429
7742
  .icon-settings.scale--2x {
7430
7743
  --icon-base-size: 32px
7431
7744
  ; }
@@ -7462,6 +7775,9 @@ doc-react-playground {
7462
7775
  .icon-package-create.color--light {
7463
7776
  color: var(--color-text-lighter) !important; }
7464
7777
 
7778
+ .icon-package-create.color--white {
7779
+ color: #e2e5e9 !important; }
7780
+
7465
7781
  .icon-package-create.scale--2x {
7466
7782
  --icon-base-size: 32px
7467
7783
  ; }
@@ -7498,6 +7814,9 @@ doc-react-playground {
7498
7814
  .icon-list-menu.color--light {
7499
7815
  color: var(--color-text-lighter) !important; }
7500
7816
 
7817
+ .icon-list-menu.color--white {
7818
+ color: #e2e5e9 !important; }
7819
+
7501
7820
  .icon-list-menu.scale--2x {
7502
7821
  --icon-base-size: 32px
7503
7822
  ; }
@@ -7534,6 +7853,9 @@ doc-react-playground {
7534
7853
  .icon-new-doc.color--light {
7535
7854
  color: var(--color-text-lighter) !important; }
7536
7855
 
7856
+ .icon-new-doc.color--white {
7857
+ color: #e2e5e9 !important; }
7858
+
7537
7859
  .icon-new-doc.scale--2x {
7538
7860
  --icon-base-size: 32px
7539
7861
  ; }
@@ -7570,6 +7892,9 @@ doc-react-playground {
7570
7892
  .icon-edit-line.color--light {
7571
7893
  color: var(--color-text-lighter) !important; }
7572
7894
 
7895
+ .icon-edit-line.color--white {
7896
+ color: #e2e5e9 !important; }
7897
+
7573
7898
  .icon-edit-line.scale--2x {
7574
7899
  --icon-base-size: 32px
7575
7900
  ; }
@@ -7606,6 +7931,9 @@ doc-react-playground {
7606
7931
  .icon-calendar-list.color--light {
7607
7932
  color: var(--color-text-lighter) !important; }
7608
7933
 
7934
+ .icon-calendar-list.color--white {
7935
+ color: #e2e5e9 !important; }
7936
+
7609
7937
  .icon-calendar-list.scale--2x {
7610
7938
  --icon-base-size: 32px
7611
7939
  ; }
@@ -7642,6 +7970,9 @@ doc-react-playground {
7642
7970
  .icon-collapse.color--light {
7643
7971
  color: var(--color-text-lighter) !important; }
7644
7972
 
7973
+ .icon-collapse.color--white {
7974
+ color: #e2e5e9 !important; }
7975
+
7645
7976
  .icon-collapse.scale--2x {
7646
7977
  --icon-base-size: 32px
7647
7978
  ; }
@@ -7678,6 +8009,9 @@ doc-react-playground {
7678
8009
  .icon-broadcast.color--light {
7679
8010
  color: var(--color-text-lighter) !important; }
7680
8011
 
8012
+ .icon-broadcast.color--white {
8013
+ color: #e2e5e9 !important; }
8014
+
7681
8015
  .icon-broadcast.scale--2x {
7682
8016
  --icon-base-size: 32px
7683
8017
  ; }
@@ -7714,6 +8048,9 @@ doc-react-playground {
7714
8048
  .icon-broadcast-create.color--light {
7715
8049
  color: var(--color-text-lighter) !important; }
7716
8050
 
8051
+ .icon-broadcast-create.color--white {
8052
+ color: #e2e5e9 !important; }
8053
+
7717
8054
  .icon-broadcast-create.scale--2x {
7718
8055
  --icon-base-size: 32px
7719
8056
  ; }
@@ -7750,6 +8087,9 @@ doc-react-playground {
7750
8087
  .icon-kill.color--light {
7751
8088
  color: var(--color-text-lighter) !important; }
7752
8089
 
8090
+ .icon-kill.color--white {
8091
+ color: #e2e5e9 !important; }
8092
+
7753
8093
  .icon-kill.scale--2x {
7754
8094
  --icon-base-size: 32px
7755
8095
  ; }
@@ -7786,6 +8126,9 @@ doc-react-playground {
7786
8126
  .icon-graphic.color--light {
7787
8127
  color: var(--color-text-lighter) !important; }
7788
8128
 
8129
+ .icon-graphic.color--white {
8130
+ color: #e2e5e9 !important; }
8131
+
7789
8132
  .icon-graphic.scale--2x {
7790
8133
  --icon-base-size: 32px
7791
8134
  ; }
@@ -7822,6 +8165,9 @@ doc-react-playground {
7822
8165
  .icon-close-thick.color--light {
7823
8166
  color: var(--color-text-lighter) !important; }
7824
8167
 
8168
+ .icon-close-thick.color--white {
8169
+ color: #e2e5e9 !important; }
8170
+
7825
8171
  .icon-close-thick.scale--2x {
7826
8172
  --icon-base-size: 32px
7827
8173
  ; }
@@ -7858,6 +8204,9 @@ doc-react-playground {
7858
8204
  .icon-move.color--light {
7859
8205
  color: var(--color-text-lighter) !important; }
7860
8206
 
8207
+ .icon-move.color--white {
8208
+ color: #e2e5e9 !important; }
8209
+
7861
8210
  .icon-move.scale--2x {
7862
8211
  --icon-base-size: 32px
7863
8212
  ; }
@@ -7894,6 +8243,9 @@ doc-react-playground {
7894
8243
  .icon-takes-package.color--light {
7895
8244
  color: var(--color-text-lighter) !important; }
7896
8245
 
8246
+ .icon-takes-package.color--white {
8247
+ color: #e2e5e9 !important; }
8248
+
7897
8249
  .icon-takes-package.scale--2x {
7898
8250
  --icon-base-size: 32px
7899
8251
  ; }
@@ -7930,6 +8282,9 @@ doc-react-playground {
7930
8282
  .icon-highlight-package.color--light {
7931
8283
  color: var(--color-text-lighter) !important; }
7932
8284
 
8285
+ .icon-highlight-package.color--white {
8286
+ color: #e2e5e9 !important; }
8287
+
7933
8288
  .icon-highlight-package.scale--2x {
7934
8289
  --icon-base-size: 32px
7935
8290
  ; }
@@ -7966,6 +8321,9 @@ doc-react-playground {
7966
8321
  .icon-preview-mode.color--light {
7967
8322
  color: var(--color-text-lighter) !important; }
7968
8323
 
8324
+ .icon-preview-mode.color--white {
8325
+ color: #e2e5e9 !important; }
8326
+
7969
8327
  .icon-preview-mode.scale--2x {
7970
8328
  --icon-base-size: 32px
7971
8329
  ; }
@@ -8002,6 +8360,9 @@ doc-react-playground {
8002
8360
  .icon-unlocked.color--light {
8003
8361
  color: var(--color-text-lighter) !important; }
8004
8362
 
8363
+ .icon-unlocked.color--white {
8364
+ color: #e2e5e9 !important; }
8365
+
8005
8366
  .icon-unlocked.scale--2x {
8006
8367
  --icon-base-size: 32px
8007
8368
  ; }
@@ -8038,6 +8399,9 @@ doc-react-playground {
8038
8399
  .icon-code.color--light {
8039
8400
  color: var(--color-text-lighter) !important; }
8040
8401
 
8402
+ .icon-code.color--white {
8403
+ color: #e2e5e9 !important; }
8404
+
8041
8405
  .icon-code.scale--2x {
8042
8406
  --icon-base-size: 32px
8043
8407
  ; }
@@ -8074,6 +8438,9 @@ doc-react-playground {
8074
8438
  .icon-cut.color--light {
8075
8439
  color: var(--color-text-lighter) !important; }
8076
8440
 
8441
+ .icon-cut.color--white {
8442
+ color: #e2e5e9 !important; }
8443
+
8077
8444
  .icon-cut.scale--2x {
8078
8445
  --icon-base-size: 32px
8079
8446
  ; }
@@ -8110,6 +8477,9 @@ doc-react-playground {
8110
8477
  .icon-paste.color--light {
8111
8478
  color: var(--color-text-lighter) !important; }
8112
8479
 
8480
+ .icon-paste.color--white {
8481
+ color: #e2e5e9 !important; }
8482
+
8113
8483
  .icon-paste.scale--2x {
8114
8484
  --icon-base-size: 32px
8115
8485
  ; }
@@ -8146,6 +8516,9 @@ doc-react-playground {
8146
8516
  .icon-arrow-left.color--light {
8147
8517
  color: var(--color-text-lighter) !important; }
8148
8518
 
8519
+ .icon-arrow-left.color--white {
8520
+ color: #e2e5e9 !important; }
8521
+
8149
8522
  .icon-arrow-left.scale--2x {
8150
8523
  --icon-base-size: 32px
8151
8524
  ; }
@@ -8182,6 +8555,9 @@ doc-react-playground {
8182
8555
  .icon-arrow-right.color--light {
8183
8556
  color: var(--color-text-lighter) !important; }
8184
8557
 
8558
+ .icon-arrow-right.color--white {
8559
+ color: #e2e5e9 !important; }
8560
+
8185
8561
  .icon-arrow-right.scale--2x {
8186
8562
  --icon-base-size: 32px
8187
8563
  ; }
@@ -8218,6 +8594,9 @@ doc-react-playground {
8218
8594
  .icon-info-large.color--light {
8219
8595
  color: var(--color-text-lighter) !important; }
8220
8596
 
8597
+ .icon-info-large.color--white {
8598
+ color: #e2e5e9 !important; }
8599
+
8221
8600
  .icon-info-large.scale--2x {
8222
8601
  --icon-base-size: 32px
8223
8602
  ; }
@@ -8254,6 +8633,9 @@ doc-react-playground {
8254
8633
  .icon-help-large.color--light {
8255
8634
  color: var(--color-text-lighter) !important; }
8256
8635
 
8636
+ .icon-help-large.color--white {
8637
+ color: #e2e5e9 !important; }
8638
+
8257
8639
  .icon-help-large.scale--2x {
8258
8640
  --icon-base-size: 32px
8259
8641
  ; }
@@ -8290,6 +8672,9 @@ doc-react-playground {
8290
8672
  .icon-attachment.color--light {
8291
8673
  color: var(--color-text-lighter) !important; }
8292
8674
 
8675
+ .icon-attachment.color--white {
8676
+ color: #e2e5e9 !important; }
8677
+
8293
8678
  .icon-attachment.scale--2x {
8294
8679
  --icon-base-size: 32px
8295
8680
  ; }
@@ -8326,6 +8711,9 @@ doc-react-playground {
8326
8711
  .icon-attachment-large.color--light {
8327
8712
  color: var(--color-text-lighter) !important; }
8328
8713
 
8714
+ .icon-attachment-large.color--white {
8715
+ color: #e2e5e9 !important; }
8716
+
8329
8717
  .icon-attachment-large.scale--2x {
8330
8718
  --icon-base-size: 32px
8331
8719
  ; }
@@ -8362,6 +8750,9 @@ doc-react-playground {
8362
8750
  .icon-table.color--light {
8363
8751
  color: var(--color-text-lighter) !important; }
8364
8752
 
8753
+ .icon-table.color--white {
8754
+ color: #e2e5e9 !important; }
8755
+
8365
8756
  .icon-table.scale--2x {
8366
8757
  --icon-base-size: 32px
8367
8758
  ; }
@@ -8398,6 +8789,9 @@ doc-react-playground {
8398
8789
  .icon-ordered-list.color--light {
8399
8790
  color: var(--color-text-lighter) !important; }
8400
8791
 
8792
+ .icon-ordered-list.color--white {
8793
+ color: #e2e5e9 !important; }
8794
+
8401
8795
  .icon-ordered-list.scale--2x {
8402
8796
  --icon-base-size: 32px
8403
8797
  ; }
@@ -8434,6 +8828,9 @@ doc-react-playground {
8434
8828
  .icon-heading-1.color--light {
8435
8829
  color: var(--color-text-lighter) !important; }
8436
8830
 
8831
+ .icon-heading-1.color--white {
8832
+ color: #e2e5e9 !important; }
8833
+
8437
8834
  .icon-heading-1.scale--2x {
8438
8835
  --icon-base-size: 32px
8439
8836
  ; }
@@ -8470,6 +8867,9 @@ doc-react-playground {
8470
8867
  .icon-heading-2.color--light {
8471
8868
  color: var(--color-text-lighter) !important; }
8472
8869
 
8870
+ .icon-heading-2.color--white {
8871
+ color: #e2e5e9 !important; }
8872
+
8473
8873
  .icon-heading-2.scale--2x {
8474
8874
  --icon-base-size: 32px
8475
8875
  ; }
@@ -8506,6 +8906,9 @@ doc-react-playground {
8506
8906
  .icon-heading-3.color--light {
8507
8907
  color: var(--color-text-lighter) !important; }
8508
8908
 
8909
+ .icon-heading-3.color--white {
8910
+ color: #e2e5e9 !important; }
8911
+
8509
8912
  .icon-heading-3.scale--2x {
8510
8913
  --icon-base-size: 32px
8511
8914
  ; }
@@ -8542,6 +8945,9 @@ doc-react-playground {
8542
8945
  .icon-heading-4.color--light {
8543
8946
  color: var(--color-text-lighter) !important; }
8544
8947
 
8948
+ .icon-heading-4.color--white {
8949
+ color: #e2e5e9 !important; }
8950
+
8545
8951
  .icon-heading-4.scale--2x {
8546
8952
  --icon-base-size: 32px
8547
8953
  ; }
@@ -8578,6 +8984,9 @@ doc-react-playground {
8578
8984
  .icon-heading-5.color--light {
8579
8985
  color: var(--color-text-lighter) !important; }
8580
8986
 
8987
+ .icon-heading-5.color--white {
8988
+ color: #e2e5e9 !important; }
8989
+
8581
8990
  .icon-heading-5.scale--2x {
8582
8991
  --icon-base-size: 32px
8583
8992
  ; }
@@ -8614,6 +9023,9 @@ doc-react-playground {
8614
9023
  .icon-heading-6.color--light {
8615
9024
  color: var(--color-text-lighter) !important; }
8616
9025
 
9026
+ .icon-heading-6.color--white {
9027
+ color: #e2e5e9 !important; }
9028
+
8617
9029
  .icon-heading-6.scale--2x {
8618
9030
  --icon-base-size: 32px
8619
9031
  ; }
@@ -8650,6 +9062,9 @@ doc-react-playground {
8650
9062
  .icon-quote.color--light {
8651
9063
  color: var(--color-text-lighter) !important; }
8652
9064
 
9065
+ .icon-quote.color--white {
9066
+ color: #e2e5e9 !important; }
9067
+
8653
9068
  .icon-quote.scale--2x {
8654
9069
  --icon-base-size: 32px
8655
9070
  ; }
@@ -8686,6 +9101,9 @@ doc-react-playground {
8686
9101
  .icon-multiedit.color--light {
8687
9102
  color: var(--color-text-lighter) !important; }
8688
9103
 
9104
+ .icon-multiedit.color--white {
9105
+ color: #e2e5e9 !important; }
9106
+
8689
9107
  .icon-multiedit.scale--2x {
8690
9108
  --icon-base-size: 32px
8691
9109
  ; }
@@ -8722,6 +9140,9 @@ doc-react-playground {
8722
9140
  .icon-phone.color--light {
8723
9141
  color: var(--color-text-lighter) !important; }
8724
9142
 
9143
+ .icon-phone.color--white {
9144
+ color: #e2e5e9 !important; }
9145
+
8725
9146
  .icon-phone.scale--2x {
8726
9147
  --icon-base-size: 32px
8727
9148
  ; }
@@ -8758,6 +9179,9 @@ doc-react-playground {
8758
9179
  .icon-mobile.color--light {
8759
9180
  color: var(--color-text-lighter) !important; }
8760
9181
 
9182
+ .icon-mobile.color--white {
9183
+ color: #e2e5e9 !important; }
9184
+
8761
9185
  .icon-mobile.scale--2x {
8762
9186
  --icon-base-size: 32px
8763
9187
  ; }
@@ -8794,6 +9218,9 @@ doc-react-playground {
8794
9218
  .icon-twitter.color--light {
8795
9219
  color: var(--color-text-lighter) !important; }
8796
9220
 
9221
+ .icon-twitter.color--white {
9222
+ color: #e2e5e9 !important; }
9223
+
8797
9224
  .icon-twitter.scale--2x {
8798
9225
  --icon-base-size: 32px
8799
9226
  ; }
@@ -8830,6 +9257,9 @@ doc-react-playground {
8830
9257
  .icon-facebook.color--light {
8831
9258
  color: var(--color-text-lighter) !important; }
8832
9259
 
9260
+ .icon-facebook.color--white {
9261
+ color: #e2e5e9 !important; }
9262
+
8833
9263
  .icon-facebook.scale--2x {
8834
9264
  --icon-base-size: 32px
8835
9265
  ; }
@@ -8866,6 +9296,9 @@ doc-react-playground {
8866
9296
  .icon-linked-in.color--light {
8867
9297
  color: var(--color-text-lighter) !important; }
8868
9298
 
9299
+ .icon-linked-in.color--white {
9300
+ color: #e2e5e9 !important; }
9301
+
8869
9302
  .icon-linked-in.scale--2x {
8870
9303
  --icon-base-size: 32px
8871
9304
  ; }
@@ -8902,6 +9335,9 @@ doc-react-playground {
8902
9335
  .icon-twitter-circle.color--light {
8903
9336
  color: var(--color-text-lighter) !important; }
8904
9337
 
9338
+ .icon-twitter-circle.color--white {
9339
+ color: #e2e5e9 !important; }
9340
+
8905
9341
  .icon-twitter-circle.scale--2x {
8906
9342
  --icon-base-size: 32px
8907
9343
  ; }
@@ -8938,6 +9374,9 @@ doc-react-playground {
8938
9374
  .icon-facebook-circle.color--light {
8939
9375
  color: var(--color-text-lighter) !important; }
8940
9376
 
9377
+ .icon-facebook-circle.color--white {
9378
+ color: #e2e5e9 !important; }
9379
+
8941
9380
  .icon-facebook-circle.scale--2x {
8942
9381
  --icon-base-size: 32px
8943
9382
  ; }
@@ -8974,6 +9413,9 @@ doc-react-playground {
8974
9413
  .icon-linked-in-circle.color--light {
8975
9414
  color: var(--color-text-lighter) !important; }
8976
9415
 
9416
+ .icon-linked-in-circle.color--white {
9417
+ color: #e2e5e9 !important; }
9418
+
8977
9419
  .icon-linked-in-circle.scale--2x {
8978
9420
  --icon-base-size: 32px
8979
9421
  ; }
@@ -9010,6 +9452,9 @@ doc-react-playground {
9010
9452
  .icon-recurring.color--light {
9011
9453
  color: var(--color-text-lighter) !important; }
9012
9454
 
9455
+ .icon-recurring.color--white {
9456
+ color: #e2e5e9 !important; }
9457
+
9013
9458
  .icon-recurring.scale--2x {
9014
9459
  --icon-base-size: 32px
9015
9460
  ; }
@@ -9046,6 +9491,9 @@ doc-react-playground {
9046
9491
  .icon-paragraph.color--light {
9047
9492
  color: var(--color-text-lighter) !important; }
9048
9493
 
9494
+ .icon-paragraph.color--white {
9495
+ color: #e2e5e9 !important; }
9496
+
9049
9497
  .icon-paragraph.scale--2x {
9050
9498
  --icon-base-size: 32px
9051
9499
  ; }
@@ -9082,6 +9530,9 @@ doc-react-playground {
9082
9530
  .icon-suggestion.color--light {
9083
9531
  color: var(--color-text-lighter) !important; }
9084
9532
 
9533
+ .icon-suggestion.color--white {
9534
+ color: #e2e5e9 !important; }
9535
+
9085
9536
  .icon-suggestion.scale--2x {
9086
9537
  --icon-base-size: 32px
9087
9538
  ; }
@@ -9118,6 +9569,9 @@ doc-react-playground {
9118
9569
  .icon-event.color--light {
9119
9570
  color: var(--color-text-lighter) !important; }
9120
9571
 
9572
+ .icon-event.color--white {
9573
+ color: #e2e5e9 !important; }
9574
+
9121
9575
  .icon-event.scale--2x {
9122
9576
  --icon-base-size: 32px
9123
9577
  ; }
@@ -9154,6 +9608,9 @@ doc-react-playground {
9154
9608
  .icon-kanban-view.color--light {
9155
9609
  color: var(--color-text-lighter) !important; }
9156
9610
 
9611
+ .icon-kanban-view.color--white {
9612
+ color: #e2e5e9 !important; }
9613
+
9157
9614
  .icon-kanban-view.scale--2x {
9158
9615
  --icon-base-size: 32px
9159
9616
  ; }
@@ -9190,6 +9647,9 @@ doc-react-playground {
9190
9647
  .icon-subscript.color--light {
9191
9648
  color: var(--color-text-lighter) !important; }
9192
9649
 
9650
+ .icon-subscript.color--white {
9651
+ color: #e2e5e9 !important; }
9652
+
9193
9653
  .icon-subscript.scale--2x {
9194
9654
  --icon-base-size: 32px
9195
9655
  ; }
@@ -9226,6 +9686,9 @@ doc-react-playground {
9226
9686
  .icon-superscript.color--light {
9227
9687
  color: var(--color-text-lighter) !important; }
9228
9688
 
9689
+ .icon-superscript.color--white {
9690
+ color: #e2e5e9 !important; }
9691
+
9229
9692
  .icon-superscript.scale--2x {
9230
9693
  --icon-base-size: 32px
9231
9694
  ; }
@@ -9262,6 +9725,9 @@ doc-react-playground {
9262
9725
  .icon-clear-format.color--light {
9263
9726
  color: var(--color-text-lighter) !important; }
9264
9727
 
9728
+ .icon-clear-format.color--white {
9729
+ color: #e2e5e9 !important; }
9730
+
9265
9731
  .icon-clear-format.scale--2x {
9266
9732
  --icon-base-size: 32px
9267
9733
  ; }
@@ -9298,6 +9764,9 @@ doc-react-playground {
9298
9764
  .icon-preformatted.color--light {
9299
9765
  color: var(--color-text-lighter) !important; }
9300
9766
 
9767
+ .icon-preformatted.color--white {
9768
+ color: #e2e5e9 !important; }
9769
+
9301
9770
  .icon-preformatted.scale--2x {
9302
9771
  --icon-base-size: 32px
9303
9772
  ; }
@@ -9334,6 +9803,9 @@ doc-react-playground {
9334
9803
  .icon-crop.color--light {
9335
9804
  color: var(--color-text-lighter) !important; }
9336
9805
 
9806
+ .icon-crop.color--white {
9807
+ color: #e2e5e9 !important; }
9808
+
9337
9809
  .icon-crop.scale--2x {
9338
9810
  --icon-base-size: 32px
9339
9811
  ; }
@@ -9370,6 +9842,9 @@ doc-react-playground {
9370
9842
  .icon-flip-horizontal.color--light {
9371
9843
  color: var(--color-text-lighter) !important; }
9372
9844
 
9845
+ .icon-flip-horizontal.color--white {
9846
+ color: #e2e5e9 !important; }
9847
+
9373
9848
  .icon-flip-horizontal.scale--2x {
9374
9849
  --icon-base-size: 32px
9375
9850
  ; }
@@ -9406,6 +9881,9 @@ doc-react-playground {
9406
9881
  .icon-flip-vertical.color--light {
9407
9882
  color: var(--color-text-lighter) !important; }
9408
9883
 
9884
+ .icon-flip-vertical.color--white {
9885
+ color: #e2e5e9 !important; }
9886
+
9409
9887
  .icon-flip-vertical.scale--2x {
9410
9888
  --icon-base-size: 32px
9411
9889
  ; }
@@ -9442,6 +9920,9 @@ doc-react-playground {
9442
9920
  .icon-rotate-right.color--light {
9443
9921
  color: var(--color-text-lighter) !important; }
9444
9922
 
9923
+ .icon-rotate-right.color--white {
9924
+ color: #e2e5e9 !important; }
9925
+
9445
9926
  .icon-rotate-right.scale--2x {
9446
9927
  --icon-base-size: 32px
9447
9928
  ; }
@@ -9478,6 +9959,9 @@ doc-react-playground {
9478
9959
  .icon-rotate-left.color--light {
9479
9960
  color: var(--color-text-lighter) !important; }
9480
9961
 
9962
+ .icon-rotate-left.color--white {
9963
+ color: #e2e5e9 !important; }
9964
+
9481
9965
  .icon-rotate-left.scale--2x {
9482
9966
  --icon-base-size: 32px
9483
9967
  ; }
@@ -9514,6 +9998,9 @@ doc-react-playground {
9514
9998
  .icon-business.color--light {
9515
9999
  color: var(--color-text-lighter) !important; }
9516
10000
 
10001
+ .icon-business.color--white {
10002
+ color: #e2e5e9 !important; }
10003
+
9517
10004
  .icon-business.scale--2x {
9518
10005
  --icon-base-size: 32px
9519
10006
  ; }
@@ -9550,6 +10037,9 @@ doc-react-playground {
9550
10037
  .icon-paywall.color--light {
9551
10038
  color: var(--color-text-lighter) !important; }
9552
10039
 
10040
+ .icon-paywall.color--white {
10041
+ color: #e2e5e9 !important; }
10042
+
9553
10043
  .icon-paywall.scale--2x {
9554
10044
  --icon-base-size: 32px
9555
10045
  ; }
@@ -9586,6 +10076,9 @@ doc-react-playground {
9586
10076
  .icon-analytics.color--light {
9587
10077
  color: var(--color-text-lighter) !important; }
9588
10078
 
10079
+ .icon-analytics.color--white {
10080
+ color: #e2e5e9 !important; }
10081
+
9589
10082
  .icon-analytics.scale--2x {
9590
10083
  --icon-base-size: 32px
9591
10084
  ; }
@@ -9622,6 +10115,9 @@ doc-react-playground {
9622
10115
  .icon-amp.color--light {
9623
10116
  color: var(--color-text-lighter) !important; }
9624
10117
 
10118
+ .icon-amp.color--white {
10119
+ color: #e2e5e9 !important; }
10120
+
9625
10121
  .icon-amp.scale--2x {
9626
10122
  --icon-base-size: 32px
9627
10123
  ; }
@@ -9658,6 +10154,9 @@ doc-react-playground {
9658
10154
  .icon-undo.color--light {
9659
10155
  color: var(--color-text-lighter) !important; }
9660
10156
 
10157
+ .icon-undo.color--white {
10158
+ color: #e2e5e9 !important; }
10159
+
9661
10160
  .icon-undo.scale--2x {
9662
10161
  --icon-base-size: 32px
9663
10162
  ; }
@@ -9694,6 +10193,9 @@ doc-react-playground {
9694
10193
  .icon-redo.color--light {
9695
10194
  color: var(--color-text-lighter) !important; }
9696
10195
 
10196
+ .icon-redo.color--white {
10197
+ color: #e2e5e9 !important; }
10198
+
9697
10199
  .icon-redo.scale--2x {
9698
10200
  --icon-base-size: 32px
9699
10201
  ; }
@@ -9730,6 +10232,9 @@ doc-react-playground {
9730
10232
  .icon-instagram.color--light {
9731
10233
  color: var(--color-text-lighter) !important; }
9732
10234
 
10235
+ .icon-instagram.color--white {
10236
+ color: #e2e5e9 !important; }
10237
+
9733
10238
  .icon-instagram.scale--2x {
9734
10239
  --icon-base-size: 32px
9735
10240
  ; }
@@ -9766,6 +10271,9 @@ doc-react-playground {
9766
10271
  .icon-play.color--light {
9767
10272
  color: var(--color-text-lighter) !important; }
9768
10273
 
10274
+ .icon-play.color--white {
10275
+ color: #e2e5e9 !important; }
10276
+
9769
10277
  .icon-play.scale--2x {
9770
10278
  --icon-base-size: 32px
9771
10279
  ; }
@@ -9802,6 +10310,9 @@ doc-react-playground {
9802
10310
  .icon-stop.color--light {
9803
10311
  color: var(--color-text-lighter) !important; }
9804
10312
 
10313
+ .icon-stop.color--white {
10314
+ color: #e2e5e9 !important; }
10315
+
9805
10316
  .icon-stop.scale--2x {
9806
10317
  --icon-base-size: 32px
9807
10318
  ; }
@@ -9838,6 +10349,9 @@ doc-react-playground {
9838
10349
  .icon-pause.color--light {
9839
10350
  color: var(--color-text-lighter) !important; }
9840
10351
 
10352
+ .icon-pause.color--white {
10353
+ color: #e2e5e9 !important; }
10354
+
9841
10355
  .icon-pause.scale--2x {
9842
10356
  --icon-base-size: 32px
9843
10357
  ; }
@@ -9874,6 +10388,9 @@ doc-react-playground {
9874
10388
  .icon-fast_rewind.color--light {
9875
10389
  color: var(--color-text-lighter) !important; }
9876
10390
 
10391
+ .icon-fast_rewind.color--white {
10392
+ color: #e2e5e9 !important; }
10393
+
9877
10394
  .icon-fast_rewind.scale--2x {
9878
10395
  --icon-base-size: 32px
9879
10396
  ; }
@@ -9910,6 +10427,9 @@ doc-react-playground {
9910
10427
  .icon-fast_forward.color--light {
9911
10428
  color: var(--color-text-lighter) !important; }
9912
10429
 
10430
+ .icon-fast_forward.color--white {
10431
+ color: #e2e5e9 !important; }
10432
+
9913
10433
  .icon-fast_forward.scale--2x {
9914
10434
  --icon-base-size: 32px
9915
10435
  ; }
@@ -9946,6 +10466,9 @@ doc-react-playground {
9946
10466
  .icon-skip_previous.color--light {
9947
10467
  color: var(--color-text-lighter) !important; }
9948
10468
 
10469
+ .icon-skip_previous.color--white {
10470
+ color: #e2e5e9 !important; }
10471
+
9949
10472
  .icon-skip_previous.scale--2x {
9950
10473
  --icon-base-size: 32px
9951
10474
  ; }
@@ -9982,6 +10505,9 @@ doc-react-playground {
9982
10505
  .icon-skip_next.color--light {
9983
10506
  color: var(--color-text-lighter) !important; }
9984
10507
 
10508
+ .icon-skip_next.color--white {
10509
+ color: #e2e5e9 !important; }
10510
+
9985
10511
  .icon-skip_next.scale--2x {
9986
10512
  --icon-base-size: 32px
9987
10513
  ; }
@@ -10018,6 +10544,9 @@ doc-react-playground {
10018
10544
  .icon-add-image.color--light {
10019
10545
  color: var(--color-text-lighter) !important; }
10020
10546
 
10547
+ .icon-add-image.color--white {
10548
+ color: #e2e5e9 !important; }
10549
+
10021
10550
  .icon-add-image.scale--2x {
10022
10551
  --icon-base-size: 32px
10023
10552
  ; }
@@ -10054,6 +10583,9 @@ doc-react-playground {
10054
10583
  .icon-add-gallery.color--light {
10055
10584
  color: var(--color-text-lighter) !important; }
10056
10585
 
10586
+ .icon-add-gallery.color--white {
10587
+ color: #e2e5e9 !important; }
10588
+
10057
10589
  .icon-add-gallery.scale--2x {
10058
10590
  --icon-base-size: 32px
10059
10591
  ; }
@@ -10090,6 +10622,9 @@ doc-react-playground {
10090
10622
  .icon-text-format.color--light {
10091
10623
  color: var(--color-text-lighter) !important; }
10092
10624
 
10625
+ .icon-text-format.color--white {
10626
+ color: #e2e5e9 !important; }
10627
+
10093
10628
  .icon-text-format.scale--2x {
10094
10629
  --icon-base-size: 32px
10095
10630
  ; }
@@ -10126,6 +10661,9 @@ doc-react-playground {
10126
10661
  .icon-to-uppercase.color--light {
10127
10662
  color: var(--color-text-lighter) !important; }
10128
10663
 
10664
+ .icon-to-uppercase.color--white {
10665
+ color: #e2e5e9 !important; }
10666
+
10129
10667
  .icon-to-uppercase.scale--2x {
10130
10668
  --icon-base-size: 32px
10131
10669
  ; }
@@ -10162,6 +10700,9 @@ doc-react-playground {
10162
10700
  .icon-to-lowercase.color--light {
10163
10701
  color: var(--color-text-lighter) !important; }
10164
10702
 
10703
+ .icon-to-lowercase.color--white {
10704
+ color: #e2e5e9 !important; }
10705
+
10165
10706
  .icon-to-lowercase.scale--2x {
10166
10707
  --icon-base-size: 32px
10167
10708
  ; }
@@ -10198,6 +10739,9 @@ doc-react-playground {
10198
10739
  .icon-arrow-small.color--light {
10199
10740
  color: var(--color-text-lighter) !important; }
10200
10741
 
10742
+ .icon-arrow-small.color--white {
10743
+ color: #e2e5e9 !important; }
10744
+
10201
10745
  .icon-arrow-small.scale--2x {
10202
10746
  --icon-base-size: 32px
10203
10747
  ; }
@@ -10234,6 +10778,9 @@ doc-react-playground {
10234
10778
  .icon-clear-all.color--light {
10235
10779
  color: var(--color-text-lighter) !important; }
10236
10780
 
10781
+ .icon-clear-all.color--white {
10782
+ color: #e2e5e9 !important; }
10783
+
10237
10784
  .icon-clear-all.scale--2x {
10238
10785
  --icon-base-size: 32px
10239
10786
  ; }
@@ -10270,6 +10817,9 @@ doc-react-playground {
10270
10817
  .icon-rundown.color--light {
10271
10818
  color: var(--color-text-lighter) !important; }
10272
10819
 
10820
+ .icon-rundown.color--white {
10821
+ color: #e2e5e9 !important; }
10822
+
10273
10823
  .icon-rundown.scale--2x {
10274
10824
  --icon-base-size: 32px
10275
10825
  ; }
@@ -10282,6 +10832,279 @@ doc-react-playground {
10282
10832
  --icon-base-size: 64px
10283
10833
  ; }
10284
10834
 
10835
+ .icon-photo-cancel:before {
10836
+ content: ""; }
10837
+
10838
+ .icon-photo-cancel.color--default {
10839
+ color: var(--color-icon-default); }
10840
+
10841
+ .icon-photo-cancel.color--primary {
10842
+ color: var(--sd-colour-primary) !important; }
10843
+
10844
+ .icon-photo-cancel.color--success {
10845
+ color: var(--sd-colour-success) !important; }
10846
+
10847
+ .icon-photo-cancel.color--warning {
10848
+ color: var(--sd-colour-warning) !important; }
10849
+
10850
+ .icon-photo-cancel.color--alert {
10851
+ color: var(--sd-colour-alert) !important; }
10852
+
10853
+ .icon-photo-cancel.color--highlight {
10854
+ color: var(--sd-colour-highlight) !important; }
10855
+
10856
+ .icon-photo-cancel.color--light {
10857
+ color: var(--color-text-lighter) !important; }
10858
+
10859
+ .icon-photo-cancel.color--white {
10860
+ color: #e2e5e9 !important; }
10861
+
10862
+ .icon-photo-cancel.scale--2x {
10863
+ --icon-base-size: 32px
10864
+ ; }
10865
+
10866
+ .icon-photo-cancel.scale--3x {
10867
+ --icon-base-size: 48px
10868
+ ; }
10869
+
10870
+ .icon-photo-cancel.scale--4x {
10871
+ --icon-base-size: 64px
10872
+ ; }
10873
+
10874
+ .icon-video-cancel:before {
10875
+ content: ""; }
10876
+
10877
+ .icon-video-cancel.color--default {
10878
+ color: var(--color-icon-default); }
10879
+
10880
+ .icon-video-cancel.color--primary {
10881
+ color: var(--sd-colour-primary) !important; }
10882
+
10883
+ .icon-video-cancel.color--success {
10884
+ color: var(--sd-colour-success) !important; }
10885
+
10886
+ .icon-video-cancel.color--warning {
10887
+ color: var(--sd-colour-warning) !important; }
10888
+
10889
+ .icon-video-cancel.color--alert {
10890
+ color: var(--sd-colour-alert) !important; }
10891
+
10892
+ .icon-video-cancel.color--highlight {
10893
+ color: var(--sd-colour-highlight) !important; }
10894
+
10895
+ .icon-video-cancel.color--light {
10896
+ color: var(--color-text-lighter) !important; }
10897
+
10898
+ .icon-video-cancel.color--white {
10899
+ color: #e2e5e9 !important; }
10900
+
10901
+ .icon-video-cancel.scale--2x {
10902
+ --icon-base-size: 32px
10903
+ ; }
10904
+
10905
+ .icon-video-cancel.scale--3x {
10906
+ --icon-base-size: 48px
10907
+ ; }
10908
+
10909
+ .icon-video-cancel.scale--4x {
10910
+ --icon-base-size: 64px
10911
+ ; }
10912
+
10913
+ .icon-text-cancel:before {
10914
+ content: ""; }
10915
+
10916
+ .icon-text-cancel.color--default {
10917
+ color: var(--color-icon-default); }
10918
+
10919
+ .icon-text-cancel.color--primary {
10920
+ color: var(--sd-colour-primary) !important; }
10921
+
10922
+ .icon-text-cancel.color--success {
10923
+ color: var(--sd-colour-success) !important; }
10924
+
10925
+ .icon-text-cancel.color--warning {
10926
+ color: var(--sd-colour-warning) !important; }
10927
+
10928
+ .icon-text-cancel.color--alert {
10929
+ color: var(--sd-colour-alert) !important; }
10930
+
10931
+ .icon-text-cancel.color--highlight {
10932
+ color: var(--sd-colour-highlight) !important; }
10933
+
10934
+ .icon-text-cancel.color--light {
10935
+ color: var(--color-text-lighter) !important; }
10936
+
10937
+ .icon-text-cancel.color--white {
10938
+ color: #e2e5e9 !important; }
10939
+
10940
+ .icon-text-cancel.scale--2x {
10941
+ --icon-base-size: 32px
10942
+ ; }
10943
+
10944
+ .icon-text-cancel.scale--3x {
10945
+ --icon-base-size: 48px
10946
+ ; }
10947
+
10948
+ .icon-text-cancel.scale--4x {
10949
+ --icon-base-size: 64px
10950
+ ; }
10951
+
10952
+ .icon-file-cancel:before {
10953
+ content: ""; }
10954
+
10955
+ .icon-file-cancel.color--default {
10956
+ color: var(--color-icon-default); }
10957
+
10958
+ .icon-file-cancel.color--primary {
10959
+ color: var(--sd-colour-primary) !important; }
10960
+
10961
+ .icon-file-cancel.color--success {
10962
+ color: var(--sd-colour-success) !important; }
10963
+
10964
+ .icon-file-cancel.color--warning {
10965
+ color: var(--sd-colour-warning) !important; }
10966
+
10967
+ .icon-file-cancel.color--alert {
10968
+ color: var(--sd-colour-alert) !important; }
10969
+
10970
+ .icon-file-cancel.color--highlight {
10971
+ color: var(--sd-colour-highlight) !important; }
10972
+
10973
+ .icon-file-cancel.color--light {
10974
+ color: var(--color-text-lighter) !important; }
10975
+
10976
+ .icon-file-cancel.color--white {
10977
+ color: #e2e5e9 !important; }
10978
+
10979
+ .icon-file-cancel.scale--2x {
10980
+ --icon-base-size: 32px
10981
+ ; }
10982
+
10983
+ .icon-file-cancel.scale--3x {
10984
+ --icon-base-size: 48px
10985
+ ; }
10986
+
10987
+ .icon-file-cancel.scale--4x {
10988
+ --icon-base-size: 64px
10989
+ ; }
10990
+
10991
+ .icon-audio-cancel:before {
10992
+ content: ""; }
10993
+
10994
+ .icon-audio-cancel.color--default {
10995
+ color: var(--color-icon-default); }
10996
+
10997
+ .icon-audio-cancel.color--primary {
10998
+ color: var(--sd-colour-primary) !important; }
10999
+
11000
+ .icon-audio-cancel.color--success {
11001
+ color: var(--sd-colour-success) !important; }
11002
+
11003
+ .icon-audio-cancel.color--warning {
11004
+ color: var(--sd-colour-warning) !important; }
11005
+
11006
+ .icon-audio-cancel.color--alert {
11007
+ color: var(--sd-colour-alert) !important; }
11008
+
11009
+ .icon-audio-cancel.color--highlight {
11010
+ color: var(--sd-colour-highlight) !important; }
11011
+
11012
+ .icon-audio-cancel.color--light {
11013
+ color: var(--color-text-lighter) !important; }
11014
+
11015
+ .icon-audio-cancel.color--white {
11016
+ color: #e2e5e9 !important; }
11017
+
11018
+ .icon-audio-cancel.scale--2x {
11019
+ --icon-base-size: 32px
11020
+ ; }
11021
+
11022
+ .icon-audio-cancel.scale--3x {
11023
+ --icon-base-size: 48px
11024
+ ; }
11025
+
11026
+ .icon-audio-cancel.scale--4x {
11027
+ --icon-base-size: 64px
11028
+ ; }
11029
+
11030
+ .icon-list-alt-cancel:before {
11031
+ content: ""; }
11032
+
11033
+ .icon-list-alt-cancel.color--default {
11034
+ color: var(--color-icon-default); }
11035
+
11036
+ .icon-list-alt-cancel.color--primary {
11037
+ color: var(--sd-colour-primary) !important; }
11038
+
11039
+ .icon-list-alt-cancel.color--success {
11040
+ color: var(--sd-colour-success) !important; }
11041
+
11042
+ .icon-list-alt-cancel.color--warning {
11043
+ color: var(--sd-colour-warning) !important; }
11044
+
11045
+ .icon-list-alt-cancel.color--alert {
11046
+ color: var(--sd-colour-alert) !important; }
11047
+
11048
+ .icon-list-alt-cancel.color--highlight {
11049
+ color: var(--sd-colour-highlight) !important; }
11050
+
11051
+ .icon-list-alt-cancel.color--light {
11052
+ color: var(--color-text-lighter) !important; }
11053
+
11054
+ .icon-list-alt-cancel.color--white {
11055
+ color: #e2e5e9 !important; }
11056
+
11057
+ .icon-list-alt-cancel.scale--2x {
11058
+ --icon-base-size: 32px
11059
+ ; }
11060
+
11061
+ .icon-list-alt-cancel.scale--3x {
11062
+ --icon-base-size: 48px
11063
+ ; }
11064
+
11065
+ .icon-list-alt-cancel.scale--4x {
11066
+ --icon-base-size: 64px
11067
+ ; }
11068
+
11069
+ .icon-post-cancel:before {
11070
+ content: ""; }
11071
+
11072
+ .icon-post-cancel.color--default {
11073
+ color: var(--color-icon-default); }
11074
+
11075
+ .icon-post-cancel.color--primary {
11076
+ color: var(--sd-colour-primary) !important; }
11077
+
11078
+ .icon-post-cancel.color--success {
11079
+ color: var(--sd-colour-success) !important; }
11080
+
11081
+ .icon-post-cancel.color--warning {
11082
+ color: var(--sd-colour-warning) !important; }
11083
+
11084
+ .icon-post-cancel.color--alert {
11085
+ color: var(--sd-colour-alert) !important; }
11086
+
11087
+ .icon-post-cancel.color--highlight {
11088
+ color: var(--sd-colour-highlight) !important; }
11089
+
11090
+ .icon-post-cancel.color--light {
11091
+ color: var(--color-text-lighter) !important; }
11092
+
11093
+ .icon-post-cancel.color--white {
11094
+ color: #e2e5e9 !important; }
11095
+
11096
+ .icon-post-cancel.scale--2x {
11097
+ --icon-base-size: 32px
11098
+ ; }
11099
+
11100
+ .icon-post-cancel.scale--3x {
11101
+ --icon-base-size: 48px
11102
+ ; }
11103
+
11104
+ .icon-post-cancel.scale--4x {
11105
+ --icon-base-size: 64px
11106
+ ; }
11107
+
10285
11108
  .icn-mix {
10286
11109
  position: relative;
10287
11110
  display: inline-block;
@@ -10295,11 +11118,11 @@ doc-react-playground {
10295
11118
  box-sizing: content-box;
10296
11119
  line-height: 100%;
10297
11120
  color: #9b27b0;
10298
- right: -0.5rem;
10299
- bottom: -0.7rem;
11121
+ inset-inline-end: -0.4rem;
11122
+ inset-block-end: -0.6rem;
10300
11123
  height: 1em;
10301
11124
  width: 1em;
10302
- background-color: var(--sd-item__main-Bg);
11125
+ background-color: var(--sd-item__main-Bg) !important;
10303
11126
  border-radius: var(--b-radius--full);
10304
11127
  padding: 1px;
10305
11128
  z-index: 1;
@@ -10315,8 +11138,8 @@ doc-react-playground {
10315
11138
  font-size: 32px; }
10316
11139
  .icn-mix--2x .icn-mix__sub-icn {
10317
11140
  font-size: 1.6rem;
10318
- right: -0.6rem;
10319
- bottom: -0.3rem; }
11141
+ inset-inline-end: -0.6rem;
11142
+ inset-block-end: -0.3rem; }
10320
11143
 
10321
11144
  .double-size-icn {
10322
11145
  display: inline-block;
@@ -10333,13 +11156,13 @@ doc-react-playground {
10333
11156
  opacity: 0.5; }
10334
11157
 
10335
11158
  .subnav .icn-mix__sub-icn {
10336
- background-color: var(--sd-colour-panel-bg--100); }
11159
+ background-color: var(--sd-colour-panel-bg--100) !important; }
10337
11160
 
10338
11161
  .subnav--darker .icn-mix__sub-icn {
10339
- background-color: var(--sd-colour-panel-bg--200); }
11162
+ background-color: var(--sd-colour-panel-bg--200) !important; }
10340
11163
 
10341
11164
  .subnav--dark-blue-grey .icn-mix__sub-icn {
10342
- background-color: var(--color-subnav-bg--blueGrey-10);
11165
+ background-color: var(--color-subnav-bg--blueGrey-10) !important;
10343
11166
  color: #d686e4; }
10344
11167
 
10345
11168
  .subnav--dark-blue-grey .icn-mix__icn {
@@ -12689,6 +13512,8 @@ doc-react-playground {
12689
13512
  color: var(--sd-colour-highlight) !important; }
12690
13513
  .big-icon--dashboard.color--light {
12691
13514
  color: var(--color-text-lighter) !important; }
13515
+ .big-icon--dashboard.color--white {
13516
+ color: #e2e5e9 !important; }
12692
13517
  .big-icon--dashboard.scale--2x {
12693
13518
  --big-icon-size: 52px
12694
13519
  ; }
@@ -12718,6 +13543,8 @@ doc-react-playground {
12718
13543
  color: var(--sd-colour-highlight) !important; }
12719
13544
  .big-icon--view.color--light {
12720
13545
  color: var(--color-text-lighter) !important; }
13546
+ .big-icon--view.color--white {
13547
+ color: #e2e5e9 !important; }
12721
13548
  .big-icon--view.scale--2x {
12722
13549
  --big-icon-size: 52px
12723
13550
  ; }
@@ -12747,6 +13574,8 @@ doc-react-playground {
12747
13574
  color: var(--sd-colour-highlight) !important; }
12748
13575
  .big-icon--tasks.color--light {
12749
13576
  color: var(--color-text-lighter) !important; }
13577
+ .big-icon--tasks.color--white {
13578
+ color: #e2e5e9 !important; }
12750
13579
  .big-icon--tasks.scale--2x {
12751
13580
  --big-icon-size: 52px
12752
13581
  ; }
@@ -12776,6 +13605,8 @@ doc-react-playground {
12776
13605
  color: var(--sd-colour-highlight) !important; }
12777
13606
  .big-icon--calendar.color--light {
12778
13607
  color: var(--color-text-lighter) !important; }
13608
+ .big-icon--calendar.color--white {
13609
+ color: #e2e5e9 !important; }
12779
13610
  .big-icon--calendar.scale--2x {
12780
13611
  --big-icon-size: 52px
12781
13612
  ; }
@@ -12805,6 +13636,8 @@ doc-react-playground {
12805
13636
  color: var(--sd-colour-highlight) !important; }
12806
13637
  .big-icon--marked-star.color--light {
12807
13638
  color: var(--color-text-lighter) !important; }
13639
+ .big-icon--marked-star.color--white {
13640
+ color: #e2e5e9 !important; }
12808
13641
  .big-icon--marked-star.scale--2x {
12809
13642
  --big-icon-size: 52px
12810
13643
  ; }
@@ -12834,6 +13667,8 @@ doc-react-playground {
12834
13667
  color: var(--sd-colour-highlight) !important; }
12835
13668
  .big-icon--archive.color--light {
12836
13669
  color: var(--color-text-lighter) !important; }
13670
+ .big-icon--archive.color--white {
13671
+ color: #e2e5e9 !important; }
12837
13672
  .big-icon--archive.scale--2x {
12838
13673
  --big-icon-size: 52px
12839
13674
  ; }
@@ -12863,6 +13698,8 @@ doc-react-playground {
12863
13698
  color: var(--sd-colour-highlight) !important; }
12864
13699
  .big-icon--spike.color--light {
12865
13700
  color: var(--color-text-lighter) !important; }
13701
+ .big-icon--spike.color--white {
13702
+ color: #e2e5e9 !important; }
12866
13703
  .big-icon--spike.scale--2x {
12867
13704
  --big-icon-size: 52px
12868
13705
  ; }
@@ -12892,6 +13729,8 @@ doc-react-playground {
12892
13729
  color: var(--sd-colour-highlight) !important; }
12893
13730
  .big-icon--unspike.color--light {
12894
13731
  color: var(--color-text-lighter) !important; }
13732
+ .big-icon--unspike.color--white {
13733
+ color: #e2e5e9 !important; }
12895
13734
  .big-icon--unspike.scale--2x {
12896
13735
  --big-icon-size: 52px
12897
13736
  ; }
@@ -12921,6 +13760,8 @@ doc-react-playground {
12921
13760
  color: var(--sd-colour-highlight) !important; }
12922
13761
  .big-icon--personal.color--light {
12923
13762
  color: var(--color-text-lighter) !important; }
13763
+ .big-icon--personal.color--white {
13764
+ color: #e2e5e9 !important; }
12924
13765
  .big-icon--personal.scale--2x {
12925
13766
  --big-icon-size: 52px
12926
13767
  ; }
@@ -12950,6 +13791,8 @@ doc-react-playground {
12950
13791
  color: var(--sd-colour-highlight) !important; }
12951
13792
  .big-icon--global-search.color--light {
12952
13793
  color: var(--color-text-lighter) !important; }
13794
+ .big-icon--global-search.color--white {
13795
+ color: #e2e5e9 !important; }
12953
13796
  .big-icon--global-search.scale--2x {
12954
13797
  --big-icon-size: 52px
12955
13798
  ; }
@@ -12979,6 +13822,8 @@ doc-react-playground {
12979
13822
  color: var(--sd-colour-highlight) !important; }
12980
13823
  .big-icon--analytics.color--light {
12981
13824
  color: var(--color-text-lighter) !important; }
13825
+ .big-icon--analytics.color--white {
13826
+ color: #e2e5e9 !important; }
12982
13827
  .big-icon--analytics.scale--2x {
12983
13828
  --big-icon-size: 52px
12984
13829
  ; }
@@ -13008,6 +13853,8 @@ doc-react-playground {
13008
13853
  color: var(--sd-colour-highlight) !important; }
13009
13854
  .big-icon--web.color--light {
13010
13855
  color: var(--color-text-lighter) !important; }
13856
+ .big-icon--web.color--white {
13857
+ color: #e2e5e9 !important; }
13011
13858
  .big-icon--web.scale--2x {
13012
13859
  --big-icon-size: 52px
13013
13860
  ; }
@@ -13037,6 +13884,8 @@ doc-react-playground {
13037
13884
  color: var(--sd-colour-highlight) !important; }
13038
13885
  .big-icon--cog.color--light {
13039
13886
  color: var(--color-text-lighter) !important; }
13887
+ .big-icon--cog.color--white {
13888
+ color: #e2e5e9 !important; }
13040
13889
  .big-icon--cog.scale--2x {
13041
13890
  --big-icon-size: 52px
13042
13891
  ; }
@@ -13066,6 +13915,8 @@ doc-react-playground {
13066
13915
  color: var(--sd-colour-highlight) !important; }
13067
13916
  .big-icon--send-to.color--light {
13068
13917
  color: var(--color-text-lighter) !important; }
13918
+ .big-icon--send-to.color--white {
13919
+ color: #e2e5e9 !important; }
13069
13920
  .big-icon--send-to.scale--2x {
13070
13921
  --big-icon-size: 52px
13071
13922
  ; }
@@ -13095,6 +13946,8 @@ doc-react-playground {
13095
13946
  color: var(--sd-colour-highlight) !important; }
13096
13947
  .big-icon--info.color--light {
13097
13948
  color: var(--color-text-lighter) !important; }
13949
+ .big-icon--info.color--white {
13950
+ color: #e2e5e9 !important; }
13098
13951
  .big-icon--info.scale--2x {
13099
13952
  --big-icon-size: 52px
13100
13953
  ; }
@@ -13124,6 +13977,8 @@ doc-react-playground {
13124
13977
  color: var(--sd-colour-highlight) !important; }
13125
13978
  .big-icon--find-replace.color--light {
13126
13979
  color: var(--color-text-lighter) !important; }
13980
+ .big-icon--find-replace.color--white {
13981
+ color: #e2e5e9 !important; }
13127
13982
  .big-icon--find-replace.scale--2x {
13128
13983
  --big-icon-size: 52px
13129
13984
  ; }
@@ -13153,6 +14008,8 @@ doc-react-playground {
13153
14008
  color: var(--sd-colour-highlight) !important; }
13154
14009
  .big-icon--comments.color--light {
13155
14010
  color: var(--color-text-lighter) !important; }
14011
+ .big-icon--comments.color--white {
14012
+ color: #e2e5e9 !important; }
13156
14013
  .big-icon--comments.scale--2x {
13157
14014
  --big-icon-size: 52px
13158
14015
  ; }
@@ -13182,6 +14039,8 @@ doc-react-playground {
13182
14039
  color: var(--sd-colour-highlight) !important; }
13183
14040
  .big-icon--history.color--light {
13184
14041
  color: var(--color-text-lighter) !important; }
14042
+ .big-icon--history.color--white {
14043
+ color: #e2e5e9 !important; }
13185
14044
  .big-icon--history.scale--2x {
13186
14045
  --big-icon-size: 52px
13187
14046
  ; }
@@ -13211,6 +14070,8 @@ doc-react-playground {
13211
14070
  color: var(--sd-colour-highlight) !important; }
13212
14071
  .big-icon--package.color--light {
13213
14072
  color: var(--color-text-lighter) !important; }
14073
+ .big-icon--package.color--white {
14074
+ color: #e2e5e9 !important; }
13214
14075
  .big-icon--package.scale--2x {
13215
14076
  --big-icon-size: 52px
13216
14077
  ; }
@@ -13240,6 +14101,8 @@ doc-react-playground {
13240
14101
  color: var(--sd-colour-highlight) !important; }
13241
14102
  .big-icon--create-package.color--light {
13242
14103
  color: var(--color-text-lighter) !important; }
14104
+ .big-icon--create-package.color--white {
14105
+ color: #e2e5e9 !important; }
13243
14106
  .big-icon--create-package.scale--2x {
13244
14107
  --big-icon-size: 52px
13245
14108
  ; }
@@ -13269,6 +14132,8 @@ doc-react-playground {
13269
14132
  color: var(--sd-colour-highlight) !important; }
13270
14133
  .big-icon--add-to-package.color--light {
13271
14134
  color: var(--color-text-lighter) !important; }
14135
+ .big-icon--add-to-package.color--white {
14136
+ color: #e2e5e9 !important; }
13272
14137
  .big-icon--add-to-package.scale--2x {
13273
14138
  --big-icon-size: 52px
13274
14139
  ; }
@@ -13298,6 +14163,8 @@ doc-react-playground {
13298
14163
  color: var(--sd-colour-highlight) !important; }
13299
14164
  .big-icon--fetch.color--light {
13300
14165
  color: var(--color-text-lighter) !important; }
14166
+ .big-icon--fetch.color--white {
14167
+ color: #e2e5e9 !important; }
13301
14168
  .big-icon--fetch.scale--2x {
13302
14169
  --big-icon-size: 52px
13303
14170
  ; }
@@ -13327,6 +14194,8 @@ doc-react-playground {
13327
14194
  color: var(--sd-colour-highlight) !important; }
13328
14195
  .big-icon--fetch-as.color--light {
13329
14196
  color: var(--color-text-lighter) !important; }
14197
+ .big-icon--fetch-as.color--white {
14198
+ color: #e2e5e9 !important; }
13330
14199
  .big-icon--fetch-as.scale--2x {
13331
14200
  --big-icon-size: 52px
13332
14201
  ; }
@@ -13356,6 +14225,8 @@ doc-react-playground {
13356
14225
  color: var(--sd-colour-highlight) !important; }
13357
14226
  .big-icon--macro.color--light {
13358
14227
  color: var(--color-text-lighter) !important; }
14228
+ .big-icon--macro.color--white {
14229
+ color: #e2e5e9 !important; }
13359
14230
  .big-icon--macro.scale--2x {
13360
14231
  --big-icon-size: 52px
13361
14232
  ; }
@@ -13385,6 +14256,8 @@ doc-react-playground {
13385
14256
  color: var(--sd-colour-highlight) !important; }
13386
14257
  .big-icon--related.color--light {
13387
14258
  color: var(--color-text-lighter) !important; }
14259
+ .big-icon--related.color--white {
14260
+ color: #e2e5e9 !important; }
13388
14261
  .big-icon--related.scale--2x {
13389
14262
  --big-icon-size: 52px
13390
14263
  ; }
@@ -13414,6 +14287,8 @@ doc-react-playground {
13414
14287
  color: var(--sd-colour-highlight) !important; }
13415
14288
  .big-icon--minimize.color--light {
13416
14289
  color: var(--color-text-lighter) !important; }
14290
+ .big-icon--minimize.color--white {
14291
+ color: #e2e5e9 !important; }
13417
14292
  .big-icon--minimize.scale--2x {
13418
14293
  --big-icon-size: 52px
13419
14294
  ; }
@@ -13443,6 +14318,8 @@ doc-react-playground {
13443
14318
  color: var(--sd-colour-highlight) !important; }
13444
14319
  .big-icon--settings.color--light {
13445
14320
  color: var(--color-text-lighter) !important; }
14321
+ .big-icon--settings.color--white {
14322
+ color: #e2e5e9 !important; }
13446
14323
  .big-icon--settings.scale--2x {
13447
14324
  --big-icon-size: 52px
13448
14325
  ; }
@@ -13472,6 +14349,8 @@ doc-react-playground {
13472
14349
  color: var(--sd-colour-highlight) !important; }
13473
14350
  .big-icon--multiedit.color--light {
13474
14351
  color: var(--color-text-lighter) !important; }
14352
+ .big-icon--multiedit.color--white {
14353
+ color: #e2e5e9 !important; }
13475
14354
  .big-icon--multiedit.scale--2x {
13476
14355
  --big-icon-size: 52px
13477
14356
  ; }
@@ -13501,6 +14380,8 @@ doc-react-playground {
13501
14380
  color: var(--sd-colour-highlight) !important; }
13502
14381
  .big-icon--export.color--light {
13503
14382
  color: var(--color-text-lighter) !important; }
14383
+ .big-icon--export.color--white {
14384
+ color: #e2e5e9 !important; }
13504
14385
  .big-icon--export.scale--2x {
13505
14386
  --big-icon-size: 52px
13506
14387
  ; }
@@ -13530,6 +14411,8 @@ doc-react-playground {
13530
14411
  color: var(--sd-colour-highlight) !important; }
13531
14412
  .big-icon--create-list.color--light {
13532
14413
  color: var(--color-text-lighter) !important; }
14414
+ .big-icon--create-list.color--white {
14415
+ color: #e2e5e9 !important; }
13533
14416
  .big-icon--create-list.scale--2x {
13534
14417
  --big-icon-size: 52px
13535
14418
  ; }
@@ -13559,6 +14442,8 @@ doc-react-playground {
13559
14442
  color: var(--sd-colour-highlight) !important; }
13560
14443
  .big-icon--add-to-list.color--light {
13561
14444
  color: var(--color-text-lighter) !important; }
14445
+ .big-icon--add-to-list.color--white {
14446
+ color: #e2e5e9 !important; }
13562
14447
  .big-icon--add-to-list.scale--2x {
13563
14448
  --big-icon-size: 52px
13564
14449
  ; }
@@ -13588,6 +14473,8 @@ doc-react-playground {
13588
14473
  color: var(--sd-colour-highlight) !important; }
13589
14474
  .big-icon--text.color--light {
13590
14475
  color: var(--color-text-lighter) !important; }
14476
+ .big-icon--text.color--white {
14477
+ color: #e2e5e9 !important; }
13591
14478
  .big-icon--text.scale--2x {
13592
14479
  --big-icon-size: 52px
13593
14480
  ; }
@@ -13617,6 +14504,8 @@ doc-react-playground {
13617
14504
  color: var(--sd-colour-highlight) !important; }
13618
14505
  .big-icon--desk.color--light {
13619
14506
  color: var(--color-text-lighter) !important; }
14507
+ .big-icon--desk.color--white {
14508
+ color: #e2e5e9 !important; }
13620
14509
  .big-icon--desk.scale--2x {
13621
14510
  --big-icon-size: 52px
13622
14511
  ; }
@@ -13646,6 +14535,8 @@ doc-react-playground {
13646
14535
  color: var(--sd-colour-highlight) !important; }
13647
14536
  .big-icon--chevron-left.color--light {
13648
14537
  color: var(--color-text-lighter) !important; }
14538
+ .big-icon--chevron-left.color--white {
14539
+ color: #e2e5e9 !important; }
13649
14540
  .big-icon--chevron-left.scale--2x {
13650
14541
  --big-icon-size: 52px
13651
14542
  ; }
@@ -13675,6 +14566,8 @@ doc-react-playground {
13675
14566
  color: var(--sd-colour-highlight) !important; }
13676
14567
  .big-icon--chevron-right.color--light {
13677
14568
  color: var(--color-text-lighter) !important; }
14569
+ .big-icon--chevron-right.color--white {
14570
+ color: #e2e5e9 !important; }
13678
14571
  .big-icon--chevron-right.scale--2x {
13679
14572
  --big-icon-size: 52px
13680
14573
  ; }
@@ -13704,6 +14597,8 @@ doc-react-playground {
13704
14597
  color: var(--sd-colour-highlight) !important; }
13705
14598
  .big-icon--dashboard-alt.color--light {
13706
14599
  color: var(--color-text-lighter) !important; }
14600
+ .big-icon--dashboard-alt.color--white {
14601
+ color: #e2e5e9 !important; }
13707
14602
  .big-icon--dashboard-alt.scale--2x {
13708
14603
  --big-icon-size: 52px
13709
14604
  ; }
@@ -13733,6 +14628,8 @@ doc-react-playground {
13733
14628
  color: var(--sd-colour-highlight) !important; }
13734
14629
  .big-icon--master.color--light {
13735
14630
  color: var(--color-text-lighter) !important; }
14631
+ .big-icon--master.color--white {
14632
+ color: #e2e5e9 !important; }
13736
14633
  .big-icon--master.scale--2x {
13737
14634
  --big-icon-size: 52px
13738
14635
  ; }
@@ -13762,6 +14659,8 @@ doc-react-playground {
13762
14659
  color: var(--sd-colour-highlight) !important; }
13763
14660
  .big-icon--attachment.color--light {
13764
14661
  color: var(--color-text-lighter) !important; }
14662
+ .big-icon--attachment.color--white {
14663
+ color: #e2e5e9 !important; }
13765
14664
  .big-icon--attachment.scale--2x {
13766
14665
  --big-icon-size: 52px
13767
14666
  ; }
@@ -13791,6 +14690,8 @@ doc-react-playground {
13791
14690
  color: var(--sd-colour-highlight) !important; }
13792
14691
  .big-icon--upload-alt.color--light {
13793
14692
  color: var(--color-text-lighter) !important; }
14693
+ .big-icon--upload-alt.color--white {
14694
+ color: #e2e5e9 !important; }
13794
14695
  .big-icon--upload-alt.scale--2x {
13795
14696
  --big-icon-size: 52px
13796
14697
  ; }
@@ -13820,6 +14721,8 @@ doc-react-playground {
13820
14721
  color: var(--sd-colour-highlight) !important; }
13821
14722
  .big-icon--document-default.color--light {
13822
14723
  color: var(--color-text-lighter) !important; }
14724
+ .big-icon--document-default.color--white {
14725
+ color: #e2e5e9 !important; }
13823
14726
  .big-icon--document-default.scale--2x {
13824
14727
  --big-icon-size: 52px
13825
14728
  ; }
@@ -13849,6 +14752,8 @@ doc-react-playground {
13849
14752
  color: var(--sd-colour-highlight) !important; }
13850
14753
  .big-icon--document-pdf.color--light {
13851
14754
  color: var(--color-text-lighter) !important; }
14755
+ .big-icon--document-pdf.color--white {
14756
+ color: #e2e5e9 !important; }
13852
14757
  .big-icon--document-pdf.scale--2x {
13853
14758
  --big-icon-size: 52px
13854
14759
  ; }
@@ -13878,6 +14783,8 @@ doc-react-playground {
13878
14783
  color: var(--sd-colour-highlight) !important; }
13879
14784
  .big-icon--document-doc.color--light {
13880
14785
  color: var(--color-text-lighter) !important; }
14786
+ .big-icon--document-doc.color--white {
14787
+ color: #e2e5e9 !important; }
13881
14788
  .big-icon--document-doc.scale--2x {
13882
14789
  --big-icon-size: 52px
13883
14790
  ; }
@@ -13907,6 +14814,8 @@ doc-react-playground {
13907
14814
  color: var(--sd-colour-highlight) !important; }
13908
14815
  .big-icon--semantics.color--light {
13909
14816
  color: var(--color-text-lighter) !important; }
14817
+ .big-icon--semantics.color--white {
14818
+ color: #e2e5e9 !important; }
13910
14819
  .big-icon--semantics.scale--2x {
13911
14820
  --big-icon-size: 52px
13912
14821
  ; }
@@ -13936,6 +14845,8 @@ doc-react-playground {
13936
14845
  color: var(--sd-colour-highlight) !important; }
13937
14846
  .big-icon--picture.color--light {
13938
14847
  color: var(--color-text-lighter) !important; }
14848
+ .big-icon--picture.color--white {
14849
+ color: #e2e5e9 !important; }
13939
14850
  .big-icon--picture.scale--2x {
13940
14851
  --big-icon-size: 52px
13941
14852
  ; }
@@ -13965,6 +14876,8 @@ doc-react-playground {
13965
14876
  color: var(--sd-colour-highlight) !important; }
13966
14877
  .big-icon--manage-package.color--light {
13967
14878
  color: var(--color-text-lighter) !important; }
14879
+ .big-icon--manage-package.color--white {
14880
+ color: #e2e5e9 !important; }
13968
14881
  .big-icon--manage-package.scale--2x {
13969
14882
  --big-icon-size: 52px
13970
14883
  ; }
@@ -13994,6 +14907,8 @@ doc-react-playground {
13994
14907
  color: var(--sd-colour-highlight) !important; }
13995
14908
  .big-icon--live.color--light {
13996
14909
  color: var(--color-text-lighter) !important; }
14910
+ .big-icon--live.color--white {
14911
+ color: #e2e5e9 !important; }
13997
14912
  .big-icon--live.scale--2x {
13998
14913
  --big-icon-size: 52px
13999
14914
  ; }
@@ -14023,6 +14938,8 @@ doc-react-playground {
14023
14938
  color: var(--sd-colour-highlight) !important; }
14024
14939
  .big-icon--live-alt.color--light {
14025
14940
  color: var(--color-text-lighter) !important; }
14941
+ .big-icon--live-alt.color--white {
14942
+ color: #e2e5e9 !important; }
14026
14943
  .big-icon--live-alt.scale--2x {
14027
14944
  --big-icon-size: 52px
14028
14945
  ; }
@@ -14052,6 +14969,8 @@ doc-react-playground {
14052
14969
  color: var(--sd-colour-highlight) !important; }
14053
14970
  .big-icon--meta-search.color--light {
14054
14971
  color: var(--color-text-lighter) !important; }
14972
+ .big-icon--meta-search.color--white {
14973
+ color: #e2e5e9 !important; }
14055
14974
  .big-icon--meta-search.scale--2x {
14056
14975
  --big-icon-size: 52px
14057
14976
  ; }
@@ -14081,6 +15000,8 @@ doc-react-playground {
14081
15000
  color: var(--sd-colour-highlight) !important; }
14082
15001
  .big-icon--chat.color--light {
14083
15002
  color: var(--color-text-lighter) !important; }
15003
+ .big-icon--chat.color--white {
15004
+ color: #e2e5e9 !important; }
14084
15005
  .big-icon--chat.scale--2x {
14085
15006
  --big-icon-size: 52px
14086
15007
  ; }
@@ -14110,6 +15031,8 @@ doc-react-playground {
14110
15031
  color: var(--sd-colour-highlight) !important; }
14111
15032
  .big-icon--annotation.color--light {
14112
15033
  color: var(--color-text-lighter) !important; }
15034
+ .big-icon--annotation.color--white {
15035
+ color: #e2e5e9 !important; }
14113
15036
  .big-icon--annotation.scale--2x {
14114
15037
  --big-icon-size: 52px
14115
15038
  ; }
@@ -14139,6 +15062,8 @@ doc-react-playground {
14139
15062
  color: var(--sd-colour-highlight) !important; }
14140
15063
  .big-icon--suggestion.color--light {
14141
15064
  color: var(--color-text-lighter) !important; }
15065
+ .big-icon--suggestion.color--white {
15066
+ color: #e2e5e9 !important; }
14142
15067
  .big-icon--suggestion.scale--2x {
14143
15068
  --big-icon-size: 52px
14144
15069
  ; }
@@ -14168,6 +15093,8 @@ doc-react-playground {
14168
15093
  color: var(--sd-colour-highlight) !important; }
14169
15094
  .big-icon--publisher.color--light {
14170
15095
  color: var(--color-text-lighter) !important; }
15096
+ .big-icon--publisher.color--white {
15097
+ color: #e2e5e9 !important; }
14171
15098
  .big-icon--publisher.scale--2x {
14172
15099
  --big-icon-size: 52px
14173
15100
  ; }
@@ -14197,6 +15124,8 @@ doc-react-playground {
14197
15124
  color: var(--sd-colour-highlight) !important; }
14198
15125
  .big-icon--tag.color--light {
14199
15126
  color: var(--color-text-lighter) !important; }
15127
+ .big-icon--tag.color--white {
15128
+ color: #e2e5e9 !important; }
14200
15129
  .big-icon--tag.scale--2x {
14201
15130
  --big-icon-size: 52px
14202
15131
  ; }
@@ -14226,6 +15155,8 @@ doc-react-playground {
14226
15155
  color: var(--sd-colour-highlight) !important; }
14227
15156
  .big-icon--rundown.color--light {
14228
15157
  color: var(--color-text-lighter) !important; }
15158
+ .big-icon--rundown.color--white {
15159
+ color: #e2e5e9 !important; }
14229
15160
  .big-icon--rundown.scale--2x {
14230
15161
  --big-icon-size: 52px
14231
15162
  ; }
@@ -14255,6 +15186,8 @@ doc-react-playground {
14255
15186
  color: var(--sd-colour-highlight) !important; }
14256
15187
  .big-icon--checkmark-circle.color--light {
14257
15188
  color: var(--color-text-lighter) !important; }
15189
+ .big-icon--checkmark-circle.color--white {
15190
+ color: #e2e5e9 !important; }
14258
15191
  .big-icon--checkmark-circle.scale--2x {
14259
15192
  --big-icon-size: 52px
14260
15193
  ; }