@ui5/webcomponents-fiori 0.0.0-dff5837d7 → 0.0.0-e03cd01f3

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 (3179) hide show
  1. package/.env.production +1 -0
  2. package/.env.testing +4 -0
  3. package/.npsrc.json +3 -0
  4. package/CHANGELOG.md +3924 -0
  5. package/LICENSE.txt +201 -0
  6. package/README.md +63 -19
  7. package/cypress.config.js +3 -0
  8. package/dist/.tsbuildinfo +1 -0
  9. package/dist/Assets-fetch.d.ts +3 -0
  10. package/dist/Assets-fetch.js +6 -0
  11. package/dist/Assets-fetch.js.map +1 -0
  12. package/dist/Assets-node.d.ts +14 -0
  13. package/dist/Assets-node.js +17 -0
  14. package/dist/Assets-node.js.map +1 -0
  15. package/dist/Assets.d.ts +3 -0
  16. package/dist/Assets.js +2 -2
  17. package/dist/Assets.js.map +1 -0
  18. package/dist/BarcodeScannerDialog.d.ts +136 -0
  19. package/dist/BarcodeScannerDialog.js +366 -0
  20. package/dist/BarcodeScannerDialog.js.map +1 -0
  21. package/dist/BarcodeScannerDialogTemplate.d.ts +2 -0
  22. package/dist/BarcodeScannerDialogTemplate.js +8 -0
  23. package/dist/BarcodeScannerDialogTemplate.js.map +1 -0
  24. package/dist/DynamicPage.d.ts +164 -0
  25. package/dist/DynamicPage.js +398 -0
  26. package/dist/DynamicPage.js.map +1 -0
  27. package/dist/DynamicPageHeader.d.ts +56 -0
  28. package/dist/DynamicPageHeader.js +93 -0
  29. package/dist/DynamicPageHeader.js.map +1 -0
  30. package/dist/DynamicPageHeaderActions.d.ts +77 -0
  31. package/dist/DynamicPageHeaderActions.js +181 -0
  32. package/dist/DynamicPageHeaderActions.js.map +1 -0
  33. package/dist/DynamicPageHeaderActionsTemplate.d.ts +2 -0
  34. package/dist/DynamicPageHeaderActionsTemplate.js +8 -0
  35. package/dist/DynamicPageHeaderActionsTemplate.js.map +1 -0
  36. package/dist/DynamicPageHeaderTemplate.d.ts +2 -0
  37. package/dist/DynamicPageHeaderTemplate.js +5 -0
  38. package/dist/DynamicPageHeaderTemplate.js.map +1 -0
  39. package/dist/DynamicPageTemplate.d.ts +2 -0
  40. package/dist/DynamicPageTemplate.js +14 -0
  41. package/dist/DynamicPageTemplate.js.map +1 -0
  42. package/dist/DynamicPageTitle.d.ts +171 -0
  43. package/dist/DynamicPageTitle.js +246 -0
  44. package/dist/DynamicPageTitle.js.map +1 -0
  45. package/dist/DynamicPageTitleTemplate.d.ts +2 -0
  46. package/dist/DynamicPageTitleTemplate.js +16 -0
  47. package/dist/DynamicPageTitleTemplate.js.map +1 -0
  48. package/dist/DynamicSideContent.d.ts +233 -0
  49. package/dist/DynamicSideContent.js +413 -0
  50. package/dist/DynamicSideContent.js.map +1 -0
  51. package/dist/DynamicSideContentTemplate.d.ts +2 -0
  52. package/dist/DynamicSideContentTemplate.js +14 -0
  53. package/dist/DynamicSideContentTemplate.js.map +1 -0
  54. package/dist/FilterItem.d.ts +44 -0
  55. package/dist/FilterItem.js +48 -0
  56. package/dist/FilterItem.js.map +1 -0
  57. package/dist/FilterItemOption.d.ts +38 -0
  58. package/dist/FilterItemOption.js +54 -0
  59. package/dist/FilterItemOption.js.map +1 -0
  60. package/dist/FlexibleColumnLayout.d.ts +431 -0
  61. package/dist/FlexibleColumnLayout.js +1177 -0
  62. package/dist/FlexibleColumnLayout.js.map +1 -0
  63. package/dist/FlexibleColumnLayoutTemplate.d.ts +2 -0
  64. package/dist/FlexibleColumnLayoutTemplate.js +40 -0
  65. package/dist/FlexibleColumnLayoutTemplate.js.map +1 -0
  66. package/dist/GroupItem.d.ts +38 -0
  67. package/dist/GroupItem.js +54 -0
  68. package/dist/GroupItem.js.map +1 -0
  69. package/dist/IllustratedMessage.d.ts +251 -0
  70. package/dist/IllustratedMessage.js +426 -0
  71. package/dist/IllustratedMessage.js.map +1 -0
  72. package/dist/IllustratedMessageTemplate.d.ts +2 -0
  73. package/dist/IllustratedMessageTemplate.js +27 -0
  74. package/dist/IllustratedMessageTemplate.js.map +1 -0
  75. package/dist/MediaGallery.d.ts +177 -0
  76. package/dist/MediaGallery.js +441 -0
  77. package/dist/MediaGallery.js.map +1 -0
  78. package/dist/MediaGalleryItem.d.ts +116 -0
  79. package/dist/MediaGalleryItem.js +238 -0
  80. package/dist/MediaGalleryItem.js.map +1 -0
  81. package/dist/MediaGalleryItemTemplate.d.ts +2 -0
  82. package/dist/MediaGalleryItemTemplate.js +7 -0
  83. package/dist/MediaGalleryItemTemplate.js.map +1 -0
  84. package/dist/MediaGalleryTemplate.d.ts +2 -0
  85. package/dist/MediaGalleryTemplate.js +10 -0
  86. package/dist/MediaGalleryTemplate.js.map +1 -0
  87. package/dist/NavigationLayout.d.ts +78 -0
  88. package/dist/NavigationLayout.js +137 -0
  89. package/dist/NavigationLayout.js.map +1 -0
  90. package/dist/NavigationLayoutTemplate.d.ts +2 -0
  91. package/dist/NavigationLayoutTemplate.js +5 -0
  92. package/dist/NavigationLayoutTemplate.js.map +1 -0
  93. package/dist/NavigationMenu.d.ts +36 -0
  94. package/dist/NavigationMenu.js +68 -0
  95. package/dist/NavigationMenu.js.map +1 -0
  96. package/dist/NavigationMenuItem.d.ts +86 -0
  97. package/dist/NavigationMenuItem.js +159 -0
  98. package/dist/NavigationMenuItem.js.map +1 -0
  99. package/dist/NavigationMenuItemTemplate.d.ts +3 -0
  100. package/dist/NavigationMenuItemTemplate.js +34 -0
  101. package/dist/NavigationMenuItemTemplate.js.map +1 -0
  102. package/dist/NavigationMenuTemplate.d.ts +2 -0
  103. package/dist/NavigationMenuTemplate.js +15 -0
  104. package/dist/NavigationMenuTemplate.js.map +1 -0
  105. package/dist/NotificationList.d.ts +72 -0
  106. package/dist/NotificationList.js +135 -0
  107. package/dist/NotificationList.js.map +1 -0
  108. package/dist/NotificationListGroupItem.d.ts +92 -0
  109. package/dist/NotificationListGroupItem.js +204 -199
  110. package/dist/NotificationListGroupItem.js.map +1 -0
  111. package/dist/NotificationListGroupItemTemplate.d.ts +2 -0
  112. package/dist/NotificationListGroupItemTemplate.js +10 -0
  113. package/dist/NotificationListGroupItemTemplate.js.map +1 -0
  114. package/dist/NotificationListGroupList.d.ts +23 -0
  115. package/dist/NotificationListGroupList.js +52 -0
  116. package/dist/NotificationListGroupList.js.map +1 -0
  117. package/dist/NotificationListInternal.d.ts +21 -0
  118. package/dist/NotificationListInternal.js +161 -0
  119. package/dist/NotificationListInternal.js.map +1 -0
  120. package/dist/NotificationListItem.d.ts +199 -0
  121. package/dist/NotificationListItem.js +429 -405
  122. package/dist/NotificationListItem.js.map +1 -0
  123. package/dist/NotificationListItemBase.d.ts +52 -0
  124. package/dist/NotificationListItemBase.js +91 -229
  125. package/dist/NotificationListItemBase.js.map +1 -0
  126. package/dist/NotificationListItemTemplate.d.ts +2 -0
  127. package/dist/NotificationListItemTemplate.js +19 -0
  128. package/dist/NotificationListItemTemplate.js.map +1 -0
  129. package/dist/NotificationListTemplate.d.ts +2 -0
  130. package/dist/NotificationListTemplate.js +6 -0
  131. package/dist/NotificationListTemplate.js.map +1 -0
  132. package/dist/Page.d.ts +83 -0
  133. package/dist/Page.js +128 -0
  134. package/dist/Page.js.map +1 -0
  135. package/dist/PageTemplate.d.ts +2 -0
  136. package/dist/PageTemplate.js +11 -0
  137. package/dist/PageTemplate.js.map +1 -0
  138. package/dist/ProductSwitch.d.ts +78 -0
  139. package/dist/ProductSwitch.js +126 -114
  140. package/dist/ProductSwitch.js.map +1 -0
  141. package/dist/ProductSwitchItem.d.ts +116 -0
  142. package/dist/ProductSwitchItem.js +144 -213
  143. package/dist/ProductSwitchItem.js.map +1 -0
  144. package/dist/ProductSwitchItemTemplate.d.ts +2 -0
  145. package/dist/ProductSwitchItemTemplate.js +15 -0
  146. package/dist/ProductSwitchItemTemplate.js.map +1 -0
  147. package/dist/ProductSwitchTemplate.d.ts +2 -0
  148. package/dist/ProductSwitchTemplate.js +5 -0
  149. package/dist/ProductSwitchTemplate.js.map +1 -0
  150. package/dist/Search.d.ts +185 -0
  151. package/dist/Search.js +446 -0
  152. package/dist/Search.js.map +1 -0
  153. package/dist/SearchField.d.ts +147 -0
  154. package/dist/SearchField.js +223 -0
  155. package/dist/SearchField.js.map +1 -0
  156. package/dist/SearchFieldTemplate.d.ts +8 -0
  157. package/dist/SearchFieldTemplate.js +16 -0
  158. package/dist/SearchFieldTemplate.js.map +1 -0
  159. package/dist/SearchItem.d.ts +98 -0
  160. package/dist/SearchItem.js +216 -0
  161. package/dist/SearchItem.js.map +1 -0
  162. package/dist/SearchItemGroup.d.ts +15 -0
  163. package/dist/SearchItemGroup.js +38 -0
  164. package/dist/SearchItemGroup.js.map +1 -0
  165. package/dist/SearchItemShowMore.d.ts +49 -0
  166. package/dist/SearchItemShowMore.js +112 -0
  167. package/dist/SearchItemShowMore.js.map +1 -0
  168. package/dist/SearchItemShowMoreTemplate.d.ts +2 -0
  169. package/dist/SearchItemShowMoreTemplate.js +5 -0
  170. package/dist/SearchItemShowMoreTemplate.js.map +1 -0
  171. package/dist/SearchItemTemplate.d.ts +2 -0
  172. package/dist/SearchItemTemplate.js +16 -0
  173. package/dist/SearchItemTemplate.js.map +1 -0
  174. package/dist/SearchMessageArea.d.ts +27 -0
  175. package/dist/SearchMessageArea.js +41 -0
  176. package/dist/SearchMessageArea.js.map +1 -0
  177. package/dist/SearchMessageAreaTemplate.d.ts +2 -0
  178. package/dist/SearchMessageAreaTemplate.js +8 -0
  179. package/dist/SearchMessageAreaTemplate.js.map +1 -0
  180. package/dist/SearchPopoverTemplate.d.ts +3 -0
  181. package/dist/SearchPopoverTemplate.js +25 -0
  182. package/dist/SearchPopoverTemplate.js.map +1 -0
  183. package/dist/SearchScope.d.ts +30 -0
  184. package/dist/SearchScope.js +37 -0
  185. package/dist/SearchScope.js.map +1 -0
  186. package/dist/SearchTemplate.d.ts +2 -0
  187. package/dist/SearchTemplate.js +7 -0
  188. package/dist/SearchTemplate.js.map +1 -0
  189. package/dist/ShellBar.d.ts +555 -0
  190. package/dist/ShellBar.js +1373 -1019
  191. package/dist/ShellBar.js.map +1 -0
  192. package/dist/ShellBarBranding.d.ts +78 -0
  193. package/dist/ShellBarBranding.js +116 -0
  194. package/dist/ShellBarBranding.js.map +1 -0
  195. package/dist/ShellBarBrandingTemplate.d.ts +2 -0
  196. package/dist/ShellBarBrandingTemplate.js +5 -0
  197. package/dist/ShellBarBrandingTemplate.js.map +1 -0
  198. package/dist/ShellBarItem.d.ts +75 -0
  199. package/dist/ShellBarItem.js +77 -80
  200. package/dist/ShellBarItem.js.map +1 -0
  201. package/dist/ShellBarPopoverTemplate.d.ts +2 -0
  202. package/dist/ShellBarPopoverTemplate.js +9 -0
  203. package/dist/ShellBarPopoverTemplate.js.map +1 -0
  204. package/dist/ShellBarSearch.d.ts +26 -0
  205. package/dist/ShellBarSearch.js +97 -0
  206. package/dist/ShellBarSearch.js.map +1 -0
  207. package/dist/ShellBarSearchPopoverTemplate.d.ts +2 -0
  208. package/dist/ShellBarSearchPopoverTemplate.js +12 -0
  209. package/dist/ShellBarSearchPopoverTemplate.js.map +1 -0
  210. package/dist/ShellBarSearchTemplate.d.ts +2 -0
  211. package/dist/ShellBarSearchTemplate.js +7 -0
  212. package/dist/ShellBarSearchTemplate.js.map +1 -0
  213. package/dist/ShellBarSpacer.d.ts +17 -0
  214. package/dist/ShellBarSpacer.js +38 -0
  215. package/dist/ShellBarSpacer.js.map +1 -0
  216. package/dist/ShellBarTemplate.d.ts +2 -0
  217. package/dist/ShellBarTemplate.js +62 -0
  218. package/dist/ShellBarTemplate.js.map +1 -0
  219. package/dist/SideNavigation.d.ts +186 -0
  220. package/dist/SideNavigation.js +550 -0
  221. package/dist/SideNavigation.js.map +1 -0
  222. package/dist/SideNavigationGroup.d.ts +56 -0
  223. package/dist/SideNavigationGroup.js +168 -0
  224. package/dist/SideNavigationGroup.js.map +1 -0
  225. package/dist/SideNavigationGroupTemplate.d.ts +2 -0
  226. package/dist/SideNavigationGroupTemplate.js +16 -0
  227. package/dist/SideNavigationGroupTemplate.js.map +1 -0
  228. package/dist/SideNavigationItem.d.ts +77 -0
  229. package/dist/SideNavigationItem.js +280 -0
  230. package/dist/SideNavigationItem.js.map +1 -0
  231. package/dist/SideNavigationItemBase.d.ts +82 -0
  232. package/dist/SideNavigationItemBase.js +124 -0
  233. package/dist/SideNavigationItemBase.js.map +1 -0
  234. package/dist/SideNavigationItemTemplate.d.ts +2 -0
  235. package/dist/SideNavigationItemTemplate.js +26 -0
  236. package/dist/SideNavigationItemTemplate.js.map +1 -0
  237. package/dist/SideNavigationPopoverTemplate.d.ts +2 -0
  238. package/dist/SideNavigationPopoverTemplate.js +13 -0
  239. package/dist/SideNavigationPopoverTemplate.js.map +1 -0
  240. package/dist/SideNavigationSelectableItemBase.d.ts +149 -0
  241. package/dist/SideNavigationSelectableItemBase.js +258 -0
  242. package/dist/SideNavigationSelectableItemBase.js.map +1 -0
  243. package/dist/SideNavigationSubItem.d.ts +26 -0
  244. package/dist/SideNavigationSubItem.js +64 -0
  245. package/dist/SideNavigationSubItem.js.map +1 -0
  246. package/dist/SideNavigationSubItemTemplate.d.ts +2 -0
  247. package/dist/SideNavigationSubItemTemplate.js +10 -0
  248. package/dist/SideNavigationSubItemTemplate.js.map +1 -0
  249. package/dist/SideNavigationTemplate.d.ts +2 -0
  250. package/dist/SideNavigationTemplate.js +20 -0
  251. package/dist/SideNavigationTemplate.js.map +1 -0
  252. package/dist/SortItem.d.ts +38 -0
  253. package/dist/SortItem.js +54 -0
  254. package/dist/SortItem.js.map +1 -0
  255. package/dist/Timeline.d.ts +144 -0
  256. package/dist/Timeline.js +377 -0
  257. package/dist/Timeline.js.map +1 -0
  258. package/dist/TimelineGroupItem.d.ts +70 -0
  259. package/dist/TimelineGroupItem.js +164 -0
  260. package/dist/TimelineGroupItem.js.map +1 -0
  261. package/dist/TimelineGroupItemTemplate.d.ts +2 -0
  262. package/dist/TimelineGroupItemTemplate.js +17 -0
  263. package/dist/TimelineGroupItemTemplate.js.map +1 -0
  264. package/dist/TimelineItem.d.ts +122 -0
  265. package/dist/TimelineItem.js +194 -0
  266. package/dist/TimelineItem.js.map +1 -0
  267. package/dist/TimelineItemTemplate.d.ts +2 -0
  268. package/dist/TimelineItemTemplate.js +29 -0
  269. package/dist/TimelineItemTemplate.js.map +1 -0
  270. package/dist/TimelineTemplate.d.ts +2 -0
  271. package/dist/TimelineTemplate.js +18 -0
  272. package/dist/TimelineTemplate.js.map +1 -0
  273. package/dist/UploadCollection.d.ts +123 -0
  274. package/dist/UploadCollection.js +203 -306
  275. package/dist/UploadCollection.js.map +1 -0
  276. package/dist/UploadCollectionItem.d.ts +168 -0
  277. package/dist/UploadCollectionItem.js +382 -475
  278. package/dist/UploadCollectionItem.js.map +1 -0
  279. package/dist/UploadCollectionItemTemplate.d.ts +3 -0
  280. package/dist/UploadCollectionItemTemplate.js +22 -0
  281. package/dist/UploadCollectionItemTemplate.js.map +1 -0
  282. package/dist/UploadCollectionTemplate.d.ts +2 -0
  283. package/dist/UploadCollectionTemplate.js +24 -0
  284. package/dist/UploadCollectionTemplate.js.map +1 -0
  285. package/dist/UserMenu.d.ts +168 -0
  286. package/dist/UserMenu.js +366 -0
  287. package/dist/UserMenu.js.map +1 -0
  288. package/dist/UserMenuAccount.d.ts +61 -0
  289. package/dist/UserMenuAccount.js +121 -0
  290. package/dist/UserMenuAccount.js.map +1 -0
  291. package/dist/UserMenuItem.d.ts +35 -0
  292. package/dist/UserMenuItem.js +52 -0
  293. package/dist/UserMenuItem.js.map +1 -0
  294. package/dist/UserMenuItemGroup.d.ts +36 -0
  295. package/dist/UserMenuItemGroup.js +54 -0
  296. package/dist/UserMenuItemGroup.js.map +1 -0
  297. package/dist/UserMenuItemGroupTemplate.d.ts +2 -0
  298. package/dist/UserMenuItemGroupTemplate.js +5 -0
  299. package/dist/UserMenuItemGroupTemplate.js.map +1 -0
  300. package/dist/UserMenuItemTemplate.d.ts +2 -0
  301. package/dist/UserMenuItemTemplate.js +5 -0
  302. package/dist/UserMenuItemTemplate.js.map +1 -0
  303. package/dist/UserMenuTemplate.d.ts +2 -0
  304. package/dist/UserMenuTemplate.js +57 -0
  305. package/dist/UserMenuTemplate.js.map +1 -0
  306. package/dist/UserSettingsAccountView.d.ts +29 -0
  307. package/dist/UserSettingsAccountView.js +108 -0
  308. package/dist/UserSettingsAccountView.js.map +1 -0
  309. package/dist/UserSettingsAccountViewTemplate.d.ts +2 -0
  310. package/dist/UserSettingsAccountViewTemplate.js +18 -0
  311. package/dist/UserSettingsAccountViewTemplate.js.map +1 -0
  312. package/dist/UserSettingsAppearanceView.d.ts +28 -0
  313. package/dist/UserSettingsAppearanceView.js +108 -0
  314. package/dist/UserSettingsAppearanceView.js.map +1 -0
  315. package/dist/UserSettingsAppearanceViewGroup.d.ts +27 -0
  316. package/dist/UserSettingsAppearanceViewGroup.js +43 -0
  317. package/dist/UserSettingsAppearanceViewGroup.js.map +1 -0
  318. package/dist/UserSettingsAppearanceViewItem.d.ts +29 -0
  319. package/dist/UserSettingsAppearanceViewItem.js +103 -0
  320. package/dist/UserSettingsAppearanceViewItem.js.map +1 -0
  321. package/dist/UserSettingsAppearanceViewItemTemplate.d.ts +2 -0
  322. package/dist/UserSettingsAppearanceViewItemTemplate.js +13 -0
  323. package/dist/UserSettingsAppearanceViewItemTemplate.js.map +1 -0
  324. package/dist/UserSettingsAppearanceViewTemplate.d.ts +2 -0
  325. package/dist/UserSettingsAppearanceViewTemplate.js +6 -0
  326. package/dist/UserSettingsAppearanceViewTemplate.js.map +1 -0
  327. package/dist/UserSettingsDialog.d.ts +118 -0
  328. package/dist/UserSettingsDialog.js +262 -0
  329. package/dist/UserSettingsDialog.js.map +1 -0
  330. package/dist/UserSettingsDialogTemplate.d.ts +2 -0
  331. package/dist/UserSettingsDialogTemplate.js +23 -0
  332. package/dist/UserSettingsDialogTemplate.js.map +1 -0
  333. package/dist/UserSettingsItem.d.ts +136 -0
  334. package/dist/UserSettingsItem.js +215 -0
  335. package/dist/UserSettingsItem.js.map +1 -0
  336. package/dist/UserSettingsItemTemplate.d.ts +4 -0
  337. package/dist/UserSettingsItemTemplate.js +20 -0
  338. package/dist/UserSettingsItemTemplate.js.map +1 -0
  339. package/dist/UserSettingsView.d.ts +43 -0
  340. package/dist/UserSettingsView.js +68 -0
  341. package/dist/UserSettingsView.js.map +1 -0
  342. package/dist/UserSettingsViewTemplate.d.ts +2 -0
  343. package/dist/UserSettingsViewTemplate.js +5 -0
  344. package/dist/UserSettingsViewTemplate.js.map +1 -0
  345. package/dist/ViewSettingsDialog.d.ts +315 -0
  346. package/dist/ViewSettingsDialog.js +743 -0
  347. package/dist/ViewSettingsDialog.js.map +1 -0
  348. package/dist/ViewSettingsDialogTemplate.d.ts +2 -0
  349. package/dist/ViewSettingsDialogTemplate.js +53 -0
  350. package/dist/ViewSettingsDialogTemplate.js.map +1 -0
  351. package/dist/Wizard.d.ts +360 -0
  352. package/dist/Wizard.js +827 -0
  353. package/dist/Wizard.js.map +1 -0
  354. package/dist/WizardPopoverTemplate.d.ts +2 -0
  355. package/dist/WizardPopoverTemplate.js +12 -0
  356. package/dist/WizardPopoverTemplate.js.map +1 -0
  357. package/dist/WizardStep.d.ts +89 -0
  358. package/dist/WizardStep.js +92 -0
  359. package/dist/WizardStep.js.map +1 -0
  360. package/dist/WizardTab.d.ts +99 -0
  361. package/dist/WizardTab.js +162 -0
  362. package/dist/WizardTab.js.map +1 -0
  363. package/dist/WizardTabTemplate.d.ts +2 -0
  364. package/dist/WizardTabTemplate.js +7 -0
  365. package/dist/WizardTabTemplate.js.map +1 -0
  366. package/dist/WizardTemplate.d.ts +2 -0
  367. package/dist/WizardTemplate.js +11 -0
  368. package/dist/WizardTemplate.js.map +1 -0
  369. package/dist/bundle.esm.d.ts +4 -0
  370. package/dist/bundle.esm.js +67 -0
  371. package/dist/bundle.esm.js.map +1 -0
  372. package/dist/bundle.scoped.esm.d.ts +3 -0
  373. package/dist/bundle.scoped.esm.js +5 -0
  374. package/dist/bundle.scoped.esm.js.map +1 -0
  375. package/dist/css/themes/BarcodeScannerDialog.css +1 -0
  376. package/dist/css/themes/DynamicPage.css +1 -0
  377. package/dist/css/themes/DynamicPageHeader.css +1 -0
  378. package/dist/css/themes/DynamicPageHeaderActions.css +1 -0
  379. package/dist/css/themes/DynamicPageTitle.css +1 -0
  380. package/dist/css/themes/DynamicSideContent.css +1 -0
  381. package/dist/css/themes/FlexibleColumnLayout.css +1 -0
  382. package/dist/css/themes/IllustratedMessage.css +1 -0
  383. package/dist/css/themes/InvisibleTextStyles.css +1 -0
  384. package/dist/css/themes/MediaGallery.css +1 -0
  385. package/dist/css/themes/MediaGalleryItem.css +1 -0
  386. package/dist/css/themes/NavigationLayout.css +1 -0
  387. package/dist/css/themes/NavigationMenu.css +1 -0
  388. package/dist/css/themes/NavigationMenuItem.css +1 -0
  389. package/dist/css/themes/NotificationList.css +1 -0
  390. package/dist/css/themes/NotificationListGroupItem.css +1 -0
  391. package/dist/css/themes/NotificationListItem.css +1 -0
  392. package/dist/css/themes/NotificationListItemBase.css +1 -0
  393. package/dist/css/themes/NotificationStateIcon.css +1 -0
  394. package/dist/css/themes/Page.css +1 -0
  395. package/dist/css/themes/ProductSwitch.css +1 -0
  396. package/dist/css/themes/ProductSwitchItem.css +1 -0
  397. package/dist/css/themes/Search.css +1 -0
  398. package/dist/css/themes/SearchField.css +1 -0
  399. package/dist/css/themes/SearchItem.css +1 -0
  400. package/dist/css/themes/SearchItemGroup.css +1 -0
  401. package/dist/css/themes/SearchItemShowMore.css +1 -0
  402. package/dist/css/themes/SearchMessageArea.css +1 -0
  403. package/dist/css/themes/ShellBar.css +1 -0
  404. package/dist/css/themes/ShellBarBranding.css +1 -0
  405. package/dist/css/themes/ShellBarPopover.css +1 -0
  406. package/dist/css/themes/ShellBarSearch.css +1 -0
  407. package/dist/css/themes/SideNavigation.css +1 -0
  408. package/dist/css/themes/SideNavigationGroup.css +1 -0
  409. package/dist/css/themes/SideNavigationItem.css +1 -0
  410. package/dist/css/themes/SideNavigationItemBase.css +1 -0
  411. package/dist/css/themes/SideNavigationPopover.css +1 -0
  412. package/dist/css/themes/SideNavigationSubItem.css +1 -0
  413. package/dist/css/themes/Timeline.css +1 -0
  414. package/dist/css/themes/TimelineGroupItem.css +1 -0
  415. package/dist/css/themes/TimelineItem.css +1 -0
  416. package/dist/css/themes/UploadCollection.css +1 -0
  417. package/dist/css/themes/UploadCollectionItem.css +1 -0
  418. package/dist/css/themes/UserMenu.css +1 -0
  419. package/dist/css/themes/UserMenuItem.css +1 -0
  420. package/dist/css/themes/UserSettingsAccountView.css +1 -0
  421. package/dist/css/themes/UserSettingsAppearanceViewItem.css +1 -0
  422. package/dist/css/themes/UserSettingsDialog.css +1 -0
  423. package/dist/css/themes/UserSettingsItem.css +1 -0
  424. package/dist/css/themes/UserSettingsView.css +1 -0
  425. package/dist/css/themes/ViewSettingsDialog.css +1 -0
  426. package/dist/css/themes/Wizard.css +1 -0
  427. package/dist/css/themes/WizardPopover.css +1 -0
  428. package/dist/css/themes/WizardTab.css +1 -0
  429. package/dist/css/themes/sap_fiori_3/parameters-bundle.css +1 -0
  430. package/dist/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -0
  431. package/dist/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -0
  432. package/dist/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -0
  433. package/dist/css/themes/sap_horizon/parameters-bundle.css +1 -0
  434. package/dist/css/themes/sap_horizon_dark/parameters-bundle.css +1 -0
  435. package/dist/css/themes/sap_horizon_dark_exp/parameters-bundle.css +1 -0
  436. package/dist/css/themes/sap_horizon_exp/parameters-bundle.css +1 -0
  437. package/dist/css/themes/sap_horizon_hcb/parameters-bundle.css +1 -0
  438. package/dist/css/themes/sap_horizon_hcb_exp/parameters-bundle.css +1 -0
  439. package/dist/css/themes/sap_horizon_hcw/parameters-bundle.css +1 -0
  440. package/dist/css/themes/sap_horizon_hcw_exp/parameters-bundle.css +1 -0
  441. package/dist/custom-elements-internal.json +13915 -0
  442. package/dist/custom-elements.json +9753 -0
  443. package/dist/fcl-utils/FCLLayout.d.ts +24 -0
  444. package/dist/fcl-utils/FCLLayout.js +271 -0
  445. package/dist/fcl-utils/FCLLayout.js.map +1 -0
  446. package/dist/generated/assets/i18n/messagebundle_ar.json +1 -1
  447. package/dist/generated/assets/i18n/messagebundle_bg.json +1 -1
  448. package/dist/generated/assets/i18n/messagebundle_ca.json +1 -1
  449. package/dist/generated/assets/i18n/messagebundle_cnr.json +1 -0
  450. package/dist/generated/assets/i18n/messagebundle_cs.json +1 -1
  451. package/dist/generated/assets/i18n/messagebundle_cy.json +1 -0
  452. package/dist/generated/assets/i18n/messagebundle_da.json +1 -1
  453. package/dist/generated/assets/i18n/messagebundle_de.json +1 -1
  454. package/dist/generated/assets/i18n/messagebundle_el.json +1 -1
  455. package/dist/generated/assets/i18n/messagebundle_en.json +1 -1
  456. package/dist/generated/assets/i18n/messagebundle_en_GB.json +1 -0
  457. package/dist/generated/assets/i18n/messagebundle_en_US_sappsd.json +1 -0
  458. package/dist/generated/assets/i18n/messagebundle_en_US_saprigi.json +1 -0
  459. package/dist/generated/assets/i18n/messagebundle_en_US_saptrc.json +1 -0
  460. package/dist/generated/assets/i18n/messagebundle_es.json +1 -1
  461. package/dist/generated/assets/i18n/messagebundle_es_MX.json +1 -0
  462. package/dist/generated/assets/i18n/messagebundle_et.json +1 -1
  463. package/dist/generated/assets/i18n/messagebundle_fi.json +1 -1
  464. package/dist/generated/assets/i18n/messagebundle_fr.json +1 -1
  465. package/dist/generated/assets/i18n/messagebundle_fr_CA.json +1 -0
  466. package/dist/generated/assets/i18n/messagebundle_hi.json +1 -1
  467. package/dist/generated/assets/i18n/messagebundle_hr.json +1 -1
  468. package/dist/generated/assets/i18n/messagebundle_hu.json +1 -1
  469. package/dist/generated/assets/i18n/messagebundle_id.json +1 -0
  470. package/dist/generated/assets/i18n/messagebundle_it.json +1 -1
  471. package/dist/generated/assets/i18n/messagebundle_iw.json +1 -1
  472. package/dist/generated/assets/i18n/messagebundle_ja.json +1 -1
  473. package/dist/generated/assets/i18n/messagebundle_kk.json +1 -1
  474. package/dist/generated/assets/i18n/messagebundle_ko.json +1 -1
  475. package/dist/generated/assets/i18n/messagebundle_lt.json +1 -1
  476. package/dist/generated/assets/i18n/messagebundle_lv.json +1 -1
  477. package/dist/generated/assets/i18n/messagebundle_mk.json +1 -0
  478. package/dist/generated/assets/i18n/messagebundle_ms.json +1 -1
  479. package/dist/generated/assets/i18n/messagebundle_nl.json +1 -1
  480. package/dist/generated/assets/i18n/messagebundle_no.json +1 -1
  481. package/dist/generated/assets/i18n/messagebundle_pl.json +1 -1
  482. package/dist/generated/assets/i18n/messagebundle_pt.json +1 -1
  483. package/dist/generated/assets/i18n/messagebundle_pt_PT.json +1 -0
  484. package/dist/generated/assets/i18n/messagebundle_ro.json +1 -1
  485. package/dist/generated/assets/i18n/messagebundle_ru.json +1 -1
  486. package/dist/generated/assets/i18n/messagebundle_sh.json +1 -1
  487. package/dist/generated/assets/i18n/messagebundle_sk.json +1 -1
  488. package/dist/generated/assets/i18n/messagebundle_sl.json +1 -1
  489. package/dist/generated/assets/i18n/messagebundle_sr.json +1 -0
  490. package/dist/generated/assets/i18n/messagebundle_sv.json +1 -1
  491. package/dist/generated/assets/i18n/messagebundle_th.json +1 -1
  492. package/dist/generated/assets/i18n/messagebundle_tr.json +1 -1
  493. package/dist/generated/assets/i18n/messagebundle_uk.json +1 -1
  494. package/dist/generated/assets/i18n/messagebundle_vi.json +1 -1
  495. package/dist/generated/assets/i18n/messagebundle_zh_CN.json +1 -1
  496. package/dist/generated/assets/i18n/messagebundle_zh_TW.json +1 -1
  497. package/dist/generated/assets/themes/sap_fiori_3/parameters-bundle.css.json +1 -1
  498. package/dist/generated/assets/themes/sap_fiori_3_dark/parameters-bundle.css.json +1 -1
  499. package/dist/generated/assets/themes/sap_fiori_3_hcb/parameters-bundle.css.json +1 -0
  500. package/dist/generated/assets/themes/sap_fiori_3_hcw/parameters-bundle.css.json +1 -0
  501. package/dist/generated/assets/themes/sap_horizon/parameters-bundle.css.json +1 -0
  502. package/dist/generated/assets/themes/sap_horizon_dark/parameters-bundle.css.json +1 -0
  503. package/dist/generated/assets/themes/sap_horizon_dark_exp/parameters-bundle.css.json +1 -0
  504. package/dist/generated/assets/themes/sap_horizon_exp/parameters-bundle.css.json +1 -0
  505. package/dist/generated/assets/themes/sap_horizon_hcb/parameters-bundle.css.json +1 -0
  506. package/dist/generated/assets/themes/sap_horizon_hcb_exp/parameters-bundle.css.json +1 -0
  507. package/dist/generated/assets/themes/sap_horizon_hcw/parameters-bundle.css.json +1 -0
  508. package/dist/generated/assets/themes/sap_horizon_hcw_exp/parameters-bundle.css.json +1 -0
  509. package/dist/generated/i18n/i18n-defaults.d.ts +208 -0
  510. package/dist/generated/i18n/i18n-defaults.js +208 -2
  511. package/dist/generated/i18n/i18n-defaults.js.map +1 -0
  512. package/dist/generated/js-imports/Illustrations.d.ts +1 -0
  513. package/dist/generated/js-imports/Illustrations.js +88 -0
  514. package/dist/generated/js-imports/Illustrations.js.map +1 -0
  515. package/dist/generated/js-imports/IllustrationsTNT.d.ts +1 -0
  516. package/dist/generated/js-imports/IllustrationsTNT.js +62 -0
  517. package/dist/generated/js-imports/IllustrationsTNT.js.map +1 -0
  518. package/dist/generated/js-imports/IllustrationsV5TNT.d.ts +1 -0
  519. package/dist/generated/js-imports/IllustrationsV5TNT.js +59 -0
  520. package/dist/generated/js-imports/IllustrationsV5TNT.js.map +1 -0
  521. package/dist/generated/js-imports/IllustrationsV5TNTHC.d.ts +1 -0
  522. package/dist/generated/js-imports/IllustrationsV5TNTHC.js +60 -0
  523. package/dist/generated/js-imports/IllustrationsV5TNTHC.js.map +1 -0
  524. package/dist/generated/json-imports/Themes-fetch.d.ts +1 -0
  525. package/dist/generated/json-imports/Themes-fetch.js +25 -0
  526. package/dist/generated/json-imports/Themes-fetch.js.map +1 -0
  527. package/dist/generated/json-imports/Themes-node.d.ts +1 -0
  528. package/dist/generated/json-imports/Themes-node.js +25 -0
  529. package/dist/generated/json-imports/Themes-node.js.map +1 -0
  530. package/dist/generated/json-imports/Themes.d.ts +1 -0
  531. package/dist/generated/json-imports/Themes.js +25 -19
  532. package/dist/generated/json-imports/Themes.js.map +1 -0
  533. package/dist/generated/json-imports/i18n-fetch.d.ts +1 -0
  534. package/dist/generated/json-imports/i18n-fetch.js +120 -0
  535. package/dist/generated/json-imports/i18n-fetch.js.map +1 -0
  536. package/dist/generated/json-imports/i18n-node.d.ts +1 -0
  537. package/dist/generated/json-imports/i18n-node.js +120 -0
  538. package/dist/generated/json-imports/i18n-node.js.map +1 -0
  539. package/dist/generated/json-imports/i18n.d.ts +1 -0
  540. package/dist/generated/json-imports/i18n.js +119 -90
  541. package/dist/generated/json-imports/i18n.js.map +1 -0
  542. package/dist/generated/themes/BarcodeScannerDialog.css.d.ts +2 -0
  543. package/dist/generated/themes/BarcodeScannerDialog.css.js +8 -0
  544. package/dist/generated/themes/BarcodeScannerDialog.css.js.map +1 -0
  545. package/dist/generated/themes/DynamicPage.css.d.ts +2 -0
  546. package/dist/generated/themes/DynamicPage.css.js +8 -0
  547. package/dist/generated/themes/DynamicPage.css.js.map +1 -0
  548. package/dist/generated/themes/DynamicPageHeader.css.d.ts +2 -0
  549. package/dist/generated/themes/DynamicPageHeader.css.js +8 -0
  550. package/dist/generated/themes/DynamicPageHeader.css.js.map +1 -0
  551. package/dist/generated/themes/DynamicPageHeaderActions.css.d.ts +2 -0
  552. package/dist/generated/themes/DynamicPageHeaderActions.css.js +8 -0
  553. package/dist/generated/themes/DynamicPageHeaderActions.css.js.map +1 -0
  554. package/dist/generated/themes/DynamicPageTitle.css.d.ts +2 -0
  555. package/dist/generated/themes/DynamicPageTitle.css.js +8 -0
  556. package/dist/generated/themes/DynamicPageTitle.css.js.map +1 -0
  557. package/dist/generated/themes/DynamicSideContent.css.d.ts +2 -0
  558. package/dist/generated/themes/DynamicSideContent.css.js +8 -0
  559. package/dist/generated/themes/DynamicSideContent.css.js.map +1 -0
  560. package/dist/generated/themes/FlexibleColumnLayout.css.d.ts +2 -0
  561. package/dist/generated/themes/FlexibleColumnLayout.css.js +8 -0
  562. package/dist/generated/themes/FlexibleColumnLayout.css.js.map +1 -0
  563. package/dist/generated/themes/IllustratedMessage.css.d.ts +2 -0
  564. package/dist/generated/themes/IllustratedMessage.css.js +8 -0
  565. package/dist/generated/themes/IllustratedMessage.css.js.map +1 -0
  566. package/dist/generated/themes/InvisibleTextStyles.css.d.ts +2 -0
  567. package/dist/generated/themes/InvisibleTextStyles.css.js +8 -8
  568. package/dist/generated/themes/InvisibleTextStyles.css.js.map +1 -0
  569. package/dist/generated/themes/MediaGallery.css.d.ts +2 -0
  570. package/dist/generated/themes/MediaGallery.css.js +8 -0
  571. package/dist/generated/themes/MediaGallery.css.js.map +1 -0
  572. package/dist/generated/themes/MediaGalleryItem.css.d.ts +2 -0
  573. package/dist/generated/themes/MediaGalleryItem.css.js +8 -0
  574. package/dist/generated/themes/MediaGalleryItem.css.js.map +1 -0
  575. package/dist/generated/themes/NavigationLayout.css.d.ts +2 -0
  576. package/dist/generated/themes/NavigationLayout.css.js +8 -0
  577. package/dist/generated/themes/NavigationLayout.css.js.map +1 -0
  578. package/dist/generated/themes/NavigationMenu.css.d.ts +2 -0
  579. package/dist/generated/themes/NavigationMenu.css.js +8 -0
  580. package/dist/generated/themes/NavigationMenu.css.js.map +1 -0
  581. package/dist/generated/themes/NavigationMenuItem.css.d.ts +2 -0
  582. package/dist/generated/themes/NavigationMenuItem.css.js +8 -0
  583. package/dist/generated/themes/NavigationMenuItem.css.js.map +1 -0
  584. package/dist/generated/themes/NotificationList.css.d.ts +2 -0
  585. package/dist/generated/themes/NotificationList.css.js +8 -0
  586. package/dist/generated/themes/NotificationList.css.js.map +1 -0
  587. package/dist/generated/themes/NotificationListGroupItem.css.d.ts +2 -0
  588. package/dist/generated/themes/NotificationListGroupItem.css.js +8 -8
  589. package/dist/generated/themes/NotificationListGroupItem.css.js.map +1 -0
  590. package/dist/generated/themes/NotificationListItem.css.d.ts +2 -0
  591. package/dist/generated/themes/NotificationListItem.css.js +8 -8
  592. package/dist/generated/themes/NotificationListItem.css.js.map +1 -0
  593. package/dist/generated/themes/NotificationListItemBase.css.d.ts +2 -0
  594. package/dist/generated/themes/NotificationListItemBase.css.js +8 -8
  595. package/dist/generated/themes/NotificationListItemBase.css.js.map +1 -0
  596. package/dist/generated/themes/NotificationStateIcon.css.d.ts +2 -0
  597. package/dist/generated/themes/NotificationStateIcon.css.js +8 -0
  598. package/dist/generated/themes/NotificationStateIcon.css.js.map +1 -0
  599. package/dist/generated/themes/Page.css.d.ts +2 -0
  600. package/dist/generated/themes/Page.css.js +8 -0
  601. package/dist/generated/themes/Page.css.js.map +1 -0
  602. package/dist/generated/themes/ProductSwitch.css.d.ts +2 -0
  603. package/dist/generated/themes/ProductSwitch.css.js +8 -8
  604. package/dist/generated/themes/ProductSwitch.css.js.map +1 -0
  605. package/dist/generated/themes/ProductSwitchItem.css.d.ts +2 -0
  606. package/dist/generated/themes/ProductSwitchItem.css.js +8 -8
  607. package/dist/generated/themes/ProductSwitchItem.css.js.map +1 -0
  608. package/dist/generated/themes/Search.css.d.ts +2 -0
  609. package/dist/generated/themes/Search.css.js +8 -0
  610. package/dist/generated/themes/Search.css.js.map +1 -0
  611. package/dist/generated/themes/SearchField.css.d.ts +2 -0
  612. package/dist/generated/themes/SearchField.css.js +8 -0
  613. package/dist/generated/themes/SearchField.css.js.map +1 -0
  614. package/dist/generated/themes/SearchItem.css.d.ts +2 -0
  615. package/dist/generated/themes/SearchItem.css.js +8 -0
  616. package/dist/generated/themes/SearchItem.css.js.map +1 -0
  617. package/dist/generated/themes/SearchItemGroup.css.d.ts +2 -0
  618. package/dist/generated/themes/SearchItemGroup.css.js +8 -0
  619. package/dist/generated/themes/SearchItemGroup.css.js.map +1 -0
  620. package/dist/generated/themes/SearchItemShowMore.css.d.ts +2 -0
  621. package/dist/generated/themes/SearchItemShowMore.css.js +8 -0
  622. package/dist/generated/themes/SearchItemShowMore.css.js.map +1 -0
  623. package/dist/generated/themes/SearchMessageArea.css.d.ts +2 -0
  624. package/dist/generated/themes/SearchMessageArea.css.js +8 -0
  625. package/dist/generated/themes/SearchMessageArea.css.js.map +1 -0
  626. package/dist/generated/themes/ShellBar.css.d.ts +2 -0
  627. package/dist/generated/themes/ShellBar.css.js +8 -8
  628. package/dist/generated/themes/ShellBar.css.js.map +1 -0
  629. package/dist/generated/themes/ShellBarBranding.css.d.ts +2 -0
  630. package/dist/generated/themes/ShellBarBranding.css.js +8 -0
  631. package/dist/generated/themes/ShellBarBranding.css.js.map +1 -0
  632. package/dist/generated/themes/ShellBarPopover.css.d.ts +2 -0
  633. package/dist/generated/themes/ShellBarPopover.css.js +8 -0
  634. package/dist/generated/themes/ShellBarPopover.css.js.map +1 -0
  635. package/dist/generated/themes/ShellBarSearch.css.d.ts +2 -0
  636. package/dist/generated/themes/ShellBarSearch.css.js +8 -0
  637. package/dist/generated/themes/ShellBarSearch.css.js.map +1 -0
  638. package/dist/generated/themes/SideNavigation.css.d.ts +2 -0
  639. package/dist/generated/themes/SideNavigation.css.js +8 -0
  640. package/dist/generated/themes/SideNavigation.css.js.map +1 -0
  641. package/dist/generated/themes/SideNavigationGroup.css.d.ts +2 -0
  642. package/dist/generated/themes/SideNavigationGroup.css.js +8 -0
  643. package/dist/generated/themes/SideNavigationGroup.css.js.map +1 -0
  644. package/dist/generated/themes/SideNavigationItem.css.d.ts +2 -0
  645. package/dist/generated/themes/SideNavigationItem.css.js +8 -0
  646. package/dist/generated/themes/SideNavigationItem.css.js.map +1 -0
  647. package/dist/generated/themes/SideNavigationItemBase.css.d.ts +2 -0
  648. package/dist/generated/themes/SideNavigationItemBase.css.js +8 -0
  649. package/dist/generated/themes/SideNavigationItemBase.css.js.map +1 -0
  650. package/dist/generated/themes/SideNavigationPopover.css.d.ts +2 -0
  651. package/dist/generated/themes/SideNavigationPopover.css.js +8 -0
  652. package/dist/generated/themes/SideNavigationPopover.css.js.map +1 -0
  653. package/dist/generated/themes/SideNavigationSubItem.css.d.ts +2 -0
  654. package/dist/generated/themes/SideNavigationSubItem.css.js +8 -0
  655. package/dist/generated/themes/SideNavigationSubItem.css.js.map +1 -0
  656. package/dist/generated/themes/Timeline.css.d.ts +2 -0
  657. package/dist/generated/themes/Timeline.css.js +8 -0
  658. package/dist/generated/themes/Timeline.css.js.map +1 -0
  659. package/dist/generated/themes/TimelineGroupItem.css.d.ts +2 -0
  660. package/dist/generated/themes/TimelineGroupItem.css.js +8 -0
  661. package/dist/generated/themes/TimelineGroupItem.css.js.map +1 -0
  662. package/dist/generated/themes/TimelineItem.css.d.ts +2 -0
  663. package/dist/generated/themes/TimelineItem.css.js +8 -0
  664. package/dist/generated/themes/TimelineItem.css.js.map +1 -0
  665. package/dist/generated/themes/UploadCollection.css.d.ts +2 -0
  666. package/dist/generated/themes/UploadCollection.css.js +8 -8
  667. package/dist/generated/themes/UploadCollection.css.js.map +1 -0
  668. package/dist/generated/themes/UploadCollectionItem.css.d.ts +2 -0
  669. package/dist/generated/themes/UploadCollectionItem.css.js +8 -8
  670. package/dist/generated/themes/UploadCollectionItem.css.js.map +1 -0
  671. package/dist/generated/themes/UserMenu.css.d.ts +2 -0
  672. package/dist/generated/themes/UserMenu.css.js +8 -0
  673. package/dist/generated/themes/UserMenu.css.js.map +1 -0
  674. package/dist/generated/themes/UserMenuItem.css.d.ts +2 -0
  675. package/dist/generated/themes/UserMenuItem.css.js +8 -0
  676. package/dist/generated/themes/UserMenuItem.css.js.map +1 -0
  677. package/dist/generated/themes/UserSettingsAccountView.css.d.ts +2 -0
  678. package/dist/generated/themes/UserSettingsAccountView.css.js +8 -0
  679. package/dist/generated/themes/UserSettingsAccountView.css.js.map +1 -0
  680. package/dist/generated/themes/UserSettingsAppearanceViewItem.css.d.ts +2 -0
  681. package/dist/generated/themes/UserSettingsAppearanceViewItem.css.js +8 -0
  682. package/dist/generated/themes/UserSettingsAppearanceViewItem.css.js.map +1 -0
  683. package/dist/generated/themes/UserSettingsDialog.css.d.ts +2 -0
  684. package/dist/generated/themes/UserSettingsDialog.css.js +8 -0
  685. package/dist/generated/themes/UserSettingsDialog.css.js.map +1 -0
  686. package/dist/generated/themes/UserSettingsItem.css.d.ts +2 -0
  687. package/dist/generated/themes/UserSettingsItem.css.js +8 -0
  688. package/dist/generated/themes/UserSettingsItem.css.js.map +1 -0
  689. package/dist/generated/themes/UserSettingsView.css.d.ts +2 -0
  690. package/dist/generated/themes/UserSettingsView.css.js +8 -0
  691. package/dist/generated/themes/UserSettingsView.css.js.map +1 -0
  692. package/dist/generated/themes/ViewSettingsDialog.css.d.ts +2 -0
  693. package/dist/generated/themes/ViewSettingsDialog.css.js +8 -0
  694. package/dist/generated/themes/ViewSettingsDialog.css.js.map +1 -0
  695. package/dist/generated/themes/Wizard.css.d.ts +2 -0
  696. package/dist/generated/themes/Wizard.css.js +8 -0
  697. package/dist/generated/themes/Wizard.css.js.map +1 -0
  698. package/dist/generated/themes/WizardPopover.css.d.ts +2 -0
  699. package/dist/generated/themes/WizardPopover.css.js +8 -0
  700. package/dist/generated/themes/WizardPopover.css.js.map +1 -0
  701. package/dist/generated/themes/WizardTab.css.d.ts +2 -0
  702. package/dist/generated/themes/WizardTab.css.js +8 -0
  703. package/dist/generated/themes/WizardTab.css.js.map +1 -0
  704. package/dist/generated/themes/sap_fiori_3/parameters-bundle.css.d.ts +2 -0
  705. package/dist/generated/themes/sap_fiori_3/parameters-bundle.css.js +3 -1
  706. package/dist/generated/themes/sap_fiori_3/parameters-bundle.css.js.map +1 -0
  707. package/dist/generated/themes/sap_fiori_3_dark/parameters-bundle.css.d.ts +2 -0
  708. package/dist/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +3 -1
  709. package/dist/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js.map +1 -0
  710. package/dist/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.d.ts +2 -0
  711. package/dist/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +3 -0
  712. package/dist/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js.map +1 -0
  713. package/dist/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.d.ts +2 -0
  714. package/dist/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +3 -0
  715. package/dist/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js.map +1 -0
  716. package/dist/generated/themes/sap_horizon/parameters-bundle.css.d.ts +2 -0
  717. package/dist/generated/themes/sap_horizon/parameters-bundle.css.js +3 -0
  718. package/dist/generated/themes/sap_horizon/parameters-bundle.css.js.map +1 -0
  719. package/dist/generated/themes/sap_horizon_dark/parameters-bundle.css.d.ts +2 -0
  720. package/dist/generated/themes/sap_horizon_dark/parameters-bundle.css.js +3 -0
  721. package/dist/generated/themes/sap_horizon_dark/parameters-bundle.css.js.map +1 -0
  722. package/dist/generated/themes/sap_horizon_dark_exp/parameters-bundle.css.d.ts +2 -0
  723. package/dist/generated/themes/sap_horizon_dark_exp/parameters-bundle.css.js +3 -0
  724. package/dist/generated/themes/sap_horizon_dark_exp/parameters-bundle.css.js.map +1 -0
  725. package/dist/generated/themes/sap_horizon_exp/parameters-bundle.css.d.ts +2 -0
  726. package/dist/generated/themes/sap_horizon_exp/parameters-bundle.css.js +3 -0
  727. package/dist/generated/themes/sap_horizon_exp/parameters-bundle.css.js.map +1 -0
  728. package/dist/generated/themes/sap_horizon_hcb/parameters-bundle.css.d.ts +2 -0
  729. package/dist/generated/themes/sap_horizon_hcb/parameters-bundle.css.js +3 -0
  730. package/dist/generated/themes/sap_horizon_hcb/parameters-bundle.css.js.map +1 -0
  731. package/dist/generated/themes/sap_horizon_hcb_exp/parameters-bundle.css.d.ts +2 -0
  732. package/dist/generated/themes/sap_horizon_hcb_exp/parameters-bundle.css.js +3 -0
  733. package/dist/generated/themes/sap_horizon_hcb_exp/parameters-bundle.css.js.map +1 -0
  734. package/dist/generated/themes/sap_horizon_hcw/parameters-bundle.css.d.ts +2 -0
  735. package/dist/generated/themes/sap_horizon_hcw/parameters-bundle.css.js +3 -0
  736. package/dist/generated/themes/sap_horizon_hcw/parameters-bundle.css.js.map +1 -0
  737. package/dist/generated/themes/sap_horizon_hcw_exp/parameters-bundle.css.d.ts +2 -0
  738. package/dist/generated/themes/sap_horizon_hcw_exp/parameters-bundle.css.js +3 -0
  739. package/dist/generated/themes/sap_horizon_hcw_exp/parameters-bundle.css.js.map +1 -0
  740. package/dist/illustrations/Achievement.d.ts +8 -0
  741. package/dist/illustrations/Achievement.js +33 -0
  742. package/dist/illustrations/AddColumn.d.ts +8 -0
  743. package/dist/illustrations/AddColumn.js +33 -0
  744. package/dist/illustrations/AddDimensions.d.ts +8 -0
  745. package/dist/illustrations/AddDimensions.js +33 -0
  746. package/dist/illustrations/AddPeople.d.ts +8 -0
  747. package/dist/illustrations/AddPeople.js +33 -0
  748. package/dist/illustrations/AddPeopleToCalendar.d.ts +8 -0
  749. package/dist/illustrations/AddPeopleToCalendar.js +33 -0
  750. package/dist/illustrations/AddingColumns.d.ts +8 -0
  751. package/dist/illustrations/AddingColumns.js +33 -0
  752. package/dist/illustrations/AllIllustrations.d.ts +4 -0
  753. package/dist/illustrations/AllIllustrations.js +5 -0
  754. package/dist/illustrations/AllIllustrations.js.map +1 -0
  755. package/dist/illustrations/BalloonSky.d.ts +8 -0
  756. package/dist/illustrations/BalloonSky.js +33 -0
  757. package/dist/illustrations/BeforeSearch.d.ts +8 -0
  758. package/dist/illustrations/BeforeSearch.js +33 -0
  759. package/dist/illustrations/Connection.d.ts +8 -0
  760. package/dist/illustrations/Connection.js +33 -0
  761. package/dist/illustrations/DragFilesToUpload.d.ts +8 -0
  762. package/dist/illustrations/DragFilesToUpload.js +33 -0
  763. package/dist/illustrations/EmptyCalendar.d.ts +8 -0
  764. package/dist/illustrations/EmptyCalendar.js +33 -0
  765. package/dist/illustrations/EmptyList.d.ts +8 -0
  766. package/dist/illustrations/EmptyList.js +33 -0
  767. package/dist/illustrations/EmptyPlanningCalendar.d.ts +8 -0
  768. package/dist/illustrations/EmptyPlanningCalendar.js +33 -0
  769. package/dist/illustrations/ErrorScreen.d.ts +8 -0
  770. package/dist/illustrations/ErrorScreen.js +33 -0
  771. package/dist/illustrations/FilterTable.d.ts +8 -0
  772. package/dist/illustrations/FilterTable.js +33 -0
  773. package/dist/illustrations/FilteringColumns.d.ts +8 -0
  774. package/dist/illustrations/FilteringColumns.js +33 -0
  775. package/dist/illustrations/GroupTable.d.ts +8 -0
  776. package/dist/illustrations/GroupTable.js +33 -0
  777. package/dist/illustrations/GroupingColumns.d.ts +8 -0
  778. package/dist/illustrations/GroupingColumns.js +33 -0
  779. package/dist/illustrations/KeyTask.d.ts +8 -0
  780. package/dist/illustrations/KeyTask.js +33 -0
  781. package/dist/illustrations/NewMail.d.ts +8 -0
  782. package/dist/illustrations/NewMail.js +33 -0
  783. package/dist/illustrations/NoActivities.d.ts +8 -0
  784. package/dist/illustrations/NoActivities.js +33 -0
  785. package/dist/illustrations/NoChartData.d.ts +8 -0
  786. package/dist/illustrations/NoChartData.js +33 -0
  787. package/dist/illustrations/NoColumnsSet.d.ts +8 -0
  788. package/dist/illustrations/NoColumnsSet.js +33 -0
  789. package/dist/illustrations/NoData.d.ts +8 -0
  790. package/dist/illustrations/NoData.js +33 -0
  791. package/dist/illustrations/NoDimensionsSet.d.ts +8 -0
  792. package/dist/illustrations/NoDimensionsSet.js +33 -0
  793. package/dist/illustrations/NoEntries.d.ts +8 -0
  794. package/dist/illustrations/NoEntries.js +33 -0
  795. package/dist/illustrations/NoFilterResults.d.ts +8 -0
  796. package/dist/illustrations/NoFilterResults.js +33 -0
  797. package/dist/illustrations/NoMail.d.ts +8 -0
  798. package/dist/illustrations/NoMail.js +33 -0
  799. package/dist/illustrations/NoMail_v1.d.ts +8 -0
  800. package/dist/illustrations/NoMail_v1.js +33 -0
  801. package/dist/illustrations/NoNotifications.d.ts +8 -0
  802. package/dist/illustrations/NoNotifications.js +33 -0
  803. package/dist/illustrations/NoSavedItems.d.ts +8 -0
  804. package/dist/illustrations/NoSavedItems.js +33 -0
  805. package/dist/illustrations/NoSavedItems_v1.d.ts +8 -0
  806. package/dist/illustrations/NoSavedItems_v1.js +33 -0
  807. package/dist/illustrations/NoSearchResults.d.ts +8 -0
  808. package/dist/illustrations/NoSearchResults.js +33 -0
  809. package/dist/illustrations/NoTasks.d.ts +8 -0
  810. package/dist/illustrations/NoTasks.js +33 -0
  811. package/dist/illustrations/NoTasks_v1.d.ts +8 -0
  812. package/dist/illustrations/NoTasks_v1.js +33 -0
  813. package/dist/illustrations/PageNotFound.d.ts +8 -0
  814. package/dist/illustrations/PageNotFound.js +33 -0
  815. package/dist/illustrations/ReceiveAppreciation.d.ts +8 -0
  816. package/dist/illustrations/ReceiveAppreciation.js +33 -0
  817. package/dist/illustrations/ReloadScreen.d.ts +8 -0
  818. package/dist/illustrations/ReloadScreen.js +33 -0
  819. package/dist/illustrations/ResizeColumn.d.ts +8 -0
  820. package/dist/illustrations/ResizeColumn.js +33 -0
  821. package/dist/illustrations/ResizingColumns.d.ts +8 -0
  822. package/dist/illustrations/ResizingColumns.js +33 -0
  823. package/dist/illustrations/SearchEarth.d.ts +8 -0
  824. package/dist/illustrations/SearchEarth.js +33 -0
  825. package/dist/illustrations/SearchFolder.d.ts +8 -0
  826. package/dist/illustrations/SearchFolder.js +33 -0
  827. package/dist/illustrations/SignOut.d.ts +8 -0
  828. package/dist/illustrations/SignOut.js +33 -0
  829. package/dist/illustrations/SimpleBalloon.d.ts +8 -0
  830. package/dist/illustrations/SimpleBalloon.js +33 -0
  831. package/dist/illustrations/SimpleBell.d.ts +8 -0
  832. package/dist/illustrations/SimpleBell.js +33 -0
  833. package/dist/illustrations/SimpleCalendar.d.ts +8 -0
  834. package/dist/illustrations/SimpleCalendar.js +33 -0
  835. package/dist/illustrations/SimpleCheckMark.d.ts +8 -0
  836. package/dist/illustrations/SimpleCheckMark.js +33 -0
  837. package/dist/illustrations/SimpleConnection.d.ts +8 -0
  838. package/dist/illustrations/SimpleConnection.js +33 -0
  839. package/dist/illustrations/SimpleEmptyDoc.d.ts +8 -0
  840. package/dist/illustrations/SimpleEmptyDoc.js +33 -0
  841. package/dist/illustrations/SimpleEmptyList.d.ts +8 -0
  842. package/dist/illustrations/SimpleEmptyList.js +33 -0
  843. package/dist/illustrations/SimpleError.d.ts +8 -0
  844. package/dist/illustrations/SimpleError.js +33 -0
  845. package/dist/illustrations/SimpleMagnifier.d.ts +8 -0
  846. package/dist/illustrations/SimpleMagnifier.js +33 -0
  847. package/dist/illustrations/SimpleMail.d.ts +8 -0
  848. package/dist/illustrations/SimpleMail.js +33 -0
  849. package/dist/illustrations/SimpleNoSavedItems.d.ts +8 -0
  850. package/dist/illustrations/SimpleNoSavedItems.js +33 -0
  851. package/dist/illustrations/SimpleNotFoundMagnifier.d.ts +8 -0
  852. package/dist/illustrations/SimpleNotFoundMagnifier.js +33 -0
  853. package/dist/illustrations/SimpleReload.d.ts +8 -0
  854. package/dist/illustrations/SimpleReload.js +33 -0
  855. package/dist/illustrations/SimpleTask.d.ts +8 -0
  856. package/dist/illustrations/SimpleTask.js +33 -0
  857. package/dist/illustrations/SleepingBell.d.ts +8 -0
  858. package/dist/illustrations/SleepingBell.js +33 -0
  859. package/dist/illustrations/SortColumn.d.ts +8 -0
  860. package/dist/illustrations/SortColumn.js +33 -0
  861. package/dist/illustrations/SortingColumns.d.ts +8 -0
  862. package/dist/illustrations/SortingColumns.js +33 -0
  863. package/dist/illustrations/SuccessBalloon.d.ts +8 -0
  864. package/dist/illustrations/SuccessBalloon.js +33 -0
  865. package/dist/illustrations/SuccessCheckMark.d.ts +8 -0
  866. package/dist/illustrations/SuccessCheckMark.js +33 -0
  867. package/dist/illustrations/SuccessHighFive.d.ts +8 -0
  868. package/dist/illustrations/SuccessHighFive.js +33 -0
  869. package/dist/illustrations/SuccessScreen.d.ts +8 -0
  870. package/dist/illustrations/SuccessScreen.js +33 -0
  871. package/dist/illustrations/Survey.d.ts +8 -0
  872. package/dist/illustrations/Survey.js +33 -0
  873. package/dist/illustrations/Tent.d.ts +8 -0
  874. package/dist/illustrations/Tent.js +33 -0
  875. package/dist/illustrations/UnableToLoad.d.ts +8 -0
  876. package/dist/illustrations/UnableToLoad.js +33 -0
  877. package/dist/illustrations/UnableToLoadImage.d.ts +8 -0
  878. package/dist/illustrations/UnableToLoadImage.js +33 -0
  879. package/dist/illustrations/UnableToUpload.d.ts +8 -0
  880. package/dist/illustrations/UnableToUpload.js +33 -0
  881. package/dist/illustrations/UploadCollection.d.ts +8 -0
  882. package/dist/illustrations/UploadCollection.js +33 -0
  883. package/dist/illustrations/UploadToCloud.d.ts +8 -0
  884. package/dist/illustrations/UploadToCloud.js +33 -0
  885. package/dist/illustrations/UserHasSignedUp.d.ts +8 -0
  886. package/dist/illustrations/UserHasSignedUp.js +33 -0
  887. package/dist/illustrations/sapIllus-Dialog-Achievement.js +29 -0
  888. package/dist/illustrations/sapIllus-Dialog-AddColumn.js +38 -0
  889. package/dist/illustrations/sapIllus-Dialog-AddDimensions.js +18 -0
  890. package/dist/illustrations/sapIllus-Dialog-AddPeople.js +32 -0
  891. package/dist/illustrations/sapIllus-Dialog-AddPeopleToCalendar.js +52 -0
  892. package/dist/illustrations/sapIllus-Dialog-AddingColumns.js +38 -0
  893. package/dist/illustrations/sapIllus-Dialog-BalloonSky.js +46 -0
  894. package/dist/illustrations/sapIllus-Dialog-BeforeSearch.js +42 -0
  895. package/dist/illustrations/sapIllus-Dialog-Connection.js +19 -0
  896. package/dist/illustrations/sapIllus-Dialog-DragFilesToUpload.js +20 -0
  897. package/dist/illustrations/sapIllus-Dialog-EmptyCalendar.js +78 -0
  898. package/dist/illustrations/sapIllus-Dialog-EmptyList.js +37 -0
  899. package/dist/illustrations/sapIllus-Dialog-EmptyPlanningCalendar.js +19 -0
  900. package/dist/illustrations/sapIllus-Dialog-ErrorScreen.js +35 -0
  901. package/dist/illustrations/sapIllus-Dialog-FilterTable.js +66 -0
  902. package/dist/illustrations/sapIllus-Dialog-FilteringColumns.js +39 -0
  903. package/dist/illustrations/sapIllus-Dialog-GroupTable.js +68 -0
  904. package/dist/illustrations/sapIllus-Dialog-GroupingColumns.js +35 -0
  905. package/dist/illustrations/sapIllus-Dialog-KeyTask.js +120 -0
  906. package/dist/illustrations/sapIllus-Dialog-NewMail.js +38 -0
  907. package/dist/illustrations/sapIllus-Dialog-NoActivities.js +34 -0
  908. package/dist/illustrations/sapIllus-Dialog-NoChartData.js +45 -0
  909. package/dist/illustrations/sapIllus-Dialog-NoColumnsSet.js +29 -0
  910. package/dist/illustrations/sapIllus-Dialog-NoData.js +12 -0
  911. package/dist/illustrations/sapIllus-Dialog-NoDimensionsSet.js +40 -0
  912. package/dist/illustrations/sapIllus-Dialog-NoEntries.js +42 -0
  913. package/dist/illustrations/sapIllus-Dialog-NoFilterResults.js +20 -0
  914. package/dist/illustrations/sapIllus-Dialog-NoMail.js +16 -0
  915. package/dist/illustrations/sapIllus-Dialog-NoMail_v1.js +23 -0
  916. package/dist/illustrations/sapIllus-Dialog-NoNotifications.js +28 -0
  917. package/dist/illustrations/sapIllus-Dialog-NoSavedItems.js +54 -0
  918. package/dist/illustrations/sapIllus-Dialog-NoSavedItems_v1.js +37 -0
  919. package/dist/illustrations/sapIllus-Dialog-NoSearchResults.js +73 -0
  920. package/dist/illustrations/sapIllus-Dialog-NoTasks.js +60 -0
  921. package/dist/illustrations/sapIllus-Dialog-NoTasks_v1.js +63 -0
  922. package/dist/illustrations/sapIllus-Dialog-PageNotFound.js +13 -0
  923. package/dist/illustrations/sapIllus-Dialog-ReceiveAppreciation.js +25 -0
  924. package/dist/illustrations/sapIllus-Dialog-ReloadScreen.js +49 -0
  925. package/dist/illustrations/sapIllus-Dialog-ResizeColumn.js +42 -0
  926. package/dist/illustrations/sapIllus-Dialog-ResizingColumns.js +55 -0
  927. package/dist/illustrations/sapIllus-Dialog-SearchEarth.js +19 -0
  928. package/dist/illustrations/sapIllus-Dialog-SearchFolder.js +38 -0
  929. package/dist/illustrations/sapIllus-Dialog-SignOut.js +21 -0
  930. package/dist/illustrations/sapIllus-Dialog-SimpleBalloon.js +18 -0
  931. package/dist/illustrations/sapIllus-Dialog-SimpleBell.js +14 -0
  932. package/dist/illustrations/sapIllus-Dialog-SimpleCalendar.js +49 -0
  933. package/dist/illustrations/sapIllus-Dialog-SimpleCheckMark.js +7 -0
  934. package/dist/illustrations/sapIllus-Dialog-SimpleConnection.js +19 -0
  935. package/dist/illustrations/sapIllus-Dialog-SimpleEmptyDoc.js +18 -0
  936. package/dist/illustrations/sapIllus-Dialog-SimpleEmptyList.js +11 -0
  937. package/dist/illustrations/sapIllus-Dialog-SimpleError.js +11 -0
  938. package/dist/illustrations/sapIllus-Dialog-SimpleMagnifier.js +11 -0
  939. package/dist/illustrations/sapIllus-Dialog-SimpleMail.js +14 -0
  940. package/dist/illustrations/sapIllus-Dialog-SimpleNoSavedItems.js +18 -0
  941. package/dist/illustrations/sapIllus-Dialog-SimpleNotFoundMagnifier.js +22 -0
  942. package/dist/illustrations/sapIllus-Dialog-SimpleReload.js +12 -0
  943. package/dist/illustrations/sapIllus-Dialog-SimpleTask.js +24 -0
  944. package/dist/illustrations/sapIllus-Dialog-SleepingBell.js +31 -0
  945. package/dist/illustrations/sapIllus-Dialog-SortColumn.js +40 -0
  946. package/dist/illustrations/sapIllus-Dialog-SortingColumns.js +50 -0
  947. package/dist/illustrations/sapIllus-Dialog-SuccessBalloon.js +16 -0
  948. package/dist/illustrations/sapIllus-Dialog-SuccessCheckMark.js +9 -0
  949. package/dist/illustrations/sapIllus-Dialog-SuccessHighFive.js +25 -0
  950. package/dist/illustrations/sapIllus-Dialog-SuccessScreen.js +48 -0
  951. package/dist/illustrations/sapIllus-Dialog-Survey.js +23 -0
  952. package/dist/illustrations/sapIllus-Dialog-Tent.js +32 -0
  953. package/dist/illustrations/sapIllus-Dialog-UnableToLoad.js +119 -0
  954. package/dist/illustrations/sapIllus-Dialog-UnableToLoadImage.js +28 -0
  955. package/dist/illustrations/sapIllus-Dialog-UnableToUpload.js +26 -0
  956. package/dist/illustrations/sapIllus-Dialog-UploadCollection.js +31 -0
  957. package/dist/illustrations/sapIllus-Dialog-UploadToCloud.js +21 -0
  958. package/dist/illustrations/sapIllus-Dialog-UserHasSignedUp.js +34 -0
  959. package/dist/illustrations/sapIllus-Dot-Achievement.js +19 -0
  960. package/dist/illustrations/sapIllus-Dot-AddColumn.js +27 -0
  961. package/dist/illustrations/sapIllus-Dot-AddDimensions.js +10 -0
  962. package/dist/illustrations/sapIllus-Dot-AddPeople.js +9 -0
  963. package/dist/illustrations/sapIllus-Dot-AddPeopleToCalendar.js +15 -0
  964. package/dist/illustrations/sapIllus-Dot-AddingColumns.js +14 -0
  965. package/dist/illustrations/sapIllus-Dot-BalloonSky.js +7 -0
  966. package/dist/illustrations/sapIllus-Dot-BeforeSearch.js +41 -0
  967. package/dist/illustrations/sapIllus-Dot-Connection.js +10 -0
  968. package/dist/illustrations/sapIllus-Dot-DragFilesToUpload.js +8 -0
  969. package/dist/illustrations/sapIllus-Dot-EmptyCalendar.js +37 -0
  970. package/dist/illustrations/sapIllus-Dot-EmptyList.js +7 -0
  971. package/dist/illustrations/sapIllus-Dot-EmptyPlanningCalendar.js +18 -0
  972. package/dist/illustrations/sapIllus-Dot-ErrorScreen.js +9 -0
  973. package/dist/illustrations/sapIllus-Dot-FilterTable.js +8 -0
  974. package/dist/illustrations/sapIllus-Dot-FilteringColumns.js +22 -0
  975. package/dist/illustrations/sapIllus-Dot-GroupTable.js +36 -0
  976. package/dist/illustrations/sapIllus-Dot-GroupingColumns.js +23 -0
  977. package/dist/illustrations/sapIllus-Dot-KeyTask.js +119 -0
  978. package/dist/illustrations/sapIllus-Dot-NewMail.js +11 -0
  979. package/dist/illustrations/sapIllus-Dot-NoActivities.js +11 -0
  980. package/dist/illustrations/sapIllus-Dot-NoChartData.js +35 -0
  981. package/dist/illustrations/sapIllus-Dot-NoColumnsSet.js +26 -0
  982. package/dist/illustrations/sapIllus-Dot-NoData.js +11 -0
  983. package/dist/illustrations/sapIllus-Dot-NoDimensionsSet.js +7 -0
  984. package/dist/illustrations/sapIllus-Dot-NoEntries.js +25 -0
  985. package/dist/illustrations/sapIllus-Dot-NoFilterResults.js +14 -0
  986. package/dist/illustrations/sapIllus-Dot-NoMail.js +14 -0
  987. package/dist/illustrations/sapIllus-Dot-NoMail_v1.js +10 -0
  988. package/dist/illustrations/sapIllus-Dot-NoNotifications.js +23 -0
  989. package/dist/illustrations/sapIllus-Dot-NoSavedItems.js +55 -0
  990. package/dist/illustrations/sapIllus-Dot-NoSavedItems_v1.js +13 -0
  991. package/dist/illustrations/sapIllus-Dot-NoSearchResults.js +35 -0
  992. package/dist/illustrations/sapIllus-Dot-NoTasks.js +22 -0
  993. package/dist/illustrations/sapIllus-Dot-NoTasks_v1.js +13 -0
  994. package/dist/illustrations/sapIllus-Dot-PageNotFound.js +14 -0
  995. package/dist/illustrations/sapIllus-Dot-ReceiveAppreciation.js +19 -0
  996. package/dist/illustrations/sapIllus-Dot-ReloadScreen.js +9 -0
  997. package/dist/illustrations/sapIllus-Dot-ResizeColumn.js +27 -0
  998. package/dist/illustrations/sapIllus-Dot-ResizingColumns.js +19 -0
  999. package/dist/illustrations/sapIllus-Dot-SearchEarth.js +7 -0
  1000. package/dist/illustrations/sapIllus-Dot-SearchFolder.js +11 -0
  1001. package/dist/illustrations/sapIllus-Dot-SignOut.js +11 -0
  1002. package/dist/illustrations/sapIllus-Dot-SimpleBalloon.js +7 -0
  1003. package/dist/illustrations/sapIllus-Dot-SimpleBell.js +8 -0
  1004. package/dist/illustrations/sapIllus-Dot-SimpleCalendar.js +37 -0
  1005. package/dist/illustrations/sapIllus-Dot-SimpleCheckMark.js +5 -0
  1006. package/dist/illustrations/sapIllus-Dot-SimpleConnection.js +10 -0
  1007. package/dist/illustrations/sapIllus-Dot-SimpleEmptyDoc.js +8 -0
  1008. package/dist/illustrations/sapIllus-Dot-SimpleEmptyList.js +7 -0
  1009. package/dist/illustrations/sapIllus-Dot-SimpleError.js +9 -0
  1010. package/dist/illustrations/sapIllus-Dot-SimpleMagnifier.js +7 -0
  1011. package/dist/illustrations/sapIllus-Dot-SimpleMail.js +10 -0
  1012. package/dist/illustrations/sapIllus-Dot-SimpleNoSavedItems.js +13 -0
  1013. package/dist/illustrations/sapIllus-Dot-SimpleNotFoundMagnifier.js +11 -0
  1014. package/dist/illustrations/sapIllus-Dot-SimpleReload.js +9 -0
  1015. package/dist/illustrations/sapIllus-Dot-SimpleTask.js +13 -0
  1016. package/dist/illustrations/sapIllus-Dot-SleepingBell.js +8 -0
  1017. package/dist/illustrations/sapIllus-Dot-SortColumn.js +29 -0
  1018. package/dist/illustrations/sapIllus-Dot-SortingColumns.js +15 -0
  1019. package/dist/illustrations/sapIllus-Dot-SuccessHighFive.js +7 -0
  1020. package/dist/illustrations/sapIllus-Dot-SuccessScreen.js +5 -0
  1021. package/dist/illustrations/sapIllus-Dot-Survey.js +8 -0
  1022. package/dist/illustrations/sapIllus-Dot-Tent.js +8 -0
  1023. package/dist/illustrations/sapIllus-Dot-UnableToLoad.js +118 -0
  1024. package/dist/illustrations/sapIllus-Dot-UnableToLoadImage.js +24 -0
  1025. package/dist/illustrations/sapIllus-Dot-UnableToUpload.js +10 -0
  1026. package/dist/illustrations/sapIllus-Dot-UploadCollection.js +7 -0
  1027. package/dist/illustrations/sapIllus-Dot-UploadToCloud.js +9 -0
  1028. package/dist/illustrations/sapIllus-Dot-UserHasSignedUp.js +8 -0
  1029. package/dist/illustrations/sapIllus-Scene-Achievement.js +29 -0
  1030. package/dist/illustrations/sapIllus-Scene-AddColumn.js +49 -0
  1031. package/dist/illustrations/sapIllus-Scene-AddDimensions.js +18 -0
  1032. package/dist/illustrations/sapIllus-Scene-AddPeople.js +31 -0
  1033. package/dist/illustrations/sapIllus-Scene-AddPeopleToCalendar.js +47 -0
  1034. package/dist/illustrations/sapIllus-Scene-AddingColumns.js +38 -0
  1035. package/dist/illustrations/sapIllus-Scene-BalloonSky.js +54 -0
  1036. package/dist/illustrations/sapIllus-Scene-BeforeSearch.js +42 -0
  1037. package/dist/illustrations/sapIllus-Scene-Connection.js +32 -0
  1038. package/dist/illustrations/sapIllus-Scene-DragFilesToUpload.js +20 -0
  1039. package/dist/illustrations/sapIllus-Scene-EmptyCalendar.js +91 -0
  1040. package/dist/illustrations/sapIllus-Scene-EmptyList.js +44 -0
  1041. package/dist/illustrations/sapIllus-Scene-EmptyPlanningCalendar.js +19 -0
  1042. package/dist/illustrations/sapIllus-Scene-ErrorScreen.js +79 -0
  1043. package/dist/illustrations/sapIllus-Scene-FilterTable.js +63 -0
  1044. package/dist/illustrations/sapIllus-Scene-FilteringColumns.js +39 -0
  1045. package/dist/illustrations/sapIllus-Scene-GroupTable.js +77 -0
  1046. package/dist/illustrations/sapIllus-Scene-GroupingColumns.js +40 -0
  1047. package/dist/illustrations/sapIllus-Scene-KeyTask.js +120 -0
  1048. package/dist/illustrations/sapIllus-Scene-NewMail.js +38 -0
  1049. package/dist/illustrations/sapIllus-Scene-NoActivities.js +34 -0
  1050. package/dist/illustrations/sapIllus-Scene-NoChartData.js +45 -0
  1051. package/dist/illustrations/sapIllus-Scene-NoColumnsSet.js +26 -0
  1052. package/dist/illustrations/sapIllus-Scene-NoData.js +12 -0
  1053. package/dist/illustrations/sapIllus-Scene-NoDimensionsSet.js +39 -0
  1054. package/dist/illustrations/sapIllus-Scene-NoEntries.js +42 -0
  1055. package/dist/illustrations/sapIllus-Scene-NoFilterResults.js +16 -0
  1056. package/dist/illustrations/sapIllus-Scene-NoMail.js +16 -0
  1057. package/dist/illustrations/sapIllus-Scene-NoMail_v1.js +56 -0
  1058. package/dist/illustrations/sapIllus-Scene-NoNotifications.js +28 -0
  1059. package/dist/illustrations/sapIllus-Scene-NoSavedItems.js +54 -0
  1060. package/dist/illustrations/sapIllus-Scene-NoSavedItems_v1.js +40 -0
  1061. package/dist/illustrations/sapIllus-Scene-NoSearchResults.js +73 -0
  1062. package/dist/illustrations/sapIllus-Scene-NoTasks.js +60 -0
  1063. package/dist/illustrations/sapIllus-Scene-NoTasks_v1.js +87 -0
  1064. package/dist/illustrations/sapIllus-Scene-PageNotFound.js +13 -0
  1065. package/dist/illustrations/sapIllus-Scene-ReceiveAppreciation.js +25 -0
  1066. package/dist/illustrations/sapIllus-Scene-ReloadScreen.js +63 -0
  1067. package/dist/illustrations/sapIllus-Scene-ResizeColumn.js +53 -0
  1068. package/dist/illustrations/sapIllus-Scene-ResizingColumns.js +57 -0
  1069. package/dist/illustrations/sapIllus-Scene-SearchEarth.js +31 -0
  1070. package/dist/illustrations/sapIllus-Scene-SearchFolder.js +45 -0
  1071. package/dist/illustrations/sapIllus-Scene-SignOut.js +21 -0
  1072. package/dist/illustrations/sapIllus-Scene-SimpleBalloon.js +21 -0
  1073. package/dist/illustrations/sapIllus-Scene-SimpleBell.js +17 -0
  1074. package/dist/illustrations/sapIllus-Scene-SimpleCalendar.js +45 -0
  1075. package/dist/illustrations/sapIllus-Scene-SimpleCheckMark.js +10 -0
  1076. package/dist/illustrations/sapIllus-Scene-SimpleConnection.js +23 -0
  1077. package/dist/illustrations/sapIllus-Scene-SimpleEmptyDoc.js +21 -0
  1078. package/dist/illustrations/sapIllus-Scene-SimpleEmptyList.js +14 -0
  1079. package/dist/illustrations/sapIllus-Scene-SimpleError.js +14 -0
  1080. package/dist/illustrations/sapIllus-Scene-SimpleMagnifier.js +14 -0
  1081. package/dist/illustrations/sapIllus-Scene-SimpleMail.js +17 -0
  1082. package/dist/illustrations/sapIllus-Scene-SimpleNoSavedItems.js +28 -0
  1083. package/dist/illustrations/sapIllus-Scene-SimpleNotFoundMagnifier.js +25 -0
  1084. package/dist/illustrations/sapIllus-Scene-SimpleReload.js +15 -0
  1085. package/dist/illustrations/sapIllus-Scene-SimpleTask.js +20 -0
  1086. package/dist/illustrations/sapIllus-Scene-SleepingBell.js +51 -0
  1087. package/dist/illustrations/sapIllus-Scene-SortColumn.js +51 -0
  1088. package/dist/illustrations/sapIllus-Scene-SortingColumns.js +50 -0
  1089. package/dist/illustrations/sapIllus-Scene-SuccessBalloon.js +34 -0
  1090. package/dist/illustrations/sapIllus-Scene-SuccessCheckMark.js +44 -0
  1091. package/dist/illustrations/sapIllus-Scene-SuccessHighFive.js +26 -0
  1092. package/dist/illustrations/sapIllus-Scene-SuccessScreen.js +62 -0
  1093. package/dist/illustrations/sapIllus-Scene-Survey.js +22 -0
  1094. package/dist/illustrations/sapIllus-Scene-Tent.js +60 -0
  1095. package/dist/illustrations/sapIllus-Scene-UnableToLoad.js +119 -0
  1096. package/dist/illustrations/sapIllus-Scene-UnableToLoadImage.js +28 -0
  1097. package/dist/illustrations/sapIllus-Scene-UnableToUpload.js +26 -0
  1098. package/dist/illustrations/sapIllus-Scene-UploadCollection.js +30 -0
  1099. package/dist/illustrations/sapIllus-Scene-UploadToCloud.js +22 -0
  1100. package/dist/illustrations/sapIllus-Scene-UserHasSignedUp.js +29 -0
  1101. package/dist/illustrations/sapIllus-Spot-Achievement.js +28 -0
  1102. package/dist/illustrations/sapIllus-Spot-AddColumn.js +38 -0
  1103. package/dist/illustrations/sapIllus-Spot-AddDimensions.js +17 -0
  1104. package/dist/illustrations/sapIllus-Spot-AddPeople.js +32 -0
  1105. package/dist/illustrations/sapIllus-Spot-AddPeopleToCalendar.js +43 -0
  1106. package/dist/illustrations/sapIllus-Spot-AddingColumns.js +38 -0
  1107. package/dist/illustrations/sapIllus-Spot-BalloonSky.js +44 -0
  1108. package/dist/illustrations/sapIllus-Spot-BeforeSearch.js +42 -0
  1109. package/dist/illustrations/sapIllus-Spot-Connection.js +23 -0
  1110. package/dist/illustrations/sapIllus-Spot-DragFilesToUpload.js +18 -0
  1111. package/dist/illustrations/sapIllus-Spot-EmptyCalendar.js +47 -0
  1112. package/dist/illustrations/sapIllus-Spot-EmptyList.js +30 -0
  1113. package/dist/illustrations/sapIllus-Spot-EmptyPlanningCalendar.js +19 -0
  1114. package/dist/illustrations/sapIllus-Spot-ErrorScreen.js +33 -0
  1115. package/dist/illustrations/sapIllus-Spot-FilterTable.js +61 -0
  1116. package/dist/illustrations/sapIllus-Spot-FilteringColumns.js +33 -0
  1117. package/dist/illustrations/sapIllus-Spot-GroupTable.js +87 -0
  1118. package/dist/illustrations/sapIllus-Spot-GroupingColumns.js +35 -0
  1119. package/dist/illustrations/sapIllus-Spot-KeyTask.js +120 -0
  1120. package/dist/illustrations/sapIllus-Spot-NewMail.js +34 -0
  1121. package/dist/illustrations/sapIllus-Spot-NoActivities.js +34 -0
  1122. package/dist/illustrations/sapIllus-Spot-NoChartData.js +42 -0
  1123. package/dist/illustrations/sapIllus-Spot-NoColumnsSet.js +29 -0
  1124. package/dist/illustrations/sapIllus-Spot-NoData.js +12 -0
  1125. package/dist/illustrations/sapIllus-Spot-NoDimensionsSet.js +43 -0
  1126. package/dist/illustrations/sapIllus-Spot-NoEntries.js +42 -0
  1127. package/dist/illustrations/sapIllus-Spot-NoFilterResults.js +16 -0
  1128. package/dist/illustrations/sapIllus-Spot-NoMail.js +15 -0
  1129. package/dist/illustrations/sapIllus-Spot-NoMail_v1.js +17 -0
  1130. package/dist/illustrations/sapIllus-Spot-NoNotifications.js +25 -0
  1131. package/dist/illustrations/sapIllus-Spot-NoSavedItems.js +51 -0
  1132. package/dist/illustrations/sapIllus-Spot-NoSavedItems_v1.js +34 -0
  1133. package/dist/illustrations/sapIllus-Spot-NoSearchResults.js +73 -0
  1134. package/dist/illustrations/sapIllus-Spot-NoTasks.js +32 -0
  1135. package/dist/illustrations/sapIllus-Spot-NoTasks_v1.js +23 -0
  1136. package/dist/illustrations/sapIllus-Spot-PageNotFound.js +10 -0
  1137. package/dist/illustrations/sapIllus-Spot-ReceiveAppreciation.js +20 -0
  1138. package/dist/illustrations/sapIllus-Spot-ReloadScreen.js +37 -0
  1139. package/dist/illustrations/sapIllus-Spot-ResizeColumn.js +50 -0
  1140. package/dist/illustrations/sapIllus-Spot-ResizingColumns.js +37 -0
  1141. package/dist/illustrations/sapIllus-Spot-SearchEarth.js +56 -0
  1142. package/dist/illustrations/sapIllus-Spot-SearchFolder.js +38 -0
  1143. package/dist/illustrations/sapIllus-Spot-SignOut.js +21 -0
  1144. package/dist/illustrations/sapIllus-Spot-SimpleBalloon.js +8 -0
  1145. package/dist/illustrations/sapIllus-Spot-SimpleBell.js +13 -0
  1146. package/dist/illustrations/sapIllus-Spot-SimpleCalendar.js +45 -0
  1147. package/dist/illustrations/sapIllus-Spot-SimpleCheckMark.js +6 -0
  1148. package/dist/illustrations/sapIllus-Spot-SimpleConnection.js +11 -0
  1149. package/dist/illustrations/sapIllus-Spot-SimpleEmptyDoc.js +7 -0
  1150. package/dist/illustrations/sapIllus-Spot-SimpleEmptyList.js +7 -0
  1151. package/dist/illustrations/sapIllus-Spot-SimpleError.js +10 -0
  1152. package/dist/illustrations/sapIllus-Spot-SimpleMagnifier.js +9 -0
  1153. package/dist/illustrations/sapIllus-Spot-SimpleMail.js +13 -0
  1154. package/dist/illustrations/sapIllus-Spot-SimpleNoSavedItems.js +24 -0
  1155. package/dist/illustrations/sapIllus-Spot-SimpleNotFoundMagnifier.js +11 -0
  1156. package/dist/illustrations/sapIllus-Spot-SimpleReload.js +8 -0
  1157. package/dist/illustrations/sapIllus-Spot-SimpleTask.js +23 -0
  1158. package/dist/illustrations/sapIllus-Spot-SleepingBell.js +39 -0
  1159. package/dist/illustrations/sapIllus-Spot-SortColumn.js +40 -0
  1160. package/dist/illustrations/sapIllus-Spot-SortingColumns.js +49 -0
  1161. package/dist/illustrations/sapIllus-Spot-SuccessBalloon.js +20 -0
  1162. package/dist/illustrations/sapIllus-Spot-SuccessCheckMark.js +8 -0
  1163. package/dist/illustrations/sapIllus-Spot-SuccessHighFive.js +25 -0
  1164. package/dist/illustrations/sapIllus-Spot-SuccessScreen.js +36 -0
  1165. package/dist/illustrations/sapIllus-Spot-Survey.js +33 -0
  1166. package/dist/illustrations/sapIllus-Spot-Tent.js +30 -0
  1167. package/dist/illustrations/sapIllus-Spot-UnableToLoad.js +119 -0
  1168. package/dist/illustrations/sapIllus-Spot-UnableToLoadImage.js +28 -0
  1169. package/dist/illustrations/sapIllus-Spot-UnableToUpload.js +28 -0
  1170. package/dist/illustrations/sapIllus-Spot-UploadCollection.js +34 -0
  1171. package/dist/illustrations/sapIllus-Spot-UploadToCloud.js +21 -0
  1172. package/dist/illustrations/sapIllus-Spot-UserHasSignedUp.js +34 -0
  1173. package/dist/illustrations/tnt/Avatar.d.ts +8 -0
  1174. package/dist/illustrations/tnt/Avatar.js +26 -0
  1175. package/dist/illustrations/tnt/Calculator.d.ts +8 -0
  1176. package/dist/illustrations/tnt/Calculator.js +26 -0
  1177. package/dist/illustrations/tnt/ChartArea.d.ts +8 -0
  1178. package/dist/illustrations/tnt/ChartArea.js +26 -0
  1179. package/dist/illustrations/tnt/ChartArea2.d.ts +8 -0
  1180. package/dist/illustrations/tnt/ChartArea2.js +26 -0
  1181. package/dist/illustrations/tnt/ChartBPMNFlow.d.ts +8 -0
  1182. package/dist/illustrations/tnt/ChartBPMNFlow.js +26 -0
  1183. package/dist/illustrations/tnt/ChartBar.d.ts +8 -0
  1184. package/dist/illustrations/tnt/ChartBar.js +26 -0
  1185. package/dist/illustrations/tnt/ChartBullet.d.ts +8 -0
  1186. package/dist/illustrations/tnt/ChartBullet.js +26 -0
  1187. package/dist/illustrations/tnt/ChartDoughnut.d.ts +8 -0
  1188. package/dist/illustrations/tnt/ChartDoughnut.js +26 -0
  1189. package/dist/illustrations/tnt/ChartFlow.d.ts +8 -0
  1190. package/dist/illustrations/tnt/ChartFlow.js +26 -0
  1191. package/dist/illustrations/tnt/ChartGantt.d.ts +8 -0
  1192. package/dist/illustrations/tnt/ChartGantt.js +26 -0
  1193. package/dist/illustrations/tnt/ChartOrg.d.ts +8 -0
  1194. package/dist/illustrations/tnt/ChartOrg.js +26 -0
  1195. package/dist/illustrations/tnt/ChartPie.d.ts +8 -0
  1196. package/dist/illustrations/tnt/ChartPie.js +26 -0
  1197. package/dist/illustrations/tnt/CodePlaceholder.d.ts +8 -0
  1198. package/dist/illustrations/tnt/CodePlaceholder.js +26 -0
  1199. package/dist/illustrations/tnt/Company.d.ts +8 -0
  1200. package/dist/illustrations/tnt/Company.js +26 -0
  1201. package/dist/illustrations/tnt/Compass.d.ts +8 -0
  1202. package/dist/illustrations/tnt/Compass.js +26 -0
  1203. package/dist/illustrations/tnt/Components.d.ts +8 -0
  1204. package/dist/illustrations/tnt/Components.js +26 -0
  1205. package/dist/illustrations/tnt/Dialog.d.ts +8 -0
  1206. package/dist/illustrations/tnt/Dialog.js +26 -0
  1207. package/dist/illustrations/tnt/EmptyContentPane.d.ts +8 -0
  1208. package/dist/illustrations/tnt/EmptyContentPane.js +26 -0
  1209. package/dist/illustrations/tnt/ExternalLink.d.ts +8 -0
  1210. package/dist/illustrations/tnt/ExternalLink.js +26 -0
  1211. package/dist/illustrations/tnt/FaceID.d.ts +8 -0
  1212. package/dist/illustrations/tnt/FaceID.js +26 -0
  1213. package/dist/illustrations/tnt/Fingerprint.d.ts +8 -0
  1214. package/dist/illustrations/tnt/Fingerprint.js +26 -0
  1215. package/dist/illustrations/tnt/Handshake.d.ts +8 -0
  1216. package/dist/illustrations/tnt/Handshake.js +26 -0
  1217. package/dist/illustrations/tnt/Help.d.ts +8 -0
  1218. package/dist/illustrations/tnt/Help.js +26 -0
  1219. package/dist/illustrations/tnt/Lock.d.ts +8 -0
  1220. package/dist/illustrations/tnt/Lock.js +26 -0
  1221. package/dist/illustrations/tnt/Mission.d.ts +8 -0
  1222. package/dist/illustrations/tnt/Mission.js +26 -0
  1223. package/dist/illustrations/tnt/MissionFailed.d.ts +8 -0
  1224. package/dist/illustrations/tnt/MissionFailed.js +26 -0
  1225. package/dist/illustrations/tnt/NoApplications.d.ts +8 -0
  1226. package/dist/illustrations/tnt/NoApplications.js +26 -0
  1227. package/dist/illustrations/tnt/NoFlows.d.ts +8 -0
  1228. package/dist/illustrations/tnt/NoFlows.js +26 -0
  1229. package/dist/illustrations/tnt/NoUsers.d.ts +8 -0
  1230. package/dist/illustrations/tnt/NoUsers.js +26 -0
  1231. package/dist/illustrations/tnt/Radar.d.ts +8 -0
  1232. package/dist/illustrations/tnt/Radar.js +26 -0
  1233. package/dist/illustrations/tnt/RoadMap.d.ts +8 -0
  1234. package/dist/illustrations/tnt/RoadMap.js +26 -0
  1235. package/dist/illustrations/tnt/Secrets.d.ts +8 -0
  1236. package/dist/illustrations/tnt/Secrets.js +26 -0
  1237. package/dist/illustrations/tnt/Services.d.ts +8 -0
  1238. package/dist/illustrations/tnt/Services.js +26 -0
  1239. package/dist/illustrations/tnt/SessionExpired.d.ts +8 -0
  1240. package/dist/illustrations/tnt/SessionExpired.js +26 -0
  1241. package/dist/illustrations/tnt/SessionExpiring.d.ts +8 -0
  1242. package/dist/illustrations/tnt/SessionExpiring.js +26 -0
  1243. package/dist/illustrations/tnt/Settings.d.ts +8 -0
  1244. package/dist/illustrations/tnt/Settings.js +26 -0
  1245. package/dist/illustrations/tnt/Success.d.ts +8 -0
  1246. package/dist/illustrations/tnt/Success.js +26 -0
  1247. package/dist/illustrations/tnt/SuccessfulAuth.d.ts +8 -0
  1248. package/dist/illustrations/tnt/SuccessfulAuth.js +26 -0
  1249. package/dist/illustrations/tnt/Systems.d.ts +8 -0
  1250. package/dist/illustrations/tnt/Systems.js +26 -0
  1251. package/dist/illustrations/tnt/Teams.d.ts +8 -0
  1252. package/dist/illustrations/tnt/Teams.js +26 -0
  1253. package/dist/illustrations/tnt/Tools.d.ts +8 -0
  1254. package/dist/illustrations/tnt/Tools.js +26 -0
  1255. package/dist/illustrations/tnt/Tutorials.d.ts +8 -0
  1256. package/dist/illustrations/tnt/Tutorials.js +26 -0
  1257. package/dist/illustrations/tnt/UnableToLoad.d.ts +8 -0
  1258. package/dist/illustrations/tnt/UnableToLoad.js +26 -0
  1259. package/dist/illustrations/tnt/Unlock.d.ts +8 -0
  1260. package/dist/illustrations/tnt/Unlock.js +26 -0
  1261. package/dist/illustrations/tnt/UnsuccessfulAuth.d.ts +8 -0
  1262. package/dist/illustrations/tnt/UnsuccessfulAuth.js +26 -0
  1263. package/dist/illustrations/tnt/User2.d.ts +8 -0
  1264. package/dist/illustrations/tnt/User2.js +26 -0
  1265. package/dist/illustrations/tnt/tnt-Dialog-Avatar.js +125 -0
  1266. package/dist/illustrations/tnt/tnt-Dialog-Calculator.js +81 -0
  1267. package/dist/illustrations/tnt/tnt-Dialog-ChartArea.js +14 -0
  1268. package/dist/illustrations/tnt/tnt-Dialog-ChartArea2.js +12 -0
  1269. package/dist/illustrations/tnt/tnt-Dialog-ChartBPMNFlow.js +13 -0
  1270. package/dist/illustrations/tnt/tnt-Dialog-ChartBar.js +12 -0
  1271. package/dist/illustrations/tnt/tnt-Dialog-ChartBullet.js +14 -0
  1272. package/dist/illustrations/tnt/tnt-Dialog-ChartDoughnut.js +13 -0
  1273. package/dist/illustrations/tnt/tnt-Dialog-ChartFlow.js +13 -0
  1274. package/dist/illustrations/tnt/tnt-Dialog-ChartGantt.js +17 -0
  1275. package/dist/illustrations/tnt/tnt-Dialog-ChartOrg.js +15 -0
  1276. package/dist/illustrations/tnt/tnt-Dialog-ChartPie.js +12 -0
  1277. package/dist/illustrations/tnt/tnt-Dialog-CodePlaceholder.js +6 -0
  1278. package/dist/illustrations/tnt/tnt-Dialog-Company.js +13 -0
  1279. package/dist/illustrations/tnt/tnt-Dialog-Compass.js +35 -0
  1280. package/dist/illustrations/tnt/tnt-Dialog-Components.js +9 -0
  1281. package/dist/illustrations/tnt/tnt-Dialog-Dialog.js +33 -0
  1282. package/dist/illustrations/tnt/tnt-Dialog-EmptyContentPane.js +19 -0
  1283. package/dist/illustrations/tnt/tnt-Dialog-ExternalLink.js +11 -0
  1284. package/dist/illustrations/tnt/tnt-Dialog-FaceID.js +17 -0
  1285. package/dist/illustrations/tnt/tnt-Dialog-Fingerprint.js +16 -0
  1286. package/dist/illustrations/tnt/tnt-Dialog-Handshake.js +33 -0
  1287. package/dist/illustrations/tnt/tnt-Dialog-Help.js +28 -0
  1288. package/dist/illustrations/tnt/tnt-Dialog-Lock.js +12 -0
  1289. package/dist/illustrations/tnt/tnt-Dialog-Mission.js +18 -0
  1290. package/dist/illustrations/tnt/tnt-Dialog-MissionFailed.js +42 -0
  1291. package/dist/illustrations/tnt/tnt-Dialog-NoApplications.js +15 -0
  1292. package/dist/illustrations/tnt/tnt-Dialog-NoFlows.js +11 -0
  1293. package/dist/illustrations/tnt/tnt-Dialog-NoUsers.js +15 -0
  1294. package/dist/illustrations/tnt/tnt-Dialog-Radar.js +15 -0
  1295. package/dist/illustrations/tnt/tnt-Dialog-RoadMap.js +42 -0
  1296. package/dist/illustrations/tnt/tnt-Dialog-Secrets.js +12 -0
  1297. package/dist/illustrations/tnt/tnt-Dialog-Services.js +16 -0
  1298. package/dist/illustrations/tnt/tnt-Dialog-SessionExpired.js +11 -0
  1299. package/dist/illustrations/tnt/tnt-Dialog-SessionExpiring.js +10 -0
  1300. package/dist/illustrations/tnt/tnt-Dialog-Settings.js +38 -0
  1301. package/dist/illustrations/tnt/tnt-Dialog-Success.js +10 -0
  1302. package/dist/illustrations/tnt/tnt-Dialog-SuccessfulAuth.js +10 -0
  1303. package/dist/illustrations/tnt/tnt-Dialog-Systems.js +12 -0
  1304. package/dist/illustrations/tnt/tnt-Dialog-Teams.js +17 -0
  1305. package/dist/illustrations/tnt/tnt-Dialog-Tools.js +12 -0
  1306. package/dist/illustrations/tnt/tnt-Dialog-Tutorials.js +79 -0
  1307. package/dist/illustrations/tnt/tnt-Dialog-UnableToLoad.js +10 -0
  1308. package/dist/illustrations/tnt/tnt-Dialog-Unlock.js +12 -0
  1309. package/dist/illustrations/tnt/tnt-Dialog-UnsuccessfulAuth.js +11 -0
  1310. package/dist/illustrations/tnt/tnt-Dialog-User2.js +13 -0
  1311. package/dist/illustrations/tnt/tnt-Dot-Avatar.js +13 -0
  1312. package/dist/illustrations/tnt/tnt-Dot-Calculator.js +12 -0
  1313. package/dist/illustrations/tnt/tnt-Dot-Compass.js +10 -0
  1314. package/dist/illustrations/tnt/tnt-Dot-Dialog.js +20 -0
  1315. package/dist/illustrations/tnt/tnt-Dot-EmptyContentPane.js +16 -0
  1316. package/dist/illustrations/tnt/tnt-Dot-Handshake.js +19 -0
  1317. package/dist/illustrations/tnt/tnt-Dot-Help.js +9 -0
  1318. package/dist/illustrations/tnt/tnt-Dot-MissionFailed.js +10 -0
  1319. package/dist/illustrations/tnt/tnt-Dot-RoadMap.js +6 -0
  1320. package/dist/illustrations/tnt/tnt-Dot-Settings.js +7 -0
  1321. package/dist/illustrations/tnt/tnt-Dot-Tutorials.js +8 -0
  1322. package/dist/illustrations/tnt/tnt-Scene-Avatar.js +131 -0
  1323. package/dist/illustrations/tnt/tnt-Scene-Calculator.js +84 -0
  1324. package/dist/illustrations/tnt/tnt-Scene-ChartArea.js +22 -0
  1325. package/dist/illustrations/tnt/tnt-Scene-ChartArea2.js +19 -0
  1326. package/dist/illustrations/tnt/tnt-Scene-ChartBPMNFlow.js +21 -0
  1327. package/dist/illustrations/tnt/tnt-Scene-ChartBar.js +19 -0
  1328. package/dist/illustrations/tnt/tnt-Scene-ChartBullet.js +20 -0
  1329. package/dist/illustrations/tnt/tnt-Scene-ChartDoughnut.js +19 -0
  1330. package/dist/illustrations/tnt/tnt-Scene-ChartFlow.js +20 -0
  1331. package/dist/illustrations/tnt/tnt-Scene-ChartGantt.js +26 -0
  1332. package/dist/illustrations/tnt/tnt-Scene-ChartOrg.js +27 -0
  1333. package/dist/illustrations/tnt/tnt-Scene-ChartPie.js +18 -0
  1334. package/dist/illustrations/tnt/tnt-Scene-CodePlaceholder.js +9 -0
  1335. package/dist/illustrations/tnt/tnt-Scene-Company.js +30 -0
  1336. package/dist/illustrations/tnt/tnt-Scene-Compass.js +35 -0
  1337. package/dist/illustrations/tnt/tnt-Scene-Components.js +16 -0
  1338. package/dist/illustrations/tnt/tnt-Scene-Dialog.js +36 -0
  1339. package/dist/illustrations/tnt/tnt-Scene-EmptyContentPane.js +16 -0
  1340. package/dist/illustrations/tnt/tnt-Scene-ExternalLink.js +14 -0
  1341. package/dist/illustrations/tnt/tnt-Scene-FaceID.js +21 -0
  1342. package/dist/illustrations/tnt/tnt-Scene-Fingerprint.js +35 -0
  1343. package/dist/illustrations/tnt/tnt-Scene-Handshake.js +33 -0
  1344. package/dist/illustrations/tnt/tnt-Scene-Help.js +30 -0
  1345. package/dist/illustrations/tnt/tnt-Scene-Lock.js +22 -0
  1346. package/dist/illustrations/tnt/tnt-Scene-Mission.js +19 -0
  1347. package/dist/illustrations/tnt/tnt-Scene-MissionFailed.js +50 -0
  1348. package/dist/illustrations/tnt/tnt-Scene-NoApplications.js +18 -0
  1349. package/dist/illustrations/tnt/tnt-Scene-NoFlows.js +20 -0
  1350. package/dist/illustrations/tnt/tnt-Scene-NoUsers.js +16 -0
  1351. package/dist/illustrations/tnt/tnt-Scene-Radar.js +20 -0
  1352. package/dist/illustrations/tnt/tnt-Scene-RoadMap.js +46 -0
  1353. package/dist/illustrations/tnt/tnt-Scene-Secrets.js +15 -0
  1354. package/dist/illustrations/tnt/tnt-Scene-Services.js +17 -0
  1355. package/dist/illustrations/tnt/tnt-Scene-SessionExpired.js +18 -0
  1356. package/dist/illustrations/tnt/tnt-Scene-SessionExpiring.js +17 -0
  1357. package/dist/illustrations/tnt/tnt-Scene-Settings.js +39 -0
  1358. package/dist/illustrations/tnt/tnt-Scene-Success.js +18 -0
  1359. package/dist/illustrations/tnt/tnt-Scene-SuccessfulAuth.js +20 -0
  1360. package/dist/illustrations/tnt/tnt-Scene-Systems.js +13 -0
  1361. package/dist/illustrations/tnt/tnt-Scene-Teams.js +20 -0
  1362. package/dist/illustrations/tnt/tnt-Scene-Tools.js +19 -0
  1363. package/dist/illustrations/tnt/tnt-Scene-Tutorials.js +85 -0
  1364. package/dist/illustrations/tnt/tnt-Scene-UnableToLoad.js +21 -0
  1365. package/dist/illustrations/tnt/tnt-Scene-Unlock.js +15 -0
  1366. package/dist/illustrations/tnt/tnt-Scene-UnsuccessfulAuth.js +22 -0
  1367. package/dist/illustrations/tnt/tnt-Scene-User2.js +22 -0
  1368. package/dist/illustrations/tnt/tnt-Spot-Avatar.js +106 -0
  1369. package/dist/illustrations/tnt/tnt-Spot-Calculator.js +131 -0
  1370. package/dist/illustrations/tnt/tnt-Spot-ChartArea.js +13 -0
  1371. package/dist/illustrations/tnt/tnt-Spot-ChartArea2.js +7 -0
  1372. package/dist/illustrations/tnt/tnt-Spot-ChartBPMNFlow.js +9 -0
  1373. package/dist/illustrations/tnt/tnt-Spot-ChartBar.js +8 -0
  1374. package/dist/illustrations/tnt/tnt-Spot-ChartBullet.js +10 -0
  1375. package/dist/illustrations/tnt/tnt-Spot-ChartDoughnut.js +9 -0
  1376. package/dist/illustrations/tnt/tnt-Spot-ChartFlow.js +8 -0
  1377. package/dist/illustrations/tnt/tnt-Spot-ChartGantt.js +12 -0
  1378. package/dist/illustrations/tnt/tnt-Spot-ChartOrg.js +6 -0
  1379. package/dist/illustrations/tnt/tnt-Spot-ChartPie.js +8 -0
  1380. package/dist/illustrations/tnt/tnt-Spot-CodePlaceholder.js +6 -0
  1381. package/dist/illustrations/tnt/tnt-Spot-Company.js +13 -0
  1382. package/dist/illustrations/tnt/tnt-Spot-Compass.js +35 -0
  1383. package/dist/illustrations/tnt/tnt-Spot-Components.js +5 -0
  1384. package/dist/illustrations/tnt/tnt-Spot-Dialog.js +33 -0
  1385. package/dist/illustrations/tnt/tnt-Spot-EmptyContentPane.js +17 -0
  1386. package/dist/illustrations/tnt/tnt-Spot-ExternalLink.js +9 -0
  1387. package/dist/illustrations/tnt/tnt-Spot-FaceID.js +16 -0
  1388. package/dist/illustrations/tnt/tnt-Spot-Fingerprint.js +10 -0
  1389. package/dist/illustrations/tnt/tnt-Spot-Handshake.js +65 -0
  1390. package/dist/illustrations/tnt/tnt-Spot-Help.js +24 -0
  1391. package/dist/illustrations/tnt/tnt-Spot-Lock.js +13 -0
  1392. package/dist/illustrations/tnt/tnt-Spot-Mission.js +17 -0
  1393. package/dist/illustrations/tnt/tnt-Spot-MissionFailed.js +114 -0
  1394. package/dist/illustrations/tnt/tnt-Spot-NoApplications.js +11 -0
  1395. package/dist/illustrations/tnt/tnt-Spot-NoFlows.js +8 -0
  1396. package/dist/illustrations/tnt/tnt-Spot-NoUsers.js +11 -0
  1397. package/dist/illustrations/tnt/tnt-Spot-Radar.js +14 -0
  1398. package/dist/illustrations/tnt/tnt-Spot-RoadMap.js +166 -0
  1399. package/dist/illustrations/tnt/tnt-Spot-Secrets.js +9 -0
  1400. package/dist/illustrations/tnt/tnt-Spot-Services.js +14 -0
  1401. package/dist/illustrations/tnt/tnt-Spot-SessionExpired.js +9 -0
  1402. package/dist/illustrations/tnt/tnt-Spot-SessionExpiring.js +9 -0
  1403. package/dist/illustrations/tnt/tnt-Spot-Settings.js +37 -0
  1404. package/dist/illustrations/tnt/tnt-Spot-Success.js +9 -0
  1405. package/dist/illustrations/tnt/tnt-Spot-SuccessfulAuth.js +9 -0
  1406. package/dist/illustrations/tnt/tnt-Spot-Systems.js +10 -0
  1407. package/dist/illustrations/tnt/tnt-Spot-Teams.js +13 -0
  1408. package/dist/illustrations/tnt/tnt-Spot-Tools.js +7 -0
  1409. package/dist/illustrations/tnt/tnt-Spot-Tutorials.js +92 -0
  1410. package/dist/illustrations/tnt/tnt-Spot-UnableToLoad.js +9 -0
  1411. package/dist/illustrations/tnt/tnt-Spot-Unlock.js +11 -0
  1412. package/dist/illustrations/tnt/tnt-Spot-UnsuccessfulAuth.js +10 -0
  1413. package/dist/illustrations/tnt/tnt-Spot-User2.js +10 -0
  1414. package/dist/illustrations-v5/tnt/Avatar.d.ts +8 -0
  1415. package/dist/illustrations-v5/tnt/Avatar.js +26 -0
  1416. package/dist/illustrations-v5/tnt/Calculator.d.ts +8 -0
  1417. package/dist/illustrations-v5/tnt/Calculator.js +26 -0
  1418. package/dist/illustrations-v5/tnt/ChartArea.d.ts +8 -0
  1419. package/dist/illustrations-v5/tnt/ChartArea.js +26 -0
  1420. package/dist/illustrations-v5/tnt/ChartArea2.d.ts +8 -0
  1421. package/dist/illustrations-v5/tnt/ChartArea2.js +26 -0
  1422. package/dist/illustrations-v5/tnt/ChartBPMNFlow.d.ts +8 -0
  1423. package/dist/illustrations-v5/tnt/ChartBPMNFlow.js +26 -0
  1424. package/dist/illustrations-v5/tnt/ChartBar.d.ts +8 -0
  1425. package/dist/illustrations-v5/tnt/ChartBar.js +26 -0
  1426. package/dist/illustrations-v5/tnt/ChartBullet.d.ts +8 -0
  1427. package/dist/illustrations-v5/tnt/ChartBullet.js +26 -0
  1428. package/dist/illustrations-v5/tnt/ChartDoughnut.d.ts +8 -0
  1429. package/dist/illustrations-v5/tnt/ChartDoughnut.js +26 -0
  1430. package/dist/illustrations-v5/tnt/ChartFlow.d.ts +8 -0
  1431. package/dist/illustrations-v5/tnt/ChartFlow.js +26 -0
  1432. package/dist/illustrations-v5/tnt/ChartGantt.d.ts +8 -0
  1433. package/dist/illustrations-v5/tnt/ChartGantt.js +26 -0
  1434. package/dist/illustrations-v5/tnt/ChartOrg.d.ts +8 -0
  1435. package/dist/illustrations-v5/tnt/ChartOrg.js +26 -0
  1436. package/dist/illustrations-v5/tnt/ChartPie.d.ts +8 -0
  1437. package/dist/illustrations-v5/tnt/ChartPie.js +26 -0
  1438. package/dist/illustrations-v5/tnt/CodePlaceholder.d.ts +8 -0
  1439. package/dist/illustrations-v5/tnt/CodePlaceholder.js +26 -0
  1440. package/dist/illustrations-v5/tnt/Company.d.ts +8 -0
  1441. package/dist/illustrations-v5/tnt/Company.js +26 -0
  1442. package/dist/illustrations-v5/tnt/Compass.d.ts +8 -0
  1443. package/dist/illustrations-v5/tnt/Compass.js +26 -0
  1444. package/dist/illustrations-v5/tnt/Components.d.ts +8 -0
  1445. package/dist/illustrations-v5/tnt/Components.js +26 -0
  1446. package/dist/illustrations-v5/tnt/Dialog.d.ts +8 -0
  1447. package/dist/illustrations-v5/tnt/Dialog.js +26 -0
  1448. package/dist/illustrations-v5/tnt/ExternalLink.d.ts +8 -0
  1449. package/dist/illustrations-v5/tnt/ExternalLink.js +26 -0
  1450. package/dist/illustrations-v5/tnt/FaceID.d.ts +8 -0
  1451. package/dist/illustrations-v5/tnt/FaceID.js +26 -0
  1452. package/dist/illustrations-v5/tnt/Fingerprint.d.ts +8 -0
  1453. package/dist/illustrations-v5/tnt/Fingerprint.js +26 -0
  1454. package/dist/illustrations-v5/tnt/Handshake.d.ts +8 -0
  1455. package/dist/illustrations-v5/tnt/Handshake.js +26 -0
  1456. package/dist/illustrations-v5/tnt/Help.d.ts +8 -0
  1457. package/dist/illustrations-v5/tnt/Help.js +26 -0
  1458. package/dist/illustrations-v5/tnt/Lock.d.ts +8 -0
  1459. package/dist/illustrations-v5/tnt/Lock.js +26 -0
  1460. package/dist/illustrations-v5/tnt/Mission.d.ts +8 -0
  1461. package/dist/illustrations-v5/tnt/Mission.js +26 -0
  1462. package/dist/illustrations-v5/tnt/MissionFailed.d.ts +8 -0
  1463. package/dist/illustrations-v5/tnt/MissionFailed.js +26 -0
  1464. package/dist/illustrations-v5/tnt/NoApplications.d.ts +8 -0
  1465. package/dist/illustrations-v5/tnt/NoApplications.js +26 -0
  1466. package/dist/illustrations-v5/tnt/NoFlows.d.ts +8 -0
  1467. package/dist/illustrations-v5/tnt/NoFlows.js +26 -0
  1468. package/dist/illustrations-v5/tnt/NoUsers.d.ts +8 -0
  1469. package/dist/illustrations-v5/tnt/NoUsers.js +26 -0
  1470. package/dist/illustrations-v5/tnt/Radar.d.ts +8 -0
  1471. package/dist/illustrations-v5/tnt/Radar.js +26 -0
  1472. package/dist/illustrations-v5/tnt/RoadMap.d.ts +8 -0
  1473. package/dist/illustrations-v5/tnt/RoadMap.js +26 -0
  1474. package/dist/illustrations-v5/tnt/Secrets.d.ts +8 -0
  1475. package/dist/illustrations-v5/tnt/Secrets.js +26 -0
  1476. package/dist/illustrations-v5/tnt/Services.d.ts +8 -0
  1477. package/dist/illustrations-v5/tnt/Services.js +26 -0
  1478. package/dist/illustrations-v5/tnt/SessionExpired.d.ts +8 -0
  1479. package/dist/illustrations-v5/tnt/SessionExpired.js +26 -0
  1480. package/dist/illustrations-v5/tnt/SessionExpiring.d.ts +8 -0
  1481. package/dist/illustrations-v5/tnt/SessionExpiring.js +26 -0
  1482. package/dist/illustrations-v5/tnt/Settings.d.ts +8 -0
  1483. package/dist/illustrations-v5/tnt/Settings.js +26 -0
  1484. package/dist/illustrations-v5/tnt/Success.d.ts +8 -0
  1485. package/dist/illustrations-v5/tnt/Success.js +26 -0
  1486. package/dist/illustrations-v5/tnt/SuccessfulAuth.d.ts +8 -0
  1487. package/dist/illustrations-v5/tnt/SuccessfulAuth.js +26 -0
  1488. package/dist/illustrations-v5/tnt/Systems.d.ts +8 -0
  1489. package/dist/illustrations-v5/tnt/Systems.js +26 -0
  1490. package/dist/illustrations-v5/tnt/Teams.d.ts +8 -0
  1491. package/dist/illustrations-v5/tnt/Teams.js +26 -0
  1492. package/dist/illustrations-v5/tnt/Tools.d.ts +8 -0
  1493. package/dist/illustrations-v5/tnt/Tools.js +26 -0
  1494. package/dist/illustrations-v5/tnt/Tutorials.d.ts +8 -0
  1495. package/dist/illustrations-v5/tnt/Tutorials.js +26 -0
  1496. package/dist/illustrations-v5/tnt/Unlock.d.ts +8 -0
  1497. package/dist/illustrations-v5/tnt/Unlock.js +26 -0
  1498. package/dist/illustrations-v5/tnt/UnsuccessfulAuth.d.ts +8 -0
  1499. package/dist/illustrations-v5/tnt/UnsuccessfulAuth.js +26 -0
  1500. package/dist/illustrations-v5/tnt/hc/Avatar.d.ts +8 -0
  1501. package/dist/illustrations-v5/tnt/hc/Avatar.js +26 -0
  1502. package/dist/illustrations-v5/tnt/hc/Calculator.d.ts +8 -0
  1503. package/dist/illustrations-v5/tnt/hc/Calculator.js +26 -0
  1504. package/dist/illustrations-v5/tnt/hc/ChartArea.d.ts +8 -0
  1505. package/dist/illustrations-v5/tnt/hc/ChartArea.js +26 -0
  1506. package/dist/illustrations-v5/tnt/hc/ChartArea2.d.ts +8 -0
  1507. package/dist/illustrations-v5/tnt/hc/ChartArea2.js +26 -0
  1508. package/dist/illustrations-v5/tnt/hc/ChartBPMNFlow.d.ts +8 -0
  1509. package/dist/illustrations-v5/tnt/hc/ChartBPMNFlow.js +26 -0
  1510. package/dist/illustrations-v5/tnt/hc/ChartBar.d.ts +8 -0
  1511. package/dist/illustrations-v5/tnt/hc/ChartBar.js +26 -0
  1512. package/dist/illustrations-v5/tnt/hc/ChartBullet.d.ts +8 -0
  1513. package/dist/illustrations-v5/tnt/hc/ChartBullet.js +26 -0
  1514. package/dist/illustrations-v5/tnt/hc/ChartDoughnut.d.ts +8 -0
  1515. package/dist/illustrations-v5/tnt/hc/ChartDoughnut.js +26 -0
  1516. package/dist/illustrations-v5/tnt/hc/ChartFlow.d.ts +8 -0
  1517. package/dist/illustrations-v5/tnt/hc/ChartFlow.js +26 -0
  1518. package/dist/illustrations-v5/tnt/hc/ChartGantt.d.ts +8 -0
  1519. package/dist/illustrations-v5/tnt/hc/ChartGantt.js +26 -0
  1520. package/dist/illustrations-v5/tnt/hc/ChartOrg.d.ts +8 -0
  1521. package/dist/illustrations-v5/tnt/hc/ChartOrg.js +26 -0
  1522. package/dist/illustrations-v5/tnt/hc/ChartPie.d.ts +8 -0
  1523. package/dist/illustrations-v5/tnt/hc/ChartPie.js +26 -0
  1524. package/dist/illustrations-v5/tnt/hc/CodePlaceholder.d.ts +8 -0
  1525. package/dist/illustrations-v5/tnt/hc/CodePlaceholder.js +26 -0
  1526. package/dist/illustrations-v5/tnt/hc/Company.d.ts +8 -0
  1527. package/dist/illustrations-v5/tnt/hc/Company.js +26 -0
  1528. package/dist/illustrations-v5/tnt/hc/Compass.d.ts +8 -0
  1529. package/dist/illustrations-v5/tnt/hc/Compass.js +26 -0
  1530. package/dist/illustrations-v5/tnt/hc/Components.d.ts +8 -0
  1531. package/dist/illustrations-v5/tnt/hc/Components.js +26 -0
  1532. package/dist/illustrations-v5/tnt/hc/Dialog.d.ts +8 -0
  1533. package/dist/illustrations-v5/tnt/hc/Dialog.js +26 -0
  1534. package/dist/illustrations-v5/tnt/hc/EmptyContentPane.d.ts +8 -0
  1535. package/dist/illustrations-v5/tnt/hc/EmptyContentPane.js +26 -0
  1536. package/dist/illustrations-v5/tnt/hc/ExternalLink.d.ts +8 -0
  1537. package/dist/illustrations-v5/tnt/hc/ExternalLink.js +26 -0
  1538. package/dist/illustrations-v5/tnt/hc/FaceID.d.ts +8 -0
  1539. package/dist/illustrations-v5/tnt/hc/FaceID.js +26 -0
  1540. package/dist/illustrations-v5/tnt/hc/Fingerprint.d.ts +8 -0
  1541. package/dist/illustrations-v5/tnt/hc/Fingerprint.js +26 -0
  1542. package/dist/illustrations-v5/tnt/hc/Handshake.d.ts +8 -0
  1543. package/dist/illustrations-v5/tnt/hc/Handshake.js +26 -0
  1544. package/dist/illustrations-v5/tnt/hc/Help.d.ts +8 -0
  1545. package/dist/illustrations-v5/tnt/hc/Help.js +26 -0
  1546. package/dist/illustrations-v5/tnt/hc/Lock.d.ts +8 -0
  1547. package/dist/illustrations-v5/tnt/hc/Lock.js +26 -0
  1548. package/dist/illustrations-v5/tnt/hc/Mission.d.ts +8 -0
  1549. package/dist/illustrations-v5/tnt/hc/Mission.js +26 -0
  1550. package/dist/illustrations-v5/tnt/hc/MissionFailed.d.ts +8 -0
  1551. package/dist/illustrations-v5/tnt/hc/MissionFailed.js +26 -0
  1552. package/dist/illustrations-v5/tnt/hc/NoApplications.d.ts +8 -0
  1553. package/dist/illustrations-v5/tnt/hc/NoApplications.js +26 -0
  1554. package/dist/illustrations-v5/tnt/hc/NoFlows.d.ts +8 -0
  1555. package/dist/illustrations-v5/tnt/hc/NoFlows.js +26 -0
  1556. package/dist/illustrations-v5/tnt/hc/NoUsers.d.ts +8 -0
  1557. package/dist/illustrations-v5/tnt/hc/NoUsers.js +26 -0
  1558. package/dist/illustrations-v5/tnt/hc/Radar.d.ts +8 -0
  1559. package/dist/illustrations-v5/tnt/hc/Radar.js +26 -0
  1560. package/dist/illustrations-v5/tnt/hc/RoadMap.d.ts +8 -0
  1561. package/dist/illustrations-v5/tnt/hc/RoadMap.js +26 -0
  1562. package/dist/illustrations-v5/tnt/hc/Secrets.d.ts +8 -0
  1563. package/dist/illustrations-v5/tnt/hc/Secrets.js +26 -0
  1564. package/dist/illustrations-v5/tnt/hc/Services.d.ts +8 -0
  1565. package/dist/illustrations-v5/tnt/hc/Services.js +26 -0
  1566. package/dist/illustrations-v5/tnt/hc/SessionExpired.d.ts +8 -0
  1567. package/dist/illustrations-v5/tnt/hc/SessionExpired.js +26 -0
  1568. package/dist/illustrations-v5/tnt/hc/SessionExpiring.d.ts +8 -0
  1569. package/dist/illustrations-v5/tnt/hc/SessionExpiring.js +26 -0
  1570. package/dist/illustrations-v5/tnt/hc/Settings.d.ts +8 -0
  1571. package/dist/illustrations-v5/tnt/hc/Settings.js +26 -0
  1572. package/dist/illustrations-v5/tnt/hc/Success.d.ts +8 -0
  1573. package/dist/illustrations-v5/tnt/hc/Success.js +26 -0
  1574. package/dist/illustrations-v5/tnt/hc/SuccessfulAuth.d.ts +8 -0
  1575. package/dist/illustrations-v5/tnt/hc/SuccessfulAuth.js +26 -0
  1576. package/dist/illustrations-v5/tnt/hc/Systems.d.ts +8 -0
  1577. package/dist/illustrations-v5/tnt/hc/Systems.js +26 -0
  1578. package/dist/illustrations-v5/tnt/hc/Teams.d.ts +8 -0
  1579. package/dist/illustrations-v5/tnt/hc/Teams.js +26 -0
  1580. package/dist/illustrations-v5/tnt/hc/Tools.d.ts +8 -0
  1581. package/dist/illustrations-v5/tnt/hc/Tools.js +26 -0
  1582. package/dist/illustrations-v5/tnt/hc/Tutorials.d.ts +8 -0
  1583. package/dist/illustrations-v5/tnt/hc/Tutorials.js +26 -0
  1584. package/dist/illustrations-v5/tnt/hc/Unlock.d.ts +8 -0
  1585. package/dist/illustrations-v5/tnt/hc/Unlock.js +26 -0
  1586. package/dist/illustrations-v5/tnt/hc/UnsuccessfulAuth.d.ts +8 -0
  1587. package/dist/illustrations-v5/tnt/hc/UnsuccessfulAuth.js +26 -0
  1588. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Avatar.js +16 -0
  1589. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Calculator.js +24 -0
  1590. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ChartArea.js +15 -0
  1591. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ChartArea2.js +14 -0
  1592. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ChartBPMNFlow.js +22 -0
  1593. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ChartBar.js +14 -0
  1594. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ChartBullet.js +19 -0
  1595. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ChartDoughnut.js +18 -0
  1596. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ChartFlow.js +19 -0
  1597. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ChartGantt.js +19 -0
  1598. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ChartOrg.js +30 -0
  1599. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ChartPie.js +20 -0
  1600. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-CodePlaceholder.js +10 -0
  1601. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Company.js +23 -0
  1602. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Compass.js +17 -0
  1603. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Components.js +22 -0
  1604. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Dialog.js +23 -0
  1605. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-EmptyContentPane.js +23 -0
  1606. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ExternalLink.js +18 -0
  1607. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-FaceID.js +17 -0
  1608. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Fingerprint.js +13 -0
  1609. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Handshake.js +22 -0
  1610. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Help.js +12 -0
  1611. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Lock.js +22 -0
  1612. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Mission.js +15 -0
  1613. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-MissionFailed.js +12 -0
  1614. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-NoApplications.js +19 -0
  1615. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-NoFlows.js +22 -0
  1616. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-NoUsers.js +19 -0
  1617. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Radar.js +14 -0
  1618. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-RoadMap.js +92 -0
  1619. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Secrets.js +13 -0
  1620. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Services.js +16 -0
  1621. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-SessionExpired.js +14 -0
  1622. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-SessionExpiring.js +12 -0
  1623. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Settings.js +9 -0
  1624. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Success.js +20 -0
  1625. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-SuccessfulAuth.js +27 -0
  1626. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Systems.js +25 -0
  1627. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Teams.js +27 -0
  1628. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Tools.js +22 -0
  1629. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Tutorials.js +18 -0
  1630. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Unlock.js +18 -0
  1631. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-UnsuccessfulAuth.js +27 -0
  1632. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Avatar.js +13 -0
  1633. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Calculator.js +13 -0
  1634. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ChartArea.js +8 -0
  1635. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ChartArea2.js +7 -0
  1636. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ChartBPMNFlow.js +14 -0
  1637. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ChartBar.js +7 -0
  1638. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ChartBullet.js +10 -0
  1639. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ChartDoughnut.js +8 -0
  1640. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ChartFlow.js +12 -0
  1641. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ChartGantt.js +11 -0
  1642. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ChartOrg.js +14 -0
  1643. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ChartPie.js +9 -0
  1644. package/dist/illustrations-v5/tnt/hc/tnt-Dot-CodePlaceholder.js +6 -0
  1645. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Company.js +11 -0
  1646. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Compass.js +10 -0
  1647. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Components.js +11 -0
  1648. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Dialog.js +23 -0
  1649. package/dist/illustrations-v5/tnt/hc/tnt-Dot-EmptyContentPane.js +11 -0
  1650. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ExternalLink.js +10 -0
  1651. package/dist/illustrations-v5/tnt/hc/tnt-Dot-FaceID.js +19 -0
  1652. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Fingerprint.js +8 -0
  1653. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Handshake.js +19 -0
  1654. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Help.js +9 -0
  1655. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Lock.js +13 -0
  1656. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Mission.js +10 -0
  1657. package/dist/illustrations-v5/tnt/hc/tnt-Dot-MissionFailed.js +10 -0
  1658. package/dist/illustrations-v5/tnt/hc/tnt-Dot-NoApplications.js +15 -0
  1659. package/dist/illustrations-v5/tnt/hc/tnt-Dot-NoFlows.js +41 -0
  1660. package/dist/illustrations-v5/tnt/hc/tnt-Dot-NoUsers.js +12 -0
  1661. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Radar.js +12 -0
  1662. package/dist/illustrations-v5/tnt/hc/tnt-Dot-RoadMap.js +8 -0
  1663. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Secrets.js +6 -0
  1664. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Services.js +11 -0
  1665. package/dist/illustrations-v5/tnt/hc/tnt-Dot-SessionExpired.js +8 -0
  1666. package/dist/illustrations-v5/tnt/hc/tnt-Dot-SessionExpiring.js +9 -0
  1667. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Settings.js +7 -0
  1668. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Success.js +8 -0
  1669. package/dist/illustrations-v5/tnt/hc/tnt-Dot-SuccessfulAuth.js +12 -0
  1670. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Systems.js +15 -0
  1671. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Teams.js +16 -0
  1672. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Tools.js +18 -0
  1673. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Tutorials.js +8 -0
  1674. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Unlock.js +20 -0
  1675. package/dist/illustrations-v5/tnt/hc/tnt-Dot-UnsuccessfulAuth.js +12 -0
  1676. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Avatar.js +23 -0
  1677. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Calculator.js +32 -0
  1678. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ChartArea.js +21 -0
  1679. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ChartArea2.js +20 -0
  1680. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ChartBPMNFlow.js +28 -0
  1681. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ChartBar.js +20 -0
  1682. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ChartBullet.js +25 -0
  1683. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ChartDoughnut.js +24 -0
  1684. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ChartFlow.js +25 -0
  1685. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ChartGantt.js +25 -0
  1686. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ChartOrg.js +36 -0
  1687. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ChartPie.js +25 -0
  1688. package/dist/illustrations-v5/tnt/hc/tnt-Scene-CodePlaceholder.js +14 -0
  1689. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Company.js +30 -0
  1690. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Compass.js +24 -0
  1691. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Components.js +26 -0
  1692. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Dialog.js +17 -0
  1693. package/dist/illustrations-v5/tnt/hc/tnt-Scene-EmptyContentPane.js +27 -0
  1694. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ExternalLink.js +22 -0
  1695. package/dist/illustrations-v5/tnt/hc/tnt-Scene-FaceID.js +28 -0
  1696. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Fingerprint.js +17 -0
  1697. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Handshake.js +26 -0
  1698. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Help.js +21 -0
  1699. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Lock.js +26 -0
  1700. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Mission.js +21 -0
  1701. package/dist/illustrations-v5/tnt/hc/tnt-Scene-MissionFailed.js +18 -0
  1702. package/dist/illustrations-v5/tnt/hc/tnt-Scene-NoApplications.js +23 -0
  1703. package/dist/illustrations-v5/tnt/hc/tnt-Scene-NoFlows.js +26 -0
  1704. package/dist/illustrations-v5/tnt/hc/tnt-Scene-NoUsers.js +23 -0
  1705. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Radar.js +19 -0
  1706. package/dist/illustrations-v5/tnt/hc/tnt-Scene-RoadMap.js +30 -0
  1707. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Secrets.js +21 -0
  1708. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Services.js +20 -0
  1709. package/dist/illustrations-v5/tnt/hc/tnt-Scene-SessionExpired.js +18 -0
  1710. package/dist/illustrations-v5/tnt/hc/tnt-Scene-SessionExpiring.js +16 -0
  1711. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Settings.js +13 -0
  1712. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Success.js +27 -0
  1713. package/dist/illustrations-v5/tnt/hc/tnt-Scene-SuccessfulAuth.js +34 -0
  1714. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Systems.js +31 -0
  1715. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Teams.js +31 -0
  1716. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Tools.js +26 -0
  1717. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Tutorials.js +27 -0
  1718. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Unlock.js +22 -0
  1719. package/dist/illustrations-v5/tnt/hc/tnt-Scene-UnsuccessfulAuth.js +34 -0
  1720. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Avatar.js +17 -0
  1721. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Calculator.js +24 -0
  1722. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ChartArea.js +15 -0
  1723. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ChartArea2.js +14 -0
  1724. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ChartBPMNFlow.js +21 -0
  1725. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ChartBar.js +14 -0
  1726. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ChartBullet.js +19 -0
  1727. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ChartDoughnut.js +18 -0
  1728. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ChartFlow.js +19 -0
  1729. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ChartGantt.js +19 -0
  1730. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ChartOrg.js +30 -0
  1731. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ChartPie.js +19 -0
  1732. package/dist/illustrations-v5/tnt/hc/tnt-Spot-CodePlaceholder.js +10 -0
  1733. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Company.js +23 -0
  1734. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Compass.js +17 -0
  1735. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Components.js +20 -0
  1736. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Dialog.js +23 -0
  1737. package/dist/illustrations-v5/tnt/hc/tnt-Spot-EmptyContentPane.js +23 -0
  1738. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ExternalLink.js +18 -0
  1739. package/dist/illustrations-v5/tnt/hc/tnt-Spot-FaceID.js +17 -0
  1740. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Fingerprint.js +9 -0
  1741. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Handshake.js +27 -0
  1742. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Help.js +12 -0
  1743. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Lock.js +22 -0
  1744. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Mission.js +11 -0
  1745. package/dist/illustrations-v5/tnt/hc/tnt-Spot-MissionFailed.js +11 -0
  1746. package/dist/illustrations-v5/tnt/hc/tnt-Spot-NoApplications.js +19 -0
  1747. package/dist/illustrations-v5/tnt/hc/tnt-Spot-NoFlows.js +22 -0
  1748. package/dist/illustrations-v5/tnt/hc/tnt-Spot-NoUsers.js +19 -0
  1749. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Radar.js +12 -0
  1750. package/dist/illustrations-v5/tnt/hc/tnt-Spot-RoadMap.js +78 -0
  1751. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Secrets.js +13 -0
  1752. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Services.js +16 -0
  1753. package/dist/illustrations-v5/tnt/hc/tnt-Spot-SessionExpired.js +14 -0
  1754. package/dist/illustrations-v5/tnt/hc/tnt-Spot-SessionExpiring.js +12 -0
  1755. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Settings.js +9 -0
  1756. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Success.js +13 -0
  1757. package/dist/illustrations-v5/tnt/hc/tnt-Spot-SuccessfulAuth.js +27 -0
  1758. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Systems.js +25 -0
  1759. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Teams.js +27 -0
  1760. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Tools.js +22 -0
  1761. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Tutorials.js +18 -0
  1762. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Unlock.js +18 -0
  1763. package/dist/illustrations-v5/tnt/hc/tnt-Spot-UnsuccessfulAuth.js +27 -0
  1764. package/dist/illustrations-v5/tnt/tnt-Dialog-Avatar.js +49 -0
  1765. package/dist/illustrations-v5/tnt/tnt-Dialog-Calculator.js +27 -0
  1766. package/dist/illustrations-v5/tnt/tnt-Dialog-ChartArea.js +11 -0
  1767. package/dist/illustrations-v5/tnt/tnt-Dialog-ChartArea2.js +12 -0
  1768. package/dist/illustrations-v5/tnt/tnt-Dialog-ChartBPMNFlow.js +18 -0
  1769. package/dist/illustrations-v5/tnt/tnt-Dialog-ChartBar.js +13 -0
  1770. package/dist/illustrations-v5/tnt/tnt-Dialog-ChartBullet.js +14 -0
  1771. package/dist/illustrations-v5/tnt/tnt-Dialog-ChartDoughnut.js +13 -0
  1772. package/dist/illustrations-v5/tnt/tnt-Dialog-ChartFlow.js +17 -0
  1773. package/dist/illustrations-v5/tnt/tnt-Dialog-ChartGantt.js +13 -0
  1774. package/dist/illustrations-v5/tnt/tnt-Dialog-ChartOrg.js +20 -0
  1775. package/dist/illustrations-v5/tnt/tnt-Dialog-ChartPie.js +13 -0
  1776. package/dist/illustrations-v5/tnt/tnt-Dialog-CodePlaceholder.js +7 -0
  1777. package/dist/illustrations-v5/tnt/tnt-Dialog-Company.js +14 -0
  1778. package/dist/illustrations-v5/tnt/tnt-Dialog-Compass.js +19 -0
  1779. package/dist/illustrations-v5/tnt/tnt-Dialog-Components.js +17 -0
  1780. package/dist/illustrations-v5/tnt/tnt-Dialog-Dialog.js +11 -0
  1781. package/dist/illustrations-v5/tnt/tnt-Dialog-ExternalLink.js +15 -0
  1782. package/dist/illustrations-v5/tnt/tnt-Dialog-FaceID.js +23 -0
  1783. package/dist/illustrations-v5/tnt/tnt-Dialog-Fingerprint.js +32 -0
  1784. package/dist/illustrations-v5/tnt/tnt-Dialog-Handshake.js +39 -0
  1785. package/dist/illustrations-v5/tnt/tnt-Dialog-Help.js +11 -0
  1786. package/dist/illustrations-v5/tnt/tnt-Dialog-Lock.js +44 -0
  1787. package/dist/illustrations-v5/tnt/tnt-Dialog-Mission.js +26 -0
  1788. package/dist/illustrations-v5/tnt/tnt-Dialog-MissionFailed.js +24 -0
  1789. package/dist/illustrations-v5/tnt/tnt-Dialog-NoApplications.js +13 -0
  1790. package/dist/illustrations-v5/tnt/tnt-Dialog-NoFlows.js +13 -0
  1791. package/dist/illustrations-v5/tnt/tnt-Dialog-NoUsers.js +13 -0
  1792. package/dist/illustrations-v5/tnt/tnt-Dialog-Radar.js +28 -0
  1793. package/dist/illustrations-v5/tnt/tnt-Dialog-RoadMap.js +32 -0
  1794. package/dist/illustrations-v5/tnt/tnt-Dialog-Secrets.js +18 -0
  1795. package/dist/illustrations-v5/tnt/tnt-Dialog-Services.js +30 -0
  1796. package/dist/illustrations-v5/tnt/tnt-Dialog-SessionExpired.js +23 -0
  1797. package/dist/illustrations-v5/tnt/tnt-Dialog-SessionExpiring.js +22 -0
  1798. package/dist/illustrations-v5/tnt/tnt-Dialog-Settings.js +19 -0
  1799. package/dist/illustrations-v5/tnt/tnt-Dialog-Success.js +21 -0
  1800. package/dist/illustrations-v5/tnt/tnt-Dialog-SuccessfulAuth.js +14 -0
  1801. package/dist/illustrations-v5/tnt/tnt-Dialog-Systems.js +19 -0
  1802. package/dist/illustrations-v5/tnt/tnt-Dialog-Teams.js +79 -0
  1803. package/dist/illustrations-v5/tnt/tnt-Dialog-Tools.js +26 -0
  1804. package/dist/illustrations-v5/tnt/tnt-Dialog-Tutorials.js +18 -0
  1805. package/dist/illustrations-v5/tnt/tnt-Dialog-Unlock.js +45 -0
  1806. package/dist/illustrations-v5/tnt/tnt-Dialog-UnsuccessfulAuth.js +14 -0
  1807. package/dist/illustrations-v5/tnt/tnt-Dot-Avatar.js +21 -0
  1808. package/dist/illustrations-v5/tnt/tnt-Dot-Calculator.js +8 -0
  1809. package/dist/illustrations-v5/tnt/tnt-Dot-ChartArea.js +9 -0
  1810. package/dist/illustrations-v5/tnt/tnt-Dot-ChartArea2.js +17 -0
  1811. package/dist/illustrations-v5/tnt/tnt-Dot-ChartBPMNFlow.js +17 -0
  1812. package/dist/illustrations-v5/tnt/tnt-Dot-ChartBar.js +18 -0
  1813. package/dist/illustrations-v5/tnt/tnt-Dot-ChartBullet.js +21 -0
  1814. package/dist/illustrations-v5/tnt/tnt-Dot-ChartDoughnut.js +11 -0
  1815. package/dist/illustrations-v5/tnt/tnt-Dot-ChartFlow.js +15 -0
  1816. package/dist/illustrations-v5/tnt/tnt-Dot-ChartGantt.js +12 -0
  1817. package/dist/illustrations-v5/tnt/tnt-Dot-ChartOrg.js +25 -0
  1818. package/dist/illustrations-v5/tnt/tnt-Dot-ChartPie.js +11 -0
  1819. package/dist/illustrations-v5/tnt/tnt-Dot-CodePlaceholder.js +5 -0
  1820. package/dist/illustrations-v5/tnt/tnt-Dot-Company.js +15 -0
  1821. package/dist/illustrations-v5/tnt/tnt-Dot-Compass.js +18 -0
  1822. package/dist/illustrations-v5/tnt/tnt-Dot-Components.js +22 -0
  1823. package/dist/illustrations-v5/tnt/tnt-Dot-Dialog.js +9 -0
  1824. package/dist/illustrations-v5/tnt/tnt-Dot-ExternalLink.js +10 -0
  1825. package/dist/illustrations-v5/tnt/tnt-Dot-FaceID.js +21 -0
  1826. package/dist/illustrations-v5/tnt/tnt-Dot-Fingerprint.js +13 -0
  1827. package/dist/illustrations-v5/tnt/tnt-Dot-Handshake.js +36 -0
  1828. package/dist/illustrations-v5/tnt/tnt-Dot-Help.js +16 -0
  1829. package/dist/illustrations-v5/tnt/tnt-Dot-Lock.js +26 -0
  1830. package/dist/illustrations-v5/tnt/tnt-Dot-Mission.js +21 -0
  1831. package/dist/illustrations-v5/tnt/tnt-Dot-MissionFailed.js +20 -0
  1832. package/dist/illustrations-v5/tnt/tnt-Dot-NoApplications.js +11 -0
  1833. package/dist/illustrations-v5/tnt/tnt-Dot-NoFlows.js +11 -0
  1834. package/dist/illustrations-v5/tnt/tnt-Dot-NoUsers.js +18 -0
  1835. package/dist/illustrations-v5/tnt/tnt-Dot-Radar.js +28 -0
  1836. package/dist/illustrations-v5/tnt/tnt-Dot-RoadMap.js +11 -0
  1837. package/dist/illustrations-v5/tnt/tnt-Dot-Secrets.js +16 -0
  1838. package/dist/illustrations-v5/tnt/tnt-Dot-Services.js +14 -0
  1839. package/dist/illustrations-v5/tnt/tnt-Dot-SessionExpired.js +13 -0
  1840. package/dist/illustrations-v5/tnt/tnt-Dot-SessionExpiring.js +20 -0
  1841. package/dist/illustrations-v5/tnt/tnt-Dot-Settings.js +8 -0
  1842. package/dist/illustrations-v5/tnt/tnt-Dot-Success.js +15 -0
  1843. package/dist/illustrations-v5/tnt/tnt-Dot-SuccessfulAuth.js +10 -0
  1844. package/dist/illustrations-v5/tnt/tnt-Dot-Systems.js +15 -0
  1845. package/dist/illustrations-v5/tnt/tnt-Dot-Teams.js +32 -0
  1846. package/dist/illustrations-v5/tnt/tnt-Dot-Tools.js +26 -0
  1847. package/dist/illustrations-v5/tnt/tnt-Dot-Tutorials.js +16 -0
  1848. package/dist/illustrations-v5/tnt/tnt-Dot-Unlock.js +28 -0
  1849. package/dist/illustrations-v5/tnt/tnt-Dot-UnsuccessfulAuth.js +10 -0
  1850. package/dist/illustrations-v5/tnt/tnt-Scene-Avatar.js +49 -0
  1851. package/dist/illustrations-v5/tnt/tnt-Scene-Calculator.js +22 -0
  1852. package/dist/illustrations-v5/tnt/tnt-Scene-ChartArea.js +11 -0
  1853. package/dist/illustrations-v5/tnt/tnt-Scene-ChartArea2.js +12 -0
  1854. package/dist/illustrations-v5/tnt/tnt-Scene-ChartBPMNFlow.js +18 -0
  1855. package/dist/illustrations-v5/tnt/tnt-Scene-ChartBar.js +13 -0
  1856. package/dist/illustrations-v5/tnt/tnt-Scene-ChartBullet.js +18 -0
  1857. package/dist/illustrations-v5/tnt/tnt-Scene-ChartDoughnut.js +13 -0
  1858. package/dist/illustrations-v5/tnt/tnt-Scene-ChartFlow.js +17 -0
  1859. package/dist/illustrations-v5/tnt/tnt-Scene-ChartGantt.js +13 -0
  1860. package/dist/illustrations-v5/tnt/tnt-Scene-ChartOrg.js +19 -0
  1861. package/dist/illustrations-v5/tnt/tnt-Scene-ChartPie.js +13 -0
  1862. package/dist/illustrations-v5/tnt/tnt-Scene-CodePlaceholder.js +7 -0
  1863. package/dist/illustrations-v5/tnt/tnt-Scene-Company.js +14 -0
  1864. package/dist/illustrations-v5/tnt/tnt-Scene-Compass.js +19 -0
  1865. package/dist/illustrations-v5/tnt/tnt-Scene-Components.js +19 -0
  1866. package/dist/illustrations-v5/tnt/tnt-Scene-Dialog.js +11 -0
  1867. package/dist/illustrations-v5/tnt/tnt-Scene-ExternalLink.js +15 -0
  1868. package/dist/illustrations-v5/tnt/tnt-Scene-FaceID.js +22 -0
  1869. package/dist/illustrations-v5/tnt/tnt-Scene-Fingerprint.js +32 -0
  1870. package/dist/illustrations-v5/tnt/tnt-Scene-Handshake.js +39 -0
  1871. package/dist/illustrations-v5/tnt/tnt-Scene-Help.js +18 -0
  1872. package/dist/illustrations-v5/tnt/tnt-Scene-Lock.js +44 -0
  1873. package/dist/illustrations-v5/tnt/tnt-Scene-Mission.js +33 -0
  1874. package/dist/illustrations-v5/tnt/tnt-Scene-MissionFailed.js +24 -0
  1875. package/dist/illustrations-v5/tnt/tnt-Scene-NoApplications.js +13 -0
  1876. package/dist/illustrations-v5/tnt/tnt-Scene-NoFlows.js +13 -0
  1877. package/dist/illustrations-v5/tnt/tnt-Scene-NoUsers.js +20 -0
  1878. package/dist/illustrations-v5/tnt/tnt-Scene-Radar.js +30 -0
  1879. package/dist/illustrations-v5/tnt/tnt-Scene-RoadMap.js +32 -0
  1880. package/dist/illustrations-v5/tnt/tnt-Scene-Secrets.js +18 -0
  1881. package/dist/illustrations-v5/tnt/tnt-Scene-Services.js +30 -0
  1882. package/dist/illustrations-v5/tnt/tnt-Scene-SessionExpired.js +24 -0
  1883. package/dist/illustrations-v5/tnt/tnt-Scene-SessionExpiring.js +22 -0
  1884. package/dist/illustrations-v5/tnt/tnt-Scene-Settings.js +19 -0
  1885. package/dist/illustrations-v5/tnt/tnt-Scene-Success.js +21 -0
  1886. package/dist/illustrations-v5/tnt/tnt-Scene-SuccessfulAuth.js +19 -0
  1887. package/dist/illustrations-v5/tnt/tnt-Scene-Systems.js +28 -0
  1888. package/dist/illustrations-v5/tnt/tnt-Scene-Teams.js +85 -0
  1889. package/dist/illustrations-v5/tnt/tnt-Scene-Tools.js +47 -0
  1890. package/dist/illustrations-v5/tnt/tnt-Scene-Tutorials.js +18 -0
  1891. package/dist/illustrations-v5/tnt/tnt-Scene-Unlock.js +45 -0
  1892. package/dist/illustrations-v5/tnt/tnt-Scene-UnsuccessfulAuth.js +19 -0
  1893. package/dist/illustrations-v5/tnt/tnt-Spot-Avatar.js +49 -0
  1894. package/dist/illustrations-v5/tnt/tnt-Spot-Calculator.js +26 -0
  1895. package/dist/illustrations-v5/tnt/tnt-Spot-ChartArea.js +10 -0
  1896. package/dist/illustrations-v5/tnt/tnt-Spot-ChartArea2.js +11 -0
  1897. package/dist/illustrations-v5/tnt/tnt-Spot-ChartBPMNFlow.js +18 -0
  1898. package/dist/illustrations-v5/tnt/tnt-Spot-ChartBar.js +12 -0
  1899. package/dist/illustrations-v5/tnt/tnt-Spot-ChartBullet.js +13 -0
  1900. package/dist/illustrations-v5/tnt/tnt-Spot-ChartDoughnut.js +12 -0
  1901. package/dist/illustrations-v5/tnt/tnt-Spot-ChartFlow.js +14 -0
  1902. package/dist/illustrations-v5/tnt/tnt-Spot-ChartGantt.js +12 -0
  1903. package/dist/illustrations-v5/tnt/tnt-Spot-ChartOrg.js +19 -0
  1904. package/dist/illustrations-v5/tnt/tnt-Spot-ChartPie.js +12 -0
  1905. package/dist/illustrations-v5/tnt/tnt-Spot-CodePlaceholder.js +7 -0
  1906. package/dist/illustrations-v5/tnt/tnt-Spot-Company.js +14 -0
  1907. package/dist/illustrations-v5/tnt/tnt-Spot-Compass.js +19 -0
  1908. package/dist/illustrations-v5/tnt/tnt-Spot-Components.js +19 -0
  1909. package/dist/illustrations-v5/tnt/tnt-Spot-Dialog.js +11 -0
  1910. package/dist/illustrations-v5/tnt/tnt-Spot-ExternalLink.js +14 -0
  1911. package/dist/illustrations-v5/tnt/tnt-Spot-FaceID.js +22 -0
  1912. package/dist/illustrations-v5/tnt/tnt-Spot-Fingerprint.js +32 -0
  1913. package/dist/illustrations-v5/tnt/tnt-Spot-Handshake.js +39 -0
  1914. package/dist/illustrations-v5/tnt/tnt-Spot-Help.js +10 -0
  1915. package/dist/illustrations-v5/tnt/tnt-Spot-Lock.js +44 -0
  1916. package/dist/illustrations-v5/tnt/tnt-Spot-Mission.js +26 -0
  1917. package/dist/illustrations-v5/tnt/tnt-Spot-MissionFailed.js +24 -0
  1918. package/dist/illustrations-v5/tnt/tnt-Spot-NoApplications.js +12 -0
  1919. package/dist/illustrations-v5/tnt/tnt-Spot-NoFlows.js +12 -0
  1920. package/dist/illustrations-v5/tnt/tnt-Spot-NoUsers.js +13 -0
  1921. package/dist/illustrations-v5/tnt/tnt-Spot-Radar.js +28 -0
  1922. package/dist/illustrations-v5/tnt/tnt-Spot-RoadMap.js +32 -0
  1923. package/dist/illustrations-v5/tnt/tnt-Spot-Secrets.js +18 -0
  1924. package/dist/illustrations-v5/tnt/tnt-Spot-Services.js +30 -0
  1925. package/dist/illustrations-v5/tnt/tnt-Spot-SessionExpired.js +23 -0
  1926. package/dist/illustrations-v5/tnt/tnt-Spot-SessionExpiring.js +20 -0
  1927. package/dist/illustrations-v5/tnt/tnt-Spot-Settings.js +15 -0
  1928. package/dist/illustrations-v5/tnt/tnt-Spot-Success.js +21 -0
  1929. package/dist/illustrations-v5/tnt/tnt-Spot-SuccessfulAuth.js +15 -0
  1930. package/dist/illustrations-v5/tnt/tnt-Spot-Systems.js +19 -0
  1931. package/dist/illustrations-v5/tnt/tnt-Spot-Teams.js +79 -0
  1932. package/dist/illustrations-v5/tnt/tnt-Spot-Tools.js +26 -0
  1933. package/dist/illustrations-v5/tnt/tnt-Spot-Tutorials.js +17 -0
  1934. package/dist/illustrations-v5/tnt/tnt-Spot-Unlock.js +45 -0
  1935. package/dist/illustrations-v5/tnt/tnt-Spot-UnsuccessfulAuth.js +15 -0
  1936. package/dist/ssr-zxing-shim.d.ts +2 -0
  1937. package/dist/ssr-zxing-shim.js +3 -0
  1938. package/dist/ssr-zxing-shim.js.map +1 -0
  1939. package/dist/ssr-zxing.d.ts +2 -0
  1940. package/dist/ssr-zxing.js +3 -0
  1941. package/dist/ssr-zxing.js.map +1 -0
  1942. package/dist/types/FCLLayout.d.ts +105 -0
  1943. package/dist/types/FCLLayout.js +107 -0
  1944. package/dist/types/FCLLayout.js.map +1 -0
  1945. package/dist/types/IllustrationMessageDesign.d.ts +69 -0
  1946. package/dist/types/IllustrationMessageDesign.js +71 -0
  1947. package/dist/types/IllustrationMessageDesign.js.map +1 -0
  1948. package/dist/types/IllustrationMessageType.d.ts +636 -0
  1949. package/dist/types/IllustrationMessageType.js +638 -0
  1950. package/dist/types/IllustrationMessageType.js.map +1 -0
  1951. package/dist/types/MediaGalleryItemLayout.d.ts +22 -0
  1952. package/dist/types/MediaGalleryItemLayout.js +24 -0
  1953. package/dist/types/MediaGalleryItemLayout.js.map +1 -0
  1954. package/dist/types/MediaGalleryLayout.d.ts +22 -0
  1955. package/dist/types/MediaGalleryLayout.js +24 -0
  1956. package/dist/types/MediaGalleryLayout.js.map +1 -0
  1957. package/dist/types/MediaGalleryMenuHorizontalAlign.d.ts +17 -0
  1958. package/dist/types/MediaGalleryMenuHorizontalAlign.js +19 -0
  1959. package/dist/types/MediaGalleryMenuHorizontalAlign.js.map +1 -0
  1960. package/dist/types/MediaGalleryMenuVerticalAlign.d.ts +17 -0
  1961. package/dist/types/MediaGalleryMenuVerticalAlign.js +19 -0
  1962. package/dist/types/MediaGalleryMenuVerticalAlign.js.map +1 -0
  1963. package/dist/types/NavigationLayoutMode.d.ts +23 -0
  1964. package/dist/types/NavigationLayoutMode.js +25 -0
  1965. package/dist/types/NavigationLayoutMode.js.map +1 -0
  1966. package/dist/types/NotificationListItemImportance.d.ts +16 -0
  1967. package/dist/types/NotificationListItemImportance.js +18 -0
  1968. package/dist/types/NotificationListItemImportance.js.map +1 -0
  1969. package/dist/types/PageBackgroundDesign.d.ts +22 -0
  1970. package/dist/types/PageBackgroundDesign.js +24 -0
  1971. package/dist/types/PageBackgroundDesign.js.map +1 -0
  1972. package/dist/types/SearchMode.d.ts +17 -0
  1973. package/dist/types/SearchMode.js +19 -0
  1974. package/dist/types/SearchMode.js.map +1 -0
  1975. package/dist/types/SideContentFallDown.d.ts +27 -0
  1976. package/dist/types/SideContentFallDown.js +29 -0
  1977. package/dist/types/SideContentFallDown.js.map +1 -0
  1978. package/dist/types/SideContentPosition.d.ts +19 -0
  1979. package/dist/types/SideContentPosition.js +21 -0
  1980. package/dist/types/SideContentPosition.js.map +1 -0
  1981. package/dist/types/SideContentVisibility.d.ts +32 -0
  1982. package/dist/types/SideContentVisibility.js +34 -0
  1983. package/dist/types/SideContentVisibility.js.map +1 -0
  1984. package/dist/types/SideNavigationItemDesign.d.ts +24 -0
  1985. package/dist/types/SideNavigationItemDesign.js +26 -0
  1986. package/dist/types/SideNavigationItemDesign.js.map +1 -0
  1987. package/dist/types/TimelineGrowingMode.d.ts +24 -0
  1988. package/dist/types/TimelineGrowingMode.js +26 -0
  1989. package/dist/types/TimelineGrowingMode.js.map +1 -0
  1990. package/dist/types/TimelineLayout.d.ts +18 -0
  1991. package/dist/types/TimelineLayout.js +20 -0
  1992. package/dist/types/TimelineLayout.js.map +1 -0
  1993. package/dist/types/UploadCollectionDnDMode.d.ts +22 -0
  1994. package/dist/types/UploadCollectionDnDMode.js +19 -44
  1995. package/dist/types/UploadCollectionDnDMode.js.map +1 -0
  1996. package/dist/types/UploadCollectionSelectionMode.d.ts +39 -0
  1997. package/dist/types/UploadCollectionSelectionMode.js +41 -0
  1998. package/dist/types/UploadCollectionSelectionMode.js.map +1 -0
  1999. package/dist/types/UploadState.d.ts +27 -0
  2000. package/dist/types/UploadState.js +24 -51
  2001. package/dist/types/UploadState.js.map +1 -0
  2002. package/dist/types/ViewSettingsDialogMode.d.ts +25 -0
  2003. package/dist/types/ViewSettingsDialogMode.js +27 -0
  2004. package/dist/types/ViewSettingsDialogMode.js.map +1 -0
  2005. package/dist/types/WizardContentLayout.d.ts +17 -0
  2006. package/dist/types/WizardContentLayout.js +19 -0
  2007. package/dist/types/WizardContentLayout.js.map +1 -0
  2008. package/dist/upload-utils/UploadCollectionBodyDnD.d.ts +15 -0
  2009. package/dist/upload-utils/UploadCollectionBodyDnD.js +42 -55
  2010. package/dist/upload-utils/UploadCollectionBodyDnD.js.map +1 -0
  2011. package/dist/vscode.html-custom-data.json +1700 -0
  2012. package/dist/web-types.json +4290 -0
  2013. package/global.d.ts +12 -0
  2014. package/package-scripts.cjs +84 -0
  2015. package/package.json +47 -13
  2016. package/src/BarcodeScannerDialogTemplate.tsx +38 -0
  2017. package/src/DynamicPageHeaderActionsTemplate.tsx +33 -0
  2018. package/src/DynamicPageHeaderTemplate.tsx +9 -0
  2019. package/src/DynamicPageTemplate.tsx +72 -0
  2020. package/src/DynamicPageTitleTemplate.tsx +77 -0
  2021. package/src/DynamicSideContentTemplate.tsx +48 -0
  2022. package/src/FlexibleColumnLayoutTemplate.tsx +134 -0
  2023. package/src/IllustratedMessageTemplate.tsx +92 -0
  2024. package/src/MediaGalleryItemTemplate.tsx +22 -0
  2025. package/src/MediaGalleryTemplate.tsx +50 -0
  2026. package/src/NavigationLayoutTemplate.tsx +19 -0
  2027. package/src/NavigationMenuItemTemplate.tsx +64 -0
  2028. package/src/NavigationMenuTemplate.tsx +67 -0
  2029. package/src/NotificationListGroupItemTemplate.tsx +66 -0
  2030. package/src/NotificationListItemTemplate.tsx +154 -0
  2031. package/src/NotificationListTemplate.tsx +17 -0
  2032. package/src/PageTemplate.tsx +30 -0
  2033. package/src/ProductSwitchItemTemplate.tsx +66 -0
  2034. package/src/ProductSwitchTemplate.tsx +16 -0
  2035. package/src/SearchFieldTemplate.tsx +102 -0
  2036. package/src/SearchItemShowMoreTemplate.tsx +19 -0
  2037. package/src/SearchItemTemplate.tsx +67 -0
  2038. package/src/SearchMessageAreaTemplate.tsx +15 -0
  2039. package/src/SearchPopoverTemplate.tsx +80 -0
  2040. package/src/SearchTemplate.tsx +12 -0
  2041. package/src/ShellBarBrandingTemplate.tsx +27 -0
  2042. package/src/ShellBarPopoverTemplate.tsx +50 -0
  2043. package/src/ShellBarSearchPopoverTemplate.tsx +24 -0
  2044. package/src/ShellBarSearchTemplate.tsx +12 -0
  2045. package/src/ShellBarTemplate.tsx +337 -0
  2046. package/src/SideNavigationGroupTemplate.tsx +58 -0
  2047. package/src/SideNavigationItemTemplate.tsx +86 -0
  2048. package/src/SideNavigationPopoverTemplate.tsx +103 -0
  2049. package/src/SideNavigationSubItemTemplate.tsx +39 -0
  2050. package/src/SideNavigationTemplate.tsx +75 -0
  2051. package/src/TimelineGroupItemTemplate.tsx +48 -0
  2052. package/src/TimelineItemTemplate.tsx +77 -0
  2053. package/src/TimelineTemplate.tsx +77 -0
  2054. package/src/UploadCollectionItemTemplate.tsx +146 -0
  2055. package/src/UploadCollectionTemplate.tsx +63 -0
  2056. package/src/UserMenuItemGroupTemplate.tsx +6 -0
  2057. package/src/UserMenuItemTemplate.tsx +6 -0
  2058. package/src/UserMenuTemplate.tsx +193 -0
  2059. package/src/UserSettingsAccountViewTemplate.tsx +46 -0
  2060. package/src/UserSettingsAppearanceViewItemTemplate.tsx +25 -0
  2061. package/src/UserSettingsAppearanceViewTemplate.tsx +15 -0
  2062. package/src/UserSettingsDialogTemplate.tsx +80 -0
  2063. package/src/UserSettingsItemTemplate.tsx +52 -0
  2064. package/src/UserSettingsViewTemplate.tsx +11 -0
  2065. package/src/ViewSettingsDialogTemplate.tsx +230 -0
  2066. package/src/WizardPopoverTemplate.tsx +42 -0
  2067. package/src/WizardTabTemplate.tsx +39 -0
  2068. package/src/WizardTemplate.tsx +75 -0
  2069. package/src/i18n/messagebundle.properties +533 -15
  2070. package/src/i18n/messagebundle_ar.properties +356 -9
  2071. package/src/i18n/messagebundle_bg.properties +356 -9
  2072. package/src/i18n/messagebundle_ca.properties +356 -9
  2073. package/src/i18n/messagebundle_cnr.properties +407 -0
  2074. package/src/i18n/messagebundle_cs.properties +356 -9
  2075. package/src/i18n/messagebundle_cy.properties +407 -0
  2076. package/src/i18n/messagebundle_da.properties +357 -10
  2077. package/src/i18n/messagebundle_de.properties +356 -9
  2078. package/src/i18n/messagebundle_el.properties +356 -9
  2079. package/src/i18n/messagebundle_en.properties +356 -9
  2080. package/src/i18n/messagebundle_en_GB.properties +407 -0
  2081. package/src/i18n/messagebundle_en_US_sappsd.properties +362 -15
  2082. package/src/i18n/messagebundle_en_US_saprigi.properties +407 -0
  2083. package/src/i18n/messagebundle_en_US_saptrc.properties +378 -31
  2084. package/src/i18n/messagebundle_es.properties +356 -9
  2085. package/src/i18n/messagebundle_es_MX.properties +407 -0
  2086. package/src/i18n/messagebundle_et.properties +356 -9
  2087. package/src/i18n/messagebundle_fi.properties +357 -10
  2088. package/src/i18n/messagebundle_fr.properties +356 -9
  2089. package/src/i18n/messagebundle_fr_CA.properties +407 -0
  2090. package/src/i18n/messagebundle_hi.properties +356 -9
  2091. package/src/i18n/messagebundle_hr.properties +359 -12
  2092. package/src/i18n/messagebundle_hu.properties +354 -7
  2093. package/src/i18n/messagebundle_id.properties +407 -0
  2094. package/src/i18n/messagebundle_it.properties +364 -17
  2095. package/src/i18n/messagebundle_iw.properties +357 -10
  2096. package/src/i18n/messagebundle_ja.properties +359 -12
  2097. package/src/i18n/messagebundle_kk.properties +357 -10
  2098. package/src/i18n/messagebundle_ko.properties +358 -11
  2099. package/src/i18n/messagebundle_lt.properties +356 -9
  2100. package/src/i18n/messagebundle_lv.properties +356 -9
  2101. package/src/i18n/messagebundle_mk.properties +407 -0
  2102. package/src/i18n/messagebundle_ms.properties +357 -10
  2103. package/src/i18n/messagebundle_nl.properties +356 -9
  2104. package/src/i18n/messagebundle_no.properties +356 -9
  2105. package/src/i18n/messagebundle_pl.properties +357 -10
  2106. package/src/i18n/messagebundle_pt.properties +356 -9
  2107. package/src/i18n/messagebundle_pt_PT.properties +407 -0
  2108. package/src/i18n/messagebundle_ro.properties +356 -9
  2109. package/src/i18n/messagebundle_ru.properties +356 -9
  2110. package/src/i18n/messagebundle_sh.properties +359 -12
  2111. package/src/i18n/messagebundle_sk.properties +356 -9
  2112. package/src/i18n/messagebundle_sl.properties +357 -10
  2113. package/src/i18n/messagebundle_sr.properties +407 -0
  2114. package/src/i18n/messagebundle_sv.properties +356 -9
  2115. package/src/i18n/messagebundle_th.properties +355 -8
  2116. package/src/i18n/messagebundle_tr.properties +357 -10
  2117. package/src/i18n/messagebundle_uk.properties +358 -11
  2118. package/src/i18n/messagebundle_vi.properties +356 -9
  2119. package/src/i18n/messagebundle_zh_CN.properties +356 -9
  2120. package/src/i18n/messagebundle_zh_TW.properties +357 -10
  2121. package/src/illustrations/sapIllus-Dialog-Achievement.svg +28 -0
  2122. package/src/illustrations/sapIllus-Dialog-AddColumn.svg +37 -0
  2123. package/src/illustrations/sapIllus-Dialog-AddDimensions.svg +17 -0
  2124. package/src/illustrations/sapIllus-Dialog-AddPeople.svg +31 -0
  2125. package/src/illustrations/sapIllus-Dialog-AddPeopleToCalendar.svg +51 -0
  2126. package/src/illustrations/sapIllus-Dialog-AddingColumns.svg +37 -0
  2127. package/src/illustrations/sapIllus-Dialog-BalloonSky.svg +45 -0
  2128. package/src/illustrations/sapIllus-Dialog-BeforeSearch.svg +41 -0
  2129. package/src/illustrations/sapIllus-Dialog-Connection.svg +18 -0
  2130. package/src/illustrations/sapIllus-Dialog-DragFilesToUpload.svg +20 -0
  2131. package/src/illustrations/sapIllus-Dialog-EmptyCalendar.svg +77 -0
  2132. package/src/illustrations/sapIllus-Dialog-EmptyList.svg +36 -0
  2133. package/src/illustrations/sapIllus-Dialog-EmptyPlanningCalendar.svg +19 -0
  2134. package/src/illustrations/sapIllus-Dialog-ErrorScreen.svg +34 -0
  2135. package/src/illustrations/sapIllus-Dialog-FilterTable.svg +65 -0
  2136. package/src/illustrations/sapIllus-Dialog-FilteringColumns.svg +39 -0
  2137. package/src/illustrations/sapIllus-Dialog-GroupTable.svg +67 -0
  2138. package/src/illustrations/sapIllus-Dialog-GroupingColumns.svg +35 -0
  2139. package/src/illustrations/sapIllus-Dialog-KeyTask.svg +119 -0
  2140. package/src/illustrations/sapIllus-Dialog-NewMail.svg +38 -0
  2141. package/src/illustrations/sapIllus-Dialog-NoActivities.svg +34 -0
  2142. package/src/illustrations/sapIllus-Dialog-NoChartData.svg +45 -0
  2143. package/src/illustrations/sapIllus-Dialog-NoColumnsSet.svg +29 -0
  2144. package/src/illustrations/sapIllus-Dialog-NoData.svg +12 -0
  2145. package/src/illustrations/sapIllus-Dialog-NoDimensionsSet.svg +39 -0
  2146. package/src/illustrations/sapIllus-Dialog-NoEntries.svg +42 -0
  2147. package/src/illustrations/sapIllus-Dialog-NoFilterResults.svg +20 -0
  2148. package/src/illustrations/sapIllus-Dialog-NoMail.svg +16 -0
  2149. package/src/illustrations/sapIllus-Dialog-NoMail_v1.svg +22 -0
  2150. package/src/illustrations/sapIllus-Dialog-NoNotifications.svg +28 -0
  2151. package/src/illustrations/sapIllus-Dialog-NoSavedItems.svg +54 -0
  2152. package/src/illustrations/sapIllus-Dialog-NoSavedItems_v1.svg +36 -0
  2153. package/src/illustrations/sapIllus-Dialog-NoSearchResults.svg +73 -0
  2154. package/src/illustrations/sapIllus-Dialog-NoTasks.svg +60 -0
  2155. package/src/illustrations/sapIllus-Dialog-NoTasks_v1.svg +62 -0
  2156. package/src/illustrations/sapIllus-Dialog-PageNotFound.svg +13 -0
  2157. package/src/illustrations/sapIllus-Dialog-ReceiveAppreciation.svg +25 -0
  2158. package/src/illustrations/sapIllus-Dialog-ReloadScreen.svg +48 -0
  2159. package/src/illustrations/sapIllus-Dialog-ResizeColumn.svg +41 -0
  2160. package/src/illustrations/sapIllus-Dialog-ResizingColumns.svg +55 -0
  2161. package/src/illustrations/sapIllus-Dialog-SearchEarth.svg +18 -0
  2162. package/src/illustrations/sapIllus-Dialog-SearchFolder.svg +37 -0
  2163. package/src/illustrations/sapIllus-Dialog-SignOut.svg +21 -0
  2164. package/src/illustrations/sapIllus-Dialog-SimpleBalloon.svg +17 -0
  2165. package/src/illustrations/sapIllus-Dialog-SimpleBell.svg +13 -0
  2166. package/src/illustrations/sapIllus-Dialog-SimpleCalendar.svg +48 -0
  2167. package/src/illustrations/sapIllus-Dialog-SimpleCheckMark.svg +6 -0
  2168. package/src/illustrations/sapIllus-Dialog-SimpleConnection.svg +18 -0
  2169. package/src/illustrations/sapIllus-Dialog-SimpleEmptyDoc.svg +17 -0
  2170. package/src/illustrations/sapIllus-Dialog-SimpleEmptyList.svg +10 -0
  2171. package/src/illustrations/sapIllus-Dialog-SimpleError.svg +10 -0
  2172. package/src/illustrations/sapIllus-Dialog-SimpleMagnifier.svg +10 -0
  2173. package/src/illustrations/sapIllus-Dialog-SimpleMail.svg +13 -0
  2174. package/src/illustrations/sapIllus-Dialog-SimpleNoSavedItems.svg +17 -0
  2175. package/src/illustrations/sapIllus-Dialog-SimpleNotFoundMagnifier.svg +21 -0
  2176. package/src/illustrations/sapIllus-Dialog-SimpleReload.svg +11 -0
  2177. package/src/illustrations/sapIllus-Dialog-SimpleTask.svg +23 -0
  2178. package/src/illustrations/sapIllus-Dialog-SleepingBell.svg +30 -0
  2179. package/src/illustrations/sapIllus-Dialog-SortColumn.svg +39 -0
  2180. package/src/illustrations/sapIllus-Dialog-SortingColumns.svg +50 -0
  2181. package/src/illustrations/sapIllus-Dialog-SuccessBalloon.svg +16 -0
  2182. package/src/illustrations/sapIllus-Dialog-SuccessCheckMark.svg +8 -0
  2183. package/src/illustrations/sapIllus-Dialog-SuccessHighFive.svg +24 -0
  2184. package/src/illustrations/sapIllus-Dialog-SuccessScreen.svg +47 -0
  2185. package/src/illustrations/sapIllus-Dialog-Survey.svg +22 -0
  2186. package/src/illustrations/sapIllus-Dialog-Tent.svg +31 -0
  2187. package/src/illustrations/sapIllus-Dialog-UnableToLoad.svg +119 -0
  2188. package/src/illustrations/sapIllus-Dialog-UnableToLoadImage.svg +28 -0
  2189. package/src/illustrations/sapIllus-Dialog-UnableToUpload.svg +26 -0
  2190. package/src/illustrations/sapIllus-Dialog-UploadCollection.svg +30 -0
  2191. package/src/illustrations/sapIllus-Dialog-UploadToCloud.svg +21 -0
  2192. package/src/illustrations/sapIllus-Dialog-UserHasSignedUp.svg +34 -0
  2193. package/src/illustrations/sapIllus-Dot-Achievement.svg +18 -0
  2194. package/src/illustrations/sapIllus-Dot-AddColumn.svg +26 -0
  2195. package/src/illustrations/sapIllus-Dot-AddDimensions.svg +9 -0
  2196. package/src/illustrations/sapIllus-Dot-AddPeople.svg +8 -0
  2197. package/src/illustrations/sapIllus-Dot-AddPeopleToCalendar.svg +14 -0
  2198. package/src/illustrations/sapIllus-Dot-AddingColumns.svg +13 -0
  2199. package/src/illustrations/sapIllus-Dot-BalloonSky.svg +6 -0
  2200. package/src/illustrations/sapIllus-Dot-BeforeSearch.svg +40 -0
  2201. package/src/illustrations/sapIllus-Dot-Connection.svg +9 -0
  2202. package/src/illustrations/sapIllus-Dot-DragFilesToUpload.svg +8 -0
  2203. package/src/illustrations/sapIllus-Dot-EmptyCalendar.svg +36 -0
  2204. package/src/illustrations/sapIllus-Dot-EmptyList.svg +6 -0
  2205. package/src/illustrations/sapIllus-Dot-EmptyPlanningCalendar.svg +18 -0
  2206. package/src/illustrations/sapIllus-Dot-ErrorScreen.svg +8 -0
  2207. package/src/illustrations/sapIllus-Dot-FilterTable.svg +7 -0
  2208. package/src/illustrations/sapIllus-Dot-FilteringColumns.svg +22 -0
  2209. package/src/illustrations/sapIllus-Dot-GroupTable.svg +35 -0
  2210. package/src/illustrations/sapIllus-Dot-GroupingColumns.svg +23 -0
  2211. package/src/illustrations/sapIllus-Dot-KeyTask.svg +118 -0
  2212. package/src/illustrations/sapIllus-Dot-NewMail.svg +11 -0
  2213. package/src/illustrations/sapIllus-Dot-NoActivities.svg +11 -0
  2214. package/src/illustrations/sapIllus-Dot-NoChartData.svg +35 -0
  2215. package/src/illustrations/sapIllus-Dot-NoColumnsSet.svg +26 -0
  2216. package/src/illustrations/sapIllus-Dot-NoData.svg +11 -0
  2217. package/src/illustrations/sapIllus-Dot-NoDimensionsSet.svg +6 -0
  2218. package/src/illustrations/sapIllus-Dot-NoEntries.svg +25 -0
  2219. package/src/illustrations/sapIllus-Dot-NoFilterResults.svg +14 -0
  2220. package/src/illustrations/sapIllus-Dot-NoMail.svg +14 -0
  2221. package/src/illustrations/sapIllus-Dot-NoMail_v1.svg +9 -0
  2222. package/src/illustrations/sapIllus-Dot-NoNotifications.svg +23 -0
  2223. package/src/illustrations/sapIllus-Dot-NoSavedItems.svg +55 -0
  2224. package/src/illustrations/sapIllus-Dot-NoSavedItems_v1.svg +12 -0
  2225. package/src/illustrations/sapIllus-Dot-NoSearchResults.svg +35 -0
  2226. package/src/illustrations/sapIllus-Dot-NoTasks.svg +22 -0
  2227. package/src/illustrations/sapIllus-Dot-NoTasks_v1.svg +12 -0
  2228. package/src/illustrations/sapIllus-Dot-PageNotFound.svg +14 -0
  2229. package/src/illustrations/sapIllus-Dot-ReceiveAppreciation.svg +19 -0
  2230. package/src/illustrations/sapIllus-Dot-ReloadScreen.svg +8 -0
  2231. package/src/illustrations/sapIllus-Dot-ResizeColumn.svg +26 -0
  2232. package/src/illustrations/sapIllus-Dot-ResizingColumns.svg +19 -0
  2233. package/src/illustrations/sapIllus-Dot-SearchEarth.svg +6 -0
  2234. package/src/illustrations/sapIllus-Dot-SearchFolder.svg +10 -0
  2235. package/src/illustrations/sapIllus-Dot-SignOut.svg +11 -0
  2236. package/src/illustrations/sapIllus-Dot-SimpleBalloon.svg +6 -0
  2237. package/src/illustrations/sapIllus-Dot-SimpleBell.svg +7 -0
  2238. package/src/illustrations/sapIllus-Dot-SimpleCalendar.svg +36 -0
  2239. package/src/illustrations/sapIllus-Dot-SimpleCheckMark.svg +4 -0
  2240. package/src/illustrations/sapIllus-Dot-SimpleConnection.svg +9 -0
  2241. package/src/illustrations/sapIllus-Dot-SimpleEmptyDoc.svg +7 -0
  2242. package/src/illustrations/sapIllus-Dot-SimpleEmptyList.svg +6 -0
  2243. package/src/illustrations/sapIllus-Dot-SimpleError.svg +8 -0
  2244. package/src/illustrations/sapIllus-Dot-SimpleMagnifier.svg +6 -0
  2245. package/src/illustrations/sapIllus-Dot-SimpleMail.svg +9 -0
  2246. package/src/illustrations/sapIllus-Dot-SimpleNoSavedItems.svg +12 -0
  2247. package/src/illustrations/sapIllus-Dot-SimpleNotFoundMagnifier.svg +10 -0
  2248. package/src/illustrations/sapIllus-Dot-SimpleReload.svg +8 -0
  2249. package/src/illustrations/sapIllus-Dot-SimpleTask.svg +12 -0
  2250. package/src/illustrations/sapIllus-Dot-SleepingBell.svg +7 -0
  2251. package/src/illustrations/sapIllus-Dot-SortColumn.svg +28 -0
  2252. package/src/illustrations/sapIllus-Dot-SortingColumns.svg +15 -0
  2253. package/src/illustrations/sapIllus-Dot-SuccessHighFive.svg +6 -0
  2254. package/src/illustrations/sapIllus-Dot-SuccessScreen.svg +4 -0
  2255. package/src/illustrations/sapIllus-Dot-Survey.svg +7 -0
  2256. package/src/illustrations/sapIllus-Dot-Tent.svg +7 -0
  2257. package/src/illustrations/sapIllus-Dot-UnableToLoad.svg +118 -0
  2258. package/src/illustrations/sapIllus-Dot-UnableToLoadImage.svg +24 -0
  2259. package/src/illustrations/sapIllus-Dot-UnableToUpload.svg +10 -0
  2260. package/src/illustrations/sapIllus-Dot-UploadCollection.svg +6 -0
  2261. package/src/illustrations/sapIllus-Dot-UploadToCloud.svg +9 -0
  2262. package/src/illustrations/sapIllus-Dot-UserHasSignedUp.svg +8 -0
  2263. package/src/illustrations/sapIllus-Patterns.svg +20 -0
  2264. package/src/illustrations/sapIllus-Scene-Achievement.svg +28 -0
  2265. package/src/illustrations/sapIllus-Scene-AddColumn.svg +48 -0
  2266. package/src/illustrations/sapIllus-Scene-AddDimensions.svg +17 -0
  2267. package/src/illustrations/sapIllus-Scene-AddPeople.svg +30 -0
  2268. package/src/illustrations/sapIllus-Scene-AddPeopleToCalendar.svg +46 -0
  2269. package/src/illustrations/sapIllus-Scene-AddingColumns.svg +37 -0
  2270. package/src/illustrations/sapIllus-Scene-BalloonSky.svg +53 -0
  2271. package/src/illustrations/sapIllus-Scene-BeforeSearch.svg +41 -0
  2272. package/src/illustrations/sapIllus-Scene-Connection.svg +31 -0
  2273. package/src/illustrations/sapIllus-Scene-DragFilesToUpload.svg +20 -0
  2274. package/src/illustrations/sapIllus-Scene-EmptyCalendar.svg +90 -0
  2275. package/src/illustrations/sapIllus-Scene-EmptyList.svg +43 -0
  2276. package/src/illustrations/sapIllus-Scene-EmptyPlanningCalendar.svg +19 -0
  2277. package/src/illustrations/sapIllus-Scene-ErrorScreen.svg +78 -0
  2278. package/src/illustrations/sapIllus-Scene-FilterTable.svg +62 -0
  2279. package/src/illustrations/sapIllus-Scene-FilteringColumns.svg +39 -0
  2280. package/src/illustrations/sapIllus-Scene-GroupTable.svg +76 -0
  2281. package/src/illustrations/sapIllus-Scene-GroupingColumns.svg +40 -0
  2282. package/src/illustrations/sapIllus-Scene-KeyTask.svg +119 -0
  2283. package/src/illustrations/sapIllus-Scene-NewMail.svg +38 -0
  2284. package/src/illustrations/sapIllus-Scene-NoActivities.svg +34 -0
  2285. package/src/illustrations/sapIllus-Scene-NoChartData.svg +45 -0
  2286. package/src/illustrations/sapIllus-Scene-NoColumnsSet.svg +26 -0
  2287. package/src/illustrations/sapIllus-Scene-NoData.svg +12 -0
  2288. package/src/illustrations/sapIllus-Scene-NoDimensionsSet.svg +38 -0
  2289. package/src/illustrations/sapIllus-Scene-NoEntries.svg +42 -0
  2290. package/src/illustrations/sapIllus-Scene-NoFilterResults.svg +16 -0
  2291. package/src/illustrations/sapIllus-Scene-NoMail.svg +16 -0
  2292. package/src/illustrations/sapIllus-Scene-NoMail_v1.svg +55 -0
  2293. package/src/illustrations/sapIllus-Scene-NoNotifications.svg +28 -0
  2294. package/src/illustrations/sapIllus-Scene-NoSavedItems.svg +54 -0
  2295. package/src/illustrations/sapIllus-Scene-NoSavedItems_v1.svg +39 -0
  2296. package/src/illustrations/sapIllus-Scene-NoSearchResults.svg +73 -0
  2297. package/src/illustrations/sapIllus-Scene-NoTasks.svg +60 -0
  2298. package/src/illustrations/sapIllus-Scene-NoTasks_v1.svg +86 -0
  2299. package/src/illustrations/sapIllus-Scene-PageNotFound.svg +13 -0
  2300. package/src/illustrations/sapIllus-Scene-ReceiveAppreciation.svg +25 -0
  2301. package/src/illustrations/sapIllus-Scene-ReloadScreen.svg +62 -0
  2302. package/src/illustrations/sapIllus-Scene-ResizeColumn.svg +52 -0
  2303. package/src/illustrations/sapIllus-Scene-ResizingColumns.svg +57 -0
  2304. package/src/illustrations/sapIllus-Scene-SearchEarth.svg +30 -0
  2305. package/src/illustrations/sapIllus-Scene-SearchFolder.svg +44 -0
  2306. package/src/illustrations/sapIllus-Scene-SignOut.svg +21 -0
  2307. package/src/illustrations/sapIllus-Scene-SimpleBalloon.svg +20 -0
  2308. package/src/illustrations/sapIllus-Scene-SimpleBell.svg +16 -0
  2309. package/src/illustrations/sapIllus-Scene-SimpleCalendar.svg +44 -0
  2310. package/src/illustrations/sapIllus-Scene-SimpleCheckMark.svg +9 -0
  2311. package/src/illustrations/sapIllus-Scene-SimpleConnection.svg +22 -0
  2312. package/src/illustrations/sapIllus-Scene-SimpleEmptyDoc.svg +20 -0
  2313. package/src/illustrations/sapIllus-Scene-SimpleEmptyList.svg +13 -0
  2314. package/src/illustrations/sapIllus-Scene-SimpleError.svg +13 -0
  2315. package/src/illustrations/sapIllus-Scene-SimpleMagnifier.svg +13 -0
  2316. package/src/illustrations/sapIllus-Scene-SimpleMail.svg +16 -0
  2317. package/src/illustrations/sapIllus-Scene-SimpleNoSavedItems.svg +27 -0
  2318. package/src/illustrations/sapIllus-Scene-SimpleNotFoundMagnifier.svg +24 -0
  2319. package/src/illustrations/sapIllus-Scene-SimpleReload.svg +14 -0
  2320. package/src/illustrations/sapIllus-Scene-SimpleTask.svg +19 -0
  2321. package/src/illustrations/sapIllus-Scene-SleepingBell.svg +50 -0
  2322. package/src/illustrations/sapIllus-Scene-SortColumn.svg +50 -0
  2323. package/src/illustrations/sapIllus-Scene-SortingColumns.svg +50 -0
  2324. package/src/illustrations/sapIllus-Scene-SuccessBalloon.svg +33 -0
  2325. package/src/illustrations/sapIllus-Scene-SuccessCheckMark.svg +43 -0
  2326. package/src/illustrations/sapIllus-Scene-SuccessHighFive.svg +25 -0
  2327. package/src/illustrations/sapIllus-Scene-SuccessScreen.svg +61 -0
  2328. package/src/illustrations/sapIllus-Scene-Survey.svg +21 -0
  2329. package/src/illustrations/sapIllus-Scene-Tent.svg +59 -0
  2330. package/src/illustrations/sapIllus-Scene-UnableToLoad.svg +119 -0
  2331. package/src/illustrations/sapIllus-Scene-UnableToLoadImage.svg +28 -0
  2332. package/src/illustrations/sapIllus-Scene-UnableToUpload.svg +26 -0
  2333. package/src/illustrations/sapIllus-Scene-UploadCollection.svg +29 -0
  2334. package/src/illustrations/sapIllus-Scene-UploadToCloud.svg +22 -0
  2335. package/src/illustrations/sapIllus-Scene-UserHasSignedUp.svg +29 -0
  2336. package/src/illustrations/sapIllus-Spot-Achievement.svg +27 -0
  2337. package/src/illustrations/sapIllus-Spot-AddColumn.svg +37 -0
  2338. package/src/illustrations/sapIllus-Spot-AddDimensions.svg +16 -0
  2339. package/src/illustrations/sapIllus-Spot-AddPeople.svg +31 -0
  2340. package/src/illustrations/sapIllus-Spot-AddPeopleToCalendar.svg +42 -0
  2341. package/src/illustrations/sapIllus-Spot-AddingColumns.svg +37 -0
  2342. package/src/illustrations/sapIllus-Spot-BalloonSky.svg +43 -0
  2343. package/src/illustrations/sapIllus-Spot-BeforeSearch.svg +41 -0
  2344. package/src/illustrations/sapIllus-Spot-Connection.svg +22 -0
  2345. package/src/illustrations/sapIllus-Spot-DragFilesToUpload.svg +18 -0
  2346. package/src/illustrations/sapIllus-Spot-EmptyCalendar.svg +46 -0
  2347. package/src/illustrations/sapIllus-Spot-EmptyList.svg +29 -0
  2348. package/src/illustrations/sapIllus-Spot-EmptyPlanningCalendar.svg +19 -0
  2349. package/src/illustrations/sapIllus-Spot-ErrorScreen.svg +32 -0
  2350. package/src/illustrations/sapIllus-Spot-FilterTable.svg +60 -0
  2351. package/src/illustrations/sapIllus-Spot-FilteringColumns.svg +33 -0
  2352. package/src/illustrations/sapIllus-Spot-GroupTable.svg +86 -0
  2353. package/src/illustrations/sapIllus-Spot-GroupingColumns.svg +35 -0
  2354. package/src/illustrations/sapIllus-Spot-KeyTask.svg +119 -0
  2355. package/src/illustrations/sapIllus-Spot-NewMail.svg +34 -0
  2356. package/src/illustrations/sapIllus-Spot-NoActivities.svg +34 -0
  2357. package/src/illustrations/sapIllus-Spot-NoChartData.svg +42 -0
  2358. package/src/illustrations/sapIllus-Spot-NoColumnsSet.svg +29 -0
  2359. package/src/illustrations/sapIllus-Spot-NoData.svg +12 -0
  2360. package/src/illustrations/sapIllus-Spot-NoDimensionsSet.svg +42 -0
  2361. package/src/illustrations/sapIllus-Spot-NoEntries.svg +42 -0
  2362. package/src/illustrations/sapIllus-Spot-NoFilterResults.svg +16 -0
  2363. package/src/illustrations/sapIllus-Spot-NoMail.svg +15 -0
  2364. package/src/illustrations/sapIllus-Spot-NoMail_v1.svg +16 -0
  2365. package/src/illustrations/sapIllus-Spot-NoNotifications.svg +25 -0
  2366. package/src/illustrations/sapIllus-Spot-NoSavedItems.svg +51 -0
  2367. package/src/illustrations/sapIllus-Spot-NoSavedItems_v1.svg +33 -0
  2368. package/src/illustrations/sapIllus-Spot-NoSearchResults.svg +73 -0
  2369. package/src/illustrations/sapIllus-Spot-NoTasks.svg +32 -0
  2370. package/src/illustrations/sapIllus-Spot-NoTasks_v1.svg +22 -0
  2371. package/src/illustrations/sapIllus-Spot-PageNotFound.svg +10 -0
  2372. package/src/illustrations/sapIllus-Spot-ReceiveAppreciation.svg +20 -0
  2373. package/src/illustrations/sapIllus-Spot-ReloadScreen.svg +36 -0
  2374. package/src/illustrations/sapIllus-Spot-ResizeColumn.svg +49 -0
  2375. package/src/illustrations/sapIllus-Spot-ResizingColumns.svg +37 -0
  2376. package/src/illustrations/sapIllus-Spot-SearchEarth.svg +55 -0
  2377. package/src/illustrations/sapIllus-Spot-SearchFolder.svg +37 -0
  2378. package/src/illustrations/sapIllus-Spot-SignOut.svg +21 -0
  2379. package/src/illustrations/sapIllus-Spot-SimpleBalloon.svg +7 -0
  2380. package/src/illustrations/sapIllus-Spot-SimpleBell.svg +12 -0
  2381. package/src/illustrations/sapIllus-Spot-SimpleCalendar.svg +44 -0
  2382. package/src/illustrations/sapIllus-Spot-SimpleCheckMark.svg +5 -0
  2383. package/src/illustrations/sapIllus-Spot-SimpleConnection.svg +10 -0
  2384. package/src/illustrations/sapIllus-Spot-SimpleEmptyDoc.svg +6 -0
  2385. package/src/illustrations/sapIllus-Spot-SimpleEmptyList.svg +6 -0
  2386. package/src/illustrations/sapIllus-Spot-SimpleError.svg +9 -0
  2387. package/src/illustrations/sapIllus-Spot-SimpleMagnifier.svg +9 -0
  2388. package/src/illustrations/sapIllus-Spot-SimpleMail.svg +12 -0
  2389. package/src/illustrations/sapIllus-Spot-SimpleNoSavedItems.svg +23 -0
  2390. package/src/illustrations/sapIllus-Spot-SimpleNotFoundMagnifier.svg +10 -0
  2391. package/src/illustrations/sapIllus-Spot-SimpleReload.svg +7 -0
  2392. package/src/illustrations/sapIllus-Spot-SimpleTask.svg +22 -0
  2393. package/src/illustrations/sapIllus-Spot-SleepingBell.svg +38 -0
  2394. package/src/illustrations/sapIllus-Spot-SortColumn.svg +39 -0
  2395. package/src/illustrations/sapIllus-Spot-SortingColumns.svg +49 -0
  2396. package/src/illustrations/sapIllus-Spot-SuccessBalloon.svg +19 -0
  2397. package/src/illustrations/sapIllus-Spot-SuccessCheckMark.svg +7 -0
  2398. package/src/illustrations/sapIllus-Spot-SuccessHighFive.svg +24 -0
  2399. package/src/illustrations/sapIllus-Spot-SuccessScreen.svg +35 -0
  2400. package/src/illustrations/sapIllus-Spot-Survey.svg +32 -0
  2401. package/src/illustrations/sapIllus-Spot-Tent.svg +29 -0
  2402. package/src/illustrations/sapIllus-Spot-UnableToLoad.svg +119 -0
  2403. package/src/illustrations/sapIllus-Spot-UnableToLoadImage.svg +28 -0
  2404. package/src/illustrations/sapIllus-Spot-UnableToUpload.svg +28 -0
  2405. package/src/illustrations/sapIllus-Spot-UploadCollection.svg +33 -0
  2406. package/src/illustrations/sapIllus-Spot-UploadToCloud.svg +21 -0
  2407. package/src/illustrations/sapIllus-Spot-UserHasSignedUp.svg +34 -0
  2408. package/src/illustrations/tnt/tnt-Dialog-Avatar.svg +124 -0
  2409. package/src/illustrations/tnt/tnt-Dialog-Calculator.svg +80 -0
  2410. package/src/illustrations/tnt/tnt-Dialog-ChartArea.svg +14 -0
  2411. package/src/illustrations/tnt/tnt-Dialog-ChartArea2.svg +12 -0
  2412. package/src/illustrations/tnt/tnt-Dialog-ChartBPMNFlow.svg +13 -0
  2413. package/src/illustrations/tnt/tnt-Dialog-ChartBar.svg +12 -0
  2414. package/src/illustrations/tnt/tnt-Dialog-ChartBullet.svg +14 -0
  2415. package/src/illustrations/tnt/tnt-Dialog-ChartDoughnut.svg +13 -0
  2416. package/src/illustrations/tnt/tnt-Dialog-ChartFlow.svg +13 -0
  2417. package/src/illustrations/tnt/tnt-Dialog-ChartGantt.svg +17 -0
  2418. package/src/illustrations/tnt/tnt-Dialog-ChartOrg.svg +15 -0
  2419. package/src/illustrations/tnt/tnt-Dialog-ChartPie.svg +12 -0
  2420. package/src/illustrations/tnt/tnt-Dialog-CodePlaceholder.svg +6 -0
  2421. package/src/illustrations/tnt/tnt-Dialog-Company.svg +13 -0
  2422. package/src/illustrations/tnt/tnt-Dialog-Compass.svg +34 -0
  2423. package/src/illustrations/tnt/tnt-Dialog-Components.svg +9 -0
  2424. package/src/illustrations/tnt/tnt-Dialog-Dialog.svg +32 -0
  2425. package/src/illustrations/tnt/tnt-Dialog-EmptyContentPane.svg +18 -0
  2426. package/src/illustrations/tnt/tnt-Dialog-ExternalLink.svg +11 -0
  2427. package/src/illustrations/tnt/tnt-Dialog-FaceID.svg +17 -0
  2428. package/src/illustrations/tnt/tnt-Dialog-Fingerprint.svg +16 -0
  2429. package/src/illustrations/tnt/tnt-Dialog-Handshake.svg +32 -0
  2430. package/src/illustrations/tnt/tnt-Dialog-Help.svg +27 -0
  2431. package/src/illustrations/tnt/tnt-Dialog-Lock.svg +12 -0
  2432. package/src/illustrations/tnt/tnt-Dialog-Mission.svg +18 -0
  2433. package/src/illustrations/tnt/tnt-Dialog-MissionFailed.svg +41 -0
  2434. package/src/illustrations/tnt/tnt-Dialog-NoApplications.svg +15 -0
  2435. package/src/illustrations/tnt/tnt-Dialog-NoFlows.svg +11 -0
  2436. package/src/illustrations/tnt/tnt-Dialog-NoUsers.svg +15 -0
  2437. package/src/illustrations/tnt/tnt-Dialog-Radar.svg +15 -0
  2438. package/src/illustrations/tnt/tnt-Dialog-RoadMap.svg +41 -0
  2439. package/src/illustrations/tnt/tnt-Dialog-Secrets.svg +11 -0
  2440. package/src/illustrations/tnt/tnt-Dialog-Services.svg +16 -0
  2441. package/src/illustrations/tnt/tnt-Dialog-SessionExpired.svg +11 -0
  2442. package/src/illustrations/tnt/tnt-Dialog-SessionExpiring.svg +10 -0
  2443. package/src/illustrations/tnt/tnt-Dialog-Settings.svg +37 -0
  2444. package/src/illustrations/tnt/tnt-Dialog-Success.svg +10 -0
  2445. package/src/illustrations/tnt/tnt-Dialog-SuccessfulAuth.svg +10 -0
  2446. package/src/illustrations/tnt/tnt-Dialog-Systems.svg +11 -0
  2447. package/src/illustrations/tnt/tnt-Dialog-Teams.svg +17 -0
  2448. package/src/illustrations/tnt/tnt-Dialog-Tools.svg +12 -0
  2449. package/src/illustrations/tnt/tnt-Dialog-Tutorials.svg +78 -0
  2450. package/src/illustrations/tnt/tnt-Dialog-UnableToLoad.svg +9 -0
  2451. package/src/illustrations/tnt/tnt-Dialog-Unlock.svg +12 -0
  2452. package/src/illustrations/tnt/tnt-Dialog-UnsuccessfulAuth.svg +11 -0
  2453. package/src/illustrations/tnt/tnt-Dialog-User2.svg +13 -0
  2454. package/src/illustrations/tnt/tnt-Dot-Avatar.svg +12 -0
  2455. package/src/illustrations/tnt/tnt-Dot-Calculator.svg +11 -0
  2456. package/src/illustrations/tnt/tnt-Dot-Compass.svg +9 -0
  2457. package/src/illustrations/tnt/tnt-Dot-Dialog.svg +19 -0
  2458. package/src/illustrations/tnt/tnt-Dot-EmptyContentPane.svg +15 -0
  2459. package/src/illustrations/tnt/tnt-Dot-Handshake.svg +18 -0
  2460. package/src/illustrations/tnt/tnt-Dot-Help.svg +8 -0
  2461. package/src/illustrations/tnt/tnt-Dot-MissionFailed.svg +9 -0
  2462. package/src/illustrations/tnt/tnt-Dot-RoadMap.svg +5 -0
  2463. package/src/illustrations/tnt/tnt-Dot-Settings.svg +6 -0
  2464. package/src/illustrations/tnt/tnt-Dot-Tutorials.svg +7 -0
  2465. package/src/illustrations/tnt/tnt-Scene-Avatar.svg +130 -0
  2466. package/src/illustrations/tnt/tnt-Scene-Calculator.svg +83 -0
  2467. package/src/illustrations/tnt/tnt-Scene-ChartArea.svg +22 -0
  2468. package/src/illustrations/tnt/tnt-Scene-ChartArea2.svg +19 -0
  2469. package/src/illustrations/tnt/tnt-Scene-ChartBPMNFlow.svg +21 -0
  2470. package/src/illustrations/tnt/tnt-Scene-ChartBar.svg +19 -0
  2471. package/src/illustrations/tnt/tnt-Scene-ChartBullet.svg +20 -0
  2472. package/src/illustrations/tnt/tnt-Scene-ChartDoughnut.svg +19 -0
  2473. package/src/illustrations/tnt/tnt-Scene-ChartFlow.svg +20 -0
  2474. package/src/illustrations/tnt/tnt-Scene-ChartGantt.svg +26 -0
  2475. package/src/illustrations/tnt/tnt-Scene-ChartOrg.svg +26 -0
  2476. package/src/illustrations/tnt/tnt-Scene-ChartPie.svg +18 -0
  2477. package/src/illustrations/tnt/tnt-Scene-CodePlaceholder.svg +9 -0
  2478. package/src/illustrations/tnt/tnt-Scene-Company.svg +30 -0
  2479. package/src/illustrations/tnt/tnt-Scene-Compass.svg +34 -0
  2480. package/src/illustrations/tnt/tnt-Scene-Components.svg +16 -0
  2481. package/src/illustrations/tnt/tnt-Scene-Dialog.svg +35 -0
  2482. package/src/illustrations/tnt/tnt-Scene-EmptyContentPane.svg +15 -0
  2483. package/src/illustrations/tnt/tnt-Scene-ExternalLink.svg +14 -0
  2484. package/src/illustrations/tnt/tnt-Scene-FaceID.svg +21 -0
  2485. package/src/illustrations/tnt/tnt-Scene-Fingerprint.svg +35 -0
  2486. package/src/illustrations/tnt/tnt-Scene-Handshake.svg +32 -0
  2487. package/src/illustrations/tnt/tnt-Scene-Help.svg +29 -0
  2488. package/src/illustrations/tnt/tnt-Scene-Lock.svg +22 -0
  2489. package/src/illustrations/tnt/tnt-Scene-Mission.svg +19 -0
  2490. package/src/illustrations/tnt/tnt-Scene-MissionFailed.svg +49 -0
  2491. package/src/illustrations/tnt/tnt-Scene-NoApplications.svg +17 -0
  2492. package/src/illustrations/tnt/tnt-Scene-NoFlows.svg +20 -0
  2493. package/src/illustrations/tnt/tnt-Scene-NoUsers.svg +16 -0
  2494. package/src/illustrations/tnt/tnt-Scene-Radar.svg +20 -0
  2495. package/src/illustrations/tnt/tnt-Scene-RoadMap.svg +45 -0
  2496. package/src/illustrations/tnt/tnt-Scene-Secrets.svg +14 -0
  2497. package/src/illustrations/tnt/tnt-Scene-Services.svg +17 -0
  2498. package/src/illustrations/tnt/tnt-Scene-SessionExpired.svg +18 -0
  2499. package/src/illustrations/tnt/tnt-Scene-SessionExpiring.svg +17 -0
  2500. package/src/illustrations/tnt/tnt-Scene-Settings.svg +38 -0
  2501. package/src/illustrations/tnt/tnt-Scene-Success.svg +18 -0
  2502. package/src/illustrations/tnt/tnt-Scene-SuccessfulAuth.svg +20 -0
  2503. package/src/illustrations/tnt/tnt-Scene-Systems.svg +12 -0
  2504. package/src/illustrations/tnt/tnt-Scene-Teams.svg +20 -0
  2505. package/src/illustrations/tnt/tnt-Scene-Tools.svg +18 -0
  2506. package/src/illustrations/tnt/tnt-Scene-Tutorials.svg +84 -0
  2507. package/src/illustrations/tnt/tnt-Scene-UnableToLoad.svg +20 -0
  2508. package/src/illustrations/tnt/tnt-Scene-Unlock.svg +15 -0
  2509. package/src/illustrations/tnt/tnt-Scene-UnsuccessfulAuth.svg +22 -0
  2510. package/src/illustrations/tnt/tnt-Scene-User2.svg +22 -0
  2511. package/src/illustrations/tnt/tnt-Spot-Avatar.svg +105 -0
  2512. package/src/illustrations/tnt/tnt-Spot-Calculator.svg +130 -0
  2513. package/src/illustrations/tnt/tnt-Spot-ChartArea.svg +13 -0
  2514. package/src/illustrations/tnt/tnt-Spot-ChartArea2.svg +7 -0
  2515. package/src/illustrations/tnt/tnt-Spot-ChartBPMNFlow.svg +9 -0
  2516. package/src/illustrations/tnt/tnt-Spot-ChartBar.svg +8 -0
  2517. package/src/illustrations/tnt/tnt-Spot-ChartBullet.svg +10 -0
  2518. package/src/illustrations/tnt/tnt-Spot-ChartDoughnut.svg +9 -0
  2519. package/src/illustrations/tnt/tnt-Spot-ChartFlow.svg +8 -0
  2520. package/src/illustrations/tnt/tnt-Spot-ChartGantt.svg +12 -0
  2521. package/src/illustrations/tnt/tnt-Spot-ChartOrg.svg +6 -0
  2522. package/src/illustrations/tnt/tnt-Spot-ChartPie.svg +8 -0
  2523. package/src/illustrations/tnt/tnt-Spot-CodePlaceholder.svg +6 -0
  2524. package/src/illustrations/tnt/tnt-Spot-Company.svg +13 -0
  2525. package/src/illustrations/tnt/tnt-Spot-Compass.svg +34 -0
  2526. package/src/illustrations/tnt/tnt-Spot-Components.svg +5 -0
  2527. package/src/illustrations/tnt/tnt-Spot-Dialog.svg +32 -0
  2528. package/src/illustrations/tnt/tnt-Spot-EmptyContentPane.svg +16 -0
  2529. package/src/illustrations/tnt/tnt-Spot-ExternalLink.svg +9 -0
  2530. package/src/illustrations/tnt/tnt-Spot-FaceID.svg +16 -0
  2531. package/src/illustrations/tnt/tnt-Spot-Fingerprint.svg +10 -0
  2532. package/src/illustrations/tnt/tnt-Spot-Handshake.svg +64 -0
  2533. package/src/illustrations/tnt/tnt-Spot-Help.svg +23 -0
  2534. package/src/illustrations/tnt/tnt-Spot-Lock.svg +13 -0
  2535. package/src/illustrations/tnt/tnt-Spot-Mission.svg +17 -0
  2536. package/src/illustrations/tnt/tnt-Spot-MissionFailed.svg +113 -0
  2537. package/src/illustrations/tnt/tnt-Spot-NoApplications.svg +11 -0
  2538. package/src/illustrations/tnt/tnt-Spot-NoFlows.svg +8 -0
  2539. package/src/illustrations/tnt/tnt-Spot-NoUsers.svg +11 -0
  2540. package/src/illustrations/tnt/tnt-Spot-Radar.svg +14 -0
  2541. package/src/illustrations/tnt/tnt-Spot-RoadMap.svg +165 -0
  2542. package/src/illustrations/tnt/tnt-Spot-Secrets.svg +9 -0
  2543. package/src/illustrations/tnt/tnt-Spot-Services.svg +14 -0
  2544. package/src/illustrations/tnt/tnt-Spot-SessionExpired.svg +9 -0
  2545. package/src/illustrations/tnt/tnt-Spot-SessionExpiring.svg +9 -0
  2546. package/src/illustrations/tnt/tnt-Spot-Settings.svg +37 -0
  2547. package/src/illustrations/tnt/tnt-Spot-Success.svg +9 -0
  2548. package/src/illustrations/tnt/tnt-Spot-SuccessfulAuth.svg +9 -0
  2549. package/src/illustrations/tnt/tnt-Spot-Systems.svg +10 -0
  2550. package/src/illustrations/tnt/tnt-Spot-Teams.svg +13 -0
  2551. package/src/illustrations/tnt/tnt-Spot-Tools.svg +7 -0
  2552. package/src/illustrations/tnt/tnt-Spot-Tutorials.svg +91 -0
  2553. package/src/illustrations/tnt/tnt-Spot-UnableToLoad.svg +8 -0
  2554. package/src/illustrations/tnt/tnt-Spot-Unlock.svg +11 -0
  2555. package/src/illustrations/tnt/tnt-Spot-UnsuccessfulAuth.svg +10 -0
  2556. package/src/illustrations/tnt/tnt-Spot-User2.svg +10 -0
  2557. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Avatar.svg +15 -0
  2558. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Calculator.svg +23 -0
  2559. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ChartArea.svg +14 -0
  2560. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ChartArea2.svg +13 -0
  2561. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ChartBPMNFlow.svg +21 -0
  2562. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ChartBar.svg +13 -0
  2563. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ChartBullet.svg +18 -0
  2564. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ChartDoughnut.svg +17 -0
  2565. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ChartFlow.svg +18 -0
  2566. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ChartGantt.svg +18 -0
  2567. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ChartOrg.svg +29 -0
  2568. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ChartPie.svg +19 -0
  2569. package/src/illustrations-v5/tnt/hc/tnt-Dialog-CodePlaceholder.svg +9 -0
  2570. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Company.svg +22 -0
  2571. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Compass.svg +16 -0
  2572. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Components.svg +21 -0
  2573. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Dialog.svg +22 -0
  2574. package/src/illustrations-v5/tnt/hc/tnt-Dialog-EmptyContentPane.svg +22 -0
  2575. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ExternalLink.svg +17 -0
  2576. package/src/illustrations-v5/tnt/hc/tnt-Dialog-FaceID.svg +17 -0
  2577. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Fingerprint.svg +12 -0
  2578. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Handshake.svg +21 -0
  2579. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Help.svg +11 -0
  2580. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Lock.svg +21 -0
  2581. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Mission.svg +14 -0
  2582. package/src/illustrations-v5/tnt/hc/tnt-Dialog-MissionFailed.svg +11 -0
  2583. package/src/illustrations-v5/tnt/hc/tnt-Dialog-NoApplications.svg +18 -0
  2584. package/src/illustrations-v5/tnt/hc/tnt-Dialog-NoFlows.svg +21 -0
  2585. package/src/illustrations-v5/tnt/hc/tnt-Dialog-NoUsers.svg +18 -0
  2586. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Radar.svg +13 -0
  2587. package/src/illustrations-v5/tnt/hc/tnt-Dialog-RoadMap.svg +91 -0
  2588. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Secrets.svg +12 -0
  2589. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Services.svg +15 -0
  2590. package/src/illustrations-v5/tnt/hc/tnt-Dialog-SessionExpired.svg +13 -0
  2591. package/src/illustrations-v5/tnt/hc/tnt-Dialog-SessionExpiring.svg +11 -0
  2592. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Settings.svg +8 -0
  2593. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Success.svg +19 -0
  2594. package/src/illustrations-v5/tnt/hc/tnt-Dialog-SuccessfulAuth.svg +26 -0
  2595. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Systems.svg +24 -0
  2596. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Teams.svg +26 -0
  2597. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Tools.svg +21 -0
  2598. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Tutorials.svg +17 -0
  2599. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Unlock.svg +17 -0
  2600. package/src/illustrations-v5/tnt/hc/tnt-Dialog-UnsuccessfulAuth.svg +26 -0
  2601. package/src/illustrations-v5/tnt/hc/tnt-Dot-Avatar.svg +12 -0
  2602. package/src/illustrations-v5/tnt/hc/tnt-Dot-Calculator.svg +12 -0
  2603. package/src/illustrations-v5/tnt/hc/tnt-Dot-ChartArea.svg +7 -0
  2604. package/src/illustrations-v5/tnt/hc/tnt-Dot-ChartArea2.svg +6 -0
  2605. package/src/illustrations-v5/tnt/hc/tnt-Dot-ChartBPMNFlow.svg +13 -0
  2606. package/src/illustrations-v5/tnt/hc/tnt-Dot-ChartBar.svg +6 -0
  2607. package/src/illustrations-v5/tnt/hc/tnt-Dot-ChartBullet.svg +9 -0
  2608. package/src/illustrations-v5/tnt/hc/tnt-Dot-ChartDoughnut.svg +7 -0
  2609. package/src/illustrations-v5/tnt/hc/tnt-Dot-ChartFlow.svg +11 -0
  2610. package/src/illustrations-v5/tnt/hc/tnt-Dot-ChartGantt.svg +10 -0
  2611. package/src/illustrations-v5/tnt/hc/tnt-Dot-ChartOrg.svg +13 -0
  2612. package/src/illustrations-v5/tnt/hc/tnt-Dot-ChartPie.svg +8 -0
  2613. package/src/illustrations-v5/tnt/hc/tnt-Dot-CodePlaceholder.svg +6 -0
  2614. package/src/illustrations-v5/tnt/hc/tnt-Dot-Company.svg +11 -0
  2615. package/src/illustrations-v5/tnt/hc/tnt-Dot-Compass.svg +9 -0
  2616. package/src/illustrations-v5/tnt/hc/tnt-Dot-Components.svg +10 -0
  2617. package/src/illustrations-v5/tnt/hc/tnt-Dot-Dialog.svg +22 -0
  2618. package/src/illustrations-v5/tnt/hc/tnt-Dot-EmptyContentPane.svg +10 -0
  2619. package/src/illustrations-v5/tnt/hc/tnt-Dot-ExternalLink.svg +10 -0
  2620. package/src/illustrations-v5/tnt/hc/tnt-Dot-FaceID.svg +18 -0
  2621. package/src/illustrations-v5/tnt/hc/tnt-Dot-Fingerprint.svg +8 -0
  2622. package/src/illustrations-v5/tnt/hc/tnt-Dot-Handshake.svg +18 -0
  2623. package/src/illustrations-v5/tnt/hc/tnt-Dot-Help.svg +8 -0
  2624. package/src/illustrations-v5/tnt/hc/tnt-Dot-Lock.svg +13 -0
  2625. package/src/illustrations-v5/tnt/hc/tnt-Dot-Mission.svg +9 -0
  2626. package/src/illustrations-v5/tnt/hc/tnt-Dot-MissionFailed.svg +9 -0
  2627. package/src/illustrations-v5/tnt/hc/tnt-Dot-NoApplications.svg +15 -0
  2628. package/src/illustrations-v5/tnt/hc/tnt-Dot-NoFlows.svg +41 -0
  2629. package/src/illustrations-v5/tnt/hc/tnt-Dot-NoUsers.svg +12 -0
  2630. package/src/illustrations-v5/tnt/hc/tnt-Dot-Radar.svg +11 -0
  2631. package/src/illustrations-v5/tnt/hc/tnt-Dot-RoadMap.svg +7 -0
  2632. package/src/illustrations-v5/tnt/hc/tnt-Dot-Secrets.svg +6 -0
  2633. package/src/illustrations-v5/tnt/hc/tnt-Dot-Services.svg +11 -0
  2634. package/src/illustrations-v5/tnt/hc/tnt-Dot-SessionExpired.svg +7 -0
  2635. package/src/illustrations-v5/tnt/hc/tnt-Dot-SessionExpiring.svg +8 -0
  2636. package/src/illustrations-v5/tnt/hc/tnt-Dot-Settings.svg +6 -0
  2637. package/src/illustrations-v5/tnt/hc/tnt-Dot-Success.svg +8 -0
  2638. package/src/illustrations-v5/tnt/hc/tnt-Dot-SuccessfulAuth.svg +11 -0
  2639. package/src/illustrations-v5/tnt/hc/tnt-Dot-Systems.svg +14 -0
  2640. package/src/illustrations-v5/tnt/hc/tnt-Dot-Teams.svg +15 -0
  2641. package/src/illustrations-v5/tnt/hc/tnt-Dot-Tools.svg +17 -0
  2642. package/src/illustrations-v5/tnt/hc/tnt-Dot-Tutorials.svg +7 -0
  2643. package/src/illustrations-v5/tnt/hc/tnt-Dot-Unlock.svg +19 -0
  2644. package/src/illustrations-v5/tnt/hc/tnt-Dot-UnsuccessfulAuth.svg +11 -0
  2645. package/src/illustrations-v5/tnt/hc/tnt-Scene-Avatar.svg +22 -0
  2646. package/src/illustrations-v5/tnt/hc/tnt-Scene-Calculator.svg +31 -0
  2647. package/src/illustrations-v5/tnt/hc/tnt-Scene-ChartArea.svg +20 -0
  2648. package/src/illustrations-v5/tnt/hc/tnt-Scene-ChartArea2.svg +19 -0
  2649. package/src/illustrations-v5/tnt/hc/tnt-Scene-ChartBPMNFlow.svg +27 -0
  2650. package/src/illustrations-v5/tnt/hc/tnt-Scene-ChartBar.svg +19 -0
  2651. package/src/illustrations-v5/tnt/hc/tnt-Scene-ChartBullet.svg +24 -0
  2652. package/src/illustrations-v5/tnt/hc/tnt-Scene-ChartDoughnut.svg +23 -0
  2653. package/src/illustrations-v5/tnt/hc/tnt-Scene-ChartFlow.svg +24 -0
  2654. package/src/illustrations-v5/tnt/hc/tnt-Scene-ChartGantt.svg +24 -0
  2655. package/src/illustrations-v5/tnt/hc/tnt-Scene-ChartOrg.svg +35 -0
  2656. package/src/illustrations-v5/tnt/hc/tnt-Scene-ChartPie.svg +24 -0
  2657. package/src/illustrations-v5/tnt/hc/tnt-Scene-CodePlaceholder.svg +13 -0
  2658. package/src/illustrations-v5/tnt/hc/tnt-Scene-Company.svg +29 -0
  2659. package/src/illustrations-v5/tnt/hc/tnt-Scene-Compass.svg +23 -0
  2660. package/src/illustrations-v5/tnt/hc/tnt-Scene-Components.svg +25 -0
  2661. package/src/illustrations-v5/tnt/hc/tnt-Scene-Dialog.svg +16 -0
  2662. package/src/illustrations-v5/tnt/hc/tnt-Scene-EmptyContentPane.svg +26 -0
  2663. package/src/illustrations-v5/tnt/hc/tnt-Scene-ExternalLink.svg +21 -0
  2664. package/src/illustrations-v5/tnt/hc/tnt-Scene-FaceID.svg +27 -0
  2665. package/src/illustrations-v5/tnt/hc/tnt-Scene-Fingerprint.svg +16 -0
  2666. package/src/illustrations-v5/tnt/hc/tnt-Scene-Handshake.svg +25 -0
  2667. package/src/illustrations-v5/tnt/hc/tnt-Scene-Help.svg +20 -0
  2668. package/src/illustrations-v5/tnt/hc/tnt-Scene-Lock.svg +25 -0
  2669. package/src/illustrations-v5/tnt/hc/tnt-Scene-Mission.svg +20 -0
  2670. package/src/illustrations-v5/tnt/hc/tnt-Scene-MissionFailed.svg +17 -0
  2671. package/src/illustrations-v5/tnt/hc/tnt-Scene-NoApplications.svg +22 -0
  2672. package/src/illustrations-v5/tnt/hc/tnt-Scene-NoFlows.svg +25 -0
  2673. package/src/illustrations-v5/tnt/hc/tnt-Scene-NoUsers.svg +22 -0
  2674. package/src/illustrations-v5/tnt/hc/tnt-Scene-Radar.svg +18 -0
  2675. package/src/illustrations-v5/tnt/hc/tnt-Scene-RoadMap.svg +29 -0
  2676. package/src/illustrations-v5/tnt/hc/tnt-Scene-Secrets.svg +20 -0
  2677. package/src/illustrations-v5/tnt/hc/tnt-Scene-Services.svg +19 -0
  2678. package/src/illustrations-v5/tnt/hc/tnt-Scene-SessionExpired.svg +17 -0
  2679. package/src/illustrations-v5/tnt/hc/tnt-Scene-SessionExpiring.svg +15 -0
  2680. package/src/illustrations-v5/tnt/hc/tnt-Scene-Settings.svg +12 -0
  2681. package/src/illustrations-v5/tnt/hc/tnt-Scene-Success.svg +26 -0
  2682. package/src/illustrations-v5/tnt/hc/tnt-Scene-SuccessfulAuth.svg +33 -0
  2683. package/src/illustrations-v5/tnt/hc/tnt-Scene-Systems.svg +30 -0
  2684. package/src/illustrations-v5/tnt/hc/tnt-Scene-Teams.svg +30 -0
  2685. package/src/illustrations-v5/tnt/hc/tnt-Scene-Tools.svg +25 -0
  2686. package/src/illustrations-v5/tnt/hc/tnt-Scene-Tutorials.svg +26 -0
  2687. package/src/illustrations-v5/tnt/hc/tnt-Scene-Unlock.svg +21 -0
  2688. package/src/illustrations-v5/tnt/hc/tnt-Scene-UnsuccessfulAuth.svg +33 -0
  2689. package/src/illustrations-v5/tnt/hc/tnt-Spot-Avatar.svg +16 -0
  2690. package/src/illustrations-v5/tnt/hc/tnt-Spot-Calculator.svg +23 -0
  2691. package/src/illustrations-v5/tnt/hc/tnt-Spot-ChartArea.svg +14 -0
  2692. package/src/illustrations-v5/tnt/hc/tnt-Spot-ChartArea2.svg +13 -0
  2693. package/src/illustrations-v5/tnt/hc/tnt-Spot-ChartBPMNFlow.svg +20 -0
  2694. package/src/illustrations-v5/tnt/hc/tnt-Spot-ChartBar.svg +13 -0
  2695. package/src/illustrations-v5/tnt/hc/tnt-Spot-ChartBullet.svg +18 -0
  2696. package/src/illustrations-v5/tnt/hc/tnt-Spot-ChartDoughnut.svg +17 -0
  2697. package/src/illustrations-v5/tnt/hc/tnt-Spot-ChartFlow.svg +18 -0
  2698. package/src/illustrations-v5/tnt/hc/tnt-Spot-ChartGantt.svg +18 -0
  2699. package/src/illustrations-v5/tnt/hc/tnt-Spot-ChartOrg.svg +29 -0
  2700. package/src/illustrations-v5/tnt/hc/tnt-Spot-ChartPie.svg +18 -0
  2701. package/src/illustrations-v5/tnt/hc/tnt-Spot-CodePlaceholder.svg +9 -0
  2702. package/src/illustrations-v5/tnt/hc/tnt-Spot-Company.svg +22 -0
  2703. package/src/illustrations-v5/tnt/hc/tnt-Spot-Compass.svg +16 -0
  2704. package/src/illustrations-v5/tnt/hc/tnt-Spot-Components.svg +19 -0
  2705. package/src/illustrations-v5/tnt/hc/tnt-Spot-Dialog.svg +22 -0
  2706. package/src/illustrations-v5/tnt/hc/tnt-Spot-EmptyContentPane.svg +22 -0
  2707. package/src/illustrations-v5/tnt/hc/tnt-Spot-ExternalLink.svg +17 -0
  2708. package/src/illustrations-v5/tnt/hc/tnt-Spot-FaceID.svg +17 -0
  2709. package/src/illustrations-v5/tnt/hc/tnt-Spot-Fingerprint.svg +8 -0
  2710. package/src/illustrations-v5/tnt/hc/tnt-Spot-Handshake.svg +26 -0
  2711. package/src/illustrations-v5/tnt/hc/tnt-Spot-Help.svg +11 -0
  2712. package/src/illustrations-v5/tnt/hc/tnt-Spot-Lock.svg +21 -0
  2713. package/src/illustrations-v5/tnt/hc/tnt-Spot-Mission.svg +10 -0
  2714. package/src/illustrations-v5/tnt/hc/tnt-Spot-MissionFailed.svg +10 -0
  2715. package/src/illustrations-v5/tnt/hc/tnt-Spot-NoApplications.svg +18 -0
  2716. package/src/illustrations-v5/tnt/hc/tnt-Spot-NoFlows.svg +21 -0
  2717. package/src/illustrations-v5/tnt/hc/tnt-Spot-NoUsers.svg +18 -0
  2718. package/src/illustrations-v5/tnt/hc/tnt-Spot-Radar.svg +11 -0
  2719. package/src/illustrations-v5/tnt/hc/tnt-Spot-RoadMap.svg +77 -0
  2720. package/src/illustrations-v5/tnt/hc/tnt-Spot-Secrets.svg +12 -0
  2721. package/src/illustrations-v5/tnt/hc/tnt-Spot-Services.svg +15 -0
  2722. package/src/illustrations-v5/tnt/hc/tnt-Spot-SessionExpired.svg +13 -0
  2723. package/src/illustrations-v5/tnt/hc/tnt-Spot-SessionExpiring.svg +11 -0
  2724. package/src/illustrations-v5/tnt/hc/tnt-Spot-Settings.svg +8 -0
  2725. package/src/illustrations-v5/tnt/hc/tnt-Spot-Success.svg +12 -0
  2726. package/src/illustrations-v5/tnt/hc/tnt-Spot-SuccessfulAuth.svg +26 -0
  2727. package/src/illustrations-v5/tnt/hc/tnt-Spot-Systems.svg +24 -0
  2728. package/src/illustrations-v5/tnt/hc/tnt-Spot-Teams.svg +26 -0
  2729. package/src/illustrations-v5/tnt/hc/tnt-Spot-Tools.svg +21 -0
  2730. package/src/illustrations-v5/tnt/hc/tnt-Spot-Tutorials.svg +17 -0
  2731. package/src/illustrations-v5/tnt/hc/tnt-Spot-Unlock.svg +17 -0
  2732. package/src/illustrations-v5/tnt/hc/tnt-Spot-UnsuccessfulAuth.svg +26 -0
  2733. package/src/illustrations-v5/tnt/tnt-Dialog-Avatar.svg +48 -0
  2734. package/src/illustrations-v5/tnt/tnt-Dialog-Calculator.svg +26 -0
  2735. package/src/illustrations-v5/tnt/tnt-Dialog-ChartArea.svg +10 -0
  2736. package/src/illustrations-v5/tnt/tnt-Dialog-ChartArea2.svg +11 -0
  2737. package/src/illustrations-v5/tnt/tnt-Dialog-ChartBPMNFlow.svg +17 -0
  2738. package/src/illustrations-v5/tnt/tnt-Dialog-ChartBar.svg +12 -0
  2739. package/src/illustrations-v5/tnt/tnt-Dialog-ChartBullet.svg +13 -0
  2740. package/src/illustrations-v5/tnt/tnt-Dialog-ChartDoughnut.svg +12 -0
  2741. package/src/illustrations-v5/tnt/tnt-Dialog-ChartFlow.svg +16 -0
  2742. package/src/illustrations-v5/tnt/tnt-Dialog-ChartGantt.svg +12 -0
  2743. package/src/illustrations-v5/tnt/tnt-Dialog-ChartOrg.svg +19 -0
  2744. package/src/illustrations-v5/tnt/tnt-Dialog-ChartPie.svg +12 -0
  2745. package/src/illustrations-v5/tnt/tnt-Dialog-CodePlaceholder.svg +6 -0
  2746. package/src/illustrations-v5/tnt/tnt-Dialog-Company.svg +13 -0
  2747. package/src/illustrations-v5/tnt/tnt-Dialog-Compass.svg +18 -0
  2748. package/src/illustrations-v5/tnt/tnt-Dialog-Components.svg +16 -0
  2749. package/src/illustrations-v5/tnt/tnt-Dialog-Dialog.svg +10 -0
  2750. package/src/illustrations-v5/tnt/tnt-Dialog-ExternalLink.svg +14 -0
  2751. package/src/illustrations-v5/tnt/tnt-Dialog-FaceID.svg +22 -0
  2752. package/src/illustrations-v5/tnt/tnt-Dialog-Fingerprint.svg +31 -0
  2753. package/src/illustrations-v5/tnt/tnt-Dialog-Handshake.svg +38 -0
  2754. package/src/illustrations-v5/tnt/tnt-Dialog-Help.svg +10 -0
  2755. package/src/illustrations-v5/tnt/tnt-Dialog-Lock.svg +43 -0
  2756. package/src/illustrations-v5/tnt/tnt-Dialog-Mission.svg +25 -0
  2757. package/src/illustrations-v5/tnt/tnt-Dialog-MissionFailed.svg +23 -0
  2758. package/src/illustrations-v5/tnt/tnt-Dialog-NoApplications.svg +12 -0
  2759. package/src/illustrations-v5/tnt/tnt-Dialog-NoFlows.svg +12 -0
  2760. package/src/illustrations-v5/tnt/tnt-Dialog-NoUsers.svg +12 -0
  2761. package/src/illustrations-v5/tnt/tnt-Dialog-Radar.svg +27 -0
  2762. package/src/illustrations-v5/tnt/tnt-Dialog-RoadMap.svg +31 -0
  2763. package/src/illustrations-v5/tnt/tnt-Dialog-Secrets.svg +17 -0
  2764. package/src/illustrations-v5/tnt/tnt-Dialog-Services.svg +29 -0
  2765. package/src/illustrations-v5/tnt/tnt-Dialog-SessionExpired.svg +22 -0
  2766. package/src/illustrations-v5/tnt/tnt-Dialog-SessionExpiring.svg +21 -0
  2767. package/src/illustrations-v5/tnt/tnt-Dialog-Settings.svg +18 -0
  2768. package/src/illustrations-v5/tnt/tnt-Dialog-Success.svg +20 -0
  2769. package/src/illustrations-v5/tnt/tnt-Dialog-SuccessfulAuth.svg +13 -0
  2770. package/src/illustrations-v5/tnt/tnt-Dialog-Systems.svg +18 -0
  2771. package/src/illustrations-v5/tnt/tnt-Dialog-Teams.svg +78 -0
  2772. package/src/illustrations-v5/tnt/tnt-Dialog-Tools.svg +25 -0
  2773. package/src/illustrations-v5/tnt/tnt-Dialog-Tutorials.svg +17 -0
  2774. package/src/illustrations-v5/tnt/tnt-Dialog-Unlock.svg +44 -0
  2775. package/src/illustrations-v5/tnt/tnt-Dialog-UnsuccessfulAuth.svg +13 -0
  2776. package/src/illustrations-v5/tnt/tnt-Dot-Avatar.svg +20 -0
  2777. package/src/illustrations-v5/tnt/tnt-Dot-Calculator.svg +7 -0
  2778. package/src/illustrations-v5/tnt/tnt-Dot-ChartArea.svg +8 -0
  2779. package/src/illustrations-v5/tnt/tnt-Dot-ChartArea2.svg +16 -0
  2780. package/src/illustrations-v5/tnt/tnt-Dot-ChartBPMNFlow.svg +16 -0
  2781. package/src/illustrations-v5/tnt/tnt-Dot-ChartBar.svg +17 -0
  2782. package/src/illustrations-v5/tnt/tnt-Dot-ChartBullet.svg +20 -0
  2783. package/src/illustrations-v5/tnt/tnt-Dot-ChartDoughnut.svg +10 -0
  2784. package/src/illustrations-v5/tnt/tnt-Dot-ChartFlow.svg +14 -0
  2785. package/src/illustrations-v5/tnt/tnt-Dot-ChartGantt.svg +11 -0
  2786. package/src/illustrations-v5/tnt/tnt-Dot-ChartOrg.svg +24 -0
  2787. package/src/illustrations-v5/tnt/tnt-Dot-ChartPie.svg +10 -0
  2788. package/src/illustrations-v5/tnt/tnt-Dot-CodePlaceholder.svg +4 -0
  2789. package/src/illustrations-v5/tnt/tnt-Dot-Company.svg +14 -0
  2790. package/src/illustrations-v5/tnt/tnt-Dot-Compass.svg +17 -0
  2791. package/src/illustrations-v5/tnt/tnt-Dot-Components.svg +21 -0
  2792. package/src/illustrations-v5/tnt/tnt-Dot-Dialog.svg +8 -0
  2793. package/src/illustrations-v5/tnt/tnt-Dot-ExternalLink.svg +9 -0
  2794. package/src/illustrations-v5/tnt/tnt-Dot-FaceID.svg +20 -0
  2795. package/src/illustrations-v5/tnt/tnt-Dot-Fingerprint.svg +12 -0
  2796. package/src/illustrations-v5/tnt/tnt-Dot-Handshake.svg +35 -0
  2797. package/src/illustrations-v5/tnt/tnt-Dot-Help.svg +15 -0
  2798. package/src/illustrations-v5/tnt/tnt-Dot-Lock.svg +25 -0
  2799. package/src/illustrations-v5/tnt/tnt-Dot-Mission.svg +20 -0
  2800. package/src/illustrations-v5/tnt/tnt-Dot-MissionFailed.svg +19 -0
  2801. package/src/illustrations-v5/tnt/tnt-Dot-NoApplications.svg +10 -0
  2802. package/src/illustrations-v5/tnt/tnt-Dot-NoFlows.svg +10 -0
  2803. package/src/illustrations-v5/tnt/tnt-Dot-NoUsers.svg +17 -0
  2804. package/src/illustrations-v5/tnt/tnt-Dot-Radar.svg +27 -0
  2805. package/src/illustrations-v5/tnt/tnt-Dot-RoadMap.svg +10 -0
  2806. package/src/illustrations-v5/tnt/tnt-Dot-Secrets.svg +15 -0
  2807. package/src/illustrations-v5/tnt/tnt-Dot-Services.svg +13 -0
  2808. package/src/illustrations-v5/tnt/tnt-Dot-SessionExpired.svg +12 -0
  2809. package/src/illustrations-v5/tnt/tnt-Dot-SessionExpiring.svg +19 -0
  2810. package/src/illustrations-v5/tnt/tnt-Dot-Settings.svg +7 -0
  2811. package/src/illustrations-v5/tnt/tnt-Dot-Success.svg +14 -0
  2812. package/src/illustrations-v5/tnt/tnt-Dot-SuccessfulAuth.svg +9 -0
  2813. package/src/illustrations-v5/tnt/tnt-Dot-Systems.svg +14 -0
  2814. package/src/illustrations-v5/tnt/tnt-Dot-Teams.svg +31 -0
  2815. package/src/illustrations-v5/tnt/tnt-Dot-Tools.svg +25 -0
  2816. package/src/illustrations-v5/tnt/tnt-Dot-Tutorials.svg +15 -0
  2817. package/src/illustrations-v5/tnt/tnt-Dot-Unlock.svg +27 -0
  2818. package/src/illustrations-v5/tnt/tnt-Dot-UnsuccessfulAuth.svg +9 -0
  2819. package/src/illustrations-v5/tnt/tnt-Scene-Avatar.svg +48 -0
  2820. package/src/illustrations-v5/tnt/tnt-Scene-Calculator.svg +21 -0
  2821. package/src/illustrations-v5/tnt/tnt-Scene-ChartArea.svg +10 -0
  2822. package/src/illustrations-v5/tnt/tnt-Scene-ChartArea2.svg +11 -0
  2823. package/src/illustrations-v5/tnt/tnt-Scene-ChartBPMNFlow.svg +17 -0
  2824. package/src/illustrations-v5/tnt/tnt-Scene-ChartBar.svg +12 -0
  2825. package/src/illustrations-v5/tnt/tnt-Scene-ChartBullet.svg +17 -0
  2826. package/src/illustrations-v5/tnt/tnt-Scene-ChartDoughnut.svg +12 -0
  2827. package/src/illustrations-v5/tnt/tnt-Scene-ChartFlow.svg +16 -0
  2828. package/src/illustrations-v5/tnt/tnt-Scene-ChartGantt.svg +12 -0
  2829. package/src/illustrations-v5/tnt/tnt-Scene-ChartOrg.svg +18 -0
  2830. package/src/illustrations-v5/tnt/tnt-Scene-ChartPie.svg +12 -0
  2831. package/src/illustrations-v5/tnt/tnt-Scene-CodePlaceholder.svg +6 -0
  2832. package/src/illustrations-v5/tnt/tnt-Scene-Company.svg +13 -0
  2833. package/src/illustrations-v5/tnt/tnt-Scene-Compass.svg +18 -0
  2834. package/src/illustrations-v5/tnt/tnt-Scene-Components.svg +18 -0
  2835. package/src/illustrations-v5/tnt/tnt-Scene-Dialog.svg +10 -0
  2836. package/src/illustrations-v5/tnt/tnt-Scene-ExternalLink.svg +14 -0
  2837. package/src/illustrations-v5/tnt/tnt-Scene-FaceID.svg +21 -0
  2838. package/src/illustrations-v5/tnt/tnt-Scene-Fingerprint.svg +31 -0
  2839. package/src/illustrations-v5/tnt/tnt-Scene-Handshake.svg +38 -0
  2840. package/src/illustrations-v5/tnt/tnt-Scene-Help.svg +17 -0
  2841. package/src/illustrations-v5/tnt/tnt-Scene-Lock.svg +43 -0
  2842. package/src/illustrations-v5/tnt/tnt-Scene-Mission.svg +32 -0
  2843. package/src/illustrations-v5/tnt/tnt-Scene-MissionFailed.svg +23 -0
  2844. package/src/illustrations-v5/tnt/tnt-Scene-NoApplications.svg +12 -0
  2845. package/src/illustrations-v5/tnt/tnt-Scene-NoFlows.svg +12 -0
  2846. package/src/illustrations-v5/tnt/tnt-Scene-NoUsers.svg +19 -0
  2847. package/src/illustrations-v5/tnt/tnt-Scene-Radar.svg +29 -0
  2848. package/src/illustrations-v5/tnt/tnt-Scene-RoadMap.svg +31 -0
  2849. package/src/illustrations-v5/tnt/tnt-Scene-Secrets.svg +17 -0
  2850. package/src/illustrations-v5/tnt/tnt-Scene-Services.svg +29 -0
  2851. package/src/illustrations-v5/tnt/tnt-Scene-SessionExpired.svg +23 -0
  2852. package/src/illustrations-v5/tnt/tnt-Scene-SessionExpiring.svg +21 -0
  2853. package/src/illustrations-v5/tnt/tnt-Scene-Settings.svg +18 -0
  2854. package/src/illustrations-v5/tnt/tnt-Scene-Success.svg +20 -0
  2855. package/src/illustrations-v5/tnt/tnt-Scene-SuccessfulAuth.svg +18 -0
  2856. package/src/illustrations-v5/tnt/tnt-Scene-Systems.svg +27 -0
  2857. package/src/illustrations-v5/tnt/tnt-Scene-Teams.svg +84 -0
  2858. package/src/illustrations-v5/tnt/tnt-Scene-Tools.svg +46 -0
  2859. package/src/illustrations-v5/tnt/tnt-Scene-Tutorials.svg +17 -0
  2860. package/src/illustrations-v5/tnt/tnt-Scene-Unlock.svg +44 -0
  2861. package/src/illustrations-v5/tnt/tnt-Scene-UnsuccessfulAuth.svg +18 -0
  2862. package/src/illustrations-v5/tnt/tnt-Spot-Avatar.svg +48 -0
  2863. package/src/illustrations-v5/tnt/tnt-Spot-Calculator.svg +25 -0
  2864. package/src/illustrations-v5/tnt/tnt-Spot-ChartArea.svg +9 -0
  2865. package/src/illustrations-v5/tnt/tnt-Spot-ChartArea2.svg +10 -0
  2866. package/src/illustrations-v5/tnt/tnt-Spot-ChartBPMNFlow.svg +17 -0
  2867. package/src/illustrations-v5/tnt/tnt-Spot-ChartBar.svg +11 -0
  2868. package/src/illustrations-v5/tnt/tnt-Spot-ChartBullet.svg +12 -0
  2869. package/src/illustrations-v5/tnt/tnt-Spot-ChartDoughnut.svg +11 -0
  2870. package/src/illustrations-v5/tnt/tnt-Spot-ChartFlow.svg +13 -0
  2871. package/src/illustrations-v5/tnt/tnt-Spot-ChartGantt.svg +11 -0
  2872. package/src/illustrations-v5/tnt/tnt-Spot-ChartOrg.svg +18 -0
  2873. package/src/illustrations-v5/tnt/tnt-Spot-ChartPie.svg +11 -0
  2874. package/src/illustrations-v5/tnt/tnt-Spot-CodePlaceholder.svg +6 -0
  2875. package/src/illustrations-v5/tnt/tnt-Spot-Company.svg +13 -0
  2876. package/src/illustrations-v5/tnt/tnt-Spot-Compass.svg +18 -0
  2877. package/src/illustrations-v5/tnt/tnt-Spot-Components.svg +18 -0
  2878. package/src/illustrations-v5/tnt/tnt-Spot-Dialog.svg +10 -0
  2879. package/src/illustrations-v5/tnt/tnt-Spot-ExternalLink.svg +13 -0
  2880. package/src/illustrations-v5/tnt/tnt-Spot-FaceID.svg +21 -0
  2881. package/src/illustrations-v5/tnt/tnt-Spot-Fingerprint.svg +31 -0
  2882. package/src/illustrations-v5/tnt/tnt-Spot-Handshake.svg +38 -0
  2883. package/src/illustrations-v5/tnt/tnt-Spot-Help.svg +9 -0
  2884. package/src/illustrations-v5/tnt/tnt-Spot-Lock.svg +43 -0
  2885. package/src/illustrations-v5/tnt/tnt-Spot-Mission.svg +25 -0
  2886. package/src/illustrations-v5/tnt/tnt-Spot-MissionFailed.svg +23 -0
  2887. package/src/illustrations-v5/tnt/tnt-Spot-NoApplications.svg +11 -0
  2888. package/src/illustrations-v5/tnt/tnt-Spot-NoFlows.svg +11 -0
  2889. package/src/illustrations-v5/tnt/tnt-Spot-NoUsers.svg +12 -0
  2890. package/src/illustrations-v5/tnt/tnt-Spot-Radar.svg +27 -0
  2891. package/src/illustrations-v5/tnt/tnt-Spot-RoadMap.svg +31 -0
  2892. package/src/illustrations-v5/tnt/tnt-Spot-Secrets.svg +17 -0
  2893. package/src/illustrations-v5/tnt/tnt-Spot-Services.svg +29 -0
  2894. package/src/illustrations-v5/tnt/tnt-Spot-SessionExpired.svg +22 -0
  2895. package/src/illustrations-v5/tnt/tnt-Spot-SessionExpiring.svg +19 -0
  2896. package/src/illustrations-v5/tnt/tnt-Spot-Settings.svg +14 -0
  2897. package/src/illustrations-v5/tnt/tnt-Spot-Success.svg +20 -0
  2898. package/src/illustrations-v5/tnt/tnt-Spot-SuccessfulAuth.svg +14 -0
  2899. package/src/illustrations-v5/tnt/tnt-Spot-Systems.svg +18 -0
  2900. package/src/illustrations-v5/tnt/tnt-Spot-Teams.svg +78 -0
  2901. package/src/illustrations-v5/tnt/tnt-Spot-Tools.svg +25 -0
  2902. package/src/illustrations-v5/tnt/tnt-Spot-Tutorials.svg +16 -0
  2903. package/src/illustrations-v5/tnt/tnt-Spot-Unlock.svg +44 -0
  2904. package/src/illustrations-v5/tnt/tnt-Spot-UnsuccessfulAuth.svg +14 -0
  2905. package/src/themes/BarcodeScannerDialog.css +49 -0
  2906. package/src/themes/DynamicPage.css +135 -0
  2907. package/src/themes/DynamicPageHeader.css +9 -0
  2908. package/src/themes/DynamicPageHeaderActions.css +51 -0
  2909. package/src/themes/DynamicPageTitle.css +173 -0
  2910. package/src/themes/DynamicSideContent.css +268 -0
  2911. package/src/themes/FlexibleColumnLayout.css +125 -0
  2912. package/src/themes/IllustratedMessage.css +238 -0
  2913. package/src/themes/InvisibleTextStyles.css +9 -0
  2914. package/src/themes/MediaGallery.css +153 -0
  2915. package/src/themes/MediaGalleryItem.css +130 -0
  2916. package/src/themes/NavigationLayout.css +64 -0
  2917. package/src/themes/NavigationMenu.css +15 -0
  2918. package/src/themes/NavigationMenuItem.css +93 -0
  2919. package/src/themes/NotificationList.css +7 -0
  2920. package/src/themes/NotificationListGroupItem.css +122 -0
  2921. package/src/themes/NotificationListItem.css +207 -0
  2922. package/src/themes/NotificationListItemBase.css +25 -0
  2923. package/src/themes/NotificationStateIcon.css +5 -0
  2924. package/src/themes/Page.css +176 -0
  2925. package/src/themes/ProductSwitch.css +32 -0
  2926. package/src/themes/ProductSwitchItem.css +164 -0
  2927. package/src/themes/Search.css +110 -0
  2928. package/src/themes/SearchField.css +299 -0
  2929. package/src/themes/SearchItem.css +109 -0
  2930. package/src/themes/SearchItemGroup.css +20 -0
  2931. package/src/themes/SearchItemShowMore.css +7 -0
  2932. package/src/themes/SearchMessageArea.css +17 -0
  2933. package/src/themes/ShellBar.css +529 -0
  2934. package/src/themes/ShellBarBranding.css +76 -0
  2935. package/src/themes/ShellBarPopover.css +38 -0
  2936. package/src/themes/ShellBarSearch.css +3 -0
  2937. package/src/themes/SideNavigation.css +75 -0
  2938. package/src/themes/SideNavigationGroup.css +37 -0
  2939. package/src/themes/SideNavigationItem.css +29 -0
  2940. package/src/themes/SideNavigationItemBase.css +376 -0
  2941. package/src/themes/SideNavigationPopover.css +19 -0
  2942. package/src/themes/SideNavigationSubItem.css +25 -0
  2943. package/src/themes/Timeline.css +88 -0
  2944. package/src/themes/TimelineGroupItem.css +184 -0
  2945. package/src/themes/TimelineItem.css +445 -0
  2946. package/src/themes/UploadCollection.css +97 -0
  2947. package/src/themes/UploadCollectionItem.css +181 -0
  2948. package/src/themes/UserMenu.css +174 -0
  2949. package/src/themes/UserMenuItem.css +11 -0
  2950. package/src/themes/UserSettingsAccountView.css +57 -0
  2951. package/src/themes/UserSettingsAppearanceViewItem.css +65 -0
  2952. package/src/themes/UserSettingsDialog.css +114 -0
  2953. package/src/themes/UserSettingsItem.css +77 -0
  2954. package/src/themes/UserSettingsView.css +13 -0
  2955. package/src/themes/ViewSettingsDialog.css +84 -0
  2956. package/src/themes/Wizard.css +139 -0
  2957. package/src/themes/WizardPopover.css +25 -0
  2958. package/src/themes/WizardTab.css +189 -0
  2959. package/src/themes/base/DynamicPage-parameters.css +18 -0
  2960. package/src/themes/base/DynamicPageHeader-parameters.css +5 -0
  2961. package/src/themes/base/DynamicPageHeaderActions-parameters.css +7 -0
  2962. package/src/themes/base/DynamicPageTitle-parameters.css +19 -0
  2963. package/src/themes/base/FlexibleColumnLayout-parameters.css +6 -0
  2964. package/src/themes/base/IllustratedMessage-parameters.css +13 -0
  2965. package/src/themes/base/MediaGallery-parameters.css +5 -0
  2966. package/src/themes/base/MediaGalleryItem-parameters.css +6 -0
  2967. package/src/themes/base/NotificationListItem-parameters.css +33 -0
  2968. package/src/themes/base/Page-parameters.css +4 -0
  2969. package/src/themes/base/ProductSwitchItem-parameters.css +6 -0
  2970. package/src/themes/base/Search-parameters.css +10 -0
  2971. package/src/themes/base/SearchField-parameters.css +31 -0
  2972. package/src/themes/base/ShellBar-parameters.css +26 -0
  2973. package/src/themes/base/SideNavigation-parameters.css +77 -0
  2974. package/src/themes/base/TimelineGroupItem-parameters.css +4 -0
  2975. package/src/themes/base/TimelineItem-parameters.css +20 -0
  2976. package/src/themes/base/UploadCollection-parameters.css +13 -0
  2977. package/src/themes/base/ViewSettingsDialog-parameters.css +7 -0
  2978. package/src/themes/base/Wizard-parameters.css +4 -0
  2979. package/src/themes/base/WizardTab-parameters.css +11 -0
  2980. package/src/themes/base/rtl-parameters.css +14 -0
  2981. package/src/themes/sap_belize/DynamicPage-parameters.css +16 -0
  2982. package/src/themes/sap_belize_hcb/DynamicPageTitle-parameters.css +6 -0
  2983. package/src/themes/sap_belize_hcw/DynamicPageTitle-parameters.css +6 -0
  2984. package/src/themes/sap_fiori_3/DynamicPageHeaderActions-parameters.css +5 -0
  2985. package/src/themes/sap_fiori_3/DynamicPageTitle-parameters.css +4 -0
  2986. package/src/themes/sap_fiori_3/SearchField-parameters.css +28 -0
  2987. package/src/themes/sap_fiori_3/ShellBar-parameters.css +5 -0
  2988. package/src/themes/sap_fiori_3/TimelineGroupItem-parameters.css +6 -0
  2989. package/src/themes/sap_fiori_3/parameters-bundle.css +21 -0
  2990. package/src/themes/sap_fiori_3_dark/SearchField-parameters.css +27 -0
  2991. package/src/themes/sap_fiori_3_dark/ShellBar-parameters.css +5 -0
  2992. package/src/themes/sap_fiori_3_dark/parameters-bundle.css +21 -0
  2993. package/src/themes/sap_fiori_3_hcb/DynamicPageTitle-parameters.css +6 -0
  2994. package/src/themes/sap_fiori_3_hcb/FlexibleColumnLayout-parameters.css +6 -0
  2995. package/src/themes/sap_fiori_3_hcb/MediaGallery-parameters.css +5 -0
  2996. package/src/themes/sap_fiori_3_hcb/Page-parameters.css +4 -0
  2997. package/src/themes/sap_fiori_3_hcb/ProductSwitchItem-parameters.css +6 -0
  2998. package/src/themes/sap_fiori_3_hcb/SearchField-parameters.css +29 -0
  2999. package/src/themes/sap_fiori_3_hcb/ShellBar-parameters.css +5 -0
  3000. package/src/themes/sap_fiori_3_hcb/TimelineItem-parameters.css +6 -0
  3001. package/src/themes/sap_fiori_3_hcb/UploadCollection-parameters.css +7 -0
  3002. package/src/themes/sap_fiori_3_hcb/WizardTab-parameters.css +9 -0
  3003. package/src/themes/sap_fiori_3_hcb/parameters-bundle.css +22 -0
  3004. package/src/themes/sap_fiori_3_hcw/DynamicPageTitle-parameters.css +6 -0
  3005. package/src/themes/sap_fiori_3_hcw/FlexibleColumnLayout-parameters.css +6 -0
  3006. package/src/themes/sap_fiori_3_hcw/MediaGallery-parameters.css +5 -0
  3007. package/src/themes/sap_fiori_3_hcw/Page-parameters.css +4 -0
  3008. package/src/themes/sap_fiori_3_hcw/ProductSwitchItem-parameters.css +6 -0
  3009. package/src/themes/sap_fiori_3_hcw/SearchField-parameters.css +28 -0
  3010. package/src/themes/sap_fiori_3_hcw/ShellBar-parameters.css +5 -0
  3011. package/src/themes/sap_fiori_3_hcw/TimelineItem-parameters.css +6 -0
  3012. package/src/themes/sap_fiori_3_hcw/UploadCollection-parameters.css +6 -0
  3013. package/src/themes/sap_fiori_3_hcw/WizardTab-parameters.css +8 -0
  3014. package/src/themes/sap_fiori_3_hcw/parameters-bundle.css +22 -0
  3015. package/src/themes/sap_horizon/DynamicPageHeaderActions-parameters.css +6 -0
  3016. package/src/themes/sap_horizon/DynamicPageTitle-parameters.css +5 -0
  3017. package/src/themes/sap_horizon/FlexibleColumnLayout-parameters.css +3 -0
  3018. package/src/themes/sap_horizon/MediaGallery-parameters.css +5 -0
  3019. package/src/themes/sap_horizon/NotificationListItem-parameters.css +20 -0
  3020. package/src/themes/sap_horizon/ProductSwitchItem-parameters.css +5 -0
  3021. package/src/themes/sap_horizon/ShellBar-parameters.css +30 -0
  3022. package/src/themes/sap_horizon/SideNavigation-parameters.css +55 -0
  3023. package/src/themes/sap_horizon/TimelineItem-parameters.css +21 -0
  3024. package/src/themes/sap_horizon/UploadCollection-parameters.css +11 -0
  3025. package/src/themes/sap_horizon/Wizard-parameters.css +6 -0
  3026. package/src/themes/sap_horizon/WizardTab-parameters.css +11 -0
  3027. package/src/themes/sap_horizon/parameters-bundle.css +26 -0
  3028. package/src/themes/sap_horizon_dark/FlexibleColumnLayout-parameters.css +3 -0
  3029. package/src/themes/sap_horizon_dark/MediaGallery-parameters.css +5 -0
  3030. package/src/themes/sap_horizon_dark/NotificationListItem-parameters.css +20 -0
  3031. package/src/themes/sap_horizon_dark/ProductSwitchItem-parameters.css +5 -0
  3032. package/src/themes/sap_horizon_dark/ShellBar-parameters.css +30 -0
  3033. package/src/themes/sap_horizon_dark/SideNavigation-parameters.css +55 -0
  3034. package/src/themes/sap_horizon_dark/TimelineItem-parameters.css +21 -0
  3035. package/src/themes/sap_horizon_dark/UploadCollection-parameters.css +11 -0
  3036. package/src/themes/sap_horizon_dark/Wizard-parameters.css +6 -0
  3037. package/src/themes/sap_horizon_dark/WizardTab-parameters.css +10 -0
  3038. package/src/themes/sap_horizon_dark/parameters-bundle.css +25 -0
  3039. package/src/themes/sap_horizon_dark_exp/FlexibleColumnLayout-parameters.css +3 -0
  3040. package/src/themes/sap_horizon_dark_exp/NotificationListItem-parameters.css +3 -0
  3041. package/src/themes/sap_horizon_dark_exp/ProductSwitchItem-parameters.css +5 -0
  3042. package/src/themes/sap_horizon_dark_exp/ShellBar-parameters.css +22 -0
  3043. package/src/themes/sap_horizon_dark_exp/SideNavigation-parameters.css +17 -0
  3044. package/src/themes/sap_horizon_dark_exp/TimelineItem-parameters.css +21 -0
  3045. package/src/themes/sap_horizon_dark_exp/UploadCollection-parameters.css +5 -0
  3046. package/src/themes/sap_horizon_dark_exp/Wizard-parameters.css +6 -0
  3047. package/src/themes/sap_horizon_dark_exp/WizardTab-parameters.css +10 -0
  3048. package/src/themes/sap_horizon_dark_exp/parameters-bundle.css +20 -0
  3049. package/src/themes/sap_horizon_exp/FlexibleColumnLayout-parameters.css +3 -0
  3050. package/src/themes/sap_horizon_exp/NotificationListItem-parameters.css +3 -0
  3051. package/src/themes/sap_horizon_exp/ProductSwitchItem-parameters.css +5 -0
  3052. package/src/themes/sap_horizon_exp/ShellBar-parameters.css +28 -0
  3053. package/src/themes/sap_horizon_exp/SideNavigation-parameters.css +17 -0
  3054. package/src/themes/sap_horizon_exp/TimelineItem-parameters.css +21 -0
  3055. package/src/themes/sap_horizon_exp/UploadCollection-parameters.css +5 -0
  3056. package/src/themes/sap_horizon_exp/Wizard-parameters.css +6 -0
  3057. package/src/themes/sap_horizon_exp/WizardTab-parameters.css +11 -0
  3058. package/src/themes/sap_horizon_exp/parameters-bundle.css +20 -0
  3059. package/src/themes/sap_horizon_hcb/DynamicPageTitle-parameters.css +11 -0
  3060. package/src/themes/sap_horizon_hcb/FlexibleColumnLayout-parameters.css +6 -0
  3061. package/src/themes/sap_horizon_hcb/MediaGallery-parameters.css +5 -0
  3062. package/src/themes/sap_horizon_hcb/NotificationListItem-parameters.css +22 -0
  3063. package/src/themes/sap_horizon_hcb/Page-parameters.css +4 -0
  3064. package/src/themes/sap_horizon_hcb/ProductSwitchItem-parameters.css +6 -0
  3065. package/src/themes/sap_horizon_hcb/SearchField-parameters.css +29 -0
  3066. package/src/themes/sap_horizon_hcb/ShellBar-parameters.css +14 -0
  3067. package/src/themes/sap_horizon_hcb/SideNavigation-parameters.css +53 -0
  3068. package/src/themes/sap_horizon_hcb/TimelineItem-parameters.css +6 -0
  3069. package/src/themes/sap_horizon_hcb/UploadCollection-parameters.css +11 -0
  3070. package/src/themes/sap_horizon_hcb/Wizard-parameters.css +6 -0
  3071. package/src/themes/sap_horizon_hcb/WizardTab-parameters.css +11 -0
  3072. package/src/themes/sap_horizon_hcb/parameters-bundle.css +23 -0
  3073. package/src/themes/sap_horizon_hcb_exp/FlexibleColumnLayout-parameters.css +6 -0
  3074. package/src/themes/sap_horizon_hcb_exp/MediaGallery-parameters.css +5 -0
  3075. package/src/themes/sap_horizon_hcb_exp/Page-parameters.css +4 -0
  3076. package/src/themes/sap_horizon_hcb_exp/ProductSwitchItem-parameters.css +6 -0
  3077. package/src/themes/sap_horizon_hcb_exp/ShellBar-parameters.css +11 -0
  3078. package/src/themes/sap_horizon_hcb_exp/SideNavigation-parameters.css +16 -0
  3079. package/src/themes/sap_horizon_hcb_exp/TimelineItem-parameters.css +6 -0
  3080. package/src/themes/sap_horizon_hcb_exp/UploadCollection-parameters.css +8 -0
  3081. package/src/themes/sap_horizon_hcb_exp/Wizard-parameters.css +6 -0
  3082. package/src/themes/sap_horizon_hcb_exp/WizardTab-parameters.css +11 -0
  3083. package/src/themes/sap_horizon_hcb_exp/parameters-bundle.css +18 -0
  3084. package/src/themes/sap_horizon_hcw/DynamicPageTitle-parameters.css +11 -0
  3085. package/src/themes/sap_horizon_hcw/FlexibleColumnLayout-parameters.css +6 -0
  3086. package/src/themes/sap_horizon_hcw/MediaGallery-parameters.css +5 -0
  3087. package/src/themes/sap_horizon_hcw/NotificationListItem-parameters.css +22 -0
  3088. package/src/themes/sap_horizon_hcw/Page-parameters.css +4 -0
  3089. package/src/themes/sap_horizon_hcw/ProductSwitchItem-parameters.css +6 -0
  3090. package/src/themes/sap_horizon_hcw/SearchField-parameters.css +29 -0
  3091. package/src/themes/sap_horizon_hcw/ShellBar-parameters.css +14 -0
  3092. package/src/themes/sap_horizon_hcw/SideNavigation-parameters.css +53 -0
  3093. package/src/themes/sap_horizon_hcw/TimelineItem-parameters.css +6 -0
  3094. package/src/themes/sap_horizon_hcw/UploadCollection-parameters.css +11 -0
  3095. package/src/themes/sap_horizon_hcw/Wizard-parameters.css +6 -0
  3096. package/src/themes/sap_horizon_hcw/WizardTab-parameters.css +11 -0
  3097. package/src/themes/sap_horizon_hcw/parameters-bundle.css +24 -0
  3098. package/src/themes/sap_horizon_hcw_exp/FlexibleColumnLayout-parameters.css +6 -0
  3099. package/src/themes/sap_horizon_hcw_exp/MediaGallery-parameters.css +5 -0
  3100. package/src/themes/sap_horizon_hcw_exp/Page-parameters.css +4 -0
  3101. package/src/themes/sap_horizon_hcw_exp/ProductSwitchItem-parameters.css +6 -0
  3102. package/src/themes/sap_horizon_hcw_exp/ShellBar-parameters.css +5 -0
  3103. package/src/themes/sap_horizon_hcw_exp/SideNavigation-parameters.css +16 -0
  3104. package/src/themes/sap_horizon_hcw_exp/TimelineItem-parameters.css +6 -0
  3105. package/src/themes/sap_horizon_hcw_exp/UploadCollection-parameters.css +7 -0
  3106. package/src/themes/sap_horizon_hcw_exp/Wizard-parameters.css +6 -0
  3107. package/src/themes/sap_horizon_hcw_exp/WizardTab-parameters.css +11 -0
  3108. package/src/themes/sap_horizon_hcw_exp/parameters-bundle.css +19 -0
  3109. package/tsconfig.json +43 -0
  3110. package/config/postcss.components/postcss.config.js +0 -1
  3111. package/config/postcss.themes/postcss.config.js +0 -1
  3112. package/dist/NotificationOverflowAction.js +0 -90
  3113. package/dist/api.json +0 -1
  3114. package/dist/features/CoPilotAnimation.js +0 -8
  3115. package/dist/generated/assets/themes/sap_belize/parameters-bundle.css.json +0 -1
  3116. package/dist/generated/assets/themes/sap_belize_hcb/parameters-bundle.css.json +0 -1
  3117. package/dist/generated/assets/themes/sap_belize_hcw/parameters-bundle.css.json +0 -1
  3118. package/dist/generated/templates/NotifactionOverflowActionsPopoverTemplate.lit.js +0 -8
  3119. package/dist/generated/templates/NotificationListGroupItemTemplate.lit.js +0 -15
  3120. package/dist/generated/templates/NotificationListItemTemplate.lit.js +0 -16
  3121. package/dist/generated/templates/ProductSwitchItemTemplate.lit.js +0 -15
  3122. package/dist/generated/templates/ProductSwitchTemplate.lit.js +0 -7
  3123. package/dist/generated/templates/ShellBarItemTemplate.lit.js +0 -7
  3124. package/dist/generated/templates/ShellBarPopoverTemplate.lit.js +0 -9
  3125. package/dist/generated/templates/ShellBarTemplate.lit.js +0 -23
  3126. package/dist/generated/templates/UploadCollectionItemTemplate.lit.js +0 -26
  3127. package/dist/generated/templates/UploadCollectionTemplate.lit.js +0 -10
  3128. package/dist/generated/themes/NotifactionOverflowActionsPopover.css.js +0 -8
  3129. package/dist/generated/themes/NotificationPrioIcon.css.js +0 -8
  3130. package/dist/generated/themes/sap_belize/parameters-bundle.css.js +0 -1
  3131. package/dist/generated/themes/sap_belize_hcb/parameters-bundle.css.js +0 -1
  3132. package/dist/generated/themes/sap_belize_hcw/parameters-bundle.css.js +0 -1
  3133. package/dist/webcomponentsjs/LICENSE.md +0 -19
  3134. package/dist/webcomponentsjs/README.md +0 -229
  3135. package/dist/webcomponentsjs/bundles/webcomponents-ce.js +0 -63
  3136. package/dist/webcomponentsjs/bundles/webcomponents-ce.js.map +0 -1
  3137. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js +0 -297
  3138. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js.map +0 -1
  3139. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce.js +0 -208
  3140. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce.js.map +0 -1
  3141. package/dist/webcomponentsjs/bundles/webcomponents-sd.js +0 -166
  3142. package/dist/webcomponentsjs/bundles/webcomponents-sd.js.map +0 -1
  3143. package/dist/webcomponentsjs/custom-elements-es5-adapter.js +0 -15
  3144. package/dist/webcomponentsjs/package.json +0 -46
  3145. package/dist/webcomponentsjs/src/entrypoints/custom-elements-es5-adapter-index.js +0 -16
  3146. package/dist/webcomponentsjs/src/entrypoints/webcomponents-bundle-index.js +0 -53
  3147. package/dist/webcomponentsjs/src/entrypoints/webcomponents-ce-index.js +0 -17
  3148. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-index.js +0 -19
  3149. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-pf-index.js +0 -28
  3150. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-index.js +0 -18
  3151. package/dist/webcomponentsjs/webcomponents-bundle.js +0 -298
  3152. package/dist/webcomponentsjs/webcomponents-bundle.js.map +0 -1
  3153. package/dist/webcomponentsjs/webcomponents-loader.js +0 -185
  3154. package/package-scripts.js +0 -11
  3155. package/src/Assets.js +0 -6
  3156. package/src/NotifactionOverflowActionsPopover.hbs +0 -20
  3157. package/src/NotificationListGroupItem.hbs +0 -81
  3158. package/src/NotificationListGroupItem.js +0 -219
  3159. package/src/NotificationListItem.hbs +0 -98
  3160. package/src/NotificationListItem.js +0 -430
  3161. package/src/NotificationListItemBase.js +0 -241
  3162. package/src/NotificationOverflowAction.js +0 -90
  3163. package/src/ProductSwitch.hbs +0 -3
  3164. package/src/ProductSwitch.js +0 -130
  3165. package/src/ProductSwitchItem.hbs +0 -43
  3166. package/src/ProductSwitchItem.js +0 -225
  3167. package/src/ShellBar.hbs +0 -192
  3168. package/src/ShellBar.js +0 -1037
  3169. package/src/ShellBarItem.hbs +0 -1
  3170. package/src/ShellBarItem.js +0 -91
  3171. package/src/ShellBarPopover.hbs +0 -31
  3172. package/src/UploadCollection.hbs +0 -34
  3173. package/src/UploadCollection.js +0 -324
  3174. package/src/UploadCollectionItem.hbs +0 -84
  3175. package/src/UploadCollectionItem.js +0 -493
  3176. package/src/features/CoPilotAnimation.js +0 -8
  3177. package/src/types/UploadCollectionDnDMode.js +0 -49
  3178. package/src/types/UploadState.js +0 -56
  3179. package/src/upload-utils/UploadCollectionBodyDnD.js +0 -73
@@ -0,0 +1,17 @@
1
+ export default `<svg width="320" height="240" viewBox="0 0 320 240" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-SimpleBell">
2
+ <path d="M130.573 148.696H33.96C18.1941 148.696 5.41333 161.477 5.41333 177.243C5.41333 193.009 18.1941 205.79 33.96 205.79H130.573C146.339 205.79 159.12 193.009 159.12 177.243C159.12 161.477 146.339 148.696 130.573 148.696Z" fill="var(--sapContent_Illustrative_Color7)"/>
3
+ <path d="M165.747 177.03H69.1333C53.3674 177.03 40.5867 189.81 40.5867 205.576C40.5867 221.342 53.3674 234.123 69.1333 234.123H165.747C181.513 234.123 194.293 221.342 194.293 205.576C194.293 189.81 181.513 177.03 165.747 177.03Z" fill="var(--sapContent_Illustrative_Color7)"/>
4
+ <path d="M291.453 98.083H194.84C179.074 98.083 166.293 110.864 166.293 126.63C166.293 142.396 179.074 155.176 194.84 155.176H291.453C307.219 155.176 320 142.396 320 126.63C320 110.864 307.219 98.083 291.453 98.083Z" fill="var(--sapContent_Illustrative_Color7)"/>
5
+ <path d="M219.453 45.9629H37.8267C16.9356 45.9629 0 62.8985 0 83.7896V83.8029C0 104.694 16.9356 121.63 37.8267 121.63H219.453C240.344 121.63 257.28 104.694 257.28 83.8029V83.7896C257.28 62.8985 240.344 45.9629 219.453 45.9629Z" fill="var(--sapContent_Illustrative_Color7)"/>
6
+ <path d="M158.187 41.5608C154.923 41.5608 151.792 42.8575 149.484 45.1657C147.176 47.4738 145.879 50.6044 145.879 53.8687V70.8755H170.512V53.8687C170.507 50.6029 169.207 47.4723 166.896 45.1647C164.585 42.857 161.453 41.5608 158.187 41.5608Z" fill="var(--sapContent_Illustrative_Color15)"/>
7
+ <path d="M222.419 122.933V178.552H93.0864V122.933C93.0864 105.783 99.8995 89.3344 112.027 77.2072C124.154 65.0799 140.602 58.2669 157.753 58.2669C174.903 58.2669 191.351 65.0799 203.479 77.2072C215.606 89.3344 222.419 105.783 222.419 122.933Z" fill="var(--sapContent_Illustrative_Color3)"/>
8
+ <path d="M158.187 216.63C166.933 216.63 174.024 209.54 174.024 200.793C174.024 192.047 166.933 184.957 158.187 184.957C149.441 184.957 142.351 192.047 142.351 200.793C142.351 209.54 149.441 216.63 158.187 216.63Z" fill="var(--sapContent_Illustrative_Color3)"/>
9
+ <path d="M236.934 184.974C233.054 184.154 222.419 178.552 222.419 178.552H93.0865C93.0865 178.552 82.4509 184.154 78.5713 184.974C74.6916 185.793 71.0796 188.318 71.0796 192.449C71.084 194.433 71.8752 196.334 73.2797 197.735C74.6842 199.137 76.5872 199.924 78.5713 199.924H236.934C238.917 199.924 240.818 199.136 242.22 197.734C243.622 196.333 244.409 194.431 244.409 192.449C244.409 188.318 240.981 185.827 236.934 184.974Z" fill="var(--sapContent_Illustrative_Color15)"/>
10
+ <path opacity="0.36" d="M151.365 58.5845C135.4 60.173 120.596 67.6377 109.826 79.529C99.0567 91.4204 93.0905 106.89 93.0864 122.933V178.552H213.623V123.2C213.617 106.469 207.129 90.3906 195.52 78.3419C183.911 66.2932 168.084 59.2117 151.365 58.5845Z" fill="var(--sapContent_Illustrative_Color15)"/>
11
+ <rect x="53" y="62" width="69" height="41.4" rx="6" fill="var(--sapContent_Illustrative_Color8)"/>
12
+ <path d="M95.8342 100.915C95.2729 100.267 95.7329 99.26 96.5899 99.26H111.34C111.892 99.26 112.34 99.7077 112.34 100.26V117.279C112.34 118.205 111.19 118.634 110.584 117.934L95.8342 100.915Z" fill="var(--sapContent_Illustrative_Color8)"/>
13
+ <circle cx="73.7001" cy="82.7" r="4.14" fill="var(--sapContent_Illustrative_Color4)"/>
14
+ <circle cx="101.3" cy="82.7" r="4.14" fill="var(--sapContent_Illustrative_Color4)"/>
15
+ <circle cx="87.5001" cy="82.7" r="4.14" fill="var(--sapContent_Illustrative_Color4)"/>
16
+ </svg>
17
+ `;
@@ -0,0 +1,45 @@
1
+ export default `<svg width="320" height="240" viewBox="0 0 320 240" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-SimpleCalendar">
2
+ <path d="M127.001 124.923H33.0309C17.6963 124.923 5.26514 137.354 5.26514 152.689C5.26514 168.023 17.6963 180.455 33.0309 180.455H127.001C142.336 180.455 154.767 168.023 154.767 152.689C154.767 137.354 142.336 124.923 127.001 124.923Z" fill="var(--sapContent_Illustrative_Color7)"/>
3
+ <path d="M161.212 152.481H67.2421C51.9075 152.481 39.4763 164.913 39.4763 180.247C39.4763 195.582 51.9075 208.013 67.2421 208.013H161.212C176.547 208.013 188.978 195.582 188.978 180.247C188.978 164.913 176.547 152.481 161.212 152.481Z" fill="var(--sapContent_Illustrative_Color7)"/>
4
+ <path d="M283.48 75.6943H189.51C174.175 75.6943 161.744 88.1255 161.744 103.46C161.744 118.795 174.175 131.226 189.51 131.226H283.48C298.815 131.226 311.246 118.795 311.246 103.46C311.246 88.1255 298.815 75.6943 283.48 75.6943Z" fill="var(--sapContent_Illustrative_Color7)"/>
5
+ <path d="M213.45 25H36.7919C16.4723 25 0 41.4723 0 61.7919V61.8049C0 82.1245 16.4723 98.5968 36.7919 98.5968H213.45C233.77 98.5968 250.242 82.1245 250.242 61.8049V61.7919C250.242 41.4723 233.77 25 213.45 25Z" fill="var(--sapContent_Illustrative_Color7)"/>
6
+ <path d="M122.081 103.498H121.864L121.374 89.4089H116.014C115.761 89.4088 115.511 89.4595 115.277 89.5581C115.044 89.6567 114.833 89.8011 114.657 89.9828C114.481 90.1644 114.343 90.3796 114.251 90.6156C114.16 90.8516 114.117 91.1036 114.124 91.3567L118.373 213.537C118.39 214.025 118.596 214.487 118.947 214.827C119.298 215.166 119.768 215.355 120.256 215.355H277.834C278.086 215.355 278.337 215.304 278.569 215.206C278.802 215.107 279.013 214.962 279.188 214.781C279.364 214.599 279.501 214.384 279.592 214.148C279.683 213.912 279.725 213.66 279.716 213.407L279.5 207.117H127.52C127.031 207.117 126.561 206.928 126.208 206.589C125.856 206.25 125.649 205.788 125.63 205.299L122.081 103.498Z" fill="var(--sapContent_Illustrative_Color6)"/>
7
+ <path d="M283.431 103.498H122.081L125.63 205.299C125.648 205.788 125.856 206.25 126.208 206.589C126.56 206.928 127.031 207.117 127.52 207.117H285.09C285.344 207.117 285.595 207.066 285.828 206.967C286.062 206.868 286.273 206.723 286.45 206.54C286.626 206.358 286.764 206.142 286.855 205.905C286.946 205.668 286.988 205.415 286.98 205.162L283.431 103.498ZM141.701 115.278C141.701 114.597 141.972 113.943 142.453 113.462C142.935 112.98 143.588 112.71 144.269 112.71H191.712C192.05 112.709 192.384 112.774 192.697 112.903C193.009 113.032 193.293 113.221 193.532 113.459C193.772 113.698 193.961 113.981 194.091 114.293C194.22 114.605 194.287 114.94 194.287 115.278C194.285 115.959 194.013 116.613 193.53 117.094C193.047 117.575 192.394 117.846 191.712 117.846H144.269C143.589 117.844 142.937 117.573 142.455 117.092C141.974 116.61 141.703 115.958 141.701 115.278ZM151.8 184.992L145.272 128.818L245.452 132.237L245.834 180.361L151.8 184.992Z" fill="var(--sapContent_Illustrative_Color2)"/>
8
+ <path d="M122.081 103.498H283.785L283.064 82.6713C283.047 82.1833 282.841 81.7209 282.49 81.3817C282.138 81.0425 281.669 80.8531 281.181 80.8534H247.999L248.266 88.4568C248.781 88.853 249.203 89.3574 249.502 89.9345C249.802 90.5116 249.97 91.1473 249.997 91.7968C250.026 92.3393 249.945 92.8822 249.759 93.3925C249.572 93.9029 249.284 94.3701 248.912 94.7659C248.54 95.1617 248.091 95.4779 247.593 95.6954C247.096 95.9129 246.559 96.0272 246.015 96.0313C244.894 96.0166 243.821 95.5668 243.025 94.7769C242.228 93.9869 241.769 92.9184 241.745 91.7968C241.72 91.176 241.838 90.5578 242.088 89.9891C242.338 89.4204 242.714 88.9161 243.188 88.5145L242.921 80.8534H158.401L158.668 88.4928C159.177 88.8864 159.593 89.387 159.887 89.9591C160.181 90.5313 160.346 91.161 160.37 91.804C160.401 92.3464 160.322 92.8895 160.137 93.4003C159.951 93.9111 159.664 94.3788 159.292 94.775C158.921 95.1711 158.472 95.4874 157.974 95.7047C157.476 95.9219 156.939 96.0354 156.396 96.0385C155.276 96.015 154.208 95.5626 153.412 94.7747C152.616 93.9868 152.153 92.9234 152.118 91.804C152.092 91.1799 152.209 90.5582 152.459 89.9858C152.709 89.4134 153.085 88.9053 153.561 88.5L153.294 80.8534H122.997C122.745 80.8532 122.494 80.904 122.262 81.0027C122.029 81.1013 121.818 81.2458 121.643 81.4276C121.467 81.6094 121.33 81.8247 121.239 82.0607C121.148 82.2966 121.106 82.5485 121.115 82.8011L121.345 89.409L121.836 103.498H122.081Z" fill="var(--sapContent_Illustrative_Color3)"/>
9
+ <path d="M156.374 93.593H156.229C155.566 93.5898 154.93 93.3307 154.453 92.8697C153.976 92.4088 153.695 91.7815 153.669 91.1186L153.575 88.5C153.1 88.9053 152.723 89.4134 152.473 89.9858C152.223 90.5581 152.107 91.1799 152.132 91.8039C152.167 92.9234 152.63 93.9868 153.426 94.7747C154.222 95.5626 155.29 96.015 156.41 96.0384C156.953 96.0354 157.49 95.9219 157.988 95.7047C158.486 95.4874 158.935 95.1711 159.307 94.7749C159.678 94.3788 159.966 93.9111 160.151 93.4003C160.336 92.8895 160.416 92.3464 160.384 91.8039C160.36 91.161 160.195 90.5312 159.901 89.9591C159.607 89.3869 159.191 88.8864 158.682 88.4928L158.776 91.1186C158.791 91.4414 158.739 91.7638 158.625 92.0659C158.51 92.368 158.335 92.6435 158.11 92.8753C157.885 93.1072 157.615 93.2904 157.316 93.4139C157.017 93.5373 156.697 93.5982 156.374 93.593Z" fill="var(--sapContent_Illustrative_Color5)"/>
10
+ <path d="M245.957 93.4631H245.813C245.15 93.4581 244.515 93.1984 244.038 92.7378C243.561 92.2772 243.28 91.651 243.252 90.9887L243.166 88.5144C242.692 88.916 242.315 89.4203 242.065 89.989C241.815 90.5577 241.698 91.1759 241.723 91.7967C241.747 92.9184 242.206 93.9868 243.003 94.7768C243.799 95.5667 244.872 96.0165 245.993 96.0312C246.537 96.0271 247.073 95.9128 247.571 95.6953C248.069 95.4778 248.518 95.1616 248.89 94.7658C249.262 94.37 249.55 93.9028 249.737 93.3924C249.923 92.8821 250.004 92.3392 249.975 91.7967C249.948 91.1472 249.779 90.5115 249.48 89.9344C249.181 89.3573 248.759 88.8529 248.244 88.4567L248.33 90.9887C248.344 91.3088 248.293 91.6283 248.18 91.928C248.066 92.2277 247.894 92.5014 247.672 92.7326C247.45 92.9638 247.184 93.1477 246.889 93.2732C246.595 93.3988 246.278 93.4633 245.957 93.4631Z" fill="var(--sapContent_Illustrative_Color5)"/>
11
+ <path d="M153.669 91.1187C153.695 91.7816 153.975 92.4089 154.452 92.8698C154.929 93.3308 155.566 93.5898 156.229 93.5931H156.374C156.696 93.5963 157.015 93.5339 157.312 93.4096C157.608 93.2853 157.877 93.1017 158.1 92.8701C158.324 92.6385 158.498 92.3637 158.611 92.0626C158.725 91.7614 158.776 91.4403 158.761 91.1187L158.668 88.4929L158.401 80.8534L158.134 73.1058C158.106 72.4435 157.825 71.8173 157.348 71.3567C156.871 70.8961 156.236 70.6364 155.573 70.6315H155.429C155.107 70.6282 154.788 70.6906 154.491 70.8149C154.194 70.9392 153.926 71.1228 153.702 71.3544C153.479 71.586 153.305 71.8608 153.191 72.162C153.077 72.4631 153.026 72.7843 153.041 73.1058L153.308 80.8534L153.575 88.5001L153.669 91.1187Z" fill="var(--sapContent_Illustrative_Color6)"/>
12
+ <path d="M243.253 90.9887C243.28 91.651 243.562 92.2772 244.038 92.7378C244.515 93.1984 245.151 93.4581 245.813 93.463H245.958C246.279 93.4653 246.598 93.4022 246.894 93.2775C247.191 93.1528 247.459 92.9692 247.682 92.7378C247.905 92.5064 248.079 92.2321 248.193 91.9314C248.307 91.6307 248.359 91.31 248.345 90.9887L248.259 88.4567L247.992 80.8533L247.718 72.9686C247.688 72.3069 247.406 71.6817 246.93 71.2214C246.454 70.7612 245.819 70.501 245.157 70.4943H245.013C244.691 70.492 244.372 70.5551 244.076 70.6798C243.78 70.8045 243.512 70.9881 243.288 71.2195C243.065 71.4509 242.891 71.7252 242.777 72.0259C242.663 72.3266 242.611 72.6473 242.625 72.9686L242.899 80.8533L243.166 88.5144L243.253 90.9887Z" fill="var(--sapContent_Illustrative_Color6)"/>
13
+ <path d="M140.886 126.921L143.238 194.233C143.255 194.721 143.461 195.183 143.812 195.522C144.163 195.862 144.632 196.051 145.121 196.051H265.852C266.105 196.051 266.355 196 266.588 195.902C266.821 195.803 267.031 195.658 267.207 195.477C267.383 195.295 267.52 195.08 267.611 194.844C267.701 194.608 267.744 194.356 267.735 194.103L265.383 126.82C265.366 126.331 265.161 125.868 264.81 125.528C264.459 125.187 263.989 124.996 263.5 124.995H142.769C142.518 124.996 142.27 125.046 142.04 125.144C141.809 125.242 141.6 125.384 141.424 125.564C141.249 125.743 141.111 125.955 141.019 126.188C140.927 126.421 140.882 126.67 140.886 126.921ZM151.901 137.987C151.891 137.719 151.934 137.452 152.029 137.202C152.125 136.951 152.27 136.723 152.456 136.53C152.642 136.337 152.865 136.184 153.112 136.08C153.359 135.976 153.624 135.922 153.892 135.924H157.946C158.503 135.923 159.039 136.137 159.442 136.521C159.845 136.906 160.084 137.431 160.11 137.987L160.211 141.024C160.222 141.293 160.178 141.561 160.082 141.812C159.987 142.063 159.841 142.292 159.654 142.486C159.468 142.679 159.244 142.833 158.996 142.938C158.748 143.042 158.482 143.095 158.213 143.094H154.166C153.608 143.095 153.072 142.88 152.668 142.494C152.265 142.108 152.026 141.581 152.002 141.024L151.901 137.987ZM152.536 152.184C152.525 151.915 152.569 151.647 152.665 151.396C152.761 151.144 152.906 150.915 153.093 150.722C153.28 150.528 153.504 150.374 153.751 150.27C153.999 150.165 154.265 150.112 154.534 150.113H158.581C159.139 150.113 159.676 150.328 160.079 150.714C160.482 151.099 160.721 151.626 160.745 152.184L160.853 155.221C160.863 155.489 160.818 155.756 160.722 156.006C160.626 156.257 160.48 156.485 160.294 156.678C160.107 156.871 159.883 157.024 159.636 157.128C159.389 157.232 159.123 157.285 158.855 157.284H154.808C154.251 157.284 153.716 157.07 153.313 156.686C152.91 156.302 152.67 155.777 152.644 155.221L152.536 152.184ZM153.2 165.89C153.189 165.621 153.233 165.353 153.328 165.102C153.424 164.851 153.57 164.621 153.756 164.428C153.943 164.234 154.167 164.081 154.415 163.976C154.663 163.872 154.929 163.818 155.198 163.819H159.245C159.803 163.819 160.339 164.034 160.743 164.42C161.146 164.806 161.384 165.332 161.409 165.89L161.51 168.927C161.521 169.195 161.478 169.463 161.384 169.714C161.289 169.966 161.144 170.195 160.958 170.389C160.771 170.582 160.548 170.736 160.301 170.841C160.053 170.945 159.787 170.998 159.519 170.997H155.465C154.907 170.998 154.37 170.783 153.967 170.397C153.564 170.011 153.325 169.484 153.301 168.927L153.2 165.89ZM156.085 184.711C155.528 184.711 154.993 184.497 154.589 184.113C154.186 183.729 153.947 183.204 153.921 182.648L153.813 179.603C153.802 179.335 153.846 179.067 153.942 178.816C154.037 178.565 154.183 178.337 154.37 178.144C154.557 177.951 154.781 177.798 155.029 177.694C155.276 177.59 155.542 177.538 155.811 177.54H159.858C160.415 177.54 160.95 177.754 161.353 178.138C161.756 178.522 161.996 179.047 162.022 179.603L162.13 182.648C162.139 182.915 162.093 183.182 161.997 183.432C161.9 183.682 161.755 183.91 161.568 184.103C161.382 184.295 161.158 184.448 160.912 184.553C160.665 184.657 160.4 184.711 160.132 184.711H156.085ZM167.894 138.045C167.883 137.776 167.927 137.508 168.022 137.257C168.118 137.005 168.264 136.776 168.45 136.582C168.637 136.389 168.861 136.235 169.109 136.131C169.356 136.026 169.623 135.973 169.892 135.974H173.917C174.475 135.974 175.011 136.189 175.415 136.575C175.818 136.96 176.057 137.487 176.081 138.045L176.182 141.082C176.193 141.35 176.151 141.618 176.056 141.869C175.961 142.12 175.816 142.35 175.63 142.543C175.444 142.737 175.22 142.891 174.973 142.995C174.725 143.1 174.459 143.153 174.191 143.152H170.137C169.579 143.152 169.042 142.937 168.639 142.552C168.236 142.166 167.997 141.639 167.973 141.082L167.894 138.045ZM168.528 152.234C168.519 151.966 168.563 151.699 168.659 151.448C168.755 151.198 168.901 150.969 169.088 150.777C169.274 150.584 169.498 150.431 169.745 150.327C169.992 150.223 170.258 150.17 170.526 150.171H174.573C175.13 150.17 175.666 150.384 176.069 150.769C176.472 151.153 176.711 151.678 176.737 152.234L176.845 155.278C176.855 155.546 176.811 155.814 176.714 156.064C176.618 156.315 176.473 156.543 176.286 156.736C176.099 156.928 175.876 157.081 175.628 157.185C175.381 157.29 175.116 157.343 174.847 157.341H170.801C170.244 157.342 169.708 157.128 169.305 156.744C168.902 156.359 168.662 155.835 168.637 155.278L168.528 152.234ZM169.192 165.94C169.181 165.672 169.225 165.404 169.321 165.152C169.416 164.901 169.562 164.672 169.749 164.478C169.935 164.285 170.159 164.131 170.407 164.027C170.655 163.922 170.921 163.869 171.19 163.87H175.237C175.795 163.869 176.331 164.085 176.735 164.47C177.138 164.856 177.377 165.383 177.401 165.94L177.509 168.977C177.519 169.245 177.474 169.513 177.378 169.763C177.282 170.014 177.136 170.242 176.949 170.435C176.763 170.627 176.539 170.78 176.292 170.884C176.045 170.989 175.779 171.042 175.511 171.041H171.464C170.907 171.041 170.372 170.827 169.969 170.443C169.566 170.058 169.326 169.534 169.3 168.977L169.192 165.94ZM172.077 184.761C171.519 184.762 170.983 184.547 170.579 184.161C170.176 183.775 169.937 183.248 169.913 182.691L169.805 179.654C169.794 179.385 169.838 179.117 169.934 178.866C170.03 178.615 170.175 178.385 170.362 178.192C170.549 177.998 170.773 177.845 171.02 177.74C171.268 177.636 171.534 177.582 171.803 177.583H175.85C176.408 177.583 176.945 177.798 177.348 178.184C177.751 178.57 177.99 179.096 178.014 179.654L178.122 182.691C178.133 182.959 178.089 183.228 177.993 183.479C177.898 183.73 177.752 183.959 177.565 184.153C177.379 184.346 177.155 184.5 176.907 184.605C176.659 184.709 176.393 184.762 176.124 184.761H172.077ZM184.016 138.081C184.005 137.812 184.049 137.544 184.144 137.293C184.24 137.041 184.386 136.812 184.572 136.619C184.759 136.425 184.983 136.271 185.231 136.167C185.478 136.062 185.745 136.009 186.014 136.01H190.06C190.618 136.01 191.155 136.225 191.558 136.611C191.962 136.996 192.2 137.523 192.224 138.081L192.333 141.118C192.343 141.386 192.3 141.654 192.204 141.906C192.108 142.157 191.963 142.386 191.776 142.58C191.589 142.773 191.365 142.927 191.117 143.031C190.87 143.136 190.603 143.189 190.335 143.188H186.288C185.73 143.189 185.193 142.973 184.79 142.588C184.387 142.202 184.148 141.675 184.124 141.118L184.016 138.081ZM184.658 152.27C184.647 152.002 184.691 151.734 184.786 151.483C184.882 151.232 185.028 151.003 185.215 150.811C185.402 150.618 185.626 150.465 185.873 150.361C186.121 150.257 186.387 150.205 186.656 150.207H190.702C191.259 150.206 191.795 150.421 192.198 150.805C192.601 151.189 192.84 151.714 192.866 152.27L192.967 155.314C192.978 155.582 192.934 155.849 192.839 156.1C192.744 156.35 192.599 156.579 192.413 156.771C192.227 156.964 192.004 157.117 191.757 157.221C191.51 157.326 191.244 157.379 190.977 157.378H186.901C186.344 157.378 185.808 157.164 185.405 156.78C185.002 156.396 184.763 155.871 184.737 155.314L184.658 152.27ZM185.314 165.976C185.304 165.708 185.349 165.44 185.445 165.19C185.541 164.939 185.687 164.71 185.873 164.517C186.06 164.323 186.283 164.17 186.53 164.065C186.778 163.96 187.043 163.906 187.312 163.906H191.366C191.924 163.906 192.461 164.121 192.864 164.506C193.267 164.892 193.506 165.419 193.53 165.976L193.638 169.013C193.649 169.282 193.605 169.549 193.509 169.8C193.414 170.051 193.268 170.28 193.081 170.473C192.894 170.666 192.67 170.819 192.423 170.923C192.175 171.026 191.909 171.079 191.64 171.077H187.622C187.065 171.077 186.53 170.863 186.127 170.479C185.724 170.095 185.484 169.57 185.458 169.013L185.314 165.976ZM188.199 184.797C187.641 184.798 187.105 184.583 186.701 184.197C186.298 183.811 186.06 183.284 186.035 182.727L185.934 179.69C185.924 179.422 185.967 179.155 186.063 178.905C186.158 178.654 186.303 178.426 186.489 178.233C186.675 178.04 186.898 177.887 187.145 177.783C187.392 177.679 187.657 177.626 187.925 177.627H191.979C192.536 177.626 193.072 177.84 193.475 178.224C193.878 178.609 194.117 179.134 194.143 179.69L194.244 182.727C194.255 182.996 194.211 183.264 194.115 183.515C194.02 183.766 193.874 183.995 193.687 184.189C193.501 184.382 193.277 184.536 193.029 184.641C192.781 184.745 192.515 184.798 192.246 184.797H188.199ZM200.008 138.131C199.996 137.863 200.039 137.595 200.134 137.344C200.229 137.092 200.374 136.863 200.56 136.669C200.746 136.476 200.969 136.322 201.217 136.217C201.464 136.113 201.73 136.06 201.999 136.061H206.053C206.611 136.06 207.147 136.275 207.551 136.661C207.954 137.047 208.192 137.574 208.217 138.131L208.318 141.168C208.328 141.437 208.285 141.705 208.189 141.956C208.093 142.207 207.948 142.437 207.761 142.63C207.574 142.824 207.35 142.977 207.102 143.082C206.855 143.186 206.588 143.24 206.32 143.238H202.273C201.715 143.239 201.178 143.024 200.775 142.638C200.372 142.252 200.133 141.726 200.109 141.168L200.008 138.131ZM200.643 152.321C200.632 152.052 200.676 151.784 200.771 151.533C200.867 151.281 201.013 151.052 201.199 150.859C201.386 150.665 201.61 150.511 201.858 150.407C202.105 150.302 202.372 150.249 202.641 150.25H206.687C207.245 150.25 207.782 150.465 208.185 150.851C208.589 151.236 208.827 151.763 208.851 152.321L208.96 155.358C208.97 155.626 208.927 155.894 208.831 156.146C208.735 156.397 208.59 156.626 208.403 156.82C208.216 157.013 207.992 157.167 207.744 157.271C207.497 157.376 207.23 157.429 206.962 157.428H202.915C202.357 157.429 201.82 157.213 201.417 156.828C201.013 156.442 200.775 155.915 200.751 155.358L200.643 152.321ZM201.306 166.027C201.295 165.759 201.339 165.491 201.435 165.24C201.531 164.989 201.677 164.76 201.863 164.567C202.05 164.374 202.274 164.221 202.522 164.118C202.77 164.014 203.036 163.962 203.304 163.964H207.351C207.908 163.963 208.444 164.177 208.847 164.562C209.25 164.946 209.489 165.471 209.515 166.027L209.616 169.071C209.627 169.339 209.583 169.606 209.488 169.856C209.392 170.107 209.247 170.335 209.061 170.528C208.875 170.721 208.652 170.874 208.405 170.978C208.158 171.082 207.893 171.135 207.625 171.134H203.571C203.014 171.135 202.479 170.921 202.076 170.537C201.673 170.152 201.433 169.627 201.407 169.071L201.306 166.027ZM204.192 184.855C203.633 184.855 203.097 184.64 202.694 184.255C202.29 183.869 202.052 183.342 202.027 182.785L201.919 179.748C201.909 179.479 201.952 179.211 202.048 178.96C202.144 178.708 202.289 178.479 202.476 178.286C202.663 178.092 202.887 177.938 203.135 177.834C203.382 177.729 203.649 177.676 203.917 177.677H207.964C208.522 177.677 209.059 177.892 209.462 178.278C209.865 178.663 210.104 179.19 210.128 179.748L210.236 182.785C210.246 183.053 210.202 183.321 210.106 183.571C210.009 183.822 209.864 184.051 209.677 184.244C209.491 184.438 209.267 184.591 209.02 184.696C208.773 184.801 208.507 184.855 208.238 184.855H204.192ZM216.346 138.333C216.335 138.064 216.379 137.796 216.475 137.545C216.571 137.294 216.716 137.065 216.903 136.871C217.09 136.678 217.314 136.524 217.561 136.419C217.809 136.315 218.075 136.262 218.344 136.263H222.391C222.949 136.262 223.486 136.477 223.889 136.863C224.292 137.249 224.531 137.776 224.555 138.333L224.656 141.37C224.667 141.638 224.623 141.905 224.528 142.155C224.433 142.406 224.287 142.634 224.101 142.827C223.915 143.02 223.692 143.173 223.445 143.277C223.198 143.381 222.933 143.434 222.665 143.433H218.611C218.054 143.434 217.519 143.22 217.116 142.836C216.713 142.451 216.473 141.926 216.447 141.37L216.346 138.333ZM216.981 152.523C216.97 152.254 217.014 151.986 217.11 151.735C217.205 151.483 217.351 151.254 217.538 151.061C217.725 150.867 217.948 150.713 218.196 150.609C218.444 150.504 218.71 150.451 218.979 150.452H223.026C223.584 150.452 224.121 150.667 224.524 151.053C224.927 151.438 225.166 151.965 225.19 152.523L225.298 155.56C225.309 155.828 225.265 156.096 225.169 156.348C225.074 156.599 224.928 156.828 224.741 157.022C224.555 157.215 224.331 157.369 224.083 157.473C223.835 157.578 223.569 157.631 223.3 157.63H219.253C218.695 157.631 218.158 157.415 217.755 157.03C217.352 156.644 217.113 156.117 217.089 155.56L216.981 152.523ZM217.645 166.229C217.634 165.96 217.678 165.692 217.773 165.441C217.869 165.19 218.015 164.96 218.201 164.767C218.388 164.573 218.612 164.42 218.86 164.315C219.108 164.211 219.374 164.157 219.643 164.159H223.689C224.248 164.158 224.784 164.373 225.187 164.759C225.591 165.145 225.829 165.671 225.854 166.229L225.962 169.266C225.971 169.534 225.927 169.802 225.831 170.053C225.735 170.304 225.589 170.532 225.403 170.726C225.216 170.919 224.993 171.073 224.745 171.178C224.498 171.282 224.232 171.336 223.964 171.336H219.91C219.352 171.337 218.815 171.122 218.412 170.736C218.008 170.35 217.77 169.823 217.746 169.266L217.645 166.229ZM220.53 185.057C219.972 185.057 219.435 184.842 219.032 184.457C218.629 184.071 218.39 183.544 218.366 182.987L218.258 179.95C218.247 179.681 218.291 179.413 218.387 179.162C218.482 178.91 218.628 178.681 218.815 178.488C219.001 178.294 219.225 178.14 219.473 178.036C219.721 177.931 219.987 177.878 220.256 177.879H224.303C224.861 177.879 225.397 178.094 225.801 178.48C226.204 178.865 226.442 179.392 226.467 179.95L226.575 182.987C226.586 183.255 226.542 183.523 226.446 183.775C226.35 184.026 226.205 184.255 226.018 184.449C225.831 184.642 225.607 184.796 225.36 184.9C225.112 185.005 224.846 185.058 224.577 185.057H220.53ZM232.331 138.384C232.32 138.115 232.364 137.848 232.46 137.597C232.556 137.346 232.702 137.117 232.888 136.924C233.075 136.731 233.299 136.578 233.547 136.474C233.795 136.371 234.061 136.318 234.329 136.32H238.376C238.933 136.32 239.469 136.534 239.872 136.918C240.275 137.302 240.514 137.827 240.54 138.384L240.648 141.428C240.658 141.696 240.613 141.963 240.517 142.214C240.421 142.464 240.275 142.692 240.089 142.885C239.902 143.078 239.678 143.231 239.431 143.335C239.184 143.439 238.918 143.492 238.65 143.491H234.603C234.047 143.492 233.511 143.277 233.108 142.893C232.705 142.509 232.465 141.984 232.439 141.428L232.331 138.384ZM232.966 152.58C232.955 152.312 232.999 152.044 233.095 151.792C233.19 151.541 233.336 151.312 233.523 151.118C233.71 150.925 233.933 150.771 234.181 150.667C234.429 150.562 234.695 150.509 234.964 150.51H239.018C239.576 150.509 240.113 150.725 240.516 151.11C240.919 151.496 241.158 152.023 241.182 152.58L241.29 155.617C241.301 155.886 241.257 156.153 241.161 156.404C241.066 156.655 240.92 156.884 240.733 157.077C240.546 157.27 240.322 157.423 240.075 157.527C239.827 157.63 239.561 157.683 239.292 157.681H235.245C234.689 157.681 234.153 157.467 233.75 157.083C233.347 156.699 233.107 156.174 233.081 155.617L232.966 152.58ZM235.851 171.336C235.293 171.337 234.757 171.122 234.353 170.736C233.95 170.35 233.711 169.823 233.687 169.266L233.579 166.229C233.568 165.96 233.612 165.692 233.708 165.441C233.804 165.19 233.949 164.96 234.136 164.767C234.323 164.573 234.547 164.42 234.794 164.315C235.042 164.211 235.308 164.157 235.577 164.159H239.624C240.182 164.158 240.719 164.373 241.122 164.759C241.525 165.145 241.764 165.671 241.788 166.229L241.896 169.266C241.907 169.535 241.863 169.803 241.767 170.054C241.672 170.305 241.526 170.534 241.339 170.728C241.153 170.921 240.929 171.075 240.681 171.18C240.433 171.284 240.167 171.337 239.898 171.336H235.851ZM247.061 138.333C247.05 138.064 247.094 137.796 247.19 137.545C247.285 137.294 247.431 137.065 247.618 136.871C247.805 136.678 248.028 136.524 248.276 136.419C248.524 136.315 248.79 136.262 249.059 136.263H253.106C253.664 136.262 254.201 136.477 254.604 136.863C255.007 137.249 255.246 137.776 255.27 138.333L255.378 141.37C255.389 141.639 255.345 141.907 255.249 142.158C255.154 142.409 255.008 142.639 254.821 142.832C254.635 143.026 254.411 143.179 254.163 143.284C253.915 143.388 253.649 143.442 253.38 143.44H249.333C248.775 143.441 248.239 143.226 247.835 142.84C247.432 142.454 247.193 141.928 247.169 141.37L247.061 138.333ZM247.703 152.523C247.692 152.254 247.736 151.986 247.832 151.735C247.927 151.483 248.073 151.254 248.26 151.061C248.447 150.867 248.67 150.713 248.918 150.609C249.166 150.504 249.432 150.451 249.701 150.452H253.748C254.306 150.452 254.843 150.667 255.246 151.053C255.649 151.438 255.888 151.965 255.912 152.523L256.013 155.56C256.025 155.828 255.982 156.096 255.887 156.347C255.792 156.598 255.647 156.828 255.461 157.021C255.275 157.215 255.051 157.369 254.804 157.473C254.557 157.578 254.291 157.631 254.022 157.63H249.968C249.41 157.631 248.873 157.415 248.47 157.03C248.067 156.644 247.828 156.117 247.804 155.56L247.703 152.523ZM250.588 171.279C250.032 171.279 249.496 171.065 249.093 170.681C248.69 170.297 248.45 169.772 248.424 169.215L248.316 166.171C248.306 165.903 248.351 165.636 248.447 165.385C248.543 165.135 248.689 164.907 248.876 164.714C249.062 164.521 249.286 164.368 249.533 164.264C249.78 164.16 250.046 164.107 250.314 164.108H254.368C254.925 164.107 255.461 164.322 255.864 164.706C256.267 165.09 256.506 165.615 256.532 166.171L256.641 169.215C256.651 169.484 256.607 169.751 256.512 170.002C256.416 170.253 256.27 170.482 256.083 170.675C255.896 170.868 255.672 171.021 255.425 171.125C255.177 171.228 254.911 171.281 254.642 171.279H250.588Z" fill="var(--sapContent_Illustrative_Color8)"/>
14
+ <path d="M144.342 117.831H191.784C192.118 117.834 192.449 117.768 192.757 117.639C193.065 117.509 193.343 117.319 193.575 117.079C193.807 116.839 193.988 116.554 194.106 116.242C194.225 115.93 194.279 115.597 194.266 115.263C194.236 114.576 193.943 113.925 193.448 113.447C192.953 112.969 192.292 112.7 191.604 112.695H144.161C143.827 112.692 143.496 112.757 143.188 112.886C142.879 113.015 142.601 113.205 142.368 113.446C142.136 113.686 141.955 113.971 141.837 114.284C141.719 114.596 141.665 114.929 141.68 115.263C141.709 115.951 142.002 116.601 142.498 117.079C142.993 117.557 143.653 117.827 144.342 117.831Z" fill="var(--sapContent_Illustrative_Color8)"/>
15
+ <path d="M160.045 136.919C160.034 136.66 159.924 136.415 159.737 136.235C159.551 136.055 159.302 135.954 159.043 135.952H152.796C152.67 135.951 152.545 135.976 152.429 136.024C152.313 136.073 152.208 136.145 152.12 136.235C152.032 136.325 151.964 136.433 151.919 136.55C151.874 136.668 151.853 136.793 151.858 136.919L152.046 142.156C152.055 142.415 152.164 142.659 152.349 142.84C152.535 143.02 152.783 143.121 153.041 143.123H159.295C159.421 143.124 159.546 143.099 159.662 143.051C159.778 143.002 159.883 142.931 159.971 142.84C160.059 142.75 160.127 142.643 160.172 142.525C160.217 142.408 160.238 142.282 160.233 142.156L160.045 136.919Z" fill="var(--sapContent_Illustrative_Color6)"/>
16
+ <path d="M176.016 136.919C176.005 136.661 175.895 136.418 175.71 136.238C175.525 136.058 175.278 135.956 175.02 135.953H168.766C168.641 135.953 168.516 135.978 168.401 136.027C168.285 136.076 168.18 136.147 168.093 136.237C168.005 136.328 167.937 136.434 167.891 136.552C167.846 136.669 167.825 136.794 167.829 136.919L168.016 142.164C168.027 142.423 168.137 142.668 168.324 142.848C168.511 143.028 168.759 143.129 169.019 143.13H175.266C175.391 143.131 175.516 143.107 175.632 143.058C175.749 143.01 175.854 142.938 175.941 142.848C176.029 142.757 176.097 142.65 176.143 142.533C176.188 142.415 176.208 142.29 176.203 142.164L176.016 136.919Z" fill="var(--sapContent_Illustrative_Color6)"/>
17
+ <path d="M192.188 136.977C192.175 136.718 192.065 136.475 191.878 136.295C191.692 136.115 191.444 136.014 191.186 136.01H184.932C184.806 136.01 184.682 136.035 184.567 136.084C184.452 136.133 184.348 136.205 184.261 136.295C184.174 136.386 184.106 136.493 184.061 136.61C184.017 136.727 183.996 136.852 184.001 136.977L184.182 142.221C184.193 142.48 184.303 142.725 184.49 142.905C184.676 143.085 184.925 143.186 185.184 143.188H191.438C191.564 143.189 191.688 143.165 191.804 143.116C191.92 143.067 192.024 142.996 192.112 142.905C192.199 142.815 192.266 142.707 192.311 142.59C192.355 142.472 192.375 142.347 192.369 142.221L192.188 136.977Z" fill="var(--sapContent_Illustrative_Color6)"/>
18
+ <path d="M208.159 137.006C208.148 136.747 208.038 136.502 207.851 136.322C207.664 136.142 207.416 136.041 207.156 136.039H200.91C200.784 136.038 200.659 136.063 200.543 136.111C200.427 136.16 200.322 136.231 200.234 136.322C200.146 136.412 200.078 136.519 200.033 136.637C199.988 136.754 199.967 136.88 199.972 137.006L200.159 142.25C200.17 142.508 200.28 142.752 200.465 142.932C200.65 143.111 200.897 143.213 201.155 143.217H207.409C207.534 143.217 207.659 143.192 207.774 143.143C207.89 143.094 207.995 143.022 208.082 142.932C208.17 142.842 208.238 142.735 208.284 142.618C208.329 142.501 208.35 142.376 208.347 142.25L208.159 137.006Z" fill="var(--sapContent_Illustrative_Color6)"/>
19
+ <path d="M224.476 137.179C224.466 136.92 224.358 136.676 224.172 136.496C223.987 136.315 223.739 136.214 223.48 136.212H217.197C217.071 136.211 216.947 136.236 216.83 136.284C216.714 136.333 216.609 136.404 216.521 136.495C216.434 136.585 216.365 136.692 216.32 136.81C216.275 136.928 216.255 137.053 216.259 137.179L216.447 142.416C216.458 142.675 216.569 142.92 216.755 143.1C216.942 143.28 217.19 143.381 217.45 143.383H223.697C223.823 143.384 223.947 143.359 224.064 143.311C224.18 143.262 224.285 143.191 224.373 143.1C224.46 143.01 224.529 142.903 224.574 142.785C224.619 142.667 224.639 142.542 224.635 142.416L224.476 137.179Z" fill="var(--sapContent_Illustrative_Color6)"/>
20
+ <path d="M240.454 137.208C240.443 136.949 240.332 136.704 240.146 136.524C239.959 136.344 239.71 136.243 239.451 136.241H233.197C233.071 136.24 232.947 136.264 232.831 136.313C232.715 136.362 232.611 136.433 232.524 136.524C232.436 136.614 232.369 136.722 232.325 136.839C232.28 136.957 232.261 137.082 232.266 137.208L232.447 142.445C232.458 142.704 232.568 142.949 232.755 143.129C232.941 143.309 233.19 143.41 233.449 143.412H239.703C239.829 143.412 239.953 143.386 240.068 143.337C240.183 143.288 240.288 143.217 240.375 143.126C240.461 143.036 240.529 142.929 240.574 142.812C240.618 142.695 240.639 142.57 240.634 142.445L240.454 137.208Z" fill="var(--sapContent_Illustrative_Color6)"/>
21
+ <path d="M255.212 137.179C255.201 136.92 255.091 136.675 254.904 136.495C254.718 136.315 254.469 136.214 254.21 136.212H247.956C247.83 136.212 247.706 136.237 247.591 136.286C247.476 136.335 247.372 136.407 247.285 136.497C247.198 136.588 247.13 136.695 247.085 136.812C247.041 136.929 247.02 137.054 247.025 137.179L247.205 142.423C247.213 142.687 247.322 142.937 247.511 143.122C247.699 143.306 247.952 143.41 248.215 143.412H254.469C254.595 143.412 254.719 143.387 254.834 143.338C254.949 143.289 255.054 143.217 255.141 143.126C255.227 143.036 255.295 142.929 255.34 142.812C255.384 142.695 255.405 142.57 255.4 142.445L255.212 137.179Z" fill="var(--sapContent_Illustrative_Color6)"/>
22
+ <path d="M160.687 151.08C160.676 150.821 160.565 150.576 160.379 150.396C160.192 150.216 159.943 150.115 159.684 150.113H153.43C153.305 150.112 153.18 150.137 153.064 150.185C152.949 150.234 152.844 150.306 152.757 150.396C152.67 150.487 152.602 150.594 152.558 150.711C152.514 150.829 152.494 150.954 152.5 151.08L152.68 156.317C152.691 156.576 152.801 156.821 152.988 157.001C153.175 157.181 153.423 157.282 153.683 157.284H159.937C160.062 157.284 160.186 157.259 160.301 157.21C160.417 157.161 160.521 157.089 160.608 156.999C160.695 156.908 160.762 156.801 160.807 156.684C160.852 156.567 160.872 156.442 160.867 156.317L160.687 151.08Z" fill="var(--sapContent_Illustrative_Color6)"/>
23
+ <path d="M176.658 151.109C176.647 150.85 176.536 150.605 176.35 150.425C176.163 150.245 175.914 150.144 175.655 150.142H169.401C169.276 150.142 169.152 150.167 169.037 150.216C168.921 150.265 168.817 150.337 168.73 150.427C168.643 150.518 168.575 150.624 168.531 150.742C168.486 150.859 168.466 150.984 168.471 151.109L168.651 156.346C168.662 156.605 168.772 156.85 168.959 157.03C169.146 157.21 169.394 157.311 169.654 157.313H175.908C176.033 157.314 176.158 157.289 176.274 157.241C176.389 157.192 176.494 157.12 176.581 157.03C176.668 156.939 176.736 156.832 176.78 156.714C176.824 156.597 176.844 156.471 176.838 156.346L176.658 151.109Z" fill="var(--sapContent_Illustrative_Color6)"/>
24
+ <path d="M192.823 151.174C192.814 150.915 192.705 150.67 192.52 150.49C192.334 150.31 192.086 150.209 191.828 150.207H185.574C185.448 150.206 185.323 150.23 185.207 150.279C185.091 150.328 184.986 150.399 184.898 150.49C184.81 150.58 184.742 150.687 184.697 150.805C184.652 150.922 184.631 151.048 184.636 151.174L184.824 156.411C184.835 156.67 184.945 156.915 185.132 157.095C185.318 157.275 185.567 157.376 185.826 157.377H192.073C192.199 157.379 192.324 157.354 192.44 157.305C192.556 157.257 192.661 157.185 192.749 157.095C192.836 157.005 192.905 156.897 192.95 156.78C192.995 156.662 193.016 156.537 193.011 156.411L192.823 151.174Z" fill="var(--sapContent_Illustrative_Color6)"/>
25
+ <path d="M208.801 151.195C208.788 150.937 208.677 150.693 208.491 150.513C208.305 150.334 208.057 150.232 207.798 150.229H201.544C201.419 150.229 201.295 150.254 201.179 150.303C201.064 150.352 200.96 150.424 200.873 150.514C200.786 150.604 200.718 150.711 200.674 150.828C200.629 150.945 200.609 151.07 200.613 151.195L200.794 156.44C200.805 156.699 200.915 156.944 201.102 157.124C201.289 157.304 201.537 157.405 201.797 157.406H208.051C208.176 157.406 208.3 157.381 208.415 157.332C208.531 157.283 208.635 157.211 208.722 157.121C208.809 157.031 208.876 156.924 208.921 156.807C208.966 156.69 208.986 156.565 208.981 156.44L208.801 151.195Z" fill="var(--sapContent_Illustrative_Color6)"/>
26
+ <path d="M225.132 151.347C225.121 151.088 225.01 150.843 224.824 150.663C224.637 150.483 224.388 150.382 224.129 150.38H217.875C217.75 150.38 217.626 150.405 217.51 150.454C217.395 150.503 217.291 150.575 217.204 150.665C217.117 150.756 217.049 150.863 217.005 150.98C216.96 151.097 216.94 151.222 216.945 151.347L217.125 156.591C217.138 156.85 217.249 157.094 217.435 157.273C217.621 157.453 217.869 157.555 218.128 157.558H224.381C224.507 157.558 224.631 157.533 224.746 157.484C224.861 157.435 224.966 157.363 225.053 157.273C225.139 157.182 225.207 157.076 225.252 156.958C225.296 156.841 225.317 156.716 225.312 156.591L225.132 151.347Z" fill="var(--sapContent_Illustrative_Color6)"/>
27
+ <path d="M241.088 151.397C241.077 151.138 240.967 150.893 240.78 150.714C240.593 150.534 240.345 150.432 240.085 150.431H233.839C233.713 150.43 233.588 150.454 233.472 150.503C233.356 150.551 233.25 150.623 233.163 150.713C233.075 150.804 233.007 150.911 232.962 151.028C232.917 151.146 232.896 151.272 232.901 151.397L233.081 156.635C233.092 156.894 233.203 157.138 233.389 157.318C233.576 157.498 233.825 157.6 234.084 157.601H240.338C240.463 157.602 240.588 157.578 240.704 157.529C240.82 157.48 240.924 157.409 241.011 157.318C241.098 157.228 241.166 157.12 241.21 157.003C241.255 156.885 241.274 156.76 241.268 156.635L241.088 151.397Z" fill="var(--sapContent_Illustrative_Color6)"/>
28
+ <path d="M255.847 151.347C255.836 151.089 255.727 150.845 255.542 150.665C255.356 150.486 255.11 150.384 254.852 150.38H248.598C248.472 150.38 248.348 150.405 248.232 150.454C248.116 150.503 248.012 150.575 247.924 150.665C247.837 150.755 247.768 150.862 247.723 150.979C247.678 151.096 247.656 151.221 247.66 151.347L247.848 156.591C247.859 156.85 247.969 157.095 248.156 157.275C248.342 157.455 248.591 157.556 248.85 157.558H255.097C255.223 157.559 255.348 157.534 255.464 157.486C255.58 157.437 255.685 157.366 255.773 157.275C255.86 157.185 255.929 157.078 255.974 156.96C256.019 156.843 256.039 156.717 256.034 156.591L255.847 151.347Z" fill="var(--sapContent_Illustrative_Color6)"/>
29
+ <path d="M161.343 164.757C161.334 164.499 161.225 164.254 161.04 164.074C160.854 163.894 160.607 163.792 160.348 163.791H154.094C153.968 163.79 153.843 163.814 153.727 163.863C153.611 163.911 153.506 163.983 153.418 164.073C153.331 164.164 153.262 164.271 153.217 164.388C153.172 164.506 153.151 164.631 153.156 164.757L153.344 170.002C153.355 170.261 153.465 170.506 153.652 170.686C153.839 170.865 154.087 170.967 154.346 170.968H160.593C160.719 170.968 160.843 170.943 160.959 170.894C161.075 170.845 161.179 170.774 161.267 170.684C161.354 170.593 161.423 170.487 161.468 170.369C161.514 170.252 161.535 170.127 161.531 170.002L161.343 164.757Z" fill="var(--sapContent_Illustrative_Color6)"/>
30
+ <path d="M177.322 164.786C177.311 164.527 177.201 164.282 177.014 164.102C176.827 163.922 176.578 163.821 176.319 163.819H170.065C169.94 163.818 169.815 163.843 169.699 163.891C169.583 163.94 169.479 164.012 169.392 164.102C169.305 164.193 169.237 164.3 169.193 164.418C169.148 164.535 169.129 164.661 169.135 164.786L169.315 170.023C169.326 170.282 169.436 170.527 169.623 170.707C169.81 170.887 170.058 170.988 170.318 170.99H176.572C176.697 170.99 176.821 170.965 176.936 170.916C177.052 170.867 177.156 170.795 177.243 170.705C177.33 170.614 177.398 170.508 177.442 170.39C177.487 170.273 177.507 170.149 177.502 170.023L177.322 164.786Z" fill="var(--sapContent_Illustrative_Color6)"/>
31
+ <path d="M193.487 164.851C193.475 164.592 193.365 164.347 193.178 164.167C192.992 163.987 192.743 163.886 192.484 163.884H186.237C186.111 163.883 185.986 163.908 185.87 163.956C185.754 164.005 185.649 164.077 185.561 164.167C185.474 164.257 185.405 164.365 185.36 164.482C185.315 164.6 185.294 164.725 185.299 164.851L185.458 170.103C185.467 170.361 185.576 170.606 185.761 170.786C185.947 170.966 186.195 171.068 186.453 171.069H192.708C192.833 171.07 192.958 171.046 193.074 170.997C193.191 170.949 193.296 170.877 193.383 170.787C193.471 170.696 193.539 170.589 193.584 170.472C193.629 170.354 193.65 170.228 193.645 170.103L193.487 164.851Z" fill="var(--sapContent_Illustrative_Color6)"/>
32
+ <path d="M209.458 164.88C209.449 164.621 209.34 164.377 209.154 164.196C208.969 164.016 208.721 163.915 208.462 163.913H202.208C202.082 163.912 201.958 163.937 201.841 163.985C201.725 164.034 201.62 164.105 201.532 164.196C201.445 164.286 201.376 164.393 201.331 164.511C201.286 164.629 201.266 164.754 201.27 164.88L201.458 170.117C201.469 170.376 201.579 170.621 201.766 170.801C201.953 170.981 202.201 171.082 202.461 171.084H208.708C208.834 171.085 208.958 171.06 209.075 171.012C209.191 170.963 209.296 170.891 209.383 170.801C209.471 170.711 209.54 170.604 209.585 170.486C209.63 170.368 209.65 170.243 209.645 170.117L209.458 164.88Z" fill="var(--sapContent_Illustrative_Color6)"/>
33
+ <path d="M225.781 165.053C225.767 164.795 225.655 164.552 225.47 164.373C225.284 164.194 225.037 164.091 224.779 164.086H218.525C218.4 164.086 218.276 164.111 218.16 164.16C218.045 164.209 217.941 164.281 217.854 164.372C217.767 164.462 217.699 164.569 217.655 164.686C217.61 164.803 217.59 164.928 217.594 165.053L217.775 170.297C217.786 170.557 217.896 170.801 218.083 170.981C218.269 171.161 218.518 171.263 218.777 171.264H225.024C225.15 171.265 225.275 171.241 225.391 171.192C225.507 171.144 225.612 171.072 225.7 170.982C225.787 170.891 225.856 170.784 225.901 170.666C225.946 170.549 225.967 170.423 225.962 170.297L225.781 165.053Z" fill="var(--sapContent_Illustrative_Color6)"/>
34
+ <path d="M234.51 164.108C234.384 164.107 234.26 164.131 234.144 164.18C234.028 164.229 233.923 164.3 233.836 164.391C233.749 164.481 233.681 164.589 233.637 164.706C233.593 164.824 233.573 164.949 233.579 165.075L233.759 170.319C233.772 170.578 233.883 170.821 234.069 171.001C234.256 171.181 234.503 171.282 234.762 171.286H241.001C241.127 171.286 241.251 171.261 241.366 171.212C241.481 171.163 241.586 171.091 241.673 171.001C241.759 170.91 241.827 170.803 241.872 170.686C241.916 170.569 241.937 170.444 241.932 170.319L241.723 165.053C241.712 164.794 241.601 164.549 241.415 164.369C241.228 164.189 240.979 164.088 240.72 164.086L234.51 164.108Z" fill="var(--sapContent_Illustrative_Color6)"/>
35
+ <path d="M249.261 164.086C249.135 164.085 249.01 164.11 248.894 164.158C248.778 164.207 248.673 164.279 248.585 164.369C248.498 164.459 248.429 164.567 248.384 164.684C248.339 164.802 248.318 164.927 248.323 165.053L248.504 170.29C248.515 170.549 248.625 170.794 248.812 170.974C248.998 171.154 249.247 171.255 249.506 171.257H255.76C255.886 171.258 256.01 171.234 256.126 171.185C256.242 171.136 256.347 171.064 256.434 170.974C256.521 170.883 256.588 170.776 256.633 170.659C256.677 170.541 256.697 170.416 256.691 170.29L256.51 165.053C256.499 164.794 256.389 164.549 256.202 164.369C256.016 164.189 255.767 164.088 255.508 164.086H249.261Z" fill="var(--sapContent_Illustrative_Color6)"/>
36
+ <path d="M154.714 177.511C154.589 177.51 154.464 177.535 154.348 177.583C154.233 177.632 154.128 177.704 154.041 177.794C153.954 177.885 153.886 177.992 153.842 178.11C153.798 178.227 153.778 178.352 153.784 178.478L153.964 183.715C153.975 183.974 154.086 184.219 154.272 184.399C154.459 184.579 154.707 184.68 154.967 184.682H161.214C161.34 184.683 161.464 184.658 161.58 184.61C161.697 184.561 161.802 184.49 161.889 184.399C161.977 184.309 162.046 184.202 162.091 184.084C162.136 183.966 162.156 183.841 162.151 183.715L161.964 178.478C161.955 178.22 161.846 177.975 161.66 177.795C161.475 177.614 161.227 177.513 160.968 177.511H154.714Z" fill="var(--sapContent_Illustrative_Color6)"/>
37
+ <path d="M170.685 177.533C170.56 177.533 170.436 177.558 170.32 177.607C170.205 177.656 170.101 177.728 170.014 177.818C169.927 177.908 169.859 178.015 169.815 178.132C169.77 178.25 169.75 178.374 169.754 178.5L169.935 183.744C169.946 184.003 170.056 184.248 170.243 184.428C170.429 184.608 170.678 184.709 170.937 184.711H177.191C177.317 184.711 177.441 184.686 177.556 184.637C177.671 184.588 177.776 184.516 177.862 184.426C177.949 184.335 178.017 184.228 178.062 184.111C178.106 183.994 178.127 183.869 178.122 183.744L177.942 178.5C177.929 178.241 177.818 177.997 177.632 177.818C177.445 177.638 177.198 177.536 176.939 177.533H170.685Z" fill="var(--sapContent_Illustrative_Color6)"/>
38
+ <path d="M186.857 177.605C186.731 177.604 186.607 177.628 186.491 177.677C186.374 177.726 186.269 177.797 186.182 177.888C186.094 177.978 186.026 178.085 185.98 178.203C185.935 178.32 185.915 178.446 185.92 178.572L186.107 183.809C186.116 184.067 186.225 184.312 186.411 184.492C186.596 184.672 186.844 184.774 187.103 184.776H193.393C193.519 184.777 193.643 184.752 193.76 184.704C193.876 184.655 193.981 184.583 194.069 184.493C194.156 184.403 194.225 184.295 194.27 184.178C194.315 184.06 194.335 183.935 194.331 183.809L194.143 178.572C194.132 178.313 194.022 178.068 193.835 177.888C193.648 177.708 193.4 177.607 193.14 177.605H186.857Z" fill="var(--sapContent_Illustrative_Color6)"/>
39
+ <path d="M202.828 177.627C202.703 177.627 202.578 177.652 202.463 177.701C202.347 177.75 202.242 177.821 202.155 177.911C202.067 178.002 201.999 178.108 201.953 178.226C201.908 178.343 201.887 178.468 201.891 178.593L202.049 183.809C202.06 184.068 202.171 184.313 202.357 184.493C202.544 184.673 202.793 184.774 203.052 184.775H209.299C209.425 184.776 209.549 184.75 209.665 184.701C209.78 184.653 209.885 184.581 209.972 184.491C210.06 184.401 210.128 184.294 210.174 184.177C210.219 184.059 210.241 183.934 210.237 183.809L210.049 178.564C210.038 178.307 209.929 178.063 209.744 177.883C209.559 177.703 209.312 177.601 209.054 177.598L202.828 177.627Z" fill="var(--sapContent_Illustrative_Color6)"/>
40
+ <path d="M219.145 177.8C219.019 177.799 218.895 177.823 218.779 177.872C218.663 177.92 218.559 177.992 218.472 178.083C218.384 178.173 218.317 178.28 218.272 178.398C218.228 178.516 218.209 178.641 218.214 178.766L218.395 184.011C218.408 184.269 218.518 184.513 218.705 184.693C218.891 184.872 219.139 184.974 219.397 184.978H225.652C225.777 184.978 225.901 184.952 226.016 184.903C226.131 184.854 226.236 184.783 226.323 184.692C226.41 184.602 226.477 184.495 226.522 184.378C226.566 184.261 226.587 184.136 226.582 184.011L226.402 178.766C226.391 178.507 226.28 178.263 226.094 178.083C225.907 177.903 225.658 177.801 225.399 177.8H219.145Z" fill="var(--sapContent_Illustrative_Color6)"/>
41
+ <path d="M319.465 82.1876C319.215 81.8686 318.887 81.6276 318.518 81.4902C318.145 81.3878 317.752 81.3878 317.379 81.4902L308.319 83.1515C308.008 83.2094 307.712 83.3351 307.45 83.5207C307.182 83.6996 306.952 83.9363 306.776 84.2154C306.6 84.4945 306.48 84.8098 306.426 85.141C306.368 85.4732 306.368 85.8138 306.426 86.146C306.498 86.6575 306.721 87.1315 307.064 87.4996C307.311 87.7699 307.615 87.974 307.95 88.0953C308.286 88.2165 308.644 88.2514 308.995 88.197L318.055 86.5357C318.457 86.4687 318.837 86.292 319.156 86.0229C319.463 85.743 319.696 85.3823 319.832 84.9769C319.992 84.5257 320.039 84.0379 319.967 83.5617C319.912 83.066 319.739 82.5932 319.465 82.1876Z" fill="var(--sapContent_Illustrative_Color5)"/>
42
+ <path d="M285.15 45.5499C284.891 45.4517 284.616 45.411 284.342 45.4301C284.064 45.4534 283.795 45.542 283.553 45.6896C283.317 45.8329 283.111 46.0252 282.946 46.2549C282.782 46.4846 282.662 46.747 282.595 47.0267L280.171 55.9077C280.105 56.2366 280.105 56.5766 280.171 56.9056C280.202 57.2358 280.298 57.5555 280.453 57.8435C280.607 58.1343 280.819 58.3862 281.073 58.582C281.318 58.7864 281.599 58.9358 281.9 59.021H282.275C282.751 59.0958 283.235 58.9744 283.628 58.6817C284.021 58.3945 284.297 57.9593 284.399 57.4644L286.822 48.5834C286.919 48.2683 286.951 47.9348 286.916 47.6055C286.877 47.2772 286.781 46.9593 286.635 46.6675C286.481 46.382 286.277 46.1311 286.033 45.9291C285.768 45.7368 285.467 45.6074 285.15 45.5499Z" fill="var(--sapContent_Illustrative_Color5)"/>
43
+ <path d="M307.154 57.0975C306.853 57.0936 306.553 57.1417 306.266 57.24C305.985 57.3585 305.725 57.5234 305.493 57.7286L295.47 67.3785C295.027 67.8133 294.757 68.4105 294.717 69.0478C294.674 69.6931 294.875 70.3301 295.277 70.819C295.643 71.2663 296.151 71.5562 296.706 71.6334C297.025 71.7048 297.354 71.7048 297.672 71.6334C297.978 71.5246 298.261 71.3514 298.502 71.1244L308.525 61.4949C308.976 61.0547 309.252 60.451 309.298 59.8052C309.33 59.1676 309.129 58.5414 308.738 58.0544C308.335 57.5638 307.767 57.2573 307.154 57.1993V57.0975Z" fill="var(--sapContent_Illustrative_Color5)"/>
44
+ </svg>
45
+ `;
@@ -0,0 +1,10 @@
1
+ export default `<svg width="320" height="209" viewBox="0 0 320 209" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-SimpleCheckMark">
2
+ <path d="M173.081 0H33.2126C14.8698 0 0 14.8979 0 33.2753V33.28C0 51.6574 14.8698 66.5553 33.2126 66.5553H173.081C191.424 66.5553 206.294 51.6574 206.294 33.28V33.2753C206.294 14.8979 191.424 0 173.081 0Z" fill="var(--sapContent_Illustrative_Color7)"/>
3
+ <path d="M286.787 27.4795H146.919C128.576 27.4795 113.706 42.3773 113.706 60.7548V60.7595C113.706 79.1369 128.576 94.0348 146.919 94.0348H286.787C305.13 94.0348 320 79.1369 320 60.7595V60.7548C320 42.3773 305.13 27.4795 286.787 27.4795Z" fill="var(--sapContent_Illustrative_Color7)"/>
4
+ <path d="M171.106 115.17H50.1883C34.29 115.17 21.4019 128.083 21.4019 144.011V144.115C21.4019 160.043 34.29 172.956 50.1883 172.956H171.106C187.004 172.956 199.892 160.043 199.892 144.115V144.011C199.892 128.083 187.004 115.17 171.106 115.17Z" fill="var(--sapContent_Illustrative_Color7)"/>
5
+ <path d="M224.586 150.929H103.669C87.7707 150.929 74.8826 163.842 74.8826 179.77V179.874C74.8826 195.802 87.7707 208.714 103.669 208.714H224.586C240.485 208.714 253.373 195.802 253.373 179.874V179.77C253.373 163.842 240.485 150.929 224.586 150.929Z" fill="var(--sapContent_Illustrative_Color7)"/>
6
+ <path d="M174.76 160.17C203.588 160.17 226.957 136.757 226.957 107.875C226.957 78.9929 203.588 55.5796 174.76 55.5796C145.933 55.5796 122.563 78.9929 122.563 107.875C122.563 136.757 145.933 160.17 174.76 160.17Z" fill="var(--sapContent_Illustrative_Color8)"/>
7
+ <path d="M174.76 32.9929C133.65 32.9929 100.014 66.6923 100.014 107.88C100.014 149.068 133.65 182.762 174.76 182.762C215.871 182.762 249.506 149.068 249.506 107.88C249.506 66.6923 215.875 32.9929 174.76 32.9929ZM209.892 90.6556L165.043 135.566C164.368 136.276 163.556 136.842 162.657 137.228C161.757 137.614 160.789 137.814 159.81 137.814C158.831 137.814 157.863 137.614 156.963 137.228C156.064 136.842 155.252 136.276 154.577 135.566L139.629 120.609C138.24 119.218 137.46 117.332 137.46 115.365C137.459 113.398 138.239 111.512 139.626 110.121C141.014 108.73 142.897 107.948 144.86 107.948C146.823 107.947 148.706 108.728 150.094 110.118L159.812 119.855L199.412 80.1702C200.8 78.7798 202.683 77.9986 204.645 77.9986C206.608 77.9986 208.49 78.7798 209.878 80.1702C211.266 81.5607 212.046 83.4465 212.046 85.4129C212.046 87.3793 211.266 89.2652 209.878 90.6556H209.892Z" fill="var(--sapContent_Illustrative_Color12)"/>
8
+ <path d="M175.028 195.618C126.741 195.618 87.4648 156.258 87.4648 107.879C87.4648 59.5004 126.741 20.1365 175.028 20.1365C223.316 20.1365 262.606 59.4957 262.606 107.879C262.606 156.263 223.316 195.618 175.028 195.618ZM175.028 24.8349C129.328 24.8207 92.1403 62.0876 92.1403 107.879C92.1403 153.671 129.328 190.924 175.028 190.924C220.729 190.924 257.917 153.666 257.917 107.879C257.917 62.0923 220.734 24.8207 175.028 24.8207V24.8349Z" fill="var(--sapContent_Illustrative_Color12)"/>
9
+ </svg>
10
+ `;
@@ -0,0 +1,23 @@
1
+ export default `<svg width="320" height="233" viewBox="0 0 320 233" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-SimpleConnection">
2
+ <path d="M130.574 146.733H33.9602C18.1944 146.733 5.41357 159.514 5.41357 175.28C5.41357 191.046 18.1944 203.827 33.9602 203.827H130.574C146.339 203.827 159.12 191.046 159.12 175.28C159.12 159.514 146.339 146.733 130.574 146.733Z" fill="var(--sapContent_Illustrative_Color7)"/>
3
+ <path d="M165.746 175.067H69.1331C53.3672 175.067 40.5864 187.848 40.5864 203.613C40.5864 219.379 53.3672 232.16 69.1331 232.16H165.746C181.512 232.16 194.293 219.379 194.293 203.613C194.293 187.848 181.512 175.067 165.746 175.067Z" fill="var(--sapContent_Illustrative_Color7)"/>
4
+ <path d="M291.453 96.1198H194.84C179.074 96.1198 166.293 108.901 166.293 124.666C166.293 140.432 179.074 153.213 194.84 153.213H291.453C307.219 153.213 320 140.432 320 124.666C320 108.901 307.219 96.1198 291.453 96.1198Z" fill="var(--sapContent_Illustrative_Color7)"/>
5
+ <path d="M219.453 44H37.8267C16.9356 44 0 60.9356 0 81.8267V81.84C0 102.731 16.9356 119.667 37.8267 119.667H219.453C240.344 119.667 257.28 102.731 257.28 81.84V81.8267C257.28 60.9356 240.344 44 219.453 44Z" fill="var(--sapContent_Illustrative_Color7)"/>
6
+ <g clip-path="url(#clip0_291_428)">
7
+ <path d="M150.893 110.92H176.493C178.261 110.92 179.693 109.487 179.693 107.72C179.693 105.953 178.261 104.52 176.493 104.52H150.893C149.126 104.52 147.693 105.953 147.693 107.72C147.693 109.487 149.126 110.92 150.893 110.92Z" fill="var(--sapContent_Illustrative_Color3)"/>
8
+ <path d="M107.173 207.973C106.445 207.977 105.738 207.728 105.173 207.267C96.6268 200.387 92.5735 192.4 93.4535 184.147C94.7868 171.32 105.8 163.453 126.053 160.787C140.84 158.84 155.733 159.213 170.133 159.573C175.147 159.693 180.347 159.827 185.44 159.853C189.44 159.853 193.44 160.067 197.28 160.253C210.4 160.867 223.947 161.52 235.813 155.653C239.875 153.611 243.453 150.723 246.307 147.184C249.161 143.644 251.225 139.536 252.36 135.133C253.712 130.42 254.054 125.475 253.365 120.62C252.676 115.765 250.97 111.111 248.36 106.96L248.013 106.427C244.013 100.293 238.413 97.6533 229.347 97.5999C228.498 97.5999 227.684 97.2628 227.084 96.6627C226.484 96.0626 226.147 95.2487 226.147 94.4C226.147 93.5513 226.484 92.7373 227.084 92.1372C227.684 91.5371 228.498 91.2 229.347 91.2C240.707 91.2666 248.12 94.88 253.347 102.92L253.707 103.48C256.808 108.385 258.842 113.888 259.676 119.631C260.51 125.374 260.125 131.229 258.547 136.813C257.172 142.086 254.687 147.005 251.259 151.24C247.831 155.476 243.538 158.93 238.667 161.373C225.333 167.96 210.92 167.28 196.987 166.613C193.173 166.44 189.213 166.253 185.413 166.227C180.253 166.227 175.04 166.067 169.987 165.947C155.827 165.587 141.187 165.227 126.907 167.107C109.72 169.373 100.867 175.107 99.8268 184.8C99.1735 190.867 102.333 196.8 109.16 202.253C109.677 202.669 110.051 203.235 110.233 203.872C110.414 204.51 110.392 205.189 110.171 205.814C109.95 206.439 109.54 206.98 108.999 207.362C108.457 207.744 107.81 207.948 107.147 207.947L107.173 207.973Z" fill="var(--sapContent_Illustrative_Color4)"/>
9
+ <path d="M148.533 139.72H119.733V47.9733H148.533C148.954 47.9733 149.37 48.056 149.758 48.2168C150.146 48.3777 150.499 48.6134 150.796 48.9105C151.093 49.2077 151.329 49.5604 151.49 49.9487C151.651 50.3369 151.733 50.7531 151.733 51.1733C151.733 51.5935 151.651 52.0096 151.49 52.3978C151.329 52.7861 151.093 53.1388 150.796 53.436C150.499 53.7331 150.146 53.9689 149.758 54.1297C149.37 54.2905 148.954 54.3733 148.533 54.3733H126.08V133.307H148.48C149.329 133.307 150.143 133.644 150.743 134.244C151.343 134.844 151.68 135.658 151.68 136.507C151.68 137.355 151.343 138.169 150.743 138.769C150.143 139.369 149.329 139.707 148.48 139.707L148.533 139.72Z" fill="var(--sapContent_Illustrative_Color5)"/>
10
+ <path d="M150.893 84.2534H176.493C178.261 84.2534 179.693 82.8207 179.693 81.0534C179.693 79.2861 178.261 77.8534 176.493 77.8534H150.893C149.126 77.8534 147.693 79.2861 147.693 81.0534C147.693 82.8207 149.126 84.2534 150.893 84.2534Z" fill="var(--sapContent_Illustrative_Color3)"/>
11
+ <path d="M175.813 127.987V59.7334C175.813 57.966 174.381 56.5333 172.614 56.5333C170.846 56.5333 169.413 57.966 169.413 59.7334V127.987C169.413 129.754 170.846 131.187 172.614 131.187C174.381 131.187 175.813 129.754 175.813 127.987Z" fill="var(--sapContent_Illustrative_Color9)"/>
12
+ <path d="M204.747 123.72H175.414V65.0533H204.747C212.527 65.0533 219.988 68.1438 225.489 73.6449C230.99 79.146 234.08 86.607 234.08 94.3867C234.08 102.166 230.99 109.627 225.489 115.128C219.988 120.63 212.527 123.72 204.747 123.72V123.72Z" fill="var(--sapContent_Illustrative_Color9)"/>
13
+ <path d="M234.16 94.2534C234.172 95.5517 234.083 96.8489 233.893 98.1333C232.954 91.092 229.491 84.6308 224.148 79.9497C218.804 75.2685 211.944 72.6854 204.84 72.6801H175.507V64.92H204.84C212.618 64.9236 220.075 68.0156 225.573 73.5162C231.072 79.0169 234.16 86.476 234.16 94.2534V94.2534Z" fill="var(--sapContent_Illustrative_Color17)"/>
14
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M112.682 210.062C113.737 208.554 115.816 208.187 117.324 209.242C119.53 210.786 120.577 211.502 121.627 212.221L121.629 212.223C122.692 212.95 123.759 213.68 125.991 215.242C127.499 216.298 127.866 218.376 126.811 219.884C125.756 221.393 123.677 221.76 122.169 220.705C119.963 219.161 118.916 218.444 117.866 217.726L117.864 217.724C116.801 216.997 115.734 216.266 113.502 214.705C111.994 213.649 111.627 211.571 112.682 210.062Z" fill="var(--sapContent_Illustrative_Color4)"/>
15
+ </g>
16
+ <path d="M235.342 0.103308L205.474 25.2374C205.418 25.2869 205.376 25.3504 205.353 25.4212C205.33 25.4921 205.327 25.5677 205.344 25.6402C205.361 25.7127 205.397 25.7794 205.449 25.8333C205.501 25.8871 205.566 25.9262 205.639 25.9464L220.583 29.9204C220.643 29.9361 220.698 29.9647 220.745 30.0042C220.792 30.0437 220.83 30.093 220.855 30.1487C220.881 30.2044 220.893 30.265 220.892 30.326C220.891 30.3871 220.876 30.4471 220.848 30.5018L210.372 51.3996C210.327 51.4845 210.314 51.5821 210.335 51.6756C210.355 51.7691 210.408 51.8526 210.484 51.9118C210.56 51.971 210.654 52.0021 210.75 51.9999C210.847 51.9976 210.94 51.9621 211.013 51.8994L241.188 26.8362C241.246 26.7876 241.289 26.7244 241.312 26.6535C241.336 26.5826 241.34 26.5066 241.323 26.4337C241.307 26.3608 241.27 26.2938 241.218 26.2398C241.166 26.1858 241.1 26.1469 241.027 26.1272L225.843 22.1887C225.783 22.1725 225.728 22.1434 225.681 22.1036C225.634 22.0638 225.596 22.0143 225.57 21.9585C225.545 21.9027 225.532 21.842 225.532 21.7807C225.533 21.7194 225.547 21.659 225.574 21.6038L235.986 0.599618C236.03 0.514348 236.043 0.416389 236.023 0.322707C236.002 0.229026 235.948 0.145521 235.872 0.086626C235.795 0.027731 235.701 -0.00284063 235.604 0.000207805C235.507 0.00325624 235.414 0.039722 235.342 0.103308Z" fill="var(--sapContent_Illustrative_Color3)"/>
17
+ <defs>
18
+ <clipPath id="clip0_291_428">
19
+ <rect width="166.747" height="173.307" fill="white" transform="translate(93.3335 48)"/>
20
+ </clipPath>
21
+ </defs>
22
+ </svg>
23
+ `;
@@ -0,0 +1,21 @@
1
+ export default `<svg width="320" height="214" viewBox="0 0 320 214" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-SimpleEmptyDoc">
2
+ <path d="M130.574 120.067H33.9602C18.1944 120.067 5.41357 132.848 5.41357 148.613C5.41357 164.379 18.1944 177.16 33.9602 177.16H130.574C146.339 177.16 159.12 164.379 159.12 148.613C159.12 132.848 146.339 120.067 130.574 120.067Z" fill="var(--sapContent_Illustrative_Color7)"/>
3
+ <path d="M165.746 148.4H69.1331C53.3672 148.4 40.5864 161.181 40.5864 176.947C40.5864 192.713 53.3672 205.493 69.1331 205.493H165.746C181.512 205.493 194.293 192.713 194.293 176.947C194.293 161.181 181.512 148.4 165.746 148.4Z" fill="var(--sapContent_Illustrative_Color7)"/>
4
+ <path d="M291.453 69.4535H194.84C179.074 69.4535 166.293 82.2342 166.293 98.0001C166.293 113.766 179.074 126.547 194.84 126.547H291.453C307.219 126.547 320 113.766 320 98.0001C320 82.2342 307.219 69.4535 291.453 69.4535Z" fill="var(--sapContent_Illustrative_Color7)"/>
5
+ <path d="M219.453 17.3333H37.8267C16.9356 17.3333 0 34.2689 0 55.16V55.1733C0 76.0644 16.9356 93 37.8267 93H219.453C240.344 93 257.28 76.0644 257.28 55.1733V55.16C257.28 34.2689 240.344 17.3333 219.453 17.3333Z" fill="var(--sapContent_Illustrative_Color7)"/>
6
+ <g clip-path="url(#clip0_101_5425)">
7
+ <path d="M148.033 29.4081L122.554 182.983C121.582 188.839 125.542 194.373 131.397 195.344L239.117 213.216C244.973 214.187 250.507 210.228 251.478 204.373L276.958 50.7977C277.929 44.9422 273.97 39.4078 268.114 38.4363L160.395 20.5648C154.539 19.5933 149.005 23.5526 148.033 29.4081Z" fill="var(--sapContent_Illustrative_Color3)"/>
8
+ <path d="M236.782 27.9563H132.091C126.155 27.9563 121.343 32.7681 121.343 38.7036V188.279C121.343 194.214 126.155 199.026 132.091 199.026H236.782C242.718 199.026 247.53 194.214 247.53 188.279V38.7036C247.53 32.7681 242.718 27.9563 236.782 27.9563Z" fill="var(--sapContent_Illustrative_Color8)"/>
9
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M132.09 29.2897C126.891 29.2897 122.676 33.5044 122.676 38.7036V188.279C122.676 193.478 126.891 197.693 132.09 197.693H236.782C241.981 197.693 246.196 193.478 246.196 188.279V38.7036C246.196 33.5044 241.981 29.2897 236.782 29.2897H132.09ZM120.01 38.7036C120.01 32.0317 125.418 26.623 132.09 26.623H236.782C243.454 26.623 248.863 32.0317 248.863 38.7036V188.279C248.863 194.951 243.454 200.359 236.782 200.359H132.09C125.418 200.359 120.01 194.951 120.01 188.279V38.7036Z" fill="var(--sapContent_Illustrative_Color4)"/>
10
+ <path d="M313.8 37.3468C313.544 37.0409 313.211 36.8096 312.835 36.6772C312.459 36.5449 312.055 36.5163 311.664 36.5945L302.341 38.2066C302.021 38.2642 301.717 38.3854 301.446 38.563C301.174 38.7407 300.942 38.9711 300.761 39.2406C300.581 39.5101 300.456 39.8131 300.395 40.1317C300.334 40.4502 300.338 40.7778 300.406 41.0949C300.473 41.5921 300.698 42.0545 301.05 42.4129C301.401 42.7712 301.858 43.0064 302.354 43.0831C302.594 43.123 302.839 43.123 303.08 43.0831L312.403 41.471C312.828 41.4171 313.23 41.2468 313.564 40.979C313.898 40.7111 314.152 40.356 314.297 39.953C314.447 39.5127 314.48 39.0411 314.393 38.5842C314.305 38.1274 314.101 37.701 313.8 37.3468Z" fill="var(--sapContent_Illustrative_Color5)"/>
11
+ <path d="M278.361 0.0940344C278.089 -0.00461362 277.799 -0.0443371 277.511 -0.0225064C277.222 -0.000675633 276.942 0.0822129 276.688 0.220666C276.434 0.359119 276.212 0.549975 276.037 0.78059C275.863 1.01121 275.739 1.27631 275.674 1.55835L273.108 10.4114C273.017 10.7299 272.989 11.0634 273.028 11.3925C273.066 11.7217 273.169 12.0399 273.332 12.3287C273.494 12.6175 273.713 12.8711 273.974 13.0747C274.236 13.2783 274.535 13.4279 274.855 13.5147C274.986 13.5545 275.121 13.5815 275.258 13.5953C275.757 13.6621 276.263 13.5409 276.678 13.2554C277.092 12.9699 277.386 12.5404 277.501 12.0504L280.067 3.19731C280.16 2.88153 280.189 2.55059 280.153 2.2235C280.117 1.8964 280.017 1.57959 279.859 1.29125C279.7 1.00291 279.486 0.748716 279.229 0.543266C278.972 0.337815 278.677 0.185147 278.361 0.0940344Z" fill="var(--sapContent_Illustrative_Color5)"/>
12
+ <path d="M301.266 12.0907C300.956 12.0714 300.645 12.1151 300.352 12.2189C300.059 12.3228 299.789 12.4848 299.56 12.6952L289.243 22.0991C288.784 22.5227 288.506 23.1075 288.469 23.7311C288.431 24.3546 288.636 24.9685 289.041 25.4442C289.415 25.8873 289.943 26.1708 290.519 26.2368C290.852 26.2763 291.19 26.244 291.51 26.142C291.83 26.0401 292.124 25.8708 292.373 25.6457L302.69 16.2418C303.15 15.8182 303.427 15.2334 303.465 14.6098C303.502 13.9863 303.297 13.3724 302.892 12.8967C302.691 12.6578 302.443 12.463 302.163 12.3243C301.883 12.1856 301.578 12.1061 301.266 12.0907Z" fill="var(--sapContent_Illustrative_Color5)"/>
13
+ <path d="M184.443 83.2645C178.465 83.2645 172.621 85.0373 167.65 88.3586C162.68 91.68 158.805 96.4007 156.518 101.924C154.23 107.447 153.631 113.525 154.798 119.388C155.964 125.252 158.843 130.637 163.07 134.865C167.297 139.092 172.683 141.971 178.547 143.137C184.41 144.303 190.488 143.705 196.011 141.417C201.534 139.129 206.255 135.255 209.576 130.284C212.897 125.314 214.67 119.469 214.67 113.491C214.645 105.482 211.453 97.8083 205.79 92.1451C200.126 86.4819 192.452 83.2893 184.443 83.2645ZM184.443 131.627C183.544 131.63 182.665 131.365 181.916 130.868C181.167 130.37 180.583 129.661 180.238 128.83C179.892 128 179.801 127.086 179.976 126.204C180.151 125.322 180.583 124.512 181.219 123.876C181.855 123.24 182.665 122.807 183.548 122.632C184.43 122.458 185.344 122.549 186.174 122.894C187.004 123.239 187.713 123.823 188.211 124.572C188.709 125.321 188.973 126.201 188.971 127.1C188.94 128.291 188.453 129.425 187.611 130.267C186.768 131.11 185.635 131.597 184.443 131.627ZM190.489 115.305C190.005 115.573 189.334 115.99 188.729 116.285C188.389 116.431 188.065 116.611 187.762 116.823L187.466 117.118C187.34 117.819 186.964 118.45 186.409 118.895C185.853 119.339 185.155 119.567 184.443 119.537C184.04 119.56 183.637 119.498 183.26 119.354C182.882 119.211 182.54 118.989 182.254 118.703C181.969 118.418 181.747 118.075 181.603 117.698C181.46 117.32 181.397 116.917 181.421 116.514C181.421 114.405 182.455 113.491 184.86 111.449C184.86 111.449 185.532 110.952 185.975 110.683C186.418 110.415 187.103 110.079 187.466 109.864C189.575 108.655 190.489 107.755 190.489 105.632C190.489 103.214 187.802 101.105 184.443 101.105C181.085 101.105 178.398 103.214 178.398 105.632C178.398 106.434 178.08 107.203 177.513 107.77C176.946 108.336 176.177 108.655 175.375 108.655C174.574 108.655 173.805 108.336 173.238 107.77C172.671 107.203 172.353 106.434 172.353 105.632C172.353 99.5869 177.794 95.0596 184.443 95.0596C191.093 95.0596 196.534 99.5869 196.534 105.632C196.534 110.173 194.412 112.887 190.489 115.305Z" fill="var(--sapContent_Illustrative_Color14)"/>
14
+ </g>
15
+ <defs>
16
+ <clipPath id="clip0_101_5425">
17
+ <rect width="194.391" height="213.333" fill="var(--sapContent_Illustrative_Color8)" transform="translate(120)"/>
18
+ </clipPath>
19
+ </defs>
20
+ </svg>
21
+ `;
@@ -0,0 +1,14 @@
1
+ export default `<svg width="320" height="203" viewBox="0 0 320 203" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-SimpleEmptyList">
2
+ <path d="M130.573 102.734H33.96C26.3889 102.734 19.128 105.741 13.7745 111.095C8.42096 116.448 5.41333 123.709 5.41333 131.28C5.41333 138.851 8.42096 146.112 13.7745 151.466C19.128 156.819 26.3889 159.827 33.96 159.827H130.573C134.322 159.827 138.034 159.089 141.498 157.654C144.961 156.219 148.108 154.117 150.759 151.466C153.41 148.815 155.513 145.668 156.947 142.205C158.382 138.741 159.12 135.029 159.12 131.28C159.12 127.531 158.382 123.819 156.947 120.356C155.513 116.892 153.41 113.745 150.759 111.095C148.108 108.444 144.961 106.341 141.498 104.907C138.034 103.472 134.322 102.734 130.573 102.734V102.734Z" fill="var(--sapContent_Illustrative_Color7)"/>
3
+ <path d="M165.747 131.067H69.1333C61.5623 131.067 54.3013 134.074 48.9478 139.428C43.5942 144.782 40.5867 152.043 40.5867 159.614C40.5867 167.185 43.5942 174.446 48.9478 179.799C54.3013 185.153 61.5623 188.16 69.1333 188.16H165.747C173.318 188.16 180.579 185.153 185.932 179.799C191.286 174.446 194.293 167.185 194.293 159.614C194.293 152.043 191.286 144.782 185.932 139.428C180.579 134.074 173.318 131.067 165.747 131.067V131.067Z" fill="var(--sapContent_Illustrative_Color7)"/>
4
+ <path d="M291.453 52.12H194.84C191.091 52.12 187.379 52.8584 183.916 54.293C180.452 55.7276 177.305 57.8303 174.654 60.4811C172.004 63.1319 169.901 66.2789 168.466 69.7423C167.032 73.2058 166.293 76.9179 166.293 80.6667C166.293 84.4155 167.032 88.1276 168.466 91.591C169.901 95.0545 172.004 98.2015 174.654 100.852C177.305 103.503 180.452 105.606 183.916 107.04C187.379 108.475 191.091 109.213 194.84 109.213H291.453C299.024 109.213 306.285 106.206 311.639 100.852C316.992 95.4987 320 88.2378 320 80.6667C320 73.0956 316.992 65.8347 311.639 60.4811C306.285 55.1276 299.024 52.12 291.453 52.12V52.12Z" fill="var(--sapContent_Illustrative_Color7)"/>
5
+ <path d="M219.454 3.76053e-05H37.8267C27.7944 3.76053e-05 18.1731 3.98534 11.0792 11.0792C3.98531 18.1731 0 27.7945 0 37.8267V37.8267C0 47.859 3.98531 57.4804 11.0792 64.5743C18.1731 71.6681 27.7944 75.6534 37.8267 75.6534H219.454C224.424 75.6605 229.348 74.6877 233.943 72.7907C238.537 70.8937 242.713 68.1097 246.231 64.5978C249.749 61.086 252.54 56.9152 254.445 52.324C256.35 47.7327 257.332 42.8109 257.334 37.8401C257.335 32.867 256.356 27.9424 254.453 23.348C252.549 18.7536 249.759 14.5797 246.24 11.0651C242.722 7.55042 238.545 4.76404 233.949 2.86537C229.352 0.966707 224.427 -0.00697446 219.454 3.76053e-05V3.76053e-05Z" fill="var(--sapContent_Illustrative_Color7)"/>
6
+ <path d="M217.107 180.253V47.9066C217.146 45.4448 216.211 43.0671 214.505 41.2915C212.8 39.5158 210.462 38.4861 208 38.4266H124.147C121.501 38.4266 118.881 38.9477 116.437 39.9602C113.993 40.9727 111.772 42.4567 109.901 44.3275C108.03 46.1983 106.546 48.4192 105.534 50.8635C104.521 53.3078 104 55.9276 104 58.5733V182.573C104.018 187.906 106.148 193.015 109.924 196.781C113.699 200.547 118.814 202.663 124.147 202.667H236.893V202.52C231.443 201.871 226.419 199.247 222.773 195.143C219.126 191.04 217.111 185.743 217.107 180.253V180.253Z" fill="var(--sapContent_Illustrative_Color6)"/>
7
+ <path d="M215.774 41.4667V173.814C215.774 179.629 217.909 185.242 221.774 189.587C223.695 191.772 226.005 193.58 228.587 194.92H124.147C119.157 194.913 114.374 192.927 110.847 189.397C107.32 185.868 105.337 181.083 105.333 176.094V52.0934C105.343 48.3807 106.451 44.7538 108.517 41.6693C110.584 38.5849 113.517 36.1809 116.947 34.76C119.232 33.822 121.677 33.3374 124.147 33.3334H208C210.101 33.3996 212.091 34.29 213.541 35.8119C214.991 37.3339 215.783 39.3652 215.747 41.4667H215.774Z" fill="var(--sapContent_Illustrative_Color8)"/>
8
+ <path d="M228.587 196.24H124.147C118.805 196.237 113.682 194.113 109.905 190.335C106.127 186.558 104.004 181.436 104 176.094V52.0934C104.014 46.7594 106.143 41.6487 109.92 37.882C113.696 34.1153 118.813 32 124.147 32H208C210.457 32.0664 212.788 33.0992 214.488 34.874C216.188 36.6489 217.12 39.0227 217.08 41.48V173.827C217.073 177.934 218.198 181.963 220.332 185.473C222.465 188.982 225.524 191.836 229.173 193.72L228.587 196.24ZM208 34.6667H124.147C119.512 34.6702 115.068 36.513 111.79 39.7904C108.513 43.0678 106.67 47.5118 106.667 52.1467V176.147C106.667 178.443 107.119 180.718 107.999 182.839C108.878 184.961 110.167 186.888 111.791 188.512C113.416 190.135 115.344 191.422 117.467 192.3C119.589 193.178 121.863 193.629 124.16 193.627H224C222.815 192.702 221.717 191.671 220.72 190.547C216.641 185.953 214.388 180.023 214.387 173.88V41.4534C214.42 39.7121 213.77 38.0271 212.576 36.7587C211.383 35.4904 209.74 34.7395 208 34.6667Z" fill="var(--sapContent_Illustrative_Color4)"/>
9
+ <path d="M160.547 67.6934H125.027C124.445 67.6934 123.868 67.8084 123.33 68.0317C122.792 68.255 122.303 68.5822 121.892 68.9947C121.481 69.4071 121.155 69.8967 120.933 70.4353C120.712 70.9739 120.599 71.551 120.6 72.1334V72.1334C120.599 72.7159 120.712 73.2929 120.933 73.8315C121.155 74.3701 121.481 74.8597 121.892 75.2722C122.303 75.6847 122.792 76.0119 123.33 76.2352C123.868 76.4585 124.445 76.5734 125.027 76.5734H160.547C161.725 76.5734 162.854 76.1056 163.687 75.273C164.519 74.4403 164.987 73.311 164.987 72.1334C164.987 70.9559 164.519 69.8265 163.687 68.9939C162.854 68.1612 161.725 67.6934 160.547 67.6934Z" fill="var(--sapContent_Illustrative_Color3)"/>
10
+ <path d="M241.68 32.5467C241.496 32.3225 241.25 32.1559 240.974 32.0667C240.695 31.9867 240.399 31.9867 240.12 32.0667L233.334 33.2401C233.1 33.276 232.877 33.3625 232.68 33.4934C232.48 33.6224 232.308 33.7902 232.174 33.9867C232.044 34.1857 231.954 34.4074 231.907 34.6401C231.86 34.8688 231.86 35.1046 231.907 35.3334C231.954 35.6956 232.118 36.0326 232.374 36.2934C232.629 36.5615 232.967 36.7353 233.334 36.7867C233.506 36.8133 233.681 36.8133 233.854 36.7867L240.64 35.6134C240.941 35.5633 241.225 35.4396 241.467 35.2534C241.697 35.0573 241.872 34.8045 241.974 34.5201C242.095 34.2015 242.132 33.857 242.08 33.5201C242.04 33.1649 241.901 32.8279 241.68 32.5467V32.5467Z" fill="var(--sapContent_Illustrative_Color5)"/>
11
+ <path d="M215.907 5.42675C215.712 5.35059 215.502 5.31872 215.294 5.33341C215.083 5.35277 214.878 5.41638 214.694 5.52008C214.508 5.61937 214.345 5.75548 214.214 5.92008C214.085 6.09018 213.994 6.28559 213.947 6.49341L212.067 12.9334C212.021 13.1712 212.021 13.4157 212.067 13.6534C212.097 13.8915 212.173 14.1213 212.292 14.3296C212.411 14.5378 212.57 14.7204 212.76 14.8668C212.952 15.0126 213.169 15.1211 213.4 15.1868C213.498 15.1984 213.596 15.1984 213.694 15.1868C214.058 15.2443 214.431 15.1583 214.734 14.9468C215.038 14.7399 215.252 14.4254 215.334 14.0668L217.2 7.62675C217.247 7.39351 217.247 7.15332 217.2 6.92008C217.176 6.68124 217.104 6.44983 216.987 6.24008C216.873 6.02976 216.719 5.84398 216.534 5.69341C216.341 5.57026 216.129 5.48013 215.907 5.42675V5.42675Z" fill="var(--sapContent_Illustrative_Color5)"/>
12
+ <path d="M232.533 14.1466C232.306 14.1352 232.079 14.1715 231.867 14.2533C231.657 14.3346 231.463 14.4519 231.293 14.5999L223.787 21.4533C223.45 21.7605 223.245 22.1854 223.213 22.64C223.191 23.0968 223.344 23.5449 223.64 23.8933C223.907 24.2168 224.29 24.4226 224.707 24.4666C224.948 24.5054 225.196 24.4825 225.427 24.4C225.662 24.3336 225.877 24.2099 226.053 24.04L233.56 17.1999C233.9 16.8895 234.105 16.4592 234.133 15.9999C234.153 15.7739 234.127 15.5461 234.056 15.3306C233.985 15.1151 233.871 14.9164 233.72 14.7466C233.576 14.5696 233.394 14.4282 233.187 14.3333C232.985 14.2234 232.762 14.1596 232.533 14.1466Z" fill="var(--sapContent_Illustrative_Color5)"/>
13
+ </svg>
14
+ `;
@@ -0,0 +1,14 @@
1
+ export default `<svg width="320" height="190" viewBox="0 0 320 190" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-SimpleError">
2
+ <path d="M130.573 102.733H33.96C18.1941 102.733 5.41333 115.514 5.41333 131.28C5.41333 147.046 18.1941 159.826 33.96 159.826H130.573C146.339 159.826 159.12 147.046 159.12 131.28C159.12 115.514 146.339 102.733 130.573 102.733Z" fill="var(--sapContent_Illustrative_Color7)"/>
3
+ <path d="M165.747 131.066H69.1333C53.3674 131.066 40.5867 143.847 40.5867 159.613C40.5867 175.379 53.3674 188.16 69.1333 188.16H165.747C181.513 188.16 194.293 175.379 194.293 159.613C194.293 143.847 181.513 131.066 165.747 131.066Z" fill="var(--sapContent_Illustrative_Color7)"/>
4
+ <path d="M291.453 52.1199H194.84C179.074 52.1199 166.293 64.9007 166.293 80.6665C166.293 96.4324 179.074 109.213 194.84 109.213H291.453C307.219 109.213 320 96.4324 320 80.6665C320 64.9007 307.219 52.1199 291.453 52.1199Z" fill="var(--sapContent_Illustrative_Color7)"/>
5
+ <path d="M219.453 0H37.8267C16.9356 0 0 16.9356 0 37.8267V37.84C0 58.7311 16.9356 75.6667 37.8267 75.6667H219.453C240.344 75.6667 257.28 58.7311 257.28 37.84V37.8267C257.28 16.9356 240.344 0 219.453 0Z" fill="var(--sapContent_Illustrative_Color7)"/>
6
+ <path d="M156.922 27.8166L134.752 161.443C133.769 167.37 137.777 172.972 143.704 173.955L236.642 189.375C242.569 190.358 248.171 186.35 249.155 180.423L271.324 46.7969C272.308 40.8698 268.3 35.2678 262.373 34.2844L169.434 18.8652C163.507 17.8818 157.905 21.8895 156.922 27.8166Z" fill="var(--sapContent_Illustrative_Color3)"/>
7
+ <path d="M234.574 25.1906H144.349C138.341 25.1906 133.47 30.0611 133.47 36.0692V166.11C133.47 172.118 138.341 176.989 144.349 176.989H234.574C240.582 176.989 245.452 172.118 245.452 166.11V36.0692C245.452 30.0611 240.582 25.1906 234.574 25.1906Z" fill="var(--sapContent_Illustrative_Color8)"/>
8
+ <path d="M234.574 178.348H144.349C141.103 178.348 137.99 177.059 135.695 174.764C133.4 172.469 132.11 169.356 132.11 166.11V36.0692C132.11 32.8233 133.4 29.7104 135.695 27.4153C137.99 25.1201 141.103 23.8307 144.349 23.8307H234.574C237.82 23.8307 240.932 25.1201 243.228 27.4153C245.523 29.7104 246.812 32.8233 246.812 36.0692V166.11C246.812 169.356 245.523 172.469 243.228 174.764C240.932 177.059 237.82 178.348 234.574 178.348ZM144.349 26.5504C141.824 26.5504 139.403 27.5532 137.618 29.3384C135.833 31.1235 134.83 33.5446 134.83 36.0692V166.11C134.83 168.634 135.833 171.056 137.618 172.841C139.403 174.626 141.824 175.629 144.349 175.629H234.574C237.098 175.629 239.519 174.626 241.304 172.841C243.09 171.056 244.092 168.634 244.092 166.11V36.0692C244.092 33.5446 243.09 31.1235 241.304 29.3384C239.519 27.5532 237.098 26.5504 234.574 26.5504H144.349Z" fill="var(--sapContent_Illustrative_Color4)"/>
9
+ <path d="M189.604 74.2668C184.305 74.2642 179.124 75.8334 174.716 78.7759C170.309 81.7184 166.873 85.9021 164.844 90.7977C162.815 95.6932 162.283 101.081 163.316 106.278C164.349 111.476 166.901 116.251 170.648 119.998C174.396 123.745 179.17 126.297 184.368 127.33C189.566 128.363 194.953 127.832 199.849 125.802C204.744 123.773 208.928 120.338 211.87 115.93C214.813 111.523 216.382 106.341 216.379 101.042C216.358 93.9473 213.53 87.1495 208.513 82.1329C203.497 77.1163 196.699 74.2884 189.604 74.2668ZM199.558 107.202C200.02 107.705 200.27 108.367 200.256 109.05C200.242 109.732 199.966 110.383 199.484 110.867C199.002 111.351 198.352 111.63 197.669 111.646C196.986 111.663 196.323 111.415 195.819 110.955L189.604 104.836L183.444 110.996C183.226 111.34 182.933 111.631 182.587 111.847C182.241 112.063 181.852 112.198 181.446 112.243C181.041 112.288 180.631 112.241 180.246 112.106C179.862 111.971 179.512 111.751 179.224 111.463C178.936 111.175 178.716 110.825 178.581 110.441C178.446 110.056 178.399 109.646 178.444 109.241C178.489 108.835 178.624 108.446 178.84 108.1C179.056 107.754 179.347 107.461 179.691 107.243L185.851 101.083L179.691 94.9227C179.427 94.6804 179.215 94.3873 179.068 94.0609C178.921 93.7345 178.841 93.3817 178.834 93.0236C178.826 92.6656 178.892 92.3098 179.026 91.9776C179.16 91.6455 179.359 91.344 179.613 91.0912C179.867 90.8385 180.169 90.6397 180.502 90.5069C180.834 90.3742 181.19 90.3101 181.548 90.3187C181.906 90.3273 182.259 90.4084 182.585 90.5569C182.911 90.7055 183.203 90.9185 183.444 91.1831L189.604 97.3432L195.764 91.1831C196.01 90.9376 196.301 90.7429 196.622 90.61C196.943 90.4771 197.287 90.4087 197.634 90.4087C197.981 90.4087 198.325 90.4771 198.646 90.61C198.967 90.7429 199.258 90.9376 199.504 91.1831C199.749 91.4287 199.944 91.7202 200.077 92.041C200.21 92.3618 200.278 92.7057 200.278 93.0529C200.278 93.4002 200.21 93.744 200.077 94.0648C199.944 94.3856 199.749 94.6771 199.504 94.9227L193.344 101.083L199.558 107.202Z" fill="var(--sapContent_Illustrative_Color11)"/>
10
+ <path d="M306.322 37.3994C306.066 37.0946 305.732 36.8649 305.356 36.7347C304.979 36.6045 304.575 36.5787 304.185 36.66L294.855 38.2733C294.534 38.3292 294.229 38.4494 293.956 38.6267C293.684 38.804 293.45 39.0346 293.269 39.3048C293.088 39.5749 292.964 39.8789 292.903 40.1984C292.843 40.5179 292.848 40.8463 292.919 41.1638C292.983 41.6622 293.208 42.1261 293.56 42.4851C293.912 42.8441 294.371 43.0788 294.868 43.1535C295.109 43.1863 295.353 43.1863 295.594 43.1535L304.924 41.5402C305.336 41.4774 305.724 41.3043 306.046 41.0392C306.368 40.7741 306.612 40.427 306.753 40.0345C306.917 39.5958 306.963 39.1219 306.888 38.6598C306.812 38.1976 306.617 37.7631 306.322 37.3994Z" fill="var(--sapContent_Illustrative_Color5)"/>
11
+ <path d="M270.911 0.132234C270.638 0.0335118 270.348 -0.00625681 270.06 0.0155903C269.771 0.0374374 269.49 0.120393 269.236 0.25895C268.982 0.397507 268.76 0.588506 268.585 0.819295C268.41 1.05008 268.286 1.3154 268.222 1.59764L265.64 10.4574C265.549 10.776 265.522 11.1098 265.562 11.439C265.601 11.7682 265.706 12.0862 265.87 12.3743C266.034 12.6624 266.254 12.9147 266.517 13.1166C266.78 13.3184 267.081 13.4656 267.402 13.5495C267.533 13.5893 267.668 13.6163 267.805 13.6302C268.305 13.7002 268.813 13.5802 269.228 13.294C269.644 13.0077 269.937 12.576 270.05 12.0841L272.618 3.23784C272.712 2.92184 272.743 2.59021 272.708 2.26226C272.673 1.93432 272.573 1.61662 272.414 1.32762C272.255 1.03861 272.041 0.784089 271.783 0.578869C271.524 0.373648 271.228 0.22183 270.911 0.132234Z" fill="var(--sapContent_Illustrative_Color5)"/>
12
+ <path d="M293.766 12.1246C293.454 12.1094 293.143 12.1563 292.85 12.2625C292.557 12.3686 292.288 12.532 292.058 12.7431L281.733 22.154C281.273 22.5802 280.995 23.1677 280.957 23.794C280.919 24.4203 281.125 25.0369 281.531 25.515C281.905 25.9585 282.434 26.2422 283.01 26.3082C283.342 26.3485 283.678 26.3164 283.996 26.2143C284.314 26.1122 284.606 25.9424 284.852 25.7167L295.177 16.3058C295.642 15.8832 295.925 15.2961 295.965 14.6688C296.005 14.0415 295.8 13.4232 295.392 12.9447C295.19 12.7056 294.942 12.5097 294.663 12.3688C294.383 12.2279 294.078 12.1448 293.766 12.1246Z" fill="var(--sapContent_Illustrative_Color5)"/>
13
+ </svg>
14
+ `;
@@ -0,0 +1,14 @@
1
+ export default `<svg width="321" height="213" viewBox="0 0 321 213" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-SimpleMagnifier">
2
+ <path d="M131.49 104.067H34.877C19.1111 104.067 6.33032 116.848 6.33032 132.613C6.33032 148.379 19.1111 161.16 34.877 161.16H131.49C147.256 161.16 160.037 148.379 160.037 132.613C160.037 116.848 147.256 104.067 131.49 104.067Z" fill="var(--sapContent_Illustrative_Color7)"/>
3
+ <path d="M166.664 132.4H70.0503C54.2844 132.4 41.5037 145.181 41.5037 160.947C41.5037 176.713 54.2844 189.493 70.0503 189.493H166.664C182.43 189.493 195.21 176.713 195.21 160.947C195.21 145.181 182.43 132.4 166.664 132.4Z" fill="var(--sapContent_Illustrative_Color7)"/>
4
+ <path d="M292.37 53.4535H195.757C179.991 53.4535 167.21 66.2343 167.21 82.0002C167.21 97.766 179.991 110.547 195.757 110.547H292.37C308.136 110.547 320.917 97.766 320.917 82.0002C320.917 66.2343 308.136 53.4535 292.37 53.4535Z" fill="var(--sapContent_Illustrative_Color7)"/>
5
+ <path d="M220.37 1.33337H38.7437C17.8526 1.33337 0.916992 18.269 0.916992 39.16V39.1734C0.916992 60.0645 17.8526 77 38.7437 77H220.37C241.261 77 258.197 60.0645 258.197 39.1734V39.16C258.197 18.269 241.261 1.33337 220.37 1.33337Z" fill="var(--sapContent_Illustrative_Color7)"/>
6
+ <path opacity="0.5" d="M144.415 120.507C176.744 120.507 202.89 93.8505 202.89 60.9032C202.89 27.956 176.715 1.29358 144.415 1.29358C112.114 1.29358 85.9275 27.9501 85.9275 60.9032C85.9275 93.8564 112.114 120.507 144.415 120.507Z" fill="var(--sapContent_Illustrative_Color7)"/>
7
+ <path d="M167.522 8.23696L145.667 1.29358L109.011 110.23L130.878 117.156L167.522 8.23696Z" fill="var(--sapContent_Illustrative_Color8)"/>
8
+ <path d="M139.418 120.507L176.733 11.3882L169.938 9.21289L132.623 118.332L139.418 120.507Z" fill="var(--sapContent_Illustrative_Color8)"/>
9
+ <path d="M173.582 114.028L157.588 120.495L167.81 145.817L183.798 139.35L173.582 114.028Z" fill="var(--sapContent_Illustrative_Color6)"/>
10
+ <path d="M167.587 144.159C167.284 144.283 167.008 144.465 166.775 144.696C166.543 144.926 166.358 145.2 166.231 145.502C166.105 145.804 166.039 146.128 166.037 146.455C166.036 146.783 166.099 147.107 166.223 147.41L190.429 207.002C191.424 209.388 193.325 211.28 195.715 212.265C198.104 213.249 200.787 213.245 203.173 212.252L205.06 211.482C207.438 210.479 209.325 208.578 210.309 206.191C211.293 203.804 211.295 201.125 210.315 198.736L186.103 139.215C185.979 138.909 185.796 138.632 185.564 138.397C185.333 138.163 185.057 137.977 184.753 137.85C184.45 137.723 184.124 137.657 183.794 137.656C183.465 137.655 183.139 137.719 182.834 137.845L167.587 144.159Z" fill="var(--sapContent_Illustrative_Color3)"/>
11
+ <path d="M156.953 119.161L158.634 123.159C158.634 123.159 167.016 126.863 175.757 119.09L173.094 112.705L165.752 116.292L156.953 119.161Z" fill="var(--sapContent_Illustrative_Color4)"/>
12
+ <path d="M144.815 122.571C129.607 122.56 114.946 116.893 103.683 106.672C92.4204 96.4503 85.3606 82.4049 83.8764 67.2665C82.3922 52.128 86.5896 36.9785 95.6526 24.7635C104.716 12.5485 117.996 4.14107 132.913 1.17587C147.829 -1.78933 163.315 0.899658 176.359 8.71998C189.404 16.5403 199.074 28.933 203.49 43.4886C207.907 58.0442 206.753 73.7223 200.254 87.4745C193.755 101.227 182.375 112.07 168.327 117.897C160.872 120.982 152.883 122.571 144.815 122.571ZM144.815 4.76233C131.755 4.74265 119.093 9.25419 108.987 17.5277C98.8813 25.8013 91.9574 37.3246 89.396 50.133C86.8345 62.9415 88.7941 76.242 94.9406 87.767C101.087 99.2919 111.04 108.328 123.102 113.334C135.165 118.34 148.59 119.007 161.089 115.22C173.588 111.433 184.386 103.428 191.644 92.5683C198.901 81.7089 202.168 68.6678 200.888 55.6686C199.607 42.6695 193.858 30.5169 184.621 21.283C174.063 10.7222 159.747 4.78097 144.815 4.76233Z" fill="var(--sapContent_Illustrative_Color4)"/>
13
+ </svg>
14
+ `;
@@ -0,0 +1,17 @@
1
+ export default `<svg width="321" height="220" viewBox="0 0 321 220" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-SimpleMail">
2
+ <path d="M130.863 134.456H34.4541C26.8948 134.456 19.645 137.459 14.2998 142.804C8.95454 148.15 5.95166 155.399 5.95166 162.959C5.95166 170.518 8.95454 177.768 14.2998 183.113C19.645 188.458 26.8948 191.461 34.4541 191.461H130.903C138.462 191.461 145.712 188.458 151.057 183.113C156.403 177.768 159.405 170.518 159.405 162.959C159.405 155.399 156.403 148.15 151.057 142.804C145.712 137.459 138.462 134.456 130.903 134.456H130.863Z" fill="var(--sapContent_Illustrative_Color7)"/>
3
+ <path d="M165.985 162.749H69.5256C62.06 162.889 54.9474 165.953 49.7171 171.282C44.4868 176.611 41.5566 183.779 41.5566 191.246C41.5566 198.713 44.4868 205.882 49.7171 211.211C54.9474 216.54 62.06 219.604 69.5256 219.744H165.985C173.45 219.604 180.563 216.54 185.793 211.211C191.023 205.882 193.954 198.713 193.954 191.246C193.954 183.779 191.023 176.611 185.793 171.282C180.563 165.953 173.45 162.889 165.985 162.749V162.749Z" fill="var(--sapContent_Illustrative_Color7)"/>
4
+ <path d="M291.475 83.9306H195.026C191.239 83.8597 187.476 84.5444 183.956 85.9447C180.436 87.345 177.231 89.4328 174.528 92.086C171.825 94.7393 169.677 97.9048 168.211 101.397C166.745 104.89 165.99 108.64 165.99 112.428C165.99 116.216 166.745 119.966 168.211 123.458C169.677 126.951 171.825 130.117 174.528 132.77C177.231 135.423 180.436 137.511 183.956 138.911C187.476 140.312 191.239 140.996 195.026 140.925H291.475C295.262 140.996 299.026 140.312 302.545 138.911C306.065 137.511 309.27 135.423 311.973 132.77C314.677 130.117 316.824 126.951 318.29 123.458C319.756 119.966 320.511 116.216 320.511 112.428C320.511 108.64 319.756 104.89 318.29 101.397C316.824 97.9048 314.677 94.7393 311.973 92.086C309.27 89.4328 306.065 87.345 302.545 85.9447C299.026 84.5444 295.262 83.8597 291.475 83.9306Z" fill="var(--sapContent_Illustrative_Color7)"/>
5
+ <path d="M219.595 31.8974H38.2777C28.2613 31.8974 18.6551 35.8764 11.5724 42.9591C4.48974 50.0418 0.510742 59.648 0.510742 69.6644C0.510742 79.6808 4.48974 89.287 11.5724 96.3696C18.6551 103.452 28.2613 107.431 38.2777 107.431H219.595C229.611 107.431 239.218 103.452 246.3 96.3696C253.383 89.287 257.362 79.6808 257.362 69.6644C257.362 59.648 253.383 50.0418 246.3 42.9591C239.218 35.8764 229.611 31.8974 219.595 31.8974Z" fill="var(--sapContent_Illustrative_Color7)"/>
6
+ <path d="M175.319 52.6029L90.4607 93.5345C88.8154 94.3317 87.4273 95.5753 86.4547 97.1233C85.482 98.6714 84.9641 100.462 84.96 102.29V183.974C84.96 186.553 85.9841 189.028 87.8074 190.853C89.6307 192.678 92.1039 193.705 94.6837 193.707H264.4C266.981 193.705 269.455 192.678 271.28 190.853C273.105 189.029 274.131 186.554 274.134 183.974V102.3C274.129 100.47 273.61 98.6781 272.637 97.1285C271.67 95.5812 270.286 94.3388 268.643 93.5445L183.785 52.6129C182.47 51.9692 181.026 51.6346 179.562 51.6346C178.098 51.6346 176.654 51.9692 175.339 52.6129L175.319 52.6029Z" fill="var(--sapContent_Illustrative_Color8)"/>
7
+ <path d="M264.41 194.716H94.6933C91.8487 194.713 89.1215 193.581 87.111 191.569C85.1005 189.556 83.9712 186.828 83.9712 183.984V102.3C83.9736 100.283 84.5443 98.3075 85.6179 96.6001C86.6914 94.8926 88.2244 93.5222 90.0411 92.646L174.899 51.7143C176.354 51.01 177.95 50.6441 179.567 50.6441C181.183 50.6441 182.779 51.01 184.234 51.7143L269.092 92.646C270.909 93.5222 272.442 94.8926 273.515 96.6001C274.589 98.3075 275.16 100.283 275.162 102.3V183.984C275.162 186.83 274.031 189.56 272.019 191.572C270.006 193.585 267.276 194.716 264.43 194.716H264.41ZM179.552 52.6228C178.243 52.6229 176.952 52.9235 175.778 53.5014L90.9196 94.433C89.4394 95.1441 88.1901 96.2588 87.3158 97.6489C86.4415 99.039 85.9777 100.648 85.9779 102.29V183.974C85.9805 186.288 86.9003 188.507 88.5358 190.144C90.1713 191.781 92.389 192.704 94.7033 192.709H264.42C266.736 192.706 268.956 191.785 270.594 190.148C272.232 188.51 273.153 186.29 273.155 183.974V102.3C273.146 100.653 272.673 99.0429 271.79 97.6531C270.907 96.2634 269.65 95.1508 268.164 94.443L183.305 53.5113C182.136 52.9301 180.848 52.6261 179.542 52.6228H179.552Z" fill="var(--sapContent_Illustrative_Color4)"/>
8
+ <path d="M215.152 11.8609C214.588 11.8457 214.029 11.9787 213.531 12.2467C213.034 12.5147 212.615 12.9083 212.317 13.3883L205.079 24.9091C204.829 25.2974 204.659 25.7319 204.58 26.187C204.505 26.6421 204.525 27.1079 204.64 27.5547C204.747 28.0046 204.946 28.4276 205.224 28.7969C205.503 29.1663 205.854 29.4741 206.257 29.7011C206.841 30.1087 207.542 30.3155 208.254 30.2901C208.984 30.2786 209.689 30.0179 210.251 29.5513C210.505 29.3167 210.73 29.0518 210.919 28.7627L218.147 17.2519C218.48 16.7633 218.671 16.1916 218.697 15.6009C218.724 15.0103 218.585 14.4239 218.297 13.9075C217.993 13.3248 217.544 12.8304 216.993 12.4719C216.442 12.1134 215.808 11.903 215.152 11.8609Z" fill="var(--sapContent_Illustrative_Color5)"/>
9
+ <path d="M142.015 13.5481C141.66 13.7442 141.35 14.013 141.106 14.3368C140.861 14.6606 140.684 15.0308 140.587 15.425C140.502 15.8232 140.502 16.2347 140.587 16.6329C140.659 17.0322 140.812 17.4127 141.036 17.7511L147.865 28.9025C148.125 29.3004 148.465 29.6403 148.863 29.9008C149.247 30.1742 149.681 30.3677 150.141 30.4698C150.602 30.5645 151.078 30.5645 151.539 30.4698C152.004 30.3926 152.448 30.2228 152.846 29.9707L153.306 29.6213C153.813 29.1778 154.149 28.57 154.254 27.9041C154.343 27.2038 154.176 26.4949 153.785 25.9075L146.926 14.7461C146.684 14.3399 146.362 13.9871 145.979 13.7091C145.596 13.4311 145.161 13.2337 144.7 13.1288C144.242 13.0173 143.767 13.0003 143.302 13.0789C142.847 13.1512 142.41 13.3105 142.015 13.5481Z" fill="var(--sapContent_Illustrative_Color5)"/>
10
+ <path d="M176.547 0.889212C176.234 1.1898 175.982 1.54945 175.808 1.94745C175.638 2.35558 175.55 2.79315 175.549 3.2353V23.1021C175.564 23.9959 175.921 24.8498 176.547 25.4881C177.172 26.1105 178.012 26.4681 178.893 26.4865C179.718 26.5049 180.52 26.2208 181.149 25.6878C181.507 25.3764 181.793 24.9911 181.988 24.5586C182.183 24.126 182.282 23.6564 182.278 23.182V3.39503C182.263 2.49822 181.906 1.64103 181.279 0.999029C180.647 0.376279 179.8 0.0190742 178.913 0.000695874C178.476 -0.00828648 178.042 0.0697678 177.635 0.230312C177.232 0.373775 176.861 0.597966 176.547 0.889212Z" fill="var(--sapContent_Illustrative_Color5)"/>
11
+ <path d="M182.527 145.039C181.209 145.669 179.766 145.997 178.304 145.997C176.842 145.997 175.399 145.669 174.081 145.039L129.296 123.425L104.108 111.285L173.223 77.9206C174.541 77.2897 175.984 76.9623 177.445 76.9623C178.907 76.9623 180.35 77.2897 181.668 77.9206L251.642 111.674L227.342 123.425L182.527 145.039Z" fill="var(--sapContent_Illustrative_Color3)"/>
12
+ <path d="M183.765 144.579C182.446 145.21 181.003 145.538 179.542 145.538C178.08 145.538 176.637 145.21 175.319 144.579L174.32 144.1L86.4072 189.854C87.2824 191.246 88.4958 192.393 89.9343 193.189C91.3728 193.985 92.9895 194.404 94.6335 194.406H264.35C265.877 194.411 267.383 194.052 268.743 193.357C270.102 192.662 271.276 191.653 272.167 190.413L184.623 144.11L183.765 144.579Z" fill="var(--sapContent_Illustrative_Color6)"/>
13
+ <path d="M264.41 195.215H94.6935C91.7165 195.212 88.8624 194.028 86.7582 191.922C84.6541 189.816 83.4722 186.961 83.4722 183.984V102.3C83.4755 100.19 84.0728 98.123 85.1957 96.3363C86.3185 94.5496 87.9217 93.1151 89.8216 92.1968L174.68 51.2651C176.203 50.531 177.871 50.1497 179.562 50.1497C181.252 50.1497 182.921 50.531 184.444 51.2651L269.302 92.1968C271.205 93.1118 272.812 94.5453 273.937 96.3325C275.062 98.1197 275.659 100.188 275.661 102.3V183.984C275.656 186.961 274.471 189.814 272.366 191.919C270.261 194.025 267.407 195.21 264.43 195.215H264.41ZM179.552 53.122C178.32 53.1245 177.104 53.4079 175.998 53.9506V53.9506L91.1394 94.8823C89.7461 95.556 88.5702 96.6077 87.7459 97.9175C86.9215 99.2272 86.4819 100.742 86.4772 102.29V183.974C86.4798 186.155 87.347 188.247 88.8889 189.791C90.4308 191.335 92.5216 192.205 94.7034 192.21H264.42C266.604 192.207 268.697 191.339 270.241 189.795C271.785 188.251 272.654 186.157 272.656 183.974V102.3C272.652 100.752 272.213 99.2371 271.388 97.9272C270.561 96.6293 269.385 95.5912 267.994 94.9322L183.136 54.0005C182.022 53.4342 180.792 53.1335 179.542 53.122H179.552Z" fill="var(--sapContent_Illustrative_Color4)"/>
14
+ <path opacity="0.51" d="M169.758 143.012L173.961 145.009C175.28 145.639 176.723 145.967 178.184 145.967C179.646 145.967 181.089 145.639 182.407 145.009L227.202 123.395L251.572 111.644L242.018 107.072L169.758 143.012Z" fill="var(--sapContent_Illustrative_Color15)"/>
15
+ <path d="M179.602 147.105C177.915 147.104 176.251 146.726 174.73 145.997L89.8716 105.065C87.5729 103.948 85.7189 102.087 84.6104 99.7841L87.3159 98.4863C88.1313 100.172 89.488 101.536 91.1694 102.36L176.028 143.291C177.146 143.817 178.366 144.089 179.602 144.089C180.837 144.089 182.058 143.817 183.176 143.291L268.034 102.36C269.71 101.532 271.063 100.169 271.878 98.4863L274.583 99.7841C273.47 102.075 271.626 103.929 269.342 105.055L184.484 145.987C182.961 146.72 181.292 147.103 179.602 147.105Z" fill="var(--sapContent_Illustrative_Color4)"/>
16
+ </svg>
17
+ `;
@@ -0,0 +1,28 @@
1
+ export default `<svg width="320" height="224" viewBox="0 0 320 224" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-SimpleNoSavedItems">
2
+ <path d="M130.574 128.066H33.9602C18.1944 128.066 5.41357 140.847 5.41357 156.613C5.41357 172.379 18.1944 185.16 33.9602 185.16H130.574C146.339 185.16 159.12 172.379 159.12 156.613C159.12 140.847 146.339 128.066 130.574 128.066Z" fill="var(--sapContent_Illustrative_Color7)"/>
3
+ <path d="M165.746 156.4H69.1331C53.3672 156.4 40.5864 169.181 40.5864 184.946C40.5864 200.712 53.3672 213.493 69.1331 213.493H165.746C181.512 213.493 194.293 200.712 194.293 184.946C194.293 169.181 181.512 156.4 165.746 156.4Z" fill="var(--sapContent_Illustrative_Color7)"/>
4
+ <path d="M291.453 77.4531H194.84C179.074 77.4531 166.293 90.2339 166.293 106C166.293 121.766 179.074 134.546 194.84 134.546H291.453C307.219 134.546 320 121.766 320 106C320 90.2339 307.219 77.4531 291.453 77.4531Z" fill="var(--sapContent_Illustrative_Color7)"/>
5
+ <path d="M219.453 25.3333H37.8267C16.9356 25.3333 0 42.2689 0 63.16V63.1734C0 84.0644 16.9356 101 37.8267 101H219.453C240.344 101 257.28 84.0644 257.28 63.1734V63.16C257.28 42.2689 240.344 25.3333 219.453 25.3333Z" fill="var(--sapContent_Illustrative_Color7)"/>
6
+ <g clip-path="url(#clip0_101_5780)">
7
+ <path d="M149.832 222.644H259.937C261.252 222.642 262.551 222.353 263.743 221.797C264.935 221.24 265.991 220.43 266.837 219.422C267.682 218.414 268.297 217.234 268.638 215.963C268.979 214.693 269.038 213.363 268.81 212.068L241.396 56.3541C241.029 54.2674 239.938 52.3769 238.315 51.0151C236.692 49.6533 234.641 48.9076 232.522 48.909H122.374C121.059 48.9102 119.76 49.1992 118.568 49.7558C117.376 50.3123 116.32 51.1228 115.475 52.1306C114.629 53.1383 114.014 54.3188 113.673 55.5893C113.332 56.8598 113.274 58.1895 113.501 59.4851L140.915 215.199C141.289 217.29 142.387 219.183 144.018 220.545C145.649 221.906 147.708 222.65 149.832 222.644V222.644Z" fill="var(--sapContent_Illustrative_Color6)"/>
8
+ <path d="M259.937 224H149.832C147.393 224.003 145.031 223.145 143.162 221.577C141.293 220.009 140.038 217.832 139.617 215.429L112.159 59.8025C111.896 58.3106 111.962 56.7791 112.354 55.3157C112.746 53.8522 113.453 52.4924 114.427 51.3317C115.401 50.171 116.617 49.2377 117.99 48.5973C119.363 47.9568 120.859 47.6249 122.374 47.6248H232.479C234.918 47.6221 237.28 48.4802 239.149 50.048C241.018 51.6158 242.273 53.7928 242.695 56.1954L270.109 211.894C270.372 213.386 270.306 214.918 269.914 216.381C269.522 217.845 268.814 219.205 267.841 220.365C266.867 221.526 265.651 222.459 264.278 223.1C262.905 223.74 261.408 224.072 259.893 224.072L259.937 224ZM122.374 50.2653C121.256 50.2652 120.151 50.51 119.137 50.9826C118.123 51.4552 117.225 52.144 116.506 53.0007C115.787 53.8574 115.264 54.8612 114.974 55.9415C114.684 57.0219 114.634 58.1526 114.828 59.2542L142.243 214.953C142.552 216.729 143.479 218.339 144.86 219.498C146.24 220.656 147.986 221.29 149.789 221.287H259.937C261.054 221.285 262.158 221.039 263.171 220.565C264.183 220.092 265.08 219.403 265.799 218.547C266.518 217.691 267.041 216.688 267.332 215.609C267.622 214.529 267.674 213.4 267.483 212.298L240.069 56.5994C239.759 54.8235 238.832 53.2141 237.451 52.0551C236.071 50.8962 234.325 50.2623 232.522 50.2653H122.374Z" fill="var(--sapContent_Illustrative_Color6)"/>
9
+ <path d="M155.762 216.757H265.867C267.183 216.758 268.483 216.471 269.677 215.915C270.87 215.359 271.927 214.549 272.773 213.54C273.619 212.532 274.233 211.351 274.573 210.079C274.913 208.807 274.97 207.477 274.74 206.181L247.326 50.4817C246.962 48.3924 245.873 46.4984 244.249 45.1338C242.626 43.7691 240.573 43.0213 238.452 43.0221H128.348C127.03 43.0234 125.729 43.3128 124.536 43.8701C123.342 44.4273 122.285 45.239 121.438 46.248C120.591 47.2571 119.975 48.4391 119.633 49.7114C119.292 50.9836 119.232 52.3151 119.46 53.6127L146.874 209.312C147.244 211.4 148.337 213.29 149.963 214.652C151.588 216.014 153.642 216.759 155.762 216.757Z" fill="var(--sapContent_Illustrative_Color8)"/>
10
+ <path d="M265.867 218.128H155.762C153.309 218.13 150.936 217.26 149.065 215.675C147.194 214.089 145.947 211.89 145.546 209.47L118.132 53.7714C117.869 52.2795 117.935 50.748 118.327 49.2845C118.719 47.8211 119.427 46.4612 120.4 45.3005C121.374 44.1399 122.59 43.2065 123.963 42.5661C125.336 41.9257 126.833 41.5938 128.348 41.5937H238.452C240.891 41.5938 243.251 42.453 245.119 44.0203C246.987 45.5876 248.244 47.7629 248.668 50.1643L276.082 205.863C276.345 207.357 276.278 208.89 275.886 210.356C275.493 211.821 274.785 213.182 273.81 214.344C272.835 215.506 271.617 216.441 270.242 217.082C268.867 217.723 267.369 218.055 265.852 218.055L265.867 218.128ZM128.348 44.3784C127.229 44.3783 126.124 44.6232 125.11 45.0957C124.096 45.5683 123.198 46.2571 122.479 47.1138C121.76 47.9705 121.237 48.9743 120.947 50.0547C120.657 51.135 120.608 52.2658 120.801 53.3674L148.216 209.081C148.528 210.854 149.457 212.46 150.837 213.616C152.217 214.772 153.961 215.404 155.762 215.401H265.852C266.971 215.403 268.078 215.16 269.093 214.688C270.108 214.216 271.007 213.528 271.727 212.67C272.446 211.813 272.969 210.808 273.258 209.727C273.547 208.645 273.595 207.514 273.398 206.412L245.984 50.7125C245.672 48.9379 244.744 47.3301 243.364 46.1717C241.984 45.0132 240.24 44.3783 238.438 44.3784H128.348Z" fill="var(--sapContent_Illustrative_Color4)"/>
11
+ <path d="M170.811 41.3484L178.992 88.6598C179.194 89.8718 177.838 90.4922 176.813 89.6409L160.942 76.5109C160.677 76.2716 160.332 76.1392 159.975 76.1392C159.618 76.1392 159.274 76.2716 159.009 76.5109L148.259 89.2946C147.523 90.1604 145.922 89.5255 145.72 88.2991L137.856 41.3051C137.805 41.1323 137.796 40.9497 137.83 40.7728C137.865 40.5959 137.941 40.4298 138.052 40.2884C138.164 40.147 138.308 40.0345 138.472 39.9603C138.636 39.8862 138.816 39.8525 138.996 39.8622H169.181C169.583 39.8817 169.966 40.0408 170.263 40.312C170.561 40.5833 170.755 40.9497 170.811 41.3484V41.3484Z" fill="var(--sapContent_Illustrative_Color4)"/>
12
+ <path d="M174.058 39.3572L182.239 86.6686C182.455 87.895 181.099 88.5154 180.06 87.6641L164.188 74.5341C163.923 74.2948 163.579 74.1624 163.222 74.1624C162.865 74.1624 162.52 74.2948 162.255 74.5341L151.434 87.3323C150.712 88.198 149.111 87.5632 148.909 86.3223L141.031 39.3283C140.996 39.1606 140.999 38.9872 141.041 38.821C141.082 38.6548 141.161 38.5001 141.27 38.3684C141.38 38.2367 141.518 38.1314 141.673 38.0603C141.829 37.9891 141.999 37.954 142.17 37.9576H172.384C172.782 37.9608 173.166 38.1021 173.472 38.3574C173.777 38.6127 173.984 38.9661 174.058 39.3572Z" fill="var(--sapContent_Illustrative_Color8)"/>
13
+ <path d="M182.152 87.5199C181.832 87.5212 181.521 87.4088 181.275 87.2028C181.03 86.9968 180.865 86.7104 180.81 86.3945L179.656 79.714C179.595 79.3581 179.677 78.9925 179.886 78.6976C180.094 78.4026 180.411 78.2025 180.767 78.1413C181.123 78.0801 181.489 78.1627 181.783 78.3711C182.078 78.5795 182.278 78.8964 182.34 79.2523L183.494 85.9327C183.535 86.2857 183.444 86.6414 183.239 86.9316C183.034 87.2218 182.729 87.4261 182.383 87.5055L182.152 87.5199ZM177.694 87.0582C177.38 87.0541 177.076 86.9476 176.828 86.7552L171.59 82.4266C171.313 82.197 171.138 81.8666 171.104 81.5081C171.07 81.1495 171.18 80.7923 171.41 80.5148C171.64 80.2374 171.97 80.0625 172.329 80.0287C172.687 79.9949 173.044 80.1049 173.322 80.3345L178.559 84.6631C178.772 84.8416 178.925 85.0812 178.997 85.3495C179.069 85.6177 179.057 85.9017 178.963 86.1629C178.869 86.4242 178.696 86.6501 178.469 86.8103C178.242 86.9704 177.972 87.0569 177.694 87.0582V87.0582ZM153.064 86.7985C152.747 86.8008 152.439 86.688 152.198 86.481C151.938 86.2387 151.776 85.9088 151.745 85.5547C151.713 85.2005 151.812 84.847 152.025 84.562L156.354 79.3677C156.585 79.0922 156.917 78.92 157.275 78.8888C157.634 78.8577 157.99 78.9703 158.266 79.2018C158.541 79.4333 158.713 79.7648 158.744 80.1233C158.776 80.4819 158.663 80.8381 158.431 81.1136L154.103 86.3079C153.979 86.4639 153.821 86.5893 153.641 86.6743C153.461 86.7594 153.263 86.8019 153.064 86.7985V86.7985ZM148.736 86.7985C148.414 86.7987 148.104 86.6838 147.86 86.4746C147.617 86.2655 147.456 85.976 147.408 85.6586L146.283 78.9637C146.249 78.6214 146.346 78.2789 146.555 78.0057C146.764 77.7324 147.069 77.5488 147.408 77.4919C147.747 77.435 148.096 77.5092 148.382 77.6995C148.669 77.8897 148.873 78.1817 148.952 78.5165L150.077 85.2113C150.108 85.3876 150.104 85.5683 150.065 85.743C150.026 85.9177 149.953 86.0829 149.849 86.2291C149.746 86.3753 149.615 86.4996 149.463 86.5948C149.312 86.6901 149.143 86.7544 148.966 86.7841L148.736 86.7985ZM167.175 78.4876C166.865 78.4881 166.564 78.381 166.324 78.1846L163.251 75.6452H163.135L162.789 76.0492C162.559 76.3238 162.229 76.4961 161.872 76.5286C161.516 76.561 161.16 76.4509 160.884 76.2223C160.624 75.98 160.463 75.6501 160.431 75.296C160.399 74.9418 160.499 74.5883 160.711 74.3033L161.144 73.7983C161.649 73.3012 162.32 73.0074 163.027 72.9728C163.735 72.9382 164.431 73.1653 164.982 73.6107L168.041 76.1501C168.254 76.3287 168.407 76.5684 168.479 76.8366C168.551 77.1049 168.539 77.3888 168.445 77.6501C168.35 77.9113 168.178 78.1373 167.951 78.2974C167.724 78.4575 167.453 78.544 167.175 78.5453V78.4876ZM179.8 74.159C179.48 74.1603 179.169 74.0479 178.923 73.8419C178.678 73.6359 178.513 73.3495 178.458 73.0336L177.304 66.3531C177.273 66.1769 177.277 65.9962 177.316 65.8215C177.355 65.6468 177.429 65.4816 177.532 65.3354C177.635 65.1892 177.767 65.0649 177.918 64.9696C178.07 64.8744 178.239 64.8101 178.415 64.7804C178.591 64.7495 178.77 64.7538 178.944 64.7931C179.118 64.8324 179.282 64.9059 179.427 65.0093C179.572 65.1127 179.695 65.244 179.789 65.3954C179.883 65.5469 179.946 65.7155 179.973 65.8914L181.128 72.5719C181.191 72.9258 181.111 73.2903 180.905 73.5852C180.699 73.8801 180.385 74.0813 180.031 74.1446L179.8 74.159ZM146.499 73.351C146.178 73.3523 145.868 73.2399 145.622 73.0339C145.376 72.8279 145.212 72.5415 145.157 72.2256L144.046 65.5307C144.003 65.35 143.998 65.1624 144.031 64.9795C144.063 64.7966 144.133 64.6224 144.236 64.4676C144.339 64.3129 144.472 64.1809 144.628 64.0798C144.784 63.9787 144.959 63.9107 145.142 63.88C145.325 63.8493 145.512 63.8566 145.693 63.9013C145.873 63.9461 146.042 64.0274 146.19 64.1402C146.337 64.2531 146.46 64.395 146.551 64.5572C146.641 64.7195 146.697 64.8986 146.715 65.0834L147.841 71.7783C147.878 72.1309 147.783 72.4847 147.576 72.7721C147.368 73.0596 147.062 73.2605 146.715 73.3366L146.499 73.351ZM177.492 60.7837C177.171 60.785 176.86 60.6726 176.615 60.4666C176.369 60.2606 176.204 59.9742 176.15 59.6583L174.996 52.9778C174.955 52.7983 174.951 52.6125 174.984 52.4315C175.018 52.2505 175.088 52.0782 175.19 51.9251C175.292 51.772 175.424 51.6413 175.578 51.5409C175.733 51.4406 175.906 51.3726 176.087 51.3412C176.268 51.3099 176.454 51.3157 176.633 51.3585C176.812 51.4012 176.981 51.4799 177.128 51.5899C177.276 51.6998 177.4 51.8386 177.492 51.9978C177.584 52.1571 177.643 52.3334 177.665 52.5161L178.819 59.1965C178.882 59.5505 178.802 59.915 178.596 60.2099C178.391 60.5048 178.076 60.706 177.723 60.7693L177.492 60.7837ZM144.306 59.9612C143.987 59.962 143.678 59.8492 143.435 59.6429C143.192 59.4367 143.03 59.1505 142.979 58.8358L141.853 52.141C141.824 51.9647 141.829 51.7845 141.87 51.6104C141.91 51.4364 141.984 51.272 142.088 51.1266C142.192 50.9813 142.323 50.8578 142.475 50.7632C142.626 50.6686 142.795 50.6048 142.971 50.5755C143.148 50.5461 143.328 50.5517 143.502 50.592C143.676 50.6323 143.84 50.7065 143.986 50.8103C144.131 50.9142 144.255 51.0456 144.349 51.1972C144.444 51.3487 144.507 51.5175 144.537 51.6937L145.662 58.3597C145.721 58.7135 145.637 59.0762 145.428 59.3682C145.22 59.6602 144.905 59.8579 144.551 59.918L144.306 59.9612ZM175.226 47.4084C174.908 47.4091 174.599 47.2963 174.356 47.09C174.112 46.8838 173.95 46.5977 173.899 46.283L172.745 39.6025C172.704 39.423 172.7 39.2372 172.734 39.0562C172.767 38.8752 172.837 38.7029 172.939 38.5498C173.041 38.3967 173.173 38.266 173.328 38.1656C173.482 38.0652 173.655 37.9973 173.836 37.9659C174.018 37.9345 174.203 37.9404 174.382 37.9832C174.561 38.0259 174.73 38.1046 174.877 38.2145C175.025 38.3244 175.149 38.4632 175.241 38.6225C175.333 38.7817 175.392 38.9581 175.414 39.1408L176.568 45.8212C176.599 45.9975 176.595 46.1782 176.556 46.3529C176.517 46.5276 176.444 46.6928 176.34 46.839C176.237 46.9852 176.106 47.1095 175.954 47.2047C175.803 47.3 175.634 47.3643 175.457 47.3939L175.226 47.4084ZM142.041 46.5859C141.723 46.5707 141.418 46.4506 141.176 46.2444C140.933 46.0382 140.765 45.7575 140.699 45.4461L139.718 39.5737C139.636 38.9962 139.732 38.4076 139.992 37.8855C140.166 37.5698 140.458 37.3362 140.805 37.2361C141.151 37.1359 141.523 37.1775 141.839 37.3516C142.154 37.5258 142.388 37.8181 142.488 38.1645C142.588 38.5108 142.547 38.8828 142.372 39.1985L143.382 44.9699C143.441 45.3238 143.357 45.6864 143.149 45.9785C142.941 46.2705 142.625 46.4682 142.272 46.5282L142.041 46.5859ZM168.128 39.3716H161.332C160.972 39.3716 160.627 39.2287 160.373 38.9744C160.118 38.72 159.975 38.3751 159.975 38.0153C159.975 37.6556 160.118 37.3107 160.373 37.0563C160.627 36.802 160.972 36.6591 161.332 36.6591H168.128C168.487 36.6591 168.832 36.802 169.087 37.0563C169.341 37.3107 169.484 37.6556 169.484 38.0153C169.484 38.3751 169.341 38.72 169.087 38.9744C168.832 39.2287 168.487 39.3716 168.128 39.3716V39.3716ZM154.55 39.3716H147.769C147.409 39.3716 147.064 39.2287 146.81 38.9744C146.555 38.72 146.413 38.3751 146.413 38.0153C146.413 37.6556 146.555 37.3107 146.81 37.0563C147.064 36.802 147.409 36.6591 147.769 36.6591H154.55C154.91 36.6591 155.255 36.802 155.509 37.0563C155.764 37.3107 155.906 37.6556 155.906 38.0153C155.906 38.3751 155.764 38.72 155.509 38.9744C155.255 39.2287 154.91 39.3716 154.55 39.3716V39.3716Z" fill="var(--sapContent_Illustrative_Color4)"/>
14
+ <path d="M162.428 124.861H234.86C235.62 124.887 236.376 124.738 237.07 124.425C237.763 124.113 238.376 123.645 238.86 123.058C239.343 122.47 239.686 121.78 239.861 121.039C240.035 120.299 240.037 119.528 239.866 118.787C239.533 117.118 238.647 115.611 237.35 114.509C236.054 113.406 234.424 112.773 232.724 112.712H160.293C159.531 112.683 158.774 112.83 158.079 113.142C157.384 113.454 156.77 113.922 156.285 114.51C155.801 115.098 155.459 115.79 155.285 116.531C155.112 117.273 155.112 118.045 155.286 118.787V118.787C155.621 120.454 156.509 121.96 157.804 123.062C159.1 124.164 160.728 124.797 162.428 124.861V124.861Z" fill="var(--sapContent_Illustrative_Color3)"/>
15
+ <path d="M210.417 143.763H237.572C238.332 143.789 239.088 143.64 239.781 143.328C240.474 143.015 241.086 142.546 241.569 141.959C242.052 141.371 242.393 140.68 242.565 139.94C242.738 139.199 242.737 138.429 242.564 137.688V137.688C242.231 136.02 241.344 134.512 240.048 133.41C238.752 132.308 237.122 131.675 235.422 131.614H208.282C207.521 131.588 206.765 131.737 206.072 132.049C205.378 132.362 204.766 132.83 204.282 133.417C203.798 134.004 203.455 134.695 203.281 135.435C203.106 136.176 203.104 136.947 203.275 137.688V137.688C203.611 139.355 204.498 140.861 205.793 141.963C207.089 143.065 208.718 143.699 210.417 143.763V143.763Z" fill="var(--sapContent_Illustrative_Color6)"/>
16
+ <path d="M166.973 143.488H194.127C194.888 143.514 195.644 143.365 196.338 143.053C197.031 142.74 197.644 142.272 198.128 141.685C198.611 141.098 198.954 140.407 199.128 139.667C199.303 138.926 199.305 138.155 199.134 137.414V137.414C198.798 135.734 197.901 134.218 196.59 133.114C195.28 132.01 193.633 131.385 191.92 131.34H164.837C164.076 131.311 163.319 131.458 162.623 131.769C161.928 132.081 161.315 132.549 160.83 133.137C160.346 133.725 160.003 134.417 159.83 135.159C159.657 135.9 159.657 136.672 159.831 137.414V137.414C160.166 139.081 161.053 140.587 162.349 141.689C163.645 142.791 165.273 143.425 166.973 143.488V143.488Z" fill="var(--sapContent_Illustrative_Color3)"/>
17
+ <path d="M168.978 159.923H196.162C196.922 159.949 197.678 159.8 198.372 159.487C199.065 159.174 199.678 158.706 200.162 158.119C200.646 157.532 200.988 156.841 201.163 156.101C201.337 155.36 201.339 154.59 201.168 153.848C200.829 152.171 199.931 150.658 198.621 149.557C197.31 148.456 195.665 147.833 193.954 147.788H166.843C166.083 147.76 165.327 147.907 164.633 148.218C163.94 148.529 163.327 148.996 162.843 149.582C162.358 150.168 162.016 150.857 161.841 151.597C161.667 152.337 161.665 153.107 161.836 153.848V153.848C162.169 155.517 163.056 157.024 164.352 158.126C165.648 159.229 167.278 159.861 168.978 159.923V159.923Z" fill="var(--sapContent_Illustrative_Color6)"/>
18
+ </g>
19
+ <path d="M123.088 14.0569C123.464 13.9623 123.858 13.9713 124.23 14.0831C124.601 14.1948 124.935 14.405 125.197 14.6914L131.643 21.2828C131.864 21.5095 132.037 21.7786 132.151 22.0739C132.265 22.3692 132.319 22.6845 132.307 23.0009C132.296 23.3173 132.221 23.6282 132.087 23.9147C131.952 24.2013 131.761 24.4576 131.524 24.6682C131.189 25.0249 130.747 25.2628 130.265 25.3458C129.783 25.4287 129.286 25.3523 128.851 25.128C128.642 25.0166 128.45 24.8775 128.278 24.7143L121.832 18.1229C121.542 17.8383 121.335 17.4808 121.232 17.0881C121.129 16.6954 121.134 16.2821 121.246 15.892C121.367 15.4523 121.6 15.0516 121.923 14.7297C122.246 14.4079 122.647 14.1759 123.088 14.0569Z" fill="var(--sapContent_Illustrative_Color5)"/>
20
+ <path d="M172.287 4.81632C172.558 4.89351 172.809 5.02743 173.025 5.20923C173.24 5.39102 173.415 5.61655 173.537 5.87083C173.658 6.12512 173.725 6.40237 173.731 6.68422C173.738 6.96607 173.684 7.24608 173.574 7.50571L170.563 15.9715C170.453 16.2752 170.284 16.554 170.065 16.7914C169.847 17.0289 169.583 17.2202 169.289 17.3541C168.995 17.488 168.678 17.5618 168.355 17.5713C168.032 17.5807 167.711 17.5255 167.41 17.409C167.283 17.3654 167.161 17.3098 167.045 17.2428C166.611 17.0132 166.278 16.629 166.113 16.1661C165.948 15.7032 165.963 15.1952 166.154 14.7425L169.169 6.29503C169.274 5.99175 169.439 5.71247 169.654 5.47348C169.868 5.2345 170.128 5.04058 170.418 4.90297C170.708 4.76537 171.023 4.68683 171.344 4.67195C171.664 4.65708 171.985 4.70615 172.287 4.81632Z" fill="var(--sapContent_Illustrative_Color5)"/>
21
+ <path d="M147.406 1.25877C147.661 1.42425 147.88 1.63868 148.051 1.88955C148.222 2.14043 148.341 2.42276 148.402 2.72015L151.19 16.0347C151.31 16.6335 151.195 17.2558 150.868 17.7717C150.54 18.2875 150.026 18.6571 149.433 18.8031C148.886 18.9402 148.306 18.8627 147.814 18.5864C147.529 18.4293 147.282 18.2123 147.089 17.9505C146.896 17.6887 146.762 17.3882 146.697 17.0697L143.909 3.7552C143.782 3.15636 143.894 2.53176 144.219 2.01363C144.545 1.49549 145.06 1.12448 145.655 0.979102C145.95 0.905442 146.258 0.892235 146.559 0.940295C146.86 0.988355 147.148 1.09667 147.406 1.25877Z" fill="var(--sapContent_Illustrative_Color5)"/>
22
+ <defs>
23
+ <clipPath id="clip0_101_5780">
24
+ <rect width="164.255" height="187.399" fill="var(--sapContent_Illustrative_Color8)" transform="translate(112 36.6013)"/>
25
+ </clipPath>
26
+ </defs>
27
+ </svg>
28
+ `;
@@ -0,0 +1,25 @@
1
+ export default `<svg width="321" height="214" viewBox="0 0 321 214" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-SimpleNotFoundMagnifier">
2
+ <path d="M130.576 118.733H33.9622C18.1963 118.733 5.41553 131.514 5.41553 147.28C5.41553 163.046 18.1963 175.827 33.9622 175.827H130.576C146.341 175.827 159.122 163.046 159.122 147.28C159.122 131.514 146.341 118.733 130.576 118.733Z" fill="var(--sapContent_Illustrative_Color7)"/>
3
+ <path d="M165.749 147.067H69.1355C53.3696 147.067 40.5889 159.848 40.5889 175.613C40.5889 191.379 53.3696 204.16 69.1355 204.16H165.749C181.515 204.16 194.296 191.379 194.296 175.613C194.296 159.848 181.515 147.067 165.749 147.067Z" fill="var(--sapContent_Illustrative_Color7)"/>
4
+ <path d="M291.455 68.1201H194.842C179.076 68.1201 166.295 80.9009 166.295 96.6668C166.295 112.433 179.076 125.213 194.842 125.213H291.455C307.221 125.213 320.002 112.433 320.002 96.6668C320.002 80.9009 307.221 68.1201 291.455 68.1201Z" fill="var(--sapContent_Illustrative_Color7)"/>
5
+ <path d="M219.456 16H37.8289C16.9378 16 0.00219727 32.9356 0.00219727 53.8267V53.84C0.00219727 74.7311 16.9378 91.6667 37.8289 91.6667H219.456C240.347 91.6667 257.282 74.7311 257.282 53.84V53.8267C257.282 32.9356 240.347 16 219.456 16Z" fill="var(--sapContent_Illustrative_Color7)"/>
6
+ <g clip-path="url(#clip0_101_5304)">
7
+ <path d="M206.669 78.6667C206.669 108.122 182.791 132 153.336 132C123.88 132 100.002 108.122 100.002 78.6667C100.002 49.2115 123.88 25.3334 153.336 25.3334C182.791 25.3334 206.669 49.2115 206.669 78.6667Z" fill="var(--sapContent_Illustrative_Color8)"/>
8
+ <path d="M153.128 54.9126C148.322 54.9126 143.625 56.3376 139.629 59.0075C135.633 61.6773 132.519 65.4721 130.68 69.9119C128.841 74.3517 128.36 79.2372 129.297 83.9505C130.235 88.6638 132.549 92.9932 135.947 96.3913C139.345 99.7894 143.674 102.104 148.388 103.041C153.101 103.979 157.987 103.497 162.426 101.658C166.866 99.8193 170.661 96.705 173.331 92.7093C176.001 88.7136 177.426 84.0159 177.426 79.2103C177.408 72.7714 174.843 66.6011 170.29 62.0481C165.737 57.4951 159.567 54.9297 153.128 54.9126ZM153.128 93.7888C152.406 93.791 151.699 93.5787 151.097 93.179C150.496 92.7792 150.026 92.2099 149.748 91.5431C149.47 90.8763 149.396 90.1421 149.536 89.4333C149.676 88.7246 150.022 88.0732 150.532 87.5616C151.042 87.0501 151.693 86.7014 152.401 86.5597C153.109 86.4179 153.844 86.4896 154.512 86.7656C155.179 87.0415 155.75 87.5094 156.151 88.1098C156.553 88.7103 156.767 89.4164 156.767 90.1388C156.743 91.0973 156.352 92.0099 155.675 92.6889C154.998 93.3679 154.086 93.7615 153.128 93.7888ZM157.987 80.6681C157.599 80.8733 157.07 81.2081 156.584 81.4565C156.306 81.5661 156.041 81.7073 155.795 81.8776L155.558 82.126C155.454 82.6881 155.152 83.194 154.705 83.551C154.259 83.908 153.699 84.0922 153.128 84.0698C152.804 84.0886 152.48 84.0386 152.176 83.9232C151.873 83.8078 151.598 83.6294 151.368 83.3999C151.139 83.1704 150.96 82.895 150.845 82.5917C150.729 82.2883 150.679 81.964 150.698 81.64C150.698 79.9338 151.53 79.2102 153.463 77.5688C153.463 77.5688 154.003 77.1693 154.37 76.9425L155.558 76.2945C157.253 75.3226 157.987 74.5883 157.987 72.8929C157.987 70.9491 155.828 69.2428 153.128 69.2428C150.428 69.2428 148.268 70.9491 148.268 72.8929C148.268 73.5373 148.012 74.1553 147.557 74.6109C147.101 75.0666 146.483 75.3227 145.839 75.3227C145.194 75.3227 144.576 75.0666 144.121 74.6109C143.665 74.1553 143.409 73.5373 143.409 72.8929C143.409 68.0334 147.728 64.3833 153.128 64.3833C158.527 64.3833 162.847 68.0334 162.847 72.8929C162.847 76.5321 161.152 78.7243 157.987 80.6681Z" fill="var(--sapContent_Illustrative_Color14)"/>
9
+ <path opacity="0.2" d="M173.819 30.7446L154.284 24.546L121.509 121.737L141.055 127.924L173.819 30.7446Z" fill="var(--sapContent_Illustrative_Color6)"/>
10
+ <path opacity="0.2" d="M148.69 130.862L182.08 33.5416L176.011 31.6085L142.599 128.929L148.69 130.862Z" fill="var(--sapContent_Illustrative_Color6)"/>
11
+ <path d="M179.197 125.084L164.888 130.862L174.024 153.453L188.322 147.676L179.197 125.084Z" fill="var(--sapContent_Illustrative_Color6)"/>
12
+ <path d="M171.81 152.784L194.304 207.977C195.195 210.106 196.893 211.795 199.027 212.674C201.16 213.552 203.555 213.549 205.687 212.664L207.382 211.973C209.506 211.082 211.191 209.388 212.069 207.259C212.947 205.13 212.947 202.741 212.069 200.612L189.575 145.419L171.81 152.784Z" fill="var(--sapContent_Illustrative_Color3)"/>
13
+ <path d="M164.391 129.663L165.892 133.227C165.892 133.227 173.452 136.542 181.205 129.598L178.819 123.918L172.253 127.158L164.391 129.663Z" fill="var(--sapContent_Illustrative_Color6)"/>
14
+ <path d="M153.517 132.708C140.818 132.716 128.51 128.32 118.69 120.269C108.87 112.218 102.145 101.011 99.6628 88.557C97.1803 76.1034 99.0932 63.1743 105.076 51.9733C111.058 40.7722 120.74 31.9924 132.471 27.1301C144.201 22.2679 157.255 21.6242 169.408 25.3087C181.56 28.9932 192.058 36.7779 199.114 47.336C206.169 57.8941 209.345 70.5723 208.1 83.2096C206.855 95.847 201.266 107.661 192.285 116.639C181.995 126.911 168.056 132.689 153.517 132.708ZM153.517 27.6453C141.865 27.6531 130.576 31.7004 121.574 39.0978C112.572 46.4952 106.413 56.7851 104.146 68.2143C101.88 79.6435 103.646 91.5049 109.144 101.778C114.642 112.051 123.532 120.1 134.299 124.554C145.066 129.007 157.044 129.59 168.193 126.203C179.341 122.815 188.97 115.667 195.44 105.977C201.909 96.2859 204.819 84.6519 203.672 73.0567C202.526 61.4614 197.395 50.6223 189.153 42.3859C179.696 32.9462 166.879 27.6447 153.517 27.6453Z" fill="var(--sapContent_Illustrative_Color4)"/>
15
+ <path d="M218.235 23.099C218.03 22.9075 217.778 22.7745 217.505 22.7137C217.231 22.6529 216.946 22.6666 216.68 22.7534L210.287 24.6648C209.859 24.8102 209.505 25.1185 209.303 25.5228C209.101 25.9272 209.066 26.3949 209.207 26.8246C209.297 27.1659 209.495 27.4689 209.772 27.6887C210.048 27.9085 210.388 28.0334 210.74 28.0449C210.912 28.0454 211.084 28.0199 211.248 27.9693L217.63 26.0579C217.914 25.9784 218.17 25.8242 218.374 25.6114C218.577 25.3986 218.719 25.1351 218.786 24.8484C218.847 24.534 218.829 24.2093 218.732 23.9038C218.636 23.5983 218.465 23.3216 218.235 23.099Z" fill="var(--sapContent_Illustrative_Color5)"/>
16
+ <path d="M190.309 0.021577C190.112 -0.0186755 189.91 -0.017562 189.713 0.0248066C189.517 0.0671753 189.332 0.149881 189.169 0.267691C189.007 0.385501 188.871 0.535846 188.769 0.709134C188.668 0.882422 188.604 1.07486 188.581 1.27426L187.501 7.67806C187.463 7.90814 187.471 8.14353 187.525 8.37043C187.579 8.59734 187.678 8.81117 187.816 8.99933C187.954 9.18748 188.128 9.34616 188.328 9.46605C188.528 9.58594 188.75 9.66464 188.981 9.69746C189.078 9.70816 189.175 9.70816 189.272 9.69746C189.628 9.70514 189.973 9.57982 190.241 9.34609C190.508 9.11236 190.679 8.78705 190.719 8.43397L191.799 2.0302C191.867 1.56633 191.749 1.09439 191.469 0.717867C191.19 0.341343 190.773 0.0909399 190.309 0.021577Z" fill="var(--sapContent_Illustrative_Color5)"/>
17
+ <path d="M207.339 6.44694C207.12 6.46142 206.905 6.5195 206.709 6.61778C206.512 6.71606 206.337 6.85255 206.194 7.01928L199.715 14.4598C199.431 14.7948 199.287 15.2265 199.313 15.665C199.339 16.1035 199.533 16.5151 199.855 16.8139C200.149 17.0875 200.534 17.2416 200.935 17.2459C201.171 17.2461 201.405 17.195 201.619 17.0962C201.833 16.9974 202.024 16.8532 202.177 16.6735L208.656 9.24386C208.941 8.90708 209.085 8.47361 209.059 8.0333C209.033 7.59298 208.839 7.1796 208.516 6.87889C208.358 6.73278 208.173 6.61938 207.971 6.54524C207.769 6.47111 207.554 6.4377 207.339 6.44694Z" fill="var(--sapContent_Illustrative_Color5)"/>
18
+ </g>
19
+ <defs>
20
+ <clipPath id="clip0_101_5304">
21
+ <rect width="120.128" height="213.333" fill="var(--sapContent_Illustrative_Color8)" transform="translate(98.6689)"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
25
+ `;
@@ -0,0 +1,15 @@
1
+ export default `<svg width="320" height="214" viewBox="0 0 320 214" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-SimpleReload">
2
+ <path d="M130.464 114.637H33.9315C18.1788 114.637 5.40869 127.408 5.40869 143.16C5.40869 158.913 18.1788 171.683 33.9315 171.683H130.464C146.217 171.683 158.987 158.913 158.987 143.16C158.987 127.408 146.217 114.637 130.464 114.637Z" fill="var(--sapContent_Illustrative_Color7)"/>
3
+ <path d="M165.608 142.947H69.0756C53.3228 142.947 40.5527 155.717 40.5527 171.47C40.5527 187.223 53.3228 199.993 69.0756 199.993H165.608C181.361 199.993 194.131 187.223 194.131 171.47C194.131 155.717 181.361 142.947 165.608 142.947Z" fill="var(--sapContent_Illustrative_Color7)"/>
4
+ <path d="M291.21 64.0664H194.677C178.924 64.0664 166.154 76.8365 166.154 92.5892C166.154 108.342 178.924 121.112 194.677 121.112H291.21C306.963 121.112 319.733 108.342 319.733 92.5892C319.733 76.8365 306.963 64.0664 291.21 64.0664Z" fill="var(--sapContent_Illustrative_Color7)"/>
5
+ <path d="M219.27 11.99H37.7951C16.9214 11.99 0 28.9114 0 49.7851V49.7984C0 70.6721 16.9214 87.5935 37.7951 87.5935H219.27C240.144 87.5935 257.065 70.6721 257.065 49.7984V49.7851C257.065 28.9114 240.144 11.99 219.27 11.99Z" fill="var(--sapContent_Illustrative_Color7)"/>
6
+ <path d="M154.904 29.1885L129.637 181.484C128.674 187.291 132.6 192.779 138.407 193.743L245.23 211.466C251.037 212.429 256.525 208.503 257.488 202.696L282.755 50.3999C283.719 44.5932 279.792 39.1049 273.986 38.1415L167.163 20.4188C161.356 19.4554 155.868 23.3817 154.904 29.1885Z" fill="var(--sapContent_Illustrative_Color3)"/>
7
+ <path d="M243.032 27.7525H139.212C133.326 27.7525 128.555 32.5242 128.555 38.4103V186.74C128.555 192.626 133.326 197.398 139.212 197.398H243.032C248.919 197.398 253.69 192.626 253.69 186.74V38.4103C253.69 32.5242 248.919 27.7525 243.032 27.7525Z" fill="var(--sapContent_Illustrative_Color8)"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M139.212 29.0859C134.063 29.0859 129.888 33.2606 129.888 38.4103V186.74C129.888 191.889 134.063 196.064 139.212 196.064H243.032C248.182 196.064 252.357 191.889 252.357 186.74V38.4103C252.357 33.2606 248.182 29.0859 243.032 29.0859H139.212ZM127.221 38.4103C127.221 31.7878 132.59 26.4192 139.212 26.4192H243.032C249.655 26.4192 255.023 31.7878 255.023 38.4103V186.74C255.023 193.362 249.655 198.731 243.032 198.731H139.212C132.59 198.731 127.221 193.362 127.221 186.74V38.4103Z" fill="var(--sapContent_Illustrative_Color4)"/>
9
+ <path d="M319.408 37.0515C319.155 36.7482 318.824 36.5188 318.452 36.3875C318.079 36.2562 317.677 36.2279 317.29 36.3054L308.044 37.9041C307.728 37.9612 307.426 38.0814 307.157 38.2576C306.888 38.4338 306.657 38.6623 306.478 38.9295C306.299 39.1967 306.175 39.4972 306.115 39.8132C306.055 40.1291 306.058 40.4539 306.126 40.7684C306.188 41.2631 306.41 41.7239 306.759 42.0801C307.108 42.4363 307.564 42.6681 308.058 42.7401C308.296 42.7726 308.538 42.7726 308.777 42.7401L318.023 41.1281C318.43 41.0683 318.814 40.8993 319.133 40.6389C319.452 40.3785 319.694 40.0365 319.835 39.6493C319.995 39.2165 320.039 38.7494 319.965 38.294C319.89 37.8386 319.698 37.4105 319.408 37.0515Z" fill="var(--sapContent_Illustrative_Color5)"/>
10
+ <path d="M284.265 0.122379C283.996 0.0244253 283.709 -0.0154524 283.424 0.00537082C283.139 0.026194 282.861 0.107267 282.609 0.243209C282.358 0.379151 282.137 0.566883 281.963 0.794059C281.79 1.02124 281.666 1.2827 281.6 1.5612L279.056 10.3405C278.963 10.6563 278.934 10.9875 278.971 11.3145C279.009 11.6415 279.111 11.9578 279.272 12.2447C279.434 12.5315 279.651 12.7831 279.911 12.9846C280.172 13.1861 280.47 13.3335 280.788 13.418C280.918 13.4574 281.052 13.4841 281.187 13.4979C281.682 13.5641 282.184 13.444 282.595 13.1608C283.006 12.8777 283.297 12.4518 283.412 11.9658L285.957 3.18651C286.048 2.87424 286.077 2.5469 286.041 2.22345C286.006 1.89999 285.906 1.5868 285.749 1.30194C285.592 1.01707 285.38 0.766153 285.125 0.563702C284.87 0.361251 284.578 0.211263 284.265 0.122379V0.122379Z" fill="var(--sapContent_Illustrative_Color5)"/>
11
+ <path d="M306.978 12.0058C306.673 11.987 306.366 12.0304 306.078 12.1335C305.789 12.2365 305.525 12.397 305.3 12.6053L295.068 21.9308C294.608 22.3473 294.328 22.9268 294.289 23.5462C294.249 24.1656 294.452 24.7762 294.855 25.2481C295.231 25.6833 295.751 25.9674 296.321 26.0474C296.652 26.0806 296.986 26.0444 297.303 25.9412C297.62 25.838 297.911 25.67 298.159 25.4479L308.391 16.1224C308.847 15.7 309.122 15.1178 309.16 14.4972C309.197 13.8766 308.993 13.2657 308.59 12.7918C308.388 12.5597 308.141 12.3706 307.864 12.2356C307.587 12.1006 307.286 12.0224 306.978 12.0058V12.0058Z" fill="var(--sapContent_Illustrative_Color5)"/>
12
+ <path d="M191.662 142.364C208.187 142.364 221.584 128.967 221.584 112.442C221.584 95.9166 208.187 82.5203 191.662 82.5203C175.137 82.5203 161.74 95.9166 161.74 112.442C161.74 128.967 175.137 142.364 191.662 142.364Z" fill="var(--sapContent_Illustrative_Color14)"/>
13
+ <path d="M194.233 108.299C194.219 108.582 194.265 108.865 194.368 109.13C194.47 109.394 194.627 109.635 194.827 109.835C195.028 110.036 195.268 110.193 195.533 110.295C195.797 110.397 196.081 110.443 196.364 110.43H206.089C206.373 110.443 206.657 110.397 206.922 110.295C207.188 110.193 207.429 110.036 207.63 109.836C207.832 109.636 207.99 109.395 208.094 109.131C208.198 108.866 208.246 108.583 208.234 108.299V98.4002C208.246 98.1161 208.198 97.8327 208.094 97.5681C207.99 97.3034 207.832 97.0633 207.63 96.8629C207.429 96.6624 207.188 96.5061 206.922 96.4038C206.657 96.3015 206.373 96.2555 206.089 96.2687C205.806 96.2554 205.523 96.3014 205.258 96.4038C204.994 96.5062 204.753 96.6628 204.553 96.8634C204.352 97.0641 204.195 97.3044 204.093 97.569C203.991 97.8337 203.944 98.1168 203.958 98.4002V101.971C202.358 100.182 200.399 98.7497 198.21 97.7673C196.02 96.7849 193.648 96.2744 191.248 96.2687C186.748 96.2722 182.433 98.0615 179.251 101.244C176.069 104.426 174.279 108.741 174.276 113.241C174.279 117.743 176.068 122.059 179.25 125.243C182.432 128.428 186.747 130.22 191.248 130.227C195.108 130.209 198.849 128.891 201.868 126.486C204.887 124.081 207.007 120.729 207.888 116.971C207.945 116.68 207.944 116.381 207.884 116.091C207.825 115.8 207.708 115.525 207.541 115.279C207.389 115.053 207.193 114.859 206.964 114.71C206.735 114.562 206.478 114.461 206.209 114.414C205.918 114.356 205.619 114.357 205.328 114.417C205.038 114.476 204.762 114.593 204.517 114.76C204.292 114.913 204.099 115.11 203.95 115.339C203.801 115.568 203.7 115.824 203.651 116.092C203.025 118.903 201.453 121.413 199.198 123.203C196.943 124.992 194.141 125.953 191.262 125.924C187.896 125.92 184.668 124.582 182.288 122.201C179.908 119.821 178.569 116.594 178.566 113.228C178.569 109.862 179.908 106.634 182.288 104.254C184.668 101.874 187.896 100.535 191.262 100.532C193.339 100.527 195.384 101.037 197.216 102.016C199.048 102.994 200.609 104.411 201.76 106.14H196.218C195.943 106.143 195.672 106.202 195.421 106.314C195.17 106.426 194.944 106.588 194.758 106.79C194.572 106.992 194.43 107.23 194.339 107.49C194.249 107.749 194.212 108.025 194.233 108.299Z" fill="var(--sapContent_Illustrative_Color8)"/>
14
+ </svg>
15
+ `;
@@ -0,0 +1,20 @@
1
+ export default `<svg width="320" height="203" viewBox="0 0 320 203" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-SimpleTask">
2
+ <path d="M130.573 109.4H33.96C18.1941 109.4 5.41333 122.181 5.41333 137.947C5.41333 153.713 18.1941 166.493 33.96 166.493H130.573C146.339 166.493 159.12 153.713 159.12 137.947C159.12 122.181 146.339 109.4 130.573 109.4Z" fill="var(--sapContent_Illustrative_Color7)"/>
3
+ <path d="M165.747 137.733H69.1333C53.3674 137.733 40.5867 150.514 40.5867 166.28C40.5867 182.046 53.3674 194.827 69.1333 194.827H165.747C181.513 194.827 194.293 182.046 194.293 166.28C194.293 150.514 181.513 137.733 165.747 137.733Z" fill="var(--sapContent_Illustrative_Color7)"/>
4
+ <path d="M291.453 58.7867H194.84C179.074 58.7867 166.293 71.5675 166.293 87.3334C166.293 103.099 179.074 115.88 194.84 115.88H291.453C307.219 115.88 320 103.099 320 87.3334C320 71.5675 307.219 58.7867 291.453 58.7867Z" fill="var(--sapContent_Illustrative_Color7)"/>
5
+ <path d="M219.453 6.66669H37.8267C16.9356 6.66669 0 23.6023 0 44.4934V44.5067C0 65.3978 16.9356 82.3334 37.8267 82.3334H219.453C240.344 82.3334 257.28 65.3978 257.28 44.5067V44.4934C257.28 23.6023 240.344 6.66669 219.453 6.66669Z" fill="var(--sapContent_Illustrative_Color7)"/>
6
+ <path d="M228.613 188.653C230.133 188.469 231.582 187.905 232.827 187.013C232.426 186.82 232.088 186.517 231.852 186.139C231.616 185.762 231.492 185.325 231.493 184.88L232.253 144.88C232.258 144.314 232.467 143.769 232.842 143.345C233.217 142.921 233.732 142.647 234.293 142.573L264.733 138.293C265.188 138.233 265.65 138.302 266.067 138.493C266.441 137.296 266.559 136.033 266.413 134.787L255.253 40.3734C254.983 38.1684 253.917 36.1382 252.254 34.6648C250.592 33.1914 248.448 32.3764 246.227 32.3734C245.861 32.376 245.496 32.3983 245.133 32.44L112.573 48.1067C111.383 48.2456 110.232 48.6177 109.186 49.2016C108.14 49.7854 107.22 50.5696 106.477 51.5094C105.734 52.4492 105.183 53.5261 104.857 54.6787C104.53 55.8313 104.434 57.0369 104.573 58.2267L120.427 192.333C120.566 193.523 120.937 194.674 121.521 195.72C122.105 196.766 122.889 197.687 123.829 198.43C124.769 199.173 125.846 199.723 126.999 200.05C128.151 200.377 129.357 200.473 130.547 200.333L228.613 188.653ZM179.173 47.6933C181.08 47.8079 182.912 48.4781 184.443 49.6212C185.973 50.7644 187.136 52.3306 187.787 54.1266C188.438 55.9227 188.55 57.8701 188.107 59.7286C187.665 61.5871 186.688 63.2755 185.298 64.5856C183.907 65.8957 182.164 66.7702 180.282 67.1011C178.401 67.4321 176.463 67.2051 174.709 66.4482C172.955 65.6913 171.461 64.4376 170.411 62.8416C169.361 61.2456 168.801 59.3771 168.8 57.4667C168.883 54.7965 170.022 52.2683 171.967 50.4363C173.911 48.6044 176.503 47.6179 179.173 47.6933Z" fill="var(--sapContent_Illustrative_Color6)"/>
7
+ <path d="M269.067 134.453L257.907 40.04C257.539 36.9376 255.955 34.108 253.502 32.1729C251.05 30.2378 247.929 29.3555 244.826 29.72L112.253 45.4C110.717 45.5802 109.231 46.0617 107.881 46.817C106.531 47.5723 105.343 48.5865 104.386 49.8015C103.428 51.0166 102.72 52.4085 102.302 53.8977C101.883 55.3869 101.762 56.9441 101.946 58.48L117.8 192.573C118.139 195.437 119.517 198.077 121.672 199.994C123.826 201.911 126.609 202.971 129.493 202.973C129.939 202.971 130.384 202.944 130.826 202.893L228.867 191.307C230.541 191.108 232.153 190.553 233.595 189.679C235.037 188.805 236.275 187.632 237.227 186.24L267.053 142.48C268.67 140.135 269.385 137.284 269.067 134.453V134.453ZM120.44 192.267L104.587 58.2267C104.447 57.0369 104.543 55.8312 104.87 54.6787C105.197 53.5261 105.747 52.4492 106.49 51.5094C107.233 50.5696 108.154 49.7854 109.2 49.2015C110.246 48.6177 111.397 48.2456 112.587 48.1066L245.146 32.44C245.509 32.3982 245.875 32.376 246.24 32.3733C248.461 32.3764 250.605 33.1913 252.267 34.6647C253.93 36.1381 254.997 38.1683 255.267 40.3733L266.427 134.787C266.573 136.033 266.454 137.296 266.08 138.493C265.663 138.302 265.201 138.233 264.747 138.293L234.306 142.573C233.745 142.647 233.23 142.921 232.855 143.345C232.48 143.769 232.271 144.314 232.267 144.88L231.507 184.88C231.505 185.325 231.629 185.762 231.865 186.139C232.101 186.517 232.439 186.82 232.84 187.013C231.595 187.905 230.146 188.468 228.626 188.653L130.573 200.24C128.172 200.526 125.756 199.846 123.856 198.351C121.956 196.856 120.727 194.668 120.44 192.267V192.267Z" fill="var(--sapContent_Illustrative_Color6)"/>
8
+ <path d="M237.213 186.573C238.737 186.388 240.19 185.825 241.44 184.933C241.04 184.739 240.703 184.435 240.467 184.058C240.232 183.681 240.107 183.245 240.107 182.8L240.867 142.8C240.875 142.233 241.087 141.688 241.464 141.264C241.841 140.841 242.358 140.567 242.92 140.493L273.36 136.213C273.813 136.146 274.276 136.21 274.693 136.4C275.067 135.202 275.19 133.941 275.053 132.693L263.867 38.2267C263.591 36.0218 262.521 33.993 260.857 32.5203C259.193 31.0477 257.049 30.2322 254.827 30.2267C254.467 30.2068 254.106 30.2068 253.747 30.2267L121.173 45.8934C119.983 46.0323 118.833 46.4044 117.787 46.9883C116.741 47.5721 115.82 48.3563 115.077 49.296C114.334 50.2358 113.783 51.3127 113.457 52.4653C113.13 53.6179 113.034 54.8236 113.173 56.0134L129.053 190.227C129.191 191.417 129.562 192.569 130.145 193.616C130.728 194.663 131.512 195.584 132.453 196.328C133.393 197.071 134.47 197.621 135.624 197.947C136.777 198.273 137.983 198.368 139.173 198.227L237.213 186.573ZM187.787 45.6133C189.693 45.7305 191.524 46.4032 193.053 47.5484C194.582 48.6936 195.743 50.2613 196.392 52.0582C197.041 53.8551 197.149 55.8026 196.704 57.6605C196.259 59.5184 195.281 61.2054 193.888 62.5137C192.496 63.8219 190.752 64.694 188.87 65.0225C186.988 65.351 185.051 65.1215 183.298 64.3624C181.544 63.6032 180.052 62.3475 179.004 60.7502C177.956 59.1529 177.398 57.2838 177.4 55.3734C177.484 52.7019 178.625 50.173 180.572 48.3428C182.52 46.5125 185.115 45.5307 187.787 45.6133Z" fill="var(--sapContent_Illustrative_Color8)"/>
9
+ <path d="M277.68 132.373L266.52 37.96C266.149 34.8565 264.562 32.0268 262.108 30.092C259.653 28.1572 256.531 27.2754 253.427 27.64L120.867 43.32C117.764 43.6874 114.934 45.2715 112.999 47.7241C111.064 50.1767 110.182 53.2973 110.547 56.4L126.4 190.493C126.742 193.356 128.12 195.995 130.275 197.911C132.429 199.827 135.21 200.888 138.093 200.893C138.539 200.891 138.984 200.865 139.427 200.813L237.48 189.213C239.153 189.018 240.765 188.464 242.205 187.589C243.646 186.715 244.881 185.541 245.827 184.147L275.653 140.387C277.275 138.048 277.995 135.202 277.68 132.373V132.373ZM129.053 190.227L113.2 56.1333C113.06 54.9435 113.157 53.7379 113.483 52.5853C113.81 51.4327 114.36 50.3558 115.103 49.416C115.846 48.4763 116.767 47.692 117.813 47.1082C118.859 46.5243 120.01 46.1524 121.2 46.0134L253.773 30.3467C254.133 30.3268 254.494 30.3268 254.853 30.3467C257.075 30.3522 259.219 31.1677 260.883 32.6403C262.547 34.113 263.618 36.1418 263.893 38.3467L275.053 132.76C275.19 134.007 275.067 135.269 274.693 136.467C274.276 136.277 273.813 136.212 273.36 136.28L242.92 140.56C242.358 140.634 241.841 140.907 241.464 141.331C241.087 141.754 240.875 142.3 240.867 142.867L240.107 182.867C240.107 183.311 240.232 183.747 240.467 184.125C240.703 184.502 241.04 184.805 241.44 185C240.19 185.891 238.737 186.455 237.213 186.64L139.173 198.227C137.983 198.368 136.777 198.273 135.624 197.947C134.47 197.621 133.393 197.071 132.453 196.328C131.512 195.584 130.728 194.663 130.145 193.616C129.561 192.569 129.191 191.417 129.053 190.227V190.227ZM273.053 138.987L242.853 181.907L243.587 143.093L273.053 138.987Z" fill="var(--sapContent_Illustrative_Color4)"/>
10
+ <path d="M242.8 181.907L273.08 138.933L243.533 143.093L242.8 181.907Z" fill="var(--sapContent_Illustrative_Color8)"/>
11
+ <path d="M187.773 65.16C193.503 65.16 198.147 60.7843 198.147 55.3867C198.147 49.989 193.503 45.6133 187.773 45.6133C182.044 45.6133 177.4 49.989 177.4 55.3867C177.4 60.7843 182.044 65.16 187.773 65.16Z" fill="var(--sapContent_Illustrative_Color3)"/>
12
+ <path d="M194.78 51.7146C195.133 51.1974 194.205 49.951 192.709 48.9304C191.212 47.9098 189.713 47.5017 189.36 48.0188C189.008 48.5359 189.935 49.7825 191.432 50.803C192.928 51.8236 194.427 52.2317 194.78 51.7146Z" fill="var(--sapContent_Illustrative_Color8)"/>
13
+ <path d="M234.028 86.8214L154.051 95.185C150.807 95.5243 148.452 98.4295 148.791 101.674L149.121 104.83C149.46 108.075 152.365 110.43 155.61 110.09L235.587 101.727C238.832 101.387 241.187 98.4823 240.847 95.2378L240.517 92.0817C240.178 88.8372 237.273 86.4821 234.028 86.8214Z" fill="var(--sapContent_Illustrative_Color6)"/>
14
+ <path d="M207.254 116.289L156.411 121.606C153.775 121.882 151.861 124.243 152.137 126.879L152.697 132.237C152.973 134.874 155.334 136.787 157.97 136.512L208.813 131.195C211.449 130.919 213.363 128.558 213.088 125.922L212.527 120.564C212.252 117.928 209.891 116.014 207.254 116.289Z" fill="var(--sapContent_Illustrative_Color6)"/>
15
+ <path d="M226.733 94.04C226.236 93.5279 225.641 93.1208 224.984 92.8429C224.327 92.5649 223.62 92.4216 222.907 92.4216C222.193 92.4216 221.487 92.5649 220.829 92.8429C220.172 93.1208 219.577 93.5279 219.08 94.04L181.747 131.373L169.08 118.707C168.321 117.938 167.349 117.411 166.29 117.195C165.231 116.979 164.132 117.083 163.131 117.493C162.131 117.903 161.275 118.601 160.673 119.499C160.07 120.396 159.748 121.452 159.747 122.533C159.748 123.248 159.892 123.954 160.172 124.612C160.451 125.269 160.86 125.864 161.373 126.36L177.853 142.853C178.351 143.367 178.946 143.776 179.605 144.055C180.263 144.335 180.971 144.479 181.687 144.479C182.402 144.479 183.11 144.335 183.769 144.055C184.427 143.776 185.023 143.367 185.52 142.853L226.733 101.64C227.246 101.143 227.653 100.548 227.931 99.8907C228.209 99.2334 228.352 98.527 228.352 97.8133C228.352 97.0996 228.209 96.3932 227.931 95.7359C227.653 95.0786 227.246 94.4838 226.733 93.9867V94.04Z" fill="var(--sapContent_Illustrative_Color3)"/>
16
+ <path d="M292.344 27.2121C292.157 26.9902 291.914 26.823 291.64 26.7283C291.367 26.6335 291.072 26.6148 290.788 26.6739L283.998 27.848C283.765 27.8887 283.543 27.9762 283.344 28.1052C283.146 28.2343 282.976 28.4021 282.844 28.5987C282.712 28.7953 282.622 29.0165 282.578 29.2491C282.534 29.4816 282.538 29.7206 282.589 29.9516C282.636 30.3144 282.8 30.652 283.056 30.9132C283.312 31.1745 283.646 31.3453 284.008 31.3997C284.183 31.4236 284.361 31.4236 284.536 31.3997L291.326 30.2256C291.626 30.1799 291.908 30.0539 292.143 29.861C292.377 29.6681 292.555 29.4154 292.657 29.1298C292.776 28.8105 292.81 28.4657 292.755 28.1293C292.7 27.7929 292.559 27.4768 292.344 27.2121Z" fill="var(--sapContent_Illustrative_Color5)"/>
17
+ <path d="M266.572 0.0891276C266.374 0.0172816 266.163 -0.0116605 265.953 0.00423897C265.743 0.0201384 265.538 0.0805105 265.353 0.181347C265.168 0.282183 265.007 0.421185 264.88 0.589144C264.752 0.757103 264.662 0.950186 264.615 1.1556L262.737 7.60334C262.67 7.83527 262.651 8.07817 262.679 8.31775C262.708 8.55732 262.784 8.78874 262.904 8.99841C263.023 9.20807 263.183 9.39173 263.375 9.53861C263.566 9.6855 263.785 9.79264 264.018 9.85371C264.114 9.88267 264.212 9.90233 264.312 9.91242C264.676 9.96335 265.045 9.87604 265.348 9.66772C265.65 9.45941 265.864 9.14521 265.946 8.78722L267.815 2.34926C267.883 2.11929 267.906 1.87794 267.88 1.63928C267.855 1.40062 267.782 1.1694 267.667 0.95908C267.551 0.748755 267.395 0.563522 267.207 0.414171C267.019 0.26482 266.803 0.154332 266.572 0.0891276Z" fill="var(--sapContent_Illustrative_Color5)"/>
18
+ <path d="M283.206 8.81764C282.979 8.8066 282.752 8.8407 282.539 8.91797C282.326 8.99523 282.13 9.11413 281.963 9.26774L274.449 16.1166C274.114 16.4268 273.911 16.8544 273.884 17.3102C273.857 17.7659 274.006 18.2147 274.302 18.5627C274.574 18.8854 274.959 19.0919 275.378 19.1399C275.62 19.1692 275.864 19.1459 276.096 19.0716C276.327 18.9973 276.54 18.8737 276.719 18.7094L284.233 11.8605C284.572 11.553 284.777 11.1258 284.807 10.6692C284.836 10.2127 284.686 9.76269 284.389 9.41449C284.242 9.24046 284.062 9.09789 283.858 8.99533C283.655 8.89278 283.433 8.83234 283.206 8.81764Z" fill="var(--sapContent_Illustrative_Color5)"/>
19
+ </svg>
20
+ `;