@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,40 @@
1
+ export default `<svg width="320" height="204" viewBox="0 0 320 204" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-NoSavedItems_v1">
2
+ <path d="M305.547 -0.000482125H14.4533C12.5559 -0.00223412 10.6768 0.369982 8.92329 1.09488C7.16981 1.81977 5.57638 2.88314 4.23409 4.22419C2.8918 5.56524 1.82697 7.15768 1.10045 8.91049C0.373942 10.6633 -8.08861e-07 12.5421 0 14.4395V185.546C0 189.379 1.52275 193.056 4.23328 195.766C6.9438 198.477 10.6201 199.999 14.4533 199.999H305.547C309.38 199.999 313.056 198.477 315.767 195.766C318.477 193.056 320 189.379 320 185.546V14.4395C320 12.5421 319.626 10.6633 318.9 8.91049C318.173 7.15768 317.108 5.56524 315.766 4.22419C314.424 2.88314 312.83 1.81977 311.077 1.09488C309.323 0.369982 307.444 -0.00223412 305.547 -0.000482125V-0.000482125Z" fill="var(--sapContent_Illustrative_Color7)"/>
3
+ <path d="M248.718 49.7774C245.594 61.1974 241.04 73.9584 232.486 70.6612C221.765 66.5241 225.661 56.0335 228.798 44.5793C231.936 33.1251 236.158 24.1712 244.471 26.456C252.274 28.5873 251.854 38.3068 248.718 49.7774Z" fill="var(--sapContent_Illustrative_Color20)"/>
4
+ <path d="M259.017 41.8522C264.336 38.9951 267.347 34.2593 265.743 31.2746C264.139 28.2899 258.527 28.1864 253.209 31.0435C247.891 33.9007 244.88 38.6364 246.484 41.6211C248.087 44.6059 253.699 44.7093 259.017 41.8522Z" fill="var(--sapContent_Illustrative_Color20)"/>
5
+ <path d="M261.125 67.5176C258.642 73.8055 253.671 77.7032 249.997 76.2923C241.021 72.844 244.848 68.4392 247.863 62.2828C250.878 56.1264 255.297 52.1452 258.991 53.5082C265.766 56.0006 263.62 61.1956 261.125 67.5176Z" fill="var(--sapContent_Illustrative_Color20)"/>
6
+ <path d="M258.718 87.9593L209.531 68.5434C208.949 68.3137 208.291 68.5992 208.062 69.1811L194.955 102.386C194.725 102.968 195.01 103.626 195.592 103.855L244.779 123.271C245.361 123.501 246.019 123.215 246.249 122.634L259.356 89.429C259.586 88.8471 259.3 88.1891 258.718 87.9593Z" fill="var(--sapContent_Illustrative_Color19)"/>
7
+ <path d="M261.018 82.0344L211.906 62.6482C211.324 62.4184 210.666 62.7039 210.436 63.2859L205.732 75.2047C205.502 75.7867 205.787 76.4447 206.369 76.6744L255.481 96.0606C256.063 96.2903 256.721 96.0048 256.951 95.4229L261.656 83.504C261.885 82.9221 261.6 82.2641 261.018 82.0344Z" fill="var(--sapContent_Illustrative_Color20)"/>
8
+ <path d="M265.801 78.632L211.133 57.0524C210.551 56.8227 209.893 57.1082 209.663 57.6902L204.508 70.7517C204.278 71.3336 204.563 71.9916 205.145 72.2213L259.813 93.8009C260.395 94.0306 261.053 93.7451 261.283 93.1631L266.439 80.1016C266.669 79.5197 266.383 78.8617 265.801 78.632Z" fill="var(--sapContent_Illustrative_Color19)"/>
9
+ <path d="M19.6853 29.4586L14.6085 32.8125L23.8103 46.8156L28.8871 43.4617L19.6853 29.4586Z" fill="var(--sapContent_Illustrative_Color19)"/>
10
+ <path d="M68.4848 139.796L130.836 109.897C133.483 108.628 134.602 105.446 133.334 102.79L89.8961 11.7712C88.6285 9.11508 85.4549 7.99098 82.8076 9.2604L20.4566 39.1589C17.8093 40.4283 16.6908 43.6105 17.9584 46.2667L61.3963 137.285C62.6639 139.941 65.8375 141.065 68.4848 139.796Z" fill="var(--sapContent_Illustrative_Color19)"/>
11
+ <path d="M36.0394 26.4369L30.4686 28.8787L37.1715 44.2418L42.7424 41.8001L36.0394 26.4369Z" fill="var(--sapContent_Illustrative_Color19)"/>
12
+ <path d="M65.7877 141.075L127.833 110.929C130.467 109.649 131.566 106.469 130.288 103.826L86.4924 13.2541C85.2143 10.611 82.0427 9.50595 79.4084 10.7859L17.3634 40.9315C14.7291 42.2114 13.6296 45.3916 14.9077 48.0347L58.7037 138.607C59.9818 141.25 63.1534 142.355 65.7877 141.075Z" fill="var(--sapContent_Illustrative_Color18)"/>
13
+ <path d="M77.4775 35.28L40.9463 53.0293L47.2579 66.082L83.7891 48.3327L77.4775 35.28Z" fill="var(--sapContent_Illustrative_Color7)"/>
14
+ <path d="M237.466 133.51L208.516 202.616L147.567 131.771C147.051 131.175 146.74 130.429 146.678 129.644C146.616 128.858 146.807 128.074 147.223 127.404L178.123 77.8445L237.466 133.51Z" fill="var(--sapContent_Illustrative_Color18)"/>
15
+ <path d="M238.585 133.574L268.27 132.796L199.976 79.7379L178.605 78.3948L238.585 133.574L209.037 199.161C207.843 201.78 211.111 204.161 213.254 202.228L268.27 132.796" fill="var(--sapContent_Illustrative_Color7)"/>
16
+ <path d="M211.478 203.999C210.681 203.994 209.906 203.736 209.266 203.261C208.56 202.766 208.052 202.039 207.831 201.207C207.61 200.375 207.689 199.492 208.056 198.713L237.289 133.839L177.858 79.1924C177.695 79.0425 177.583 78.8458 177.537 78.6296C177.491 78.4134 177.513 78.1882 177.6 77.9851C177.687 77.781 177.835 77.6088 178.024 77.4923C178.213 77.3758 178.433 77.3208 178.655 77.3349L200.024 78.678C200.24 78.6913 200.446 78.7694 200.616 78.9019L268.915 131.957H268.927C269.128 132.117 269.266 132.343 269.316 132.595C269.331 132.674 269.336 132.754 269.332 132.834V132.834C269.326 133.031 269.265 133.224 269.156 133.388C269.137 133.415 269.117 133.443 269.096 133.469L214.09 202.892C214.053 202.94 214.011 202.985 213.965 203.025C213.286 203.646 212.4 203.993 211.478 203.999V203.999ZM239.287 134.629L210.015 199.599C209.869 199.925 209.837 200.291 209.925 200.638C210.013 200.984 210.215 201.291 210.499 201.509C210.783 201.727 211.132 201.843 211.491 201.839C211.849 201.834 212.195 201.71 212.474 201.485L265.995 133.936L239.287 134.629ZM181.55 79.6639L238.994 132.493L265.232 131.812L199.568 80.7975L181.55 79.6639Z" fill="var(--sapContent_Illustrative_Color19)"/>
17
+ <path d="M210.421 197.158C210.267 197.158 210.115 197.126 209.975 197.062C209.835 196.999 209.71 196.907 209.609 196.791L148.786 127.118C148.694 127.012 148.623 126.889 148.578 126.756C148.532 126.622 148.514 126.481 148.524 126.341C148.533 126.2 148.57 126.063 148.633 125.937C148.696 125.811 148.783 125.699 148.889 125.606C148.995 125.514 149.119 125.443 149.253 125.398C149.386 125.353 149.528 125.335 149.669 125.345C149.809 125.355 149.947 125.392 150.073 125.455C150.199 125.518 150.312 125.605 150.405 125.711L211.225 195.384C211.361 195.538 211.45 195.729 211.48 195.932C211.51 196.136 211.48 196.344 211.395 196.531C211.309 196.719 211.172 196.877 210.998 196.988C210.824 197.1 210.622 197.158 210.416 197.158H210.421Z" fill="var(--sapContent_Illustrative_Color19)"/>
18
+ <path d="M210.657 201.639C210.469 201.526 210.304 201.377 210.173 201.2C210.043 201.023 209.949 200.822 209.896 200.609C209.843 200.396 209.834 200.174 209.867 199.957C209.901 199.74 209.977 199.531 210.092 199.344L211.655 195.903L215.147 198.136L212.934 200.994C212.827 201.186 212.684 201.355 212.511 201.491C212.339 201.627 212.142 201.728 211.93 201.788C211.718 201.848 211.497 201.866 211.279 201.841C211.06 201.815 210.849 201.747 210.657 201.639V201.639Z" fill="var(--sapContent_Illustrative_Color20)"/>
19
+ <path d="M218.094 188.182C217.984 188.182 217.874 188.157 217.775 188.108C217.689 188.069 217.613 188.012 217.55 187.942C217.486 187.872 217.438 187.79 217.408 187.701C217.377 187.613 217.365 187.518 217.372 187.425C217.379 187.331 217.404 187.239 217.448 187.156L239.518 143.559C239.607 143.391 239.758 143.264 239.938 143.205C240.119 143.145 240.316 143.158 240.488 143.24C240.573 143.28 240.65 143.336 240.713 143.406C240.776 143.476 240.824 143.558 240.855 143.647C240.886 143.736 240.898 143.83 240.892 143.924C240.885 144.017 240.86 144.109 240.817 144.193L218.744 187.787C218.684 187.907 218.591 188.008 218.476 188.078C218.361 188.147 218.229 188.184 218.094 188.182V188.182Z" fill="var(--sapContent_Illustrative_Color19)"/>
20
+ <path d="M226.009 180.474C225.899 180.463 225.793 180.427 225.699 180.369C225.618 180.322 225.547 180.259 225.491 180.184C225.435 180.109 225.395 180.023 225.373 179.932C225.351 179.841 225.347 179.747 225.362 179.655C225.377 179.562 225.41 179.474 225.46 179.395L251.906 138.273C252.011 138.114 252.174 138.003 252.359 137.962C252.545 137.921 252.739 137.954 252.901 138.054C252.982 138.101 253.053 138.164 253.109 138.239C253.165 138.314 253.205 138.399 253.228 138.49C253.25 138.581 253.254 138.675 253.239 138.768C253.224 138.86 253.19 138.948 253.14 139.028L226.694 180.15C226.622 180.262 226.519 180.352 226.398 180.41C226.277 180.467 226.142 180.489 226.009 180.474V180.474Z" fill="var(--sapContent_Illustrative_Color19)"/>
21
+ <path d="M229.644 119.791C229.422 119.791 229.208 119.705 229.048 119.552L191.116 84.5457C190.945 84.3874 190.844 84.1679 190.835 83.9352C190.826 83.7026 190.91 83.476 191.069 83.305C191.147 83.2203 191.242 83.1518 191.347 83.1035C191.452 83.0552 191.565 83.028 191.681 83.0236C191.796 83.0192 191.911 83.0375 192.02 83.0777C192.128 83.1178 192.228 83.1789 192.312 83.2574L230.241 118.264C230.326 118.342 230.395 118.436 230.443 118.541C230.491 118.646 230.519 118.759 230.523 118.875C230.528 118.99 230.509 119.105 230.469 119.213C230.429 119.321 230.368 119.42 230.289 119.505C230.207 119.594 230.108 119.666 229.997 119.715C229.886 119.764 229.766 119.79 229.644 119.791Z" fill="var(--sapContent_Illustrative_Color19)"/>
22
+ <path d="M249.226 128.985C249.025 128.986 248.83 128.913 248.679 128.78L211.225 96.6148C211.141 96.5427 211.071 96.4546 211.021 96.3555C210.971 96.2565 210.941 96.1485 210.932 96.0378C210.924 95.9271 210.938 95.8159 210.973 95.7105C211.008 95.6052 211.064 95.5079 211.137 95.4241C211.209 95.3397 211.298 95.2704 211.397 95.2203C211.496 95.1702 211.604 95.1401 211.715 95.1319C211.826 95.1237 211.938 95.1376 212.043 95.1726C212.149 95.2076 212.246 95.2631 212.33 95.336L249.775 127.485C249.859 127.557 249.929 127.645 249.98 127.744C250.03 127.843 250.06 127.951 250.068 128.062C250.077 128.173 250.063 128.284 250.027 128.389C249.992 128.495 249.936 128.592 249.863 128.676C249.786 128.771 249.689 128.848 249.579 128.901C249.469 128.954 249.348 128.983 249.226 128.985V128.985Z" fill="var(--sapContent_Illustrative_Color19)"/>
23
+ <path d="M199.703 169.157L103.435 147.064C102.458 146.841 101.586 146.292 100.962 145.508C100.338 144.724 99.9987 143.751 100 142.749V47.5249C99.9999 46.5424 100.195 45.5696 100.574 44.663C100.952 43.7564 101.507 42.9339 102.206 42.2434C102.905 41.5528 103.734 41.0078 104.645 40.64C105.556 40.2723 106.531 40.089 107.514 40.1009L197.916 66.0524L208.301 162.32C208.299 163.375 208.058 164.416 207.599 165.366C207.139 166.315 206.471 167.149 205.646 167.806C204.82 168.462 203.857 168.925 202.828 169.159C201.799 169.393 200.731 169.392 199.703 169.157V169.157Z" fill="var(--sapContent_Illustrative_Color15)"/>
24
+ <path d="M205.095 165.224L107.669 142.381C107.085 142.238 106.567 141.903 106.197 141.429C105.827 140.955 105.627 140.371 105.629 139.77V42.6863C105.621 42.2824 105.707 41.8822 105.878 41.5165C106.049 41.1507 106.302 40.8293 106.618 40.5769C106.933 40.3246 107.302 40.1482 107.697 40.0613C108.091 39.9743 108.5 39.9792 108.893 40.0756L194.596 60.4714C195.155 60.6065 195.653 60.9219 196.015 61.3688L207.747 75.7355C208.138 76.2208 208.351 76.8255 208.351 77.4488V162.621C208.357 163.024 208.271 163.422 208.1 163.786C207.928 164.15 207.675 164.47 207.361 164.721C207.047 164.972 206.679 165.148 206.287 165.235C205.894 165.323 205.486 165.319 205.095 165.224V165.224Z" fill="var(--sapContent_Illustrative_Color3)"/>
25
+ <path d="M182.529 90.1669L133.229 78.0192C132.421 77.8202 131.702 77.356 131.189 76.7008C130.676 76.0457 130.397 75.2373 130.398 74.405V49.9301C130.397 49.3675 130.524 48.8122 130.769 48.3056C131.014 47.7991 131.371 47.3546 131.812 47.0053C132.253 46.6561 132.767 46.4112 133.316 46.289C133.865 46.1668 134.435 46.1704 134.983 46.2997L184.283 58.0395C185.099 58.2354 185.825 58.7 186.344 59.3586C186.863 60.0171 187.146 60.8312 187.147 61.6699V86.5772C187.142 87.1399 187.01 87.6942 186.761 88.1986C186.511 88.703 186.151 89.1444 185.707 89.4897C185.263 89.835 184.746 90.0753 184.196 90.1926C183.645 90.3099 183.076 90.3011 182.529 90.1669Z" fill="var(--sapContent_Illustrative_Color15)"/>
26
+ <path d="M179.144 148.973L134.314 139.117C133.202 138.877 132.209 138.257 131.504 137.364C130.8 136.47 130.429 135.36 130.455 134.223L130.83 107.447C130.838 106.714 131.01 105.993 131.334 105.335C131.658 104.678 132.125 104.102 132.702 103.649C133.278 103.197 133.948 102.879 134.664 102.72C135.379 102.562 136.121 102.565 136.835 102.731L181.477 112.88C182.57 113.125 183.546 113.737 184.243 114.615C184.939 115.492 185.313 116.582 185.303 117.702L185.107 144.159C185.113 144.896 184.952 145.624 184.637 146.29C184.322 146.956 183.86 147.542 183.287 148.005C182.714 148.468 182.043 148.795 181.326 148.963C180.608 149.13 179.863 149.134 179.144 148.973Z" fill="var(--sapContent_Illustrative_Color8)"/>
27
+ <path d="M173.253 60.7164L178.148 61.7933C178.609 61.8904 179.022 62.1427 179.319 62.508C179.616 62.8733 179.779 63.3294 179.78 63.8002V81.6751C179.78 81.9736 179.716 82.2686 179.591 82.5397C179.466 82.8107 179.283 83.0513 179.056 83.2446C178.828 83.4379 178.561 83.5794 178.273 83.6591C177.986 83.7389 177.684 83.755 177.39 83.7065L172.495 82.8906C172.012 82.813 171.573 82.5659 171.256 82.1936C170.939 81.8213 170.765 81.3482 170.765 80.8592V62.7233C170.766 62.4169 170.835 62.1144 170.967 61.8381C171.099 61.5617 171.292 61.3184 171.53 61.126C171.769 60.9337 172.047 60.797 172.345 60.7262C172.644 60.6553 172.954 60.6519 173.253 60.7164V60.7164Z" fill="var(--sapContent_Illustrative_Color8)"/>
28
+ <path d="M111.988 139.307L120.442 140.968C121.242 141.126 122.018 140.604 122.175 139.804L122.594 137.675C122.751 136.875 122.23 136.098 121.43 135.941L112.976 134.28C112.176 134.122 111.4 134.644 111.243 135.444L110.824 137.573C110.667 138.373 111.188 139.15 111.988 139.307Z" fill="var(--sapContent_Illustrative_Color8)"/>
29
+ <path d="M203.681 155.475L195.324 153.381C194.533 153.182 193.731 153.663 193.533 154.454L193.005 156.559C192.807 157.35 193.288 158.152 194.079 158.35L202.435 160.445C203.226 160.643 204.028 160.163 204.227 159.371L204.754 157.266C204.953 156.475 204.472 155.673 203.681 155.475Z" fill="var(--sapContent_Illustrative_Color8)"/>
30
+ <path d="M182.725 124.073H182.546L133.914 113.255C133.805 113.238 133.7 113.198 133.606 113.138C133.513 113.078 133.432 113 133.37 112.908C133.308 112.817 133.265 112.713 133.244 112.604C133.223 112.495 133.224 112.383 133.248 112.274C133.272 112.166 133.318 112.064 133.383 111.974C133.447 111.883 133.53 111.808 133.625 111.75C133.72 111.693 133.826 111.656 133.936 111.642C134.046 111.627 134.158 111.635 134.265 111.665L182.937 122.458C183.154 122.482 183.352 122.591 183.488 122.76C183.624 122.93 183.687 123.147 183.663 123.364C183.64 123.58 183.531 123.778 183.361 123.914C183.191 124.05 182.974 124.113 182.758 124.09L182.725 124.073Z" fill="var(--sapContent_Illustrative_Color6)"/>
31
+ <path d="M182.725 131.669C182.665 131.676 182.605 131.676 182.546 131.669L133.914 120.851C133.698 120.804 133.509 120.674 133.388 120.488C133.268 120.302 133.227 120.076 133.274 119.86C133.32 119.643 133.451 119.454 133.637 119.334C133.822 119.214 134.048 119.173 134.265 119.219L182.937 130.061C183.154 130.085 183.352 130.194 183.488 130.364C183.624 130.534 183.687 130.751 183.663 130.967C183.639 131.183 183.531 131.381 183.361 131.518C183.191 131.654 182.974 131.717 182.758 131.693L182.725 131.669Z" fill="var(--sapContent_Illustrative_Color6)"/>
32
+ <path d="M182.725 139.232H182.546L133.914 128.414C133.698 128.367 133.509 128.237 133.388 128.051C133.268 127.865 133.227 127.639 133.274 127.422C133.32 127.206 133.451 127.017 133.637 126.897C133.822 126.777 134.048 126.736 134.265 126.782L182.937 137.616C183.154 137.64 183.352 137.749 183.488 137.919C183.624 138.089 183.687 138.306 183.663 138.522C183.639 138.738 183.531 138.936 183.361 139.072C183.191 139.209 182.974 139.272 182.758 139.248L182.725 139.232Z" fill="var(--sapContent_Illustrative_Color6)"/>
33
+ <path d="M62.897 150.294C63.2451 150.617 63.6737 150.84 64.138 150.94C64.6022 151.04 65.0848 151.013 65.535 150.862L76.3362 147.546C78.1229 146.998 78.6311 145.227 78.2016 143.827C78.0467 143.247 77.7078 142.734 77.236 142.363C76.7642 141.993 76.1849 141.786 75.5852 141.773C75.2952 141.775 75.0073 141.821 74.7312 141.91L63.9299 145.226C63.4531 145.362 63.0218 145.624 62.6817 145.985C62.3416 146.346 62.1054 146.792 61.998 147.276C61.8784 147.814 61.8982 148.373 62.0556 148.901C62.2129 149.43 62.5025 149.909 62.897 150.294V150.294Z" fill="var(--sapContent_Illustrative_Color5)"/>
34
+ <path d="M110.492 189.064C110.825 189.132 111.169 189.13 111.501 189.058C111.833 188.986 112.146 188.845 112.421 188.645C112.696 188.445 112.925 188.19 113.096 187.896C113.267 187.602 113.374 187.276 113.411 186.938L115.12 176.065C115.18 175.674 115.162 175.275 115.066 174.891C114.97 174.507 114.798 174.146 114.561 173.829C114.325 173.512 114.027 173.246 113.686 173.045C113.345 172.844 112.967 172.714 112.575 172.661C112.414 172.634 112.251 172.621 112.087 172.621C111.484 172.614 110.9 172.832 110.45 173.234C110 173.635 109.717 174.191 109.656 174.791L107.951 185.659C107.89 186.05 107.908 186.449 108.003 186.833C108.099 187.217 108.27 187.578 108.506 187.895C108.743 188.212 109.04 188.479 109.381 188.68C109.722 188.88 110.1 189.011 110.492 189.064V189.064Z" fill="var(--sapContent_Illustrative_Color5)"/>
35
+ <path d="M81.5465 178.321C81.9171 178.298 82.2791 178.199 82.6104 178.032C82.9417 177.864 83.2353 177.631 83.4734 177.346L94.279 164.671C94.7604 164.1 95.0024 163.365 94.9544 162.619C94.9063 161.874 94.5719 161.176 94.0211 160.671C93.5084 160.205 92.8392 159.949 92.1464 159.953C91.747 159.956 91.353 160.046 90.9913 160.215C90.6295 160.384 90.3084 160.629 90.05 160.934L79.2444 173.608C78.7598 174.182 78.5166 174.922 78.5659 175.671C78.6152 176.421 78.9532 177.122 79.5087 177.628C79.7842 177.874 80.1067 178.063 80.4569 178.182C80.8071 178.301 81.1777 178.348 81.5465 178.321V178.321Z" fill="var(--sapContent_Illustrative_Color5)"/>
36
+ <path d="M38.6666 161.196C38.6666 159.837 34.7238 158.75 29.4558 158.503C29.1546 153.242 27.9949 149.33 26.6365 149.333C25.2781 149.336 24.1486 153.278 23.8594 158.567C18.5763 158.928 14.6486 160.109 14.6667 161.47C14.6848 162.831 18.6095 163.918 23.8775 164.162C24.1938 169.424 25.3383 173.336 26.6938 173.333C28.0492 173.33 29.1847 169.387 29.4739 164.099C34.757 163.738 38.6816 162.557 38.6666 161.196Z" fill="var(--sapContent_Illustrative_Color18)"/>
37
+ <path d="M288 161.241C288 160.336 285.371 159.611 281.859 159.446C281.659 155.939 280.886 153.331 279.98 153.333C279.074 153.335 278.321 155.963 278.129 159.489C274.606 159.73 271.988 160.517 272 161.424C272.012 162.332 274.629 163.056 278.141 163.219C278.351 166.727 279.114 169.335 280.018 169.333C280.922 169.331 281.679 166.703 281.871 163.177C285.394 162.936 288.01 162.149 288 161.241Z" fill="var(--sapContent_Illustrative_Color18)"/>
38
+ <path d="M201.333 23.8625C201.333 22.5042 197.39 21.417 192.122 21.1701C191.821 15.9087 190.662 11.9965 189.303 11.9995C187.945 12.0025 186.815 15.9448 186.526 21.2333C181.243 21.5947 177.315 22.7753 177.333 24.1365C177.351 25.4978 181.276 26.585 186.544 26.829C186.86 32.0904 188.005 36.0025 189.36 35.9995C190.716 35.9965 191.851 32.0542 192.14 26.7657C197.424 26.4043 201.348 25.2238 201.333 23.8625Z" fill="var(--sapContent_Illustrative_Color18)"/>
39
+ </svg>
40
+ `;
@@ -0,0 +1,73 @@
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-NoSearchResults">
2
+ <rect y="67" width="320" height="138" rx="24" fill="var(--sapContent_Illustrative_Color20)"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M146.766 205H80.4156C80.4859 204.574 80.5709 204.141 80.6653 203.703C80.6964 203.563 80.7275 203.408 80.7586 203.252L80.7587 203.252C80.8227 202.941 80.8975 202.624 80.9735 202.303C81.0268 202.077 81.0808 201.849 81.1321 201.618C81.1476 201.54 81.1671 201.463 81.1865 201.385C81.206 201.307 81.2254 201.229 81.241 201.151C81.2721 201.105 81.2721 201.058 81.2721 201.011C81.2876 200.934 81.3071 200.852 81.3265 200.77C81.346 200.689 81.3654 200.607 81.381 200.529C81.3965 200.451 81.416 200.374 81.4354 200.296C81.4549 200.218 81.4743 200.14 81.4899 200.062C81.552 199.798 81.6141 199.519 81.6763 199.239L81.6766 199.238L81.6766 199.238C81.7388 198.973 81.801 198.709 81.8477 198.445C81.9566 197.916 82.0655 197.371 82.1433 196.811L82.2366 196.111C82.2421 196.067 82.2495 196.025 82.2567 195.984C82.2702 195.908 82.2833 195.834 82.2833 195.753C82.3766 194.913 82.4544 194.042 82.4544 193.155C82.47 192.253 82.4389 191.335 82.3455 190.37C82.2522 189.561 82.1277 188.706 81.941 187.834C81.5988 186.232 81.0698 184.536 80.2764 182.747C80.237 182.668 80.2038 182.589 80.169 182.507C80.1488 182.459 80.1281 182.41 80.1053 182.358V182.296C80.043 182.156 79.9808 182.016 79.9341 181.876V181.845C78.6584 178.5 77.6005 173.288 76.6982 167.516C74.1312 166.194 71.6732 164.156 69.5885 161.838L69.3551 161.558C69.3395 161.542 69.3279 161.527 69.3162 161.511C69.3045 161.496 69.2929 161.48 69.2773 161.465C69.2332 161.42 69.1969 161.369 69.1629 161.32C69.149 161.3 69.1353 161.28 69.1217 161.262C69.1062 161.239 69.0945 161.22 69.0828 161.2C69.0712 161.181 69.0595 161.161 69.044 161.138C69.0128 161.06 68.9662 160.998 68.9195 160.936L68.9195 160.936C68.9007 160.917 68.8875 160.892 68.8732 160.865C68.8638 160.848 68.854 160.83 68.8417 160.811C68.795 160.749 68.7484 160.671 68.7173 160.609C68.7017 160.586 68.69 160.562 68.6784 160.539C68.6667 160.516 68.655 160.492 68.6395 160.469C68.6239 160.43 68.6045 160.395 68.585 160.36C68.5656 160.325 68.5461 160.29 68.5306 160.251C68.5243 160.232 68.5131 160.214 68.5019 160.195C68.4851 160.167 68.4683 160.139 68.4683 160.111C68.4528 160.072 68.4333 160.033 68.4139 159.994C68.3944 159.955 68.375 159.917 68.3594 159.878C68.3283 159.847 68.2972 159.8 68.2972 159.753C68.2816 159.707 68.2622 159.664 68.2427 159.621C68.2233 159.578 68.2039 159.535 68.1883 159.489C68.1846 159.481 68.1801 159.473 68.1753 159.465C68.1598 159.436 68.1416 159.404 68.1416 159.38C68.1183 159.318 68.095 159.259 68.0716 159.201C68.0483 159.143 68.0249 159.084 68.0016 159.022V158.991C67.9083 158.726 67.8149 158.446 67.7371 158.166V158.089C67.706 157.98 67.6749 157.871 67.6438 157.746C67.6127 157.715 67.6127 157.669 67.6127 157.637C67.5971 157.583 67.5854 157.529 67.5738 157.474C67.5621 157.42 67.5504 157.365 67.5349 157.311C67.5038 157.28 67.5038 157.233 67.5038 157.202C67.4974 157.18 67.4904 157.157 67.4832 157.133C67.4555 157.043 67.426 156.946 67.426 156.86V156.751C67.4196 156.7 67.4081 156.652 67.3966 156.604C67.3801 156.535 67.3638 156.466 67.3638 156.393V156.299C67.3578 156.252 67.3473 156.204 67.3366 156.156C67.3193 156.077 67.3015 155.997 67.3015 155.911V155.848C66.5941 150.974 67.2924 145.275 67.756 141.491C67.945 139.949 68.095 138.725 68.095 138.004C68.095 135.515 68.9973 129.696 75.1425 127.861C76.7449 127.394 78.1606 127.176 79.3741 127.176H81.0854C81.1476 127.207 81.2098 127.207 81.2721 127.207H81.3499C81.4104 127.214 81.4651 127.226 81.5177 127.238C81.5869 127.254 81.6526 127.269 81.7232 127.269H81.8321C81.8944 127.3 81.941 127.3 82.0033 127.3H82.0966C82.1277 127.3 82.155 127.308 82.1822 127.316C82.2094 127.324 82.2366 127.332 82.2678 127.332H82.3144C82.4233 127.347 82.5322 127.378 82.6411 127.409H82.7189C82.7345 127.415 82.75 127.422 82.7656 127.428C82.7967 127.442 82.8278 127.456 82.8589 127.456C82.89 127.487 82.9056 127.487 82.9367 127.487C82.9523 127.492 82.9678 127.499 82.9834 127.506C83.0145 127.52 83.0456 127.534 83.0767 127.534H83.1234C83.1623 127.549 83.2051 127.565 83.2479 127.581C83.2907 127.596 83.3334 127.612 83.3723 127.627H83.4346C83.4419 127.631 83.4501 127.635 83.4588 127.64C83.4868 127.656 83.5197 127.674 83.5435 127.674C83.559 127.705 83.6057 127.705 83.6057 127.705C83.6261 127.712 83.6436 127.722 83.6594 127.73C83.6796 127.742 83.6971 127.752 83.7146 127.752H83.7613C83.7872 127.765 83.8132 127.775 83.8381 127.785C83.8727 127.798 83.9052 127.811 83.9324 127.829C83.9635 127.861 83.9635 127.861 83.9946 127.861C84.0102 127.861 84.0218 127.868 84.0335 127.876C84.0452 127.884 84.0569 127.892 84.0724 127.892C84.1035 127.923 84.1346 127.923 84.1346 127.923C84.1502 127.954 84.1969 127.954 84.1969 127.954C84.228 127.985 84.228 127.985 84.2591 127.985C84.2902 127.985 84.3369 128.016 84.3369 128.016C84.9665 127.782 85.6059 127.557 86.2395 127.334C86.4044 127.276 86.5689 127.218 86.7327 127.16C86.9816 126.849 87.2306 126.538 87.4795 126.211C87.5806 126.079 87.6817 125.951 87.7829 125.823C87.884 125.694 87.9851 125.566 88.0862 125.434C88.1077 125.391 88.1366 125.355 88.1678 125.317C88.1818 125.3 88.1962 125.282 88.2107 125.262V125.231C88.2807 125.138 88.3546 125.041 88.4285 124.944C88.5024 124.846 88.5763 124.749 88.6463 124.656C88.693 124.609 88.7241 124.562 88.7552 124.516C88.7707 124.485 88.8019 124.453 88.8019 124.453C88.8719 124.36 88.9419 124.263 89.0119 124.166C89.0819 124.068 89.1519 123.971 89.2219 123.878C89.2375 123.855 89.2569 123.827 89.2764 123.8C89.2958 123.773 89.3153 123.746 89.3308 123.722C89.4864 123.52 89.6264 123.318 89.7664 123.116C89.7726 123.103 89.7838 123.091 89.795 123.078C89.8118 123.06 89.8286 123.041 89.8286 123.022V122.991C89.8987 122.882 89.9726 122.777 90.0465 122.672C90.1203 122.567 90.1942 122.462 90.2643 122.353C90.2704 122.341 90.2789 122.331 90.2871 122.322C90.2995 122.307 90.3109 122.294 90.3109 122.275C90.4665 122.058 90.6221 121.824 90.7621 121.606C90.7932 121.606 90.7932 121.575 90.7932 121.575C90.871 121.459 90.9449 121.342 91.0188 121.225C91.0927 121.109 91.1666 120.992 91.2444 120.875C91.3051 120.778 91.3659 120.683 91.4257 120.59C91.5191 120.444 91.6102 120.302 91.6955 120.16C91.7967 119.996 91.8978 119.829 91.9989 119.662C92.1 119.495 92.2012 119.327 92.3023 119.164C92.3801 119.008 92.4734 118.853 92.5668 118.697C92.5823 118.682 92.6134 118.635 92.6134 118.635C92.9868 117.997 93.3291 117.39 93.6402 116.799C94.3559 115.492 94.9159 114.326 95.3515 113.377C94.5425 112.972 93.8269 112.381 93.298 111.65C91.8356 109.627 91.8667 106.656 93.3602 104.664C91.7111 102.86 90.6687 100.48 90.4665 98.0215C90.4198 97.6325 90.4198 97.5547 90.4198 96.8391C90.4198 96.1235 90.0776 95.4545 89.4864 95.05C87.075 93.3854 85.5037 90.6161 85.5037 87.4735C85.5037 86.0889 85.8148 84.7821 86.3593 83.6153C86.4527 83.4286 86.4371 83.2264 86.3282 83.0552C84.648 80.3483 85.7526 76.5834 88.1018 74.4209C90.4509 72.2584 93.7024 71.4027 96.8606 70.9516C97.3118 70.8738 97.7474 70.6715 98.0585 70.3137C99.3342 68.8669 101.201 67.949 103.286 67.949C104.702 67.949 106.008 68.3691 107.113 69.1002C107.657 68.8971 108.193 68.677 108.727 68.4577C109.216 68.257 109.703 68.057 110.193 67.8712C110.291 67.8469 110.379 67.813 110.472 67.7771C110.498 67.7671 110.524 67.7569 110.551 67.7468C110.582 67.7156 110.598 67.7156 110.629 67.7156C110.683 67.7001 110.734 67.6806 110.784 67.6612C110.835 67.6417 110.886 67.6223 110.94 67.6067C110.971 67.5756 111.018 67.5756 111.049 67.5756L111.329 67.4823C111.345 67.4771 111.36 67.4702 111.376 67.4633C111.407 67.4494 111.438 67.4356 111.469 67.4356C111.483 67.4299 111.498 67.4237 111.513 67.4173C111.58 67.389 111.654 67.3578 111.718 67.3578C111.741 67.3521 111.761 67.3443 111.782 67.3367C111.816 67.3236 111.85 67.3111 111.889 67.3111C111.9 67.3066 111.911 67.3021 111.922 67.2976C111.985 67.2716 112.04 67.2489 112.107 67.2489C112.125 67.2444 112.144 67.2385 112.164 67.2325C112.213 67.2179 112.265 67.2022 112.309 67.2022C112.33 67.1971 112.351 67.1901 112.371 67.1832C112.413 67.1694 112.454 67.1556 112.496 67.1556C112.529 67.15 112.56 67.1425 112.591 67.1351C112.647 67.1218 112.7 67.1089 112.76 67.1089C112.807 67.0778 112.854 67.0778 112.9 67.0778C112.949 67.0724 112.996 67.065 113.043 67.0578C113.129 67.0443 113.214 67.0311 113.305 67.0311C113.398 67 113.507 67 113.616 67H115.343C115.405 67.0311 115.467 67.0311 115.529 67.0311C115.561 67.0622 115.607 67.0622 115.654 67.0622C115.675 67.0674 115.695 67.0743 115.716 67.0812C115.758 67.0951 115.799 67.1089 115.841 67.1089C115.887 67.14 115.918 67.14 115.965 67.14C116.012 67.1535 116.056 67.164 116.099 67.1742C116.155 67.1875 116.208 67.2001 116.261 67.2178C116.276 67.223 116.292 67.2299 116.307 67.2368C116.338 67.2506 116.37 67.2645 116.401 67.2645C116.463 67.28 116.51 67.2956 116.556 67.3111C116.569 67.3154 116.583 67.3209 116.598 67.3265C116.636 67.3415 116.678 67.3578 116.712 67.3578C116.727 67.363 116.743 67.3699 116.759 67.3768C116.79 67.3907 116.821 67.4045 116.852 67.4045C116.878 67.411 116.901 67.4229 116.924 67.4345C116.956 67.4509 116.987 67.4667 117.023 67.4667C117.041 67.4726 117.056 67.4806 117.071 67.4884C117.095 67.5013 117.118 67.5134 117.147 67.5134C117.173 67.5199 117.197 67.5318 117.219 67.5434C117.251 67.5598 117.282 67.5756 117.319 67.5756C117.337 67.5818 117.355 67.5903 117.373 67.5984C117.4 67.6109 117.424 67.6223 117.443 67.6223C117.474 67.6379 117.501 67.6495 117.529 67.6612C117.556 67.6729 117.583 67.6845 117.614 67.7001C117.661 67.7156 117.661 67.7156 117.723 67.7467L117.723 67.7468L117.91 67.8401C117.925 67.8557 117.956 67.8868 117.988 67.8868C118.065 67.9334 118.128 67.9646 118.19 67.9957H118.221C118.563 68.1824 118.874 68.3846 119.185 68.6024C119.224 68.6257 119.259 68.653 119.294 68.6802C119.329 68.7074 119.364 68.7347 119.403 68.758L119.434 68.7891C119.453 68.8027 119.472 68.8163 119.492 68.8303C119.541 68.8643 119.593 68.9006 119.637 68.9447L119.668 68.9758C119.692 69.0002 119.719 69.0222 119.746 69.0447C119.789 69.0794 119.832 69.1152 119.87 69.1625C119.901 69.1936 119.936 69.2247 119.971 69.2558C120.006 69.2869 120.041 69.3181 120.072 69.3492C120.586 69.8314 121.037 70.3448 121.441 70.9205C121.659 71.2316 121.861 71.5583 122.032 71.9006C123.059 71.5272 124.164 71.3405 125.253 71.3405H126.046C126.14 71.3716 126.217 71.3716 126.311 71.3716H126.435C126.474 71.3716 126.513 71.3794 126.552 71.3872C126.591 71.395 126.63 71.4027 126.669 71.4027C126.715 71.4339 126.762 71.4339 126.809 71.4339C126.837 71.4395 126.863 71.4471 126.888 71.4546C126.933 71.4678 126.977 71.4805 127.026 71.4805C127.049 71.4862 127.07 71.494 127.09 71.5016C127.125 71.5147 127.158 71.5272 127.198 71.5272C127.218 71.5324 127.239 71.5393 127.26 71.5462C127.301 71.56 127.343 71.5739 127.384 71.5739C127.416 71.5803 127.446 71.5921 127.475 71.6037C127.516 71.6201 127.556 71.6361 127.602 71.6361C127.618 71.6413 127.633 71.6482 127.649 71.6551C127.68 71.6689 127.711 71.6828 127.742 71.6828C127.804 71.7061 127.863 71.7256 127.921 71.745C127.979 71.7645 128.038 71.7839 128.1 71.8072C130.962 72.834 133.187 75.4632 133.747 78.4658C133.898 79.285 133.943 80.1512 133.988 81.0152C134.083 82.8259 134.177 84.6269 135.241 85.9645C137.123 86.1356 139.83 86.6334 143.019 87.9714C143.027 87.9751 143.035 87.9796 143.044 87.9844C143.072 87.9999 143.105 88.0181 143.128 88.0181H143.175C146.893 88.2203 149.958 91.1451 150.347 94.8322C150.748 95.5353 151.082 96.198 151.376 96.7793C151.686 97.394 151.95 97.9176 152.198 98.3015C153.49 100.293 153.49 100.557 153.49 100.557C153.692 103.591 154.236 107.418 154.734 110.716C155.1 113.14 156.121 114.379 157.112 115.582C157.47 116.016 157.824 116.445 158.141 116.924C158.482 117.431 159.329 118.928 160.472 120.95C163.395 126.12 168.257 134.719 171.567 138.969C176.188 144.88 181.897 159.987 182.893 163.098C183.749 165.743 184.682 169.632 181.197 172.588C181.104 172.681 181.011 172.759 180.902 172.837C180.847 172.876 180.797 172.915 180.746 172.954C180.696 172.993 180.645 173.031 180.591 173.07H180.559C180.505 173.109 180.451 173.144 180.396 173.179C180.342 173.214 180.287 173.249 180.233 173.288C180.202 173.319 180.171 173.319 180.171 173.319C180.062 173.397 179.953 173.459 179.844 173.522H179.813C179.75 173.553 179.692 173.588 179.634 173.623C179.575 173.658 179.517 173.693 179.455 173.724L179.688 174.019L179.657 174.237C179.642 174.253 179.61 174.284 179.579 174.284L179.579 174.284C179.533 174.315 179.486 174.346 179.424 174.377C179.439 174.626 179.439 174.859 179.393 175.077V175.155V175.217V175.28C179.362 175.295 179.362 175.342 179.362 175.342C179.33 175.373 179.33 175.404 179.33 175.404C179.299 175.435 179.299 175.466 179.299 175.466C179.299 175.497 179.268 175.528 179.268 175.528L179.222 175.575L179.175 175.622L179.128 175.668C178.957 175.84 178.693 175.98 178.319 176.104C178.272 176.135 178.241 176.135 178.195 176.135C178.148 176.166 178.117 176.166 178.07 176.166H178.039C177.992 176.197 177.961 176.197 177.915 176.197H177.884C177.837 176.229 177.806 176.229 177.759 176.229H177.728C177.697 176.26 177.65 176.26 177.604 176.26H175.317C175.037 176.291 174.741 176.291 174.414 176.291C169.305 176.369 161.771 172.233 157.037 169.635C156.135 169.14 155.334 168.7 154.672 168.356C154.641 168.341 154.606 168.321 154.571 168.302C154.536 168.283 154.501 168.263 154.47 168.248C154.446 168.232 154.419 168.22 154.392 168.209C154.365 168.197 154.337 168.185 154.314 168.17C154.299 168.139 154.267 168.139 154.267 168.139C154.244 168.123 154.217 168.111 154.19 168.1C154.162 168.088 154.135 168.076 154.112 168.061H154.065C154.055 168.054 154.046 168.048 154.038 168.042C154.005 168.018 153.978 167.999 153.941 167.999C153.925 167.968 153.878 167.968 153.878 167.968C153.847 167.936 153.832 167.936 153.801 167.936C153.77 167.921 153.723 167.89 153.692 167.89H153.661C153.63 167.859 153.583 167.828 153.536 167.828H153.505C153.487 167.821 153.468 167.813 153.451 167.805C153.424 167.792 153.399 167.781 153.381 167.781C153.363 167.775 153.348 167.767 153.333 167.759C153.308 167.746 153.285 167.734 153.256 167.734H153.225C153.212 167.729 153.199 167.723 153.186 167.718C153.126 167.693 153.074 167.672 153.023 167.672C152.587 167.579 152.136 167.423 151.685 167.236C151.452 167.143 151.218 167.034 151 166.925C150.938 166.894 150.872 166.859 150.806 166.824C150.74 166.789 150.674 166.754 150.611 166.723L150.611 166.723C150.238 166.505 149.865 166.287 149.522 166.054L149.196 165.821C148.542 165.354 148.013 164.887 147.671 164.529C147.639 164.487 147.601 164.452 147.564 164.419C147.547 164.404 147.531 164.389 147.516 164.374C146.613 163.565 145.384 163.611 146.178 166.458C146.909 169.119 146.722 177.598 146.333 187.601V187.663C146.328 187.803 146.321 187.943 146.314 188.083C146.3 188.363 146.286 188.643 146.286 188.923V188.986C146.281 189.12 146.274 189.255 146.267 189.39C146.254 189.66 146.24 189.929 146.24 190.199V190.37C146.235 190.505 146.228 190.64 146.221 190.775C146.207 191.044 146.193 191.314 146.193 191.584V191.63C146.115 193.653 146.069 195.317 146.038 196.702V199.02C146.053 203.407 146.38 203.516 146.38 203.516C146.393 203.555 146.403 203.591 146.413 203.626C146.427 203.674 146.439 203.72 146.458 203.765V203.812C146.464 203.836 146.474 203.861 146.485 203.888C146.502 203.931 146.52 203.976 146.52 204.014V204.092C146.524 204.103 146.528 204.115 146.533 204.127C146.548 204.168 146.567 204.215 146.567 204.263C146.598 204.294 146.598 204.325 146.598 204.356C146.603 204.379 146.611 204.4 146.619 204.42C146.632 204.455 146.644 204.488 146.644 204.527C146.675 204.559 146.675 204.605 146.675 204.636C146.681 204.659 146.689 204.68 146.697 204.7C146.71 204.735 146.722 204.768 146.722 204.807C146.753 204.854 146.753 204.885 146.753 204.932C146.753 204.952 146.759 204.976 146.766 205ZM139.239 105.365C139.535 105.551 139.815 105.567 140.064 105.489H140.095L140.25 105.52C140.468 105.458 140.67 105.302 140.872 105.131C140.904 105.1 140.95 105.053 140.95 104.96V103.7V103.249C139.869 103.209 138.642 103.024 137.583 102.865C137.393 102.836 137.208 102.808 137.03 102.782C137.152 102.923 137.269 103.064 137.38 103.199C137.452 103.286 137.522 103.371 137.59 103.451C137.653 103.535 137.715 103.612 137.775 103.686C137.849 103.777 137.919 103.863 137.979 103.949C138.29 104.353 138.477 104.618 138.477 104.618C138.492 104.641 138.512 104.664 138.531 104.688C138.551 104.711 138.57 104.734 138.586 104.758C138.617 104.758 138.617 104.789 138.617 104.789C138.632 104.82 138.663 104.851 138.694 104.882L138.726 104.913L138.726 104.914C138.803 104.991 138.881 105.069 138.943 105.147C138.959 105.162 138.974 105.174 138.99 105.186C139.006 105.197 139.021 105.209 139.037 105.225C139.068 105.248 139.103 105.271 139.138 105.295C139.173 105.318 139.208 105.341 139.239 105.365ZM120.243 124.298C120.321 124.407 120.415 124.562 120.523 124.765L120.352 124.796L120.15 124.765C120.835 124.874 121.892 125.029 124.319 124.671C129.007 124 130.125 120.646 131.059 117.845C131.272 117.206 131.475 116.596 131.709 116.052C132.269 114.761 132.627 113.517 132.86 112.303C133.358 109.705 133.218 107.247 133 104.696C132.518 104.151 132.176 103.762 132.176 103.762C132.176 103.762 130.729 103.295 129.873 102.238C129.671 103.98 129.267 106.36 128.816 108.849C128.784 108.912 128.784 108.974 128.784 109.036C128.753 109.192 128.726 109.343 128.699 109.495C128.672 109.647 128.644 109.798 128.613 109.954C128.582 110.016 128.582 110.078 128.582 110.141V110.141C128.551 110.288 128.524 110.436 128.497 110.584C128.469 110.732 128.442 110.88 128.411 111.027C128.411 111.059 128.403 111.09 128.395 111.121C128.388 111.152 128.38 111.183 128.38 111.214C128.349 111.362 128.322 111.514 128.294 111.665C128.267 111.817 128.24 111.969 128.209 112.116C128.17 112.303 128.135 112.494 128.1 112.684C128.065 112.875 128.03 113.065 127.991 113.252L127.898 113.766C127.813 114.182 127.733 114.586 127.656 114.979C127.606 115.233 127.558 115.482 127.509 115.726C127.502 115.766 127.49 115.805 127.478 115.844C127.462 115.896 127.446 115.946 127.446 115.99V116.068C127.441 116.091 127.433 116.112 127.425 116.132C127.412 116.167 127.4 116.2 127.4 116.239C127.369 116.255 127.369 116.286 127.369 116.317V116.395C127.338 116.426 127.338 116.457 127.338 116.488C127.306 116.519 127.306 116.535 127.306 116.566V116.613C127.3 116.637 127.29 116.658 127.279 116.68C127.262 116.715 127.244 116.751 127.244 116.799L127.151 117.033V117.064L127.058 117.25V117.297C127.052 117.307 127.045 117.318 127.039 117.328C127.025 117.349 127.011 117.37 127.011 117.39L126.964 117.484V117.515C126.762 117.888 126.513 118.231 126.249 118.542C126.202 118.588 126.159 118.635 126.116 118.682C126.074 118.728 126.031 118.775 125.984 118.822C125.891 118.915 125.797 119.008 125.704 119.086C125.688 119.102 125.669 119.117 125.65 119.133C125.63 119.148 125.611 119.164 125.595 119.18C124.055 120.953 122.032 121.249 121.021 121.28H120.85C120.695 121.311 120.617 121.311 120.617 121.311H120.368V121.466V121.7V121.887V122.431C120.368 122.478 120.36 122.528 120.352 122.579C120.344 122.629 120.337 122.68 120.337 122.727V123.458C120.306 123.66 120.274 123.878 120.243 124.096V124.298ZM130.678 134.325C127.795 133.748 124.817 132.683 124.817 132.683C124.817 132.683 123.479 130.163 122.235 127.845C122.33 127.745 122.843 127.643 123.576 127.496C125.354 127.14 128.429 126.526 129.982 125.06C131.339 123.789 131.855 121.892 132.36 120.036C132.491 119.552 132.622 119.071 132.767 118.604C133.249 117.064 133.701 115.508 134.105 113.937C134.276 113.283 134.432 112.63 134.587 111.976V111.93C134.727 111.292 134.867 110.654 134.992 110.001V109.907C135.116 109.269 135.225 108.647 135.319 108.009V107.885C135.35 107.698 135.381 107.496 135.396 107.309C135.44 107.377 135.49 107.455 135.547 107.542C135.634 107.675 135.735 107.831 135.847 108.009L135.89 108.075C136.021 108.28 136.176 108.519 136.33 108.772L136.516 109.052C136.585 109.16 136.656 109.271 136.727 109.384C137.11 109.987 137.536 110.657 137.994 111.339C138.033 111.393 138.072 111.451 138.111 111.51C138.15 111.568 138.189 111.626 138.228 111.681L138.694 112.381C138.85 112.614 139.006 112.848 139.161 113.065C140.095 114.419 140.981 115.648 141.588 116.239C142.037 116.688 142.716 117.213 143.534 117.846L143.548 117.857C143.652 117.935 143.756 118.018 143.863 118.103C143.948 118.17 144.034 118.239 144.124 118.308C144.192 118.363 144.261 118.419 144.331 118.475C144.675 118.752 145.037 119.043 145.4 119.366C145.493 119.452 145.59 119.537 145.687 119.623C145.785 119.708 145.882 119.794 145.975 119.88L146.022 119.926C146.349 120.222 146.691 120.549 147.018 120.875C148.387 122.26 149.818 123.987 151.063 126.196C152.681 129.043 154.252 131.905 155.559 134.488C156.943 137.242 158.032 139.684 158.546 141.489C158.762 142.24 159.005 143.256 159.293 144.461C159.441 145.078 159.601 145.745 159.775 146.452C159.184 146.078 158.592 145.689 158.017 145.285C158.017 145.285 156.57 145.472 155.885 144.616C155.216 143.745 152.214 141.816 152.214 141.816C152.214 141.816 149.32 138.237 147.764 137.568C147.249 137.344 146.58 136.934 145.846 136.483C144.386 135.588 142.669 134.535 141.386 134.472C139.457 134.379 136.548 134.472 136.548 134.472C136.548 134.472 133.545 134.861 130.651 134.286L130.678 134.325Z" fill="var(--sapContent_Illustrative_Color21)"/>
4
+ <path d="M193.061 72.8213C192.956 71.7732 192.782 70.6553 192.101 69.8518C191.419 69.0483 190.057 68.7165 189.306 69.4326L189.812 70.0265C189.079 79.4588 192.398 86.2536 188.66 94.9523C187.14 98.5156 186.668 104.437 179.681 105.45C173.812 106.306 174.511 104.786 172.275 105.904C171.839 106.114 171.419 106.446 171.28 106.9C171.087 107.476 171.384 108.105 171.751 108.612C173.428 110.917 174.721 111.424 176.677 109.363C177.079 108.944 183.437 108.489 186.109 105.974C188.188 104.018 188.642 100.856 189.498 98.1139C192.066 89.9392 193.935 81.3628 193.079 72.8213H193.061Z" fill="var(--sapContent_Illustrative_Color17)"/>
5
+ <path d="M190.039 90.3933C190.214 90.7601 190.389 91.1095 190.581 91.4763C190.756 91.8082 190.93 92.1226 191.105 92.4545C192.764 86.0265 193.725 79.4239 193.061 72.8387C192.956 71.7907 192.782 70.6728 192.101 69.8693C191.419 69.0658 190.057 68.7339 189.306 69.4501L189.812 70.044C189.218 77.7645 191.315 83.7208 190.057 90.3933H190.039Z" fill="var(--sapContent_Illustrative_Color22)"/>
6
+ <path d="M184.712 50.9174C182.476 44.1925 173.166 37.9567 165.969 42.2012C158.948 46.341 148.328 47.5637 146.738 68.6292C146.633 68.9262 146.528 69.2406 146.459 69.5375C145.935 68.0179 144.24 64.2275 140.624 66.1314C136.153 68.4895 140.397 78.2712 142.983 80.1576C143.611 80.6118 144.852 82.079 146.581 84.0354C146.808 90.1838 147.017 95.4764 147.017 95.4764L148.415 114.062C148.415 114.062 166.948 122.795 169.55 122.795C172.153 122.795 174.546 102.778 174.721 101.345H175.035C175.035 101.345 175.21 101.345 175.507 101.276C176.747 101.241 179.21 100.891 181.079 98.7253C182.214 97.7297 183.157 96.3673 183.524 94.5157C184.694 88.507 186.476 79.424 186.581 76.1227C186.703 72.8214 186.93 57.6248 184.694 50.8999H184.712V50.9174Z" fill="var(--sapContent_Illustrative_Color31)"/>
7
+ <path d="M156.328 117.52C155.245 115.913 154.284 114.236 153.533 112.437C152.939 111.005 152.45 109.415 152.555 107.843C152.659 106.341 153.463 104.751 155.052 104.402C156.1 104.158 157.166 104.367 158.214 104.297C158.598 104.297 159.035 104.21 159.332 103.965C159.699 103.668 160.048 103.162 159.978 102.655C159.908 102.184 159.559 101.747 159.245 101.415C158.843 100.961 158.371 100.577 157.935 100.158C156.887 99.1269 159.21 92.961 158.197 91.8955C156.17 89.7296 153.76 91.8256 152.1 89.3627C151.314 88.2099 147.786 87.7208 147.018 86.568C146.895 86.3933 146.773 86.2012 146.651 86.0265C146.843 91.2841 147.018 95.4937 147.018 95.4937L148.415 114.079C148.415 114.079 152.135 115.843 156.485 117.765C156.432 117.677 156.38 117.607 156.31 117.52H156.328Z" fill="var(--sapContent_Illustrative_Color3)"/>
8
+ <path d="M184.712 50.9174C182.476 44.1925 173.166 37.9567 165.97 42.2012C158.948 46.341 148.328 47.5637 146.738 68.6292C146.633 68.9262 146.528 69.2406 146.459 69.5375C145.935 68.0179 144.24 64.2275 140.625 66.1314C137.969 67.5288 138.79 72.3497 140.1 75.7733C143.769 77.6423 146.616 79.5113 149.585 82.3585C152.625 85.2581 155.384 88.4371 158.092 91.6511C158.162 91.7384 158.197 91.8083 158.214 91.8956C159.873 94.4808 161.638 97.0135 163.542 99.4415C166.511 103.197 169.795 106.743 173.515 109.765C174.197 105.607 174.668 101.939 174.738 101.363H175.052C175.052 101.363 175.227 101.363 175.524 101.293C176.764 101.258 179.227 100.909 181.096 98.7428C182.232 97.7472 183.175 96.3847 183.542 94.5332C184.712 88.5244 186.494 79.4415 186.598 76.1401C186.721 72.8388 186.948 57.6423 184.712 50.9174Z" fill="var(--sapContent_Illustrative_Color3)"/>
9
+ <path d="M182.214 95.4414C180.363 94.9698 178.389 94.9174 176.485 94.9872C172.607 95.1095 168.625 95.9305 165.218 97.8519C165.288 99.0047 166.022 100.088 166.756 100.944C167.489 101.817 168.345 102.603 169.323 103.214C170.424 103.896 171.576 104.507 172.764 105.013C173.218 105.206 173.69 105.398 174.179 105.555C174.494 103.354 174.703 101.747 174.738 101.38H175.052C175.052 101.38 175.227 101.38 175.524 101.31C176.764 101.275 179.227 100.926 181.096 98.7602C181.969 97.9916 182.721 97.0134 183.192 95.7558C182.878 95.651 182.563 95.5462 182.232 95.4589V95.4239L182.214 95.4414Z" fill="var(--sapContent_Illustrative_Color28)"/>
10
+ <mask id="mask0_396_4278" class="sapIllus_MaskTypeAlpha" maskUnits="userSpaceOnUse" x="109" y="67" width="144" height="139">
11
+ <rect x="109.358" y="67.4" width="143" height="138" fill="var(--sapContent_Illustrative_Color20)"/>
12
+ </mask>
13
+ <g mask="url(#mask0_396_4278)">
14
+ <path d="M147.821 103.599C147.821 103.599 116.275 112.874 116.817 116.577C117.341 120.28 119.996 162.952 125.568 175.669C131.14 188.385 126.371 196.874 125.568 204.018C124.764 211.18 124.031 219.983 125.882 221.101L207.087 221.066C207.087 221.066 207.559 207.197 205.515 201.101C205.515 201.101 204.729 200.856 205.323 186.638C205.917 172.42 206.354 159.651 205.323 155.983C204.293 152.315 206.039 152.455 207.14 153.642C208.24 154.813 211.035 156.874 213.673 157.45C216.31 158.044 229.441 167.536 238.245 167.397C247.048 167.257 245.061 165.957 246.232 162.376C247.402 158.778 229.219 135.896 229.219 135.896C229.219 135.896 225.428 134.027 221.795 131.651C218.162 129.276 220.048 130.743 219.088 130.568C218.127 130.393 218.039 130.254 217.673 129.8C217.306 129.345 216.24 128.507 215.28 127.808C214.319 127.11 212.712 125.765 211.612 124.559C210.511 123.354 208.852 121.695 207.786 121.241C205.9 120.42 202.371 117.59 200.031 117.468C197.69 117.345 194.144 117.468 194.144 117.468C194.144 117.468 190.494 117.939 186.965 117.241C183.437 116.542 179.786 115.249 179.786 115.249C179.786 115.249 174.843 105.8 174.267 104.961C172.799 110.009 174.738 112.297 169.55 114.882C164.38 117.468 147.821 103.599 147.821 103.599Z" fill="var(--sapContent_Illustrative_Color13)"/>
15
+ </g>
16
+ <path d="M118.79 137.869C120.1 133.8 122.022 129.922 124.642 126.533C126.092 124.647 127.734 122.917 129.55 121.398C131.559 119.703 133.742 118.324 136.048 117.101C138.494 115.808 141.009 114.69 143.507 113.52C145.865 112.42 148.293 111.354 150.406 109.834C151.349 109.153 152.188 108.402 152.974 107.599C149.97 105.415 147.821 103.599 147.821 103.599C147.821 103.599 116.275 112.874 116.817 116.577C117.044 118.184 117.673 127.179 118.773 137.852H118.79V137.869Z" fill="var(--sapContent_Illustrative_Color22)"/>
17
+ <mask id="mask1_396_4278" class="sapIllus_MaskTypeAlpha" maskUnits="userSpaceOnUse" x="123" y="168" width="38" height="38">
18
+ <rect x="123.358" y="168.4" width="37" height="37" fill="var(--sapContent_Illustrative_Color20)"/>
19
+ </mask>
20
+ <g mask="url(#mask1_396_4278)">
21
+ <path d="M135.332 197.73C136.677 196.839 138.144 196.158 139.646 195.616C140.817 195.197 142.039 194.83 143.262 194.603C144.24 194.428 145.236 194.394 146.232 194.341C147.192 194.289 148.188 194.219 149.114 193.974C149.69 193.817 150.197 193.607 150.546 193.206C148.921 192.42 147.157 191.983 145.411 191.564C143.472 191.092 141.55 190.586 139.769 189.677C137.026 188.28 134.773 186.184 132.887 183.773C131 181.363 131.07 181.293 130.179 180.035C129.271 178.725 128.345 177.433 127.419 176.14C126.179 174.376 124.956 172.577 123.873 170.708C124.397 172.647 124.956 174.341 125.55 175.686C131.122 188.402 126.354 196.891 125.55 204.035C124.747 211.197 123.961 219.546 125.812 220.664C125.9 220.717 126.144 220.769 126.528 220.804C126.528 220.455 126.528 220.105 126.598 219.773C126.721 218.848 127.157 218.027 127.769 217.328C128.328 216.682 128.991 216.158 129.48 215.459C129.9 214.848 130.266 214.201 130.616 213.555C132.013 210.883 133.288 207.738 136.17 206.341C137.725 205.59 139.559 205.415 141.271 205.38C143.07 205.345 144.869 205.52 146.668 205.695C149.9 205.992 153.463 206.394 156.485 204.996C155.856 203.966 154.528 203.442 153.376 203.145C151.943 202.76 150.441 202.621 148.974 202.516C148.328 202.463 147.681 202.428 147.052 202.359C146.336 202.289 145.603 202.149 144.904 202.009C143.14 201.677 141.393 201.293 139.681 200.752C138.109 200.245 136.502 199.616 135.227 198.533C134.948 198.306 135.07 197.869 135.332 197.695V197.73Z" fill="var(--sapContent_Illustrative_Color22)"/>
22
+ </g>
23
+ <path d="M169.079 115.04C169.323 115.965 169.76 116.839 170.267 117.66C170.965 118.795 171.786 119.826 172.66 120.804C174.424 122.743 176.502 124.577 178.895 125.695C179.874 126.149 180.782 126.358 181.847 126.271C182.127 126.271 182.424 126.219 182.686 126.096C182.686 126.096 182.686 126.061 182.651 126.044C182.651 126.044 182.598 125.974 182.581 125.974C182.406 125.782 182.232 125.625 182.022 125.468C181.096 124.734 180.031 124.123 179.07 123.389C177.533 122.219 176.258 120.769 174.825 119.494C174.459 119.162 174.057 118.882 173.708 118.568C173.48 118.376 173.306 118.131 173.114 117.904C172.642 117.345 172.188 116.751 171.716 116.192C171.245 115.633 170.756 115.075 170.179 114.638C170.144 114.638 170.127 114.603 170.109 114.585C169.917 114.69 169.742 114.778 169.55 114.882C169.358 114.987 169.079 115.057 169.079 115.057V115.04Z" fill="var(--sapContent_Illustrative_Color22)"/>
24
+ <g clip-path="url(#clip0_396_4278)">
25
+ <path d="M200.66 216C200.869 216.123 201.114 216.21 201.341 216.21C202.232 216.21 202.983 215.127 203.559 214.498C203.908 214.131 204.275 213.747 204.747 213.538C205.166 213.345 205.638 213.258 206.092 213.258C206.546 213.258 206.773 213.31 207.087 213.415C206.948 209.241 206.563 204.245 205.533 201.136C205.533 201.136 204.747 200.891 205.341 186.673C205.428 184.472 205.515 182.324 205.603 180.21C205.55 180.332 205.498 180.455 205.446 180.577C204.24 183.319 202.791 185.957 201.55 188.682C200.153 191.738 198.86 194.865 197.62 197.992C196.415 201.048 195.297 204.14 194.057 207.179C193.498 208.559 192.887 209.922 192.415 211.337C192.101 212.28 191.839 213.276 191.769 214.271C193.026 212.821 193.935 210.848 194.808 209.101C195.839 207.092 196.834 205.013 198.232 203.214C199.245 201.922 200.729 200.577 202.511 200.979C204.17 201.345 204.467 203.267 204.415 204.682C204.345 206.568 203.856 208.455 203.262 210.236C203.018 210.987 202.738 211.738 202.406 212.455C202.074 213.188 201.603 213.782 201.131 214.428C200.869 214.795 200.502 215.302 200.467 215.669V215.808C200.467 215.738 200.467 215.808 200.467 215.843C200.502 215.913 200.572 215.965 200.66 216.018V216Z" fill="var(--sapContent_Illustrative_Color22)"/>
26
+ </g>
27
+ <path d="M153.655 120.577C152.572 120.42 151.507 120.001 150.529 119.546C148.834 118.778 147.28 117.782 145.865 116.594C145.358 116.175 144.869 115.756 144.345 115.389C145.498 116.787 146.476 118.341 147.542 119.791C148.66 121.293 149.882 122.865 151.454 123.913C152.834 124.822 154.284 125.031 155.734 124.123C156.747 123.477 157.585 122.551 158.389 121.677C159.245 120.752 160.136 119.878 161.201 119.197C162.267 118.533 163.297 117.835 164.188 116.944C165.079 116.053 165.096 115.913 165.411 115.319C164.205 116.263 163 117.188 161.708 118.027C160.083 119.075 158.319 120.036 156.415 120.455C155.507 120.647 154.598 120.717 153.673 120.594H153.655V120.577Z" fill="var(--sapContent_Illustrative_Color22)"/>
28
+ <path d="M130.773 109.555C130.773 109.555 126.703 106.673 119.227 108.891C111.751 111.127 110.651 118.219 110.651 121.223C110.651 124.227 106.633 143.668 112.537 150.236C118.441 156.804 126.843 161.52 133.533 157.712C133.533 157.712 134.581 157.048 136.555 150.358C138.528 143.668 143.507 133.555 143.507 133.555C143.507 133.555 139.314 136.839 127.227 125.939L123.559 122.778C123.559 122.778 132.747 124.21 132.345 119.494C131.943 114.778 130.773 109.52 130.773 109.52V109.555Z" fill="var(--sapContent_Illustrative_Color13)"/>
29
+ <path d="M123.838 122.568C123.838 122.69 123.542 122.69 123.437 122.813C122.389 124.035 121.69 125.904 120.729 127.197C119.21 129.276 117.777 131.424 116.397 133.59C115.804 134.533 115.227 135.494 114.79 136.507C114.546 137.066 114.336 137.677 114.249 138.289C114.476 138.044 114.651 137.765 114.79 137.485C115.14 136.891 115.419 136.262 115.821 135.704C116.345 134.987 116.904 134.289 117.498 133.625C118.109 132.944 118.79 132.315 119.384 131.634C119.856 131.11 120.293 130.551 120.852 130.114C121.131 129.904 121.428 129.747 121.76 129.642C122.057 129.555 122.476 129.468 122.756 129.642C123 129.765 123.035 130.009 123.21 130.184C123.262 130.236 123.21 130.254 123.332 130.184C123.524 130.044 123.664 129.8 123.804 129.607C123.978 129.38 124.153 129.153 124.397 128.996C124.834 128.734 125.463 128.524 125.952 128.804C126.441 129.083 126.721 129.677 127.122 130.062C127.699 130.603 128.363 131.075 129.009 131.511C129.655 131.948 130.284 132.42 130.93 132.874C132.066 133.66 133.253 134.376 134.546 134.848C135.943 135.337 137.411 135.459 138.878 135.529C140.135 135.581 141.411 135.564 142.633 135.302C143.14 134.219 143.472 133.572 143.472 133.572C143.472 133.572 139.28 136.856 127.192 125.957L123.838 122.568Z" fill="var(--sapContent_Illustrative_Color22)"/>
30
+ <path d="M132.362 119.528C131.961 114.812 130.79 109.555 130.79 109.555C130.79 109.555 128.485 107.913 124.153 108.07H124.1C124.031 108.07 123.978 108.07 123.908 108.105C123.769 108.105 123.646 108.14 123.507 108.175C123.192 108.227 122.878 108.297 122.563 108.349C121.777 108.507 121.009 108.699 120.24 108.926C119.507 109.153 118.773 109.397 118.092 109.729C117.795 109.887 117.498 110.044 117.218 110.236C117.096 110.323 117.183 110.236 117.079 110.341C117.026 110.376 116.991 110.428 116.939 110.463C116.904 110.498 116.852 110.55 116.817 110.603C116.817 110.603 116.817 110.638 116.782 110.655C116.782 110.69 116.729 110.742 116.712 110.777C116.712 110.777 116.677 110.865 116.677 110.882V110.917V110.97C116.712 110.97 116.782 111.022 116.782 111.022C116.921 111.092 117.096 111.127 117.253 111.144C117.987 111.284 118.878 111.214 119.524 111.651C119.856 111.878 119.873 112.349 119.524 112.559C119.035 112.856 118.511 113.083 117.987 113.293C116.886 113.764 115.716 114.201 114.755 114.935C114.092 115.441 113.725 116.035 113.742 116.751C115.192 115.808 116.415 114.515 117.987 113.782C119.646 113.013 121.55 113.013 123.245 113.694C124.799 114.323 126.092 115.406 127.192 116.646C128.345 117.939 129.323 119.389 130.284 120.821C130.563 121.223 130.843 121.642 131.122 122.044C131.978 121.52 132.502 120.716 132.397 119.494L132.362 119.528Z" fill="var(--sapContent_Illustrative_Color22)"/>
31
+ <path d="M130.249 156.21C128.747 155.93 127.332 155.389 125.935 154.795C124.502 154.184 123.087 153.502 121.742 152.734C119.175 151.249 116.817 149.415 114.633 147.424C113.533 146.428 112.485 145.38 111.437 144.315C110.895 143.756 110.371 143.197 109.83 142.638C109.76 142.551 109.673 142.481 109.603 142.393C110.004 145.59 110.878 148.437 112.537 150.271C118.441 156.839 126.843 161.555 133.533 157.747C133.533 157.747 133.83 157.555 134.406 156.385H134.319C132.956 156.542 131.594 156.472 130.249 156.21Z" fill="var(--sapContent_Illustrative_Color22)"/>
32
+ <path d="M146.755 68.2799C146.721 68.6816 146.179 68.7864 146.004 68.4196C145.183 66.7253 143.524 64.5943 140.624 66.1314C136.153 68.4895 140.397 78.2712 142.983 80.1576C145.568 82.0441 158.074 100.664 175.035 101.363C175.035 101.363 182.336 100.542 183.524 94.5332C184.694 88.5244 186.476 79.4415 186.581 76.1401C186.703 72.8388 186.93 57.6423 184.694 50.9174C182.459 44.1925 173.149 37.9567 165.952 42.2012C158.965 46.3235 148.415 47.5462 146.755 68.2799Z" fill="var(--sapContent_Illustrative_Color31)"/>
33
+ <path d="M184.799 81.7297C184.537 83.7734 183.804 85.6424 182.965 87.5114C182.528 88.4546 182.074 89.3804 181.673 90.3411C181.271 91.2494 180.956 92.1752 180.642 93.1009C179.664 95.9481 177.777 98.3935 174.965 99.5813C173.341 100.28 171.594 100.542 169.83 100.577C171.524 101.014 173.271 101.328 175.052 101.398C175.052 101.398 179.577 101.66 182.354 97.3804C182.79 96.6992 183.052 96.2101 183.245 95.6337C183.437 95.0573 183.437 94.9525 183.542 94.5158C184.712 88.507 186.494 79.4241 186.598 76.1227C186.668 74.1315 186.79 67.8258 186.371 61.6599C185.69 63.721 185.446 65.9219 185.498 68.1402C185.533 69.2232 185.638 70.3061 185.655 71.3891C185.655 72.542 185.655 73.6948 185.568 74.8476C185.411 77.1533 185.096 79.4241 184.799 81.7123V81.7297Z" fill="var(--sapContent_Illustrative_Color3)"/>
34
+ <path d="M173.935 76.1402C173.882 76.3673 173.847 76.6118 173.812 76.8389H173.917C174.092 76.7865 174.249 76.6992 174.406 76.542C174.633 76.3149 174.738 76.1752 174.895 75.9132C174.965 75.7909 175.035 75.6511 175.105 75.5289C174.721 75.7734 174.336 76.0005 173.917 76.1752L173.935 76.1402Z" fill="var(--sapContent_Illustrative_Color3)"/>
35
+ <path d="M186.424 58.3933C185.323 58.1139 184.118 58.2187 182.983 58.1313C181.707 58.044 180.415 57.9043 179.14 57.9741C177.568 58.044 175.943 58.4457 174.686 59.4414C174.476 59.5986 174.232 59.8082 173.952 60.0178C174.773 60.3147 175.576 60.6291 176.345 61.0309C177.882 61.8344 179.157 63.0047 179.786 64.6466C180.363 66.1313 180.293 67.6859 179.821 69.1706C180.887 69.8693 179.786 72.1575 180.467 74.341C181.044 76.21 187.489 73.1008 187.769 69.3453C187.961 66.7252 191.384 59.6684 186.441 58.3933H186.424Z" fill="var(--sapContent_Illustrative_Color3)"/>
36
+ <path d="M195.577 62.9873C195.524 62.1663 195.367 61.3104 194.913 60.6292C194.371 59.8257 193.48 59.3366 192.799 58.6379C190.494 56.2624 191.262 52.4021 190.651 49.1357C189.97 45.485 187.262 42.2885 183.769 41.0309C181.411 40.175 178.756 40.2449 176.397 41.1008C174.389 37.2929 170.092 34.5855 165.76 35.0746C163.122 35.3715 160.712 36.6291 158.197 37.5724C156.852 36.6815 155.262 36.175 153.533 36.175C151 36.175 148.729 37.2929 147.175 39.0571C145.62 40.8213 146.266 39.7383 145.707 39.8257C141.865 40.3671 137.9 41.4152 135.052 44.0353C132.205 46.6728 130.843 51.2492 132.904 54.5506C133.026 54.7602 133.044 55.0047 132.939 55.2318C132.275 56.6641 131.908 58.2536 131.908 59.9305C131.908 63.7558 133.83 67.127 136.764 69.1532C137.48 69.6423 137.9 70.4632 137.9 71.3191C137.9 72.175 137.9 72.2798 137.952 72.7515C138.197 75.7384 139.454 78.6379 141.48 80.8388C139.664 83.2668 139.629 86.8825 141.411 89.3454C143.192 91.8083 146.651 92.8912 149.515 91.9131C149.603 92.1751 149.882 92.3148 150.127 92.2275C151.245 91.8781 151.926 90.6554 152.1 89.3803C151.542 88.9087 151 88.3847 150.476 87.8606C148.694 86.079 147.14 84.1227 145.323 82.3759C143.716 80.8388 141.917 79.3017 140.799 77.3279C139.681 75.3541 138.983 72.7165 139.018 70.341C140.275 70.8301 141.655 71.1095 143.105 71.1095C144.555 71.1095 146.843 70.6204 148.432 69.7646C149.026 70.1314 149.585 70.5506 150.144 70.9873C151.105 71.7384 152.066 72.5069 152.991 73.3104C153.515 73.7646 154.022 74.2362 154.494 74.7427C154.79 75.0571 155.297 75.0222 155.542 74.6554C156.415 73.3453 157.149 72.0004 157.411 70.4807C157.882 67.7908 156.782 65.1008 156.415 62.4108C156.048 59.7034 156.852 56.3672 159.454 55.5287C161.236 54.9523 163.105 55.7907 164.939 56.1401C169.673 57.0658 174.668 54.0964 176.694 49.7995C177.044 49.8868 177.393 49.9741 177.708 50.1488C179.961 51.2667 180.013 54.568 181.847 56.2973C184.031 58.341 188.415 57.8519 188.991 61.1183C189.026 61.3628 189.044 61.6248 189.044 61.8693C188.904 65.6423 187.087 71.4239 186.651 75.5637C191.367 74.1488 195.926 67.913 195.629 63.0047H195.559L195.577 62.9873Z" fill="var(--sapContent_Illustrative_Color30)"/>
37
+ <path d="M145.83 51.5461C145.987 51.4937 146.092 51.4413 146.301 51.3365C146.808 51.0745 147.175 50.7951 147.594 50.4108C148.415 49.6422 149.061 48.6466 149.445 47.6335C149.847 46.5854 150.004 45.4675 149.76 44.437C149.707 44.2274 149.638 44.0352 149.568 43.8431C147.786 43.2841 145.987 42.8474 144.118 42.8474H143.105C139.052 41.2405 135.542 45.2929 134.249 48.7339C133.917 49.6073 133.62 50.6029 133.707 51.5461C133.777 52.2623 134.284 52.7689 135.018 52.6116C135.716 52.4719 136.345 51.9654 136.887 51.5287C137.48 51.0571 138.057 50.533 138.651 50.044C138.756 49.9566 138.86 49.8693 138.983 49.782C139.035 49.747 139.087 49.7121 139.14 49.6771C139.14 49.6771 139.175 49.6771 139.192 49.6422C139.035 49.747 139.262 49.6073 139.314 49.5723C139.786 49.2929 140.328 49.0309 140.887 49.0134C141.777 48.9785 142.511 49.6771 143.192 50.2186C143.996 50.8475 144.852 51.4413 145.865 51.5461H145.83Z" fill="var(--sapContent_Illustrative_Color29)"/>
38
+ <path d="M175.751 42.6029C175.699 41.7121 175.681 40.8038 175.681 39.8955C173.463 36.7339 169.638 34.6204 165.76 35.0571C163.14 35.354 160.729 36.5942 158.249 37.5374C157.935 38.5854 157.935 39.7034 158.406 40.7339C158.79 41.5724 159.332 42.3234 159.804 43.1269C160.31 44.0003 160.677 44.961 160.729 45.9741C160.782 47.1619 160.38 48.1924 159.716 49.0483C159.384 49.485 158.494 50.1313 157.603 50.7077C157.061 51.0571 157.306 51.8955 157.952 51.8955C158.598 51.8955 159.681 51.9304 160.17 52.0352C160.817 52.1575 161.445 52.3322 162.092 52.5767C163.454 53.1008 164.747 53.7994 166.004 54.5156C166.948 55.0571 167.891 55.616 168.887 56.0353C171.961 55.3366 174.738 53.258 176.31 50.5156C176.52 47.913 175.926 45.0309 175.786 42.6029H175.751Z" fill="var(--sapContent_Illustrative_Color29)"/>
39
+ <path d="M184.59 57.7297C185.166 57.9394 185.341 58.1315 185.498 58.376C185.987 59.1795 186.057 60.1577 185.742 61.0311C185.306 62.2188 184.869 63.0049 186.057 67.0223C186.511 68.5594 186.389 73.9743 186.633 75.5464C187.839 74.9175 194.301 76.4721 195.611 62.9874C195.699 62.1664 195.402 61.3105 194.948 60.6293C194.406 59.8258 193.515 59.3367 192.834 58.638C190.528 56.2625 191.297 52.4022 190.686 49.1358C190.004 45.4852 187.297 42.2887 183.804 41.031C182.703 40.6293 181.533 40.4371 180.345 40.4197C180.135 42.2363 180.031 44.0529 180.048 45.8869C180.083 48.4546 180.38 51.0572 181.288 53.4677C181.935 55.197 183.384 56.3848 184.607 57.7297H184.59Z" fill="var(--sapContent_Illustrative_Color29)"/>
40
+ <path d="M176.345 87.0048C175.699 86.9699 177.183 87.6511 176.572 87.5463C175.978 87.4415 175.472 87.4066 174.197 87.5463C173.533 87.6162 168.485 88.3498 167.838 87.8957C169.323 88.8389 169.952 90.1664 174.948 90.5682C177.655 90.7778 179.035 90.9524 179.734 89.066C179.699 89.1882 177.673 87.0747 176.328 87.0223L176.345 87.0048Z" fill="var(--sapContent_Illustrative_Color23)"/>
41
+ <path d="M167.594 87.389C167.594 87.389 173.061 85.6598 174.511 85.9393C175.472 86.1139 176.887 86.3235 177.812 86.3235C178.738 86.3235 181.777 87.1969 179.699 89.0834C179.699 89.0834 178.109 88.2275 175.262 88.0179C172.415 87.8083 167.751 88.9262 167.594 87.389Z" fill="var(--sapContent_Illustrative_Color23)"/>
42
+ <path d="M173.83 77.7993C173.62 78.7076 174.074 79.546 175.192 79.546C176.31 79.546 176.083 79.6334 176.467 79.8605C177.603 80.5417 179.227 80.3321 180.101 79.8081C180.17 79.7557 180.275 79.8081 180.275 79.8954C180.275 80.0875 180.275 80.3845 179.594 80.9784C178.86 81.6072 178.563 81.7295 177.952 81.7295C176.747 81.7295 174.266 81.153 173.533 80.9958C173.149 80.9958 172.834 81.0657 172.817 81.0657C171.804 79.4936 172.572 78.2535 173.83 77.7993Z" fill="var(--sapContent_Illustrative_Color28)"/>
43
+ <path d="M176.066 81.5199C175.07 80.9435 174.86 80.7688 173.917 80.6989C173.166 80.6291 172.642 81.0832 172.904 81.1356C173.411 81.2404 176.083 81.5199 176.083 81.5199H176.066Z" fill="var(--sapContent_Illustrative_Color22)"/>
44
+ <path d="M163.262 76.6989C163.262 76.6989 161.62 75.1793 161.131 75.2142C160.642 75.2142 160.729 71.5286 160.729 71.5286C160.729 71.5286 161.183 64.6116 164.275 61.9915C165.428 61.0133 169.149 58.1138 171.21 58.5679C172.38 58.8299 172.555 57.9391 173.69 57.45C174.074 57.2928 174.441 56.9085 174.773 56.4718C175.367 55.6858 174.721 54.5854 173.76 54.7251C171.611 55.0395 166.913 55.6334 164.205 56.7339C159.821 58.5155 149.917 63.9129 148.031 65.974C146.703 67.4064 147.21 69.1007 147.314 73.4326C147.472 79.9828 147.926 82.9522 147.087 84.664C145.865 87.1618 145.306 88.0177 145.306 88.0177C145.306 88.0177 142.144 97.1706 134.179 107.162C126.651 116.629 123.838 122.568 123.838 122.568C123.838 122.568 136.066 136.332 143.314 133.887C143.314 133.887 143.419 133.765 143.472 133.572C144.45 130.306 152.869 101.957 154.773 97.9915C158.057 91.1618 158.214 91.8605 159.716 90.7601C161.306 89.6073 164.974 84.6989 166.511 82.5854C167.611 81.0658 175.192 79.5636 176.066 77.223C176.59 75.843 174.738 71.7557 169.131 76.5243" fill="var(--sapContent_Illustrative_Color31)"/>
45
+ <path d="M169.62 76.1225C169.323 76.3671 168.939 76.5068 168.555 76.5068L163.961 76.664C163.524 76.664 163.087 76.5243 162.738 76.2448C162.214 75.8081 161.428 75.1793 161.131 75.1968C160.642 75.1968 160.729 71.5112 160.729 71.5112C160.729 71.5112 161.183 64.5941 164.275 61.974C165.428 60.9959 169.149 58.0963 171.21 58.5505C172.38 58.8125 172.555 57.9216 173.69 57.4326C174.074 57.2753 174.441 56.8911 174.773 56.4544C175.367 55.6684 174.721 54.5679 173.76 54.7077C171.611 55.0221 166.913 55.616 164.205 56.7164C162.948 57.2229 161.253 58.0264 159.419 58.9697C159.28 59.0395 159.14 59.1094 158.983 59.1967C158.895 59.2317 158.825 59.2841 158.738 59.319C158.633 59.3714 158.546 59.4238 158.441 59.4762C158.354 59.5112 158.284 59.5636 158.197 59.5985C158.057 59.6684 157.9 59.7557 157.76 59.8256C157.673 59.878 157.585 59.9129 157.498 59.9653C157.393 60.0177 157.271 60.0876 157.166 60.14C157.079 60.1924 157.009 60.2273 156.921 60.2797C156.817 60.3321 156.694 60.402 156.59 60.4544C156.485 60.5068 156.45 60.5243 156.38 60.5767C156.205 60.664 156.048 60.7513 155.873 60.8561C155.804 60.8911 155.734 60.9435 155.664 60.9784C155.559 61.0483 155.437 61.1007 155.332 61.1705C155.262 61.2055 155.192 61.2579 155.122 61.2928C154.948 61.3802 154.79 61.485 154.616 61.5723C154.563 61.6072 154.528 61.6247 154.476 61.6596C154.354 61.7295 154.214 61.7994 154.092 61.8867C154.022 61.9216 153.952 61.9566 153.9 62.009C153.777 62.0788 153.655 62.1487 153.533 62.2186C153.48 62.2535 153.428 62.271 153.376 62.3059C153.218 62.3933 153.044 62.4981 152.887 62.5854C152.834 62.6203 152.782 62.6553 152.729 62.6727C152.607 62.7426 152.502 62.8125 152.38 62.8823C152.328 62.9173 152.275 62.9522 152.223 62.9871C152.066 63.0745 151.908 63.1793 151.769 63.2666C151.769 63.2666 151.716 63.3016 151.699 63.3016C151.559 63.3889 151.437 63.4588 151.314 63.5461C151.262 63.581 151.227 63.5985 151.175 63.6334C151.052 63.7033 150.948 63.7732 150.843 63.8605C150.808 63.8605 150.773 63.8954 150.738 63.9304C150.598 64.0177 150.459 64.1051 150.336 64.1924C150.301 64.1924 150.266 64.2448 150.232 64.2623C150.127 64.3321 150.039 64.402 149.935 64.4719C149.9 64.4719 149.865 64.5243 149.83 64.5417C149.707 64.6291 149.585 64.7164 149.48 64.7863C149.376 64.8561 149.271 64.9435 149.166 65.0133C149.131 65.0133 149.114 65.0658 149.079 65.0832C148.991 65.1531 148.921 65.2055 148.852 65.2579C148.852 65.2579 148.817 65.2928 148.782 65.3103C148.694 65.3802 148.607 65.45 148.52 65.5199C148.52 65.5199 148.485 65.5548 148.467 65.5723C148.397 65.6247 148.345 65.6771 148.293 65.7295C148.24 65.7819 148.258 65.7644 148.24 65.7819C148.17 65.8518 148.118 65.9042 148.066 65.9566C146.738 67.3889 147.245 69.0832 147.349 73.4151C147.507 79.9653 147.961 82.9348 147.122 84.6466C145.9 87.1444 145.341 88.0003 145.341 88.0003V88.14C145.341 88.175 145.306 88.2274 145.288 88.2798V88.3322C145.288 88.3671 145.253 88.402 145.236 88.4544V88.5068C145.149 88.7164 145.044 88.9959 144.904 89.3278C144.363 90.6553 143.384 92.8387 141.917 95.5636C141.533 96.2798 141.114 97.0309 140.659 97.7994C140.659 97.8344 140.625 97.8518 140.607 97.8868C140.502 98.0789 140.38 98.2536 140.275 98.4457C140.031 98.8649 139.786 99.2667 139.524 99.6859C139.349 99.9654 139.157 100.262 138.983 100.559C138.808 100.839 138.616 101.136 138.424 101.415C138.424 101.415 138.424 101.45 138.389 101.468C138.214 101.747 138.022 102.009 137.847 102.289C137.847 102.323 137.812 102.341 137.777 102.393C137.603 102.655 137.428 102.917 137.236 103.179L137.201 103.214C137.166 103.249 137.149 103.284 137.131 103.319C136.956 103.564 136.782 103.808 136.607 104.053C136.555 104.123 136.52 104.175 136.467 104.245C136.293 104.472 136.118 104.716 135.943 104.944C135.943 104.944 135.908 104.996 135.891 105.013C135.856 105.066 135.804 105.118 135.769 105.188C135.594 105.415 135.419 105.66 135.227 105.887V105.922C135.175 105.992 135.122 106.061 135.07 106.131C134.825 106.446 134.581 106.76 134.319 107.075C126.79 116.542 123.978 122.481 123.978 122.481L124.013 122.516L124.048 122.551C124.048 122.551 124.083 122.585 124.1 122.603L124.135 122.638C124.135 122.638 124.188 122.69 124.205 122.708C124.205 122.708 124.258 122.76 124.275 122.778C124.31 122.813 124.328 122.847 124.362 122.882C124.362 122.882 124.362 122.917 124.415 122.935C124.415 122.935 124.415 122.97 124.45 122.97C124.502 123.022 124.555 123.075 124.607 123.127C124.642 123.162 124.677 123.197 124.712 123.232C124.764 123.302 124.834 123.354 124.904 123.424C124.939 123.459 124.974 123.494 125.009 123.529C125.079 123.616 125.166 123.686 125.253 123.773C125.288 123.808 125.306 123.826 125.341 123.861L125.865 124.385C125.935 124.454 125.987 124.507 126.074 124.577C126.127 124.647 126.179 124.699 126.249 124.751C126.301 124.804 126.354 124.856 126.424 124.909H126.459L126.493 124.944C126.546 124.996 126.616 125.066 126.686 125.118C126.738 125.171 126.79 125.223 126.843 125.258C126.843 125.258 126.895 125.31 126.913 125.328C126.983 125.398 127.052 125.45 127.105 125.52C127.14 125.555 127.175 125.59 127.227 125.625C127.227 125.625 127.262 125.66 127.297 125.677C127.297 125.677 127.349 125.73 127.367 125.747C127.437 125.817 127.507 125.869 127.576 125.939C127.611 125.974 127.646 125.992 127.681 126.027L127.716 126.061C127.769 126.096 127.804 126.149 127.856 126.184C127.926 126.254 127.996 126.306 128.066 126.376C128.066 126.376 128.1 126.411 128.118 126.428C128.118 126.428 128.153 126.463 128.17 126.463C128.223 126.516 128.275 126.551 128.328 126.603C128.432 126.69 128.52 126.778 128.624 126.865C128.747 126.97 128.852 127.075 128.974 127.179C129.009 127.179 129.026 127.232 129.061 127.249C131.978 129.765 135.716 132.507 139.157 133.555C140.625 133.992 141.917 132.489 141.288 131.092C141.253 131.005 141.218 130.917 141.166 130.83C138.808 125.415 137.725 118.603 139.175 112.839C139.856 110.096 141.079 107.546 142.179 104.961C143.262 102.393 143.908 99.7034 144.974 97.1357C145.306 96.3147 145.655 95.4763 146.074 94.6902C146.494 93.8868 146.93 93.1007 147.367 92.2972C148.223 90.6728 149.061 89.0483 149.847 87.3715C150.581 85.7819 151.314 84.14 151.821 82.4632C152.223 81.1007 152.432 79.6859 152.747 78.3059C153.044 76.961 153.411 75.5636 154.179 74.4107C154.616 73.7645 155.734 72.0527 156.555 73.2754C156.677 73.4675 156.782 73.6946 156.852 73.9217C157.096 74.7252 157.253 75.5636 157.306 76.4195C157.428 78.2361 157.114 80.0701 156.869 81.8693C156.869 81.9915 156.834 82.1138 156.869 82.2361C156.956 82.4282 157.201 82.4806 157.411 82.4981C158.511 82.5854 159.594 82.1662 160.555 81.6422C161.533 81.1182 162.459 80.4894 163.489 80.1225C163.943 79.9653 164.502 79.8605 164.904 80.1225C165.253 80.3671 165.376 80.8387 165.306 81.2579C165.236 81.6771 165.009 82.0439 164.782 82.3933C162.983 84.9959 160.118 86.7077 158.144 89.1881C157.393 90.1488 157.131 91.0396 157.445 92.2099C157.498 92.3846 157.55 92.5767 157.603 92.7514C158.546 91.2667 158.965 91.2667 159.873 90.6029C161.463 89.4501 165.131 84.5418 166.668 82.4282C167.769 80.9086 175.21 79.6859 176.223 77.0658C176.729 75.7208 174.983 71.8081 169.742 75.9828L169.673 76.1051L169.62 76.1225Z" fill="var(--sapContent_Illustrative_Color28)"/>
46
+ <path d="M154.913 73.4326C155.07 73.0658 155.227 72.699 155.402 72.3322C156.572 69.8868 158.214 67.616 160.205 65.7645C161.044 64.9785 161.952 64.2798 162.913 63.651C163.297 63.0047 163.751 62.4108 164.293 61.9566C165.446 60.9785 169.166 58.0789 171.227 58.5331C172.398 58.7951 172.572 57.9042 173.708 57.4152C174.092 57.258 174.459 56.8737 174.791 56.437C175.384 55.651 174.738 54.5505 173.777 54.6903C171.629 55.0047 166.93 55.5986 164.223 56.699C162.965 57.2056 161.271 58.009 159.437 58.9523C159.297 59.0221 159.157 59.092 159 59.1794C158.913 59.2143 158.843 59.2667 158.756 59.3016C158.651 59.354 158.563 59.4064 158.459 59.4588C158.371 59.4938 158.301 59.5462 158.214 59.5811C158.074 59.651 157.917 59.7383 157.777 59.8082C157.69 59.8606 157.603 59.8955 157.515 59.9479C157.411 60.0003 157.288 60.0702 157.184 60.1226C157.096 60.175 157.026 60.2099 156.939 60.2623C156.834 60.3147 156.712 60.3846 156.607 60.437C156.502 60.4894 156.467 60.5069 156.397 60.5593C156.223 60.6466 156.066 60.7339 155.891 60.8387C155.821 60.8737 155.751 60.9261 155.681 60.961C155.577 61.0309 155.454 61.0833 155.349 61.1532C155.28 61.1881 155.21 61.2405 155.14 61.2754C154.965 61.3628 154.808 61.4676 154.633 61.5549C154.581 61.5898 154.546 61.6073 154.494 61.6422C154.371 61.7121 154.232 61.782 154.109 61.8693C154.039 61.9042 153.97 61.9392 153.917 61.9916C153.795 62.0615 153.673 62.1313 153.55 62.2012C153.498 62.2361 153.446 62.2536 153.393 62.2885C153.236 62.3759 153.061 62.4807 152.904 62.568C152.852 62.6029 152.799 62.6379 152.747 62.6553C152.625 62.7252 152.52 62.7951 152.397 62.8649C152.345 62.8999 152.293 62.9348 152.24 62.9698C152.083 63.0571 151.926 63.1619 151.786 63.2492C151.786 63.2492 151.734 63.2842 151.716 63.2842C151.577 63.3715 151.454 63.4414 151.332 63.5287C151.28 63.5636 151.245 63.5811 151.192 63.616C151.07 63.6859 150.965 63.7558 150.86 63.8431C150.825 63.8431 150.791 63.878 150.756 63.913C150.616 64.0003 150.476 64.0877 150.354 64.175C150.319 64.175 150.284 64.2274 150.249 64.2449C150.144 64.3147 150.057 64.3846 149.952 64.4545C149.917 64.4545 149.882 64.5069 149.847 64.5243C149.725 64.6117 149.603 64.699 149.498 64.7689C149.393 64.8387 149.288 64.9261 149.184 64.996C149.149 64.996 149.131 65.0484 149.096 65.0658C149.009 65.1357 148.939 65.1881 148.869 65.2405C148.869 65.2405 148.834 65.2754 148.799 65.2929C148.712 65.3628 148.625 65.4326 148.537 65.5025C148.537 65.5025 148.502 65.5374 148.485 65.5549C148.415 65.6073 148.363 65.6597 148.31 65.7121C148.258 65.7645 148.275 65.747 148.258 65.7645C148.188 65.8344 148.135 65.8868 148.083 65.9392C146.756 67.3715 147.262 69.0658 147.367 73.3977C147.524 79.9479 147.978 82.9174 147.14 84.6292C145.917 87.127 145.358 87.9829 145.358 87.9829V88.1226C145.358 88.1576 145.323 88.2099 145.306 88.2624V88.3148C145.306 88.3497 145.271 88.3846 145.253 88.437V88.4894C145.166 88.699 145.061 88.9785 144.922 89.3104C144.38 90.6379 143.402 92.8213 141.935 95.5462C141.55 96.2624 141.131 97.0135 140.677 97.782C140.677 97.8169 140.642 97.8344 140.625 97.8694C140.52 98.0615 140.397 98.2362 140.293 98.4283C140.048 98.8475 139.804 99.2493 139.542 99.6685C139.367 99.948 139.175 100.245 139 100.542C138.825 100.821 138.633 101.118 138.441 101.398C138.441 101.398 138.441 101.433 138.406 101.45C138.232 101.73 138.039 101.992 137.865 102.271C137.865 102.306 137.83 102.324 137.795 102.376C137.62 102.638 137.446 102.9 137.253 103.162L137.218 103.197C137.184 103.232 137.166 103.267 137.149 103.302C136.974 103.546 136.799 103.791 136.625 104.035C136.572 104.105 136.537 104.158 136.485 104.227C136.31 104.455 136.135 104.699 135.961 104.926C135.961 104.926 135.926 104.979 135.908 104.996C135.873 105.048 135.821 105.101 135.786 105.171C135.611 105.398 135.437 105.642 135.245 105.869V105.904C135.192 105.974 135.14 106.044 135.087 106.114C134.843 106.428 134.598 106.743 134.336 107.057C126.808 116.524 123.926 122.568 123.926 122.568C123.926 122.568 123.943 122.603 123.996 122.655C124.101 122.778 124.328 123.022 124.607 123.302C125.271 124 126.197 124.944 126.371 125.066C126.406 125.101 130.232 128.979 134.703 131.703C136.363 132.717 137.987 133.415 139 133.73C140.467 134.166 141.952 132.507 141.323 131.11C141.288 131.022 141.253 130.935 141.201 130.848C138.843 125.433 137.76 118.62 139.21 112.856C139.891 110.114 141.114 107.564 142.214 104.979C143.297 102.411 143.943 99.7209 145.009 97.1532C145.341 96.3322 145.69 95.4938 146.109 94.7078C146.528 93.9043 146.965 93.1183 147.402 92.3148C148.258 90.6903 149.096 89.0658 149.882 87.389C150.616 85.7995 151.349 84.1575 151.856 82.4807C152.258 81.1182 152.467 79.7034 152.782 78.3235C153.079 76.9785 153.446 75.5811 154.214 74.4283C154.406 74.1488 154.721 73.6772 155.07 73.3104L155 73.4501L154.913 73.4326Z" fill="var(--sapContent_Illustrative_Color3)"/>
47
+ <path d="M187.947 71.6999C187.947 71.6999 185.903 72.2937 186.759 74.0929C187.615 75.892 190.008 76.6606 190.008 76.6606C190.008 76.6606 192.401 79.3156 193.501 81.0099C194.619 82.7217 199.056 89.9706 201.012 91.9444C202.969 93.9008 208.506 96.9051 212.576 104.067C216.645 111.246 220.488 118.407 221.676 122.687C222.864 126.949 224.995 138.006 229.344 147.875C233.693 157.744 239.196 165.796 246.497 162.145C253.816 158.495 252.471 152.643 251.248 148.853C250.025 145.08 243.073 126.669 237.466 119.473C231.859 112.276 222.584 94.844 221.134 92.6431C219.667 90.4422 217.606 89.1147 216.995 85.0798C216.383 81.0623 215.72 76.3985 215.475 72.713C215.475 72.713 215.475 72.3985 213.903 69.9531C212.331 67.5077 210.148 60.5033 202.707 57.3767C196.715 54.8614 192.085 54.7549 190.514 54.8439C190.219 54.8614 189.886 55.1234 189.851 55.4728C189.781 56.3811 189.816 58.0404 191.056 58.6693C192.785 59.5252 195.615 58.8789 195.615 58.8789C195.615 58.8789 196.348 59.6998 198.165 59.368C198.439 59.3178 202.655 61.9584 202.874 62.6462C204.108 66.5132 200.436 75.0213 199.813 75.57C199.097 76.2163 198.34 79.2806 197.134 77.7086C197.134 77.7086 195.283 74.9662 193.03 73.1671C190.776 71.3505 187.947 71.6999 187.947 71.6999Z" fill="var(--sapContent_Illustrative_Color31)"/>
48
+ <path d="M189.833 56.3984C189.886 57.2543 190.148 58.2325 191.038 58.6692C192.768 59.5251 195.597 58.9312 195.597 58.9312C195.597 58.9312 196.331 59.6998 198.148 59.3679H198.235C195.702 57.7958 192.768 56.7827 189.833 56.3984Z" fill="var(--sapContent_Illustrative_Color28)"/>
49
+ <path d="M196.072 59.9253L200.153 59.5852L194.712 58.2249L184.509 58.9051L185.529 59.2452L187.57 62.6461L196.072 59.9253Z" fill="var(--sapContent_Illustrative_Color17)"/>
50
+ <path d="M245.292 155.298C243.79 154.6 242.34 153.674 241.239 152.434C239.685 150.687 238.48 148.591 237.362 146.547C236.209 144.434 235.178 142.268 234.025 140.154C232.873 138.023 231.51 135.997 230.392 133.848C228.139 129.534 226.462 124.958 224.82 120.381C223.161 115.77 221.519 111.124 219.335 106.739C217.257 102.6 214.794 98.7218 211.894 95.1061C211.161 94.1978 210.392 93.3244 209.659 92.4161C209.117 91.7349 208.593 91.0362 208.244 90.2327C207.562 88.6781 207.772 87.0187 207.929 85.3768C208.069 83.7698 208.209 82.1628 208.034 80.5558C207.964 79.8571 207.842 79.106 207.51 78.4772C207.213 77.9183 206.532 77.237 205.851 77.3768C205.117 77.5165 204.523 78.2676 203.929 78.6868C203.266 79.1584 202.479 78.7926 201.676 78.88C200.715 79.0023 197.955 78.7916 197.152 77.7436C197.152 77.7436 195.3 75.0012 193.047 73.2021C190.794 71.3855 187.964 71.7348 187.964 71.7348C187.964 71.7348 186.27 72.6082 186.776 74.1279C187.632 75.927 190.025 76.6955 190.025 76.6955C190.025 76.6955 192.418 79.3506 193.519 81.0449C194.637 82.7567 199.073 90.0056 201.03 91.9794C202.986 93.9357 208.523 96.9401 212.593 104.102C216.663 111.281 220.506 118.442 221.693 122.722C222.881 126.984 225.012 138.041 229.362 147.91C233.711 157.779 239.213 165.831 246.514 162.18C249.362 160.748 250.899 159.001 251.632 157.167C249.432 156.905 247.266 156.259 245.309 155.333V155.298H245.292Z" fill="var(--sapContent_Illustrative_Color3)"/>
51
+ <path d="M204.235 67.0673L203.214 66.047C202.166 63.8112 204.572 62.9521 202.336 61.8342C201.481 61.3975 194.424 60.8211 192.625 68.891C190.826 76.9609 191.942 75.7784 192.45 76.0875C191.678 76.1312 190.878 75.3888 190.144 74.9522C189.882 74.8124 189.638 74.6552 189.393 74.498C188.013 73.6246 186.948 72.3146 186.371 70.7775C185.376 68.1574 184.852 64.5766 186.686 60.7338C186.686 60.7338 184.834 62.498 183.943 64.8735C183.978 64.6115 184.013 64.367 184.031 64.105C184.118 63.2491 184.24 62.1661 183.751 61.3975C183.07 60.332 185.897 59.0796 184.849 58.905C184.168 58.7827 185.321 59.3766 184.849 58.905C184.517 58.5731 177.865 59.3888 177.446 59.5984C177.026 59.808 177.166 59.7556 177.166 59.7556C177.882 61.0133 180.694 69.8517 180.694 69.8517C180.694 69.8517 181.061 69.8866 181.603 69.9216C181.568 69.9565 181.55 69.9914 181.515 70.0264C181.515 70.0264 181.515 75.7556 185.655 75.9652C189.812 76.1749 191.176 74.27 193.692 74.5495C195.578 74.7591 193.758 74.4539 195.732 74.2094C195.924 74.2094 197.581 74.9522 197.773 74.9522C198.611 71.7382 198.948 75.5635 199.839 75.284C200.66 75.022 199.638 74.7416 200.494 74.5495C201.192 74.3923 200.545 74.2012 201.174 73.8693C201.977 73.4501 201.138 73.4254 201.854 72.849C202.186 72.587 201.592 72.8735 201.854 72.5242C201.959 72.3845 201.784 71.9859 201.854 71.8287C201.889 71.7588 202.482 71.2359 202.534 71.1485C202.534 71.1136 201.514 70.381 201.514 70.4683C201.514 70.2936 202.752 69.2127 202.874 69.1079C203.101 67.9725 203.346 68.0804 202.874 67.0673H204.235Z" fill="var(--sapContent_Illustrative_Color22)"/>
52
+ <path d="M181.48 67.4415C181.48 62.4633 177.446 58.4284 172.467 58.4284C167.489 58.4284 171.856 58.4284 171.559 58.4808C171.559 58.4808 167.996 57.4153 162.965 62.8476C160.363 65.6598 159.629 68.9087 159.524 71.3716C159.419 73.8345 161.76 77.1882 164.887 77.3978C168.013 77.6074 167.14 77.4328 168.59 77.2231C175.611 76.2275 173.725 76.8214 175.577 75.8956C179.035 74.638 181.498 71.3192 181.498 67.424H181.48V67.4415Z" fill="var(--sapContent_Illustrative_Color17)"/>
53
+ <path d="M172.467 76.0004C177.194 76.0004 181.026 72.1684 181.026 67.4414C181.026 62.7144 177.194 58.8824 172.467 58.8824C167.74 58.8824 163.908 62.7144 163.908 67.4414C163.908 72.1684 167.74 76.0004 172.467 76.0004Z" fill="var(--sapContent_Illustrative_Color22)"/>
54
+ <path d="M172.467 75.2844C176.799 75.2844 180.31 71.773 180.31 67.4416C180.31 63.1101 176.799 59.5988 172.467 59.5988C168.136 59.5988 164.625 63.1101 164.625 67.4416C164.625 71.773 168.136 75.2844 172.467 75.2844Z" fill="var(--sapContent_Illustrative_Color8)"/>
55
+ <path d="M180.101 65.5728C179.664 63.7737 178.598 62.2191 177.149 61.1361L166.179 72.1056C167.245 73.5553 168.817 74.6034 170.616 75.0575L180.101 65.5728Z" fill="var(--sapContent_Illustrative_Color2)"/>
56
+ <path d="M173.149 59.6162C172.922 59.6162 172.712 59.5813 172.485 59.5813C168.153 59.5813 164.764 63.0922 164.642 67.4241C164.52 71.756 164.677 68.0355 164.677 68.0879L173.166 59.5988L173.149 59.6162Z" fill="var(--sapContent_Illustrative_Color2)"/>
57
+ <path d="M205.108 67.4415C205.108 62.4633 201.073 58.4284 196.095 58.4284C191.117 58.4284 195.484 58.4284 195.187 58.4808C195.187 58.4808 191.623 57.4153 186.593 62.8476C183.99 65.6598 184.954 68.6859 184.849 71.1488C184.744 73.6117 186.144 75.686 189.27 75.8956C192.397 76.1052 190.768 77.4328 192.217 77.2232C199.239 76.2275 197.353 76.8214 199.204 75.8956C202.663 74.638 205.126 71.3192 205.126 67.424H205.108V67.4415Z" fill="var(--sapContent_Illustrative_Color17)"/>
58
+ <path d="M196.095 76.0004C200.822 76.0004 204.654 72.1684 204.654 67.4414C204.654 62.7144 200.822 58.8824 196.095 58.8824C191.368 58.8824 187.536 62.7144 187.536 67.4414C187.536 72.1684 191.368 76.0004 196.095 76.0004Z" fill="var(--sapContent_Illustrative_Color22)"/>
59
+ <path d="M196.095 75.2844C200.427 75.2844 203.938 71.773 203.938 67.4416C203.938 63.1101 200.427 59.5988 196.095 59.5988C191.764 59.5988 188.252 63.1101 188.252 67.4416C188.252 71.773 191.764 75.2844 196.095 75.2844Z" fill="var(--sapContent_Illustrative_Color8)"/>
60
+ <path d="M203.728 65.5728C203.292 63.7737 202.226 62.2191 200.776 61.1361L189.807 72.1056C190.872 73.5553 192.444 74.6034 194.244 75.0575L203.728 65.5728Z" fill="var(--sapContent_Illustrative_Color2)"/>
61
+ <path d="M196.776 59.6162C196.549 59.6162 196.34 59.5813 196.113 59.5813C191.781 59.5813 188.392 63.0922 188.27 67.4241C188.147 71.756 188.305 68.0355 188.305 68.0879L196.794 59.5988L196.776 59.6162Z" fill="var(--sapContent_Illustrative_Color2)"/>
62
+ <path d="M184.59 65.0309C186.278 65.0309 187.646 63.6623 187.646 61.9741C187.646 60.2859 186.278 58.9174 184.59 58.9174C182.901 58.9174 181.533 60.2859 181.533 61.9741C181.533 63.6623 182.901 65.0309 184.59 65.0309Z" fill="var(--sapContent_Illustrative_Color17)"/>
63
+ <path d="M182.721 61.9741C182.721 60.4894 183.786 59.2492 185.201 58.9698C185.009 58.9348 184.817 58.9174 184.607 58.9174C182.913 58.9174 181.55 60.2973 181.55 61.9741C181.55 63.651 182.93 65.0309 184.607 65.0309C186.284 65.0309 185.009 65.0134 185.201 64.9785C183.786 64.699 182.721 63.4588 182.721 61.9741Z" fill="var(--sapContent_Illustrative_Color22)"/>
64
+ <path d="M242.354 153.905V153.922C242.548 155.725 242.062 157.414 241.524 159.119C241.603 156.694 241.425 154.268 241.044 151.861C240.712 151.354 240.363 150.865 240.013 150.359C239.891 150.795 239.786 151.232 239.664 151.669L239.646 151.686C239.472 152.332 239.297 152.961 239.053 153.573C238.843 154.097 238.581 154.656 238.162 155.057C237.131 156.018 235.856 155.319 234.965 154.533C232.922 152.717 232.17 149.328 229.271 148.699C229.446 151.284 229.952 153.87 229.725 156.455C229.638 157.538 229.446 158.813 228.642 159.634C227.769 160.525 226.546 160.245 225.515 159.843C224.083 159.302 222.756 158.533 221.446 157.765C220.939 157.468 220.432 157.171 219.926 156.874C219.087 156.385 218.371 155.651 217.69 154.953C216.991 154.254 216.293 153.52 215.419 153.031C214.633 152.595 213.76 152.332 212.956 151.913C212.188 151.512 211.611 150.935 211.245 150.149C210.913 149.433 210.756 148.647 210.773 147.843C210.773 146.219 211.367 144.647 211.821 143.11C212.188 141.852 212.607 140.49 212.415 139.162C211.419 139.319 210.389 139.319 209.445 138.9C207.839 138.201 207.157 136.472 206.686 134.9C206.232 133.415 205.917 131.843 205.114 130.516C204.328 131.337 204.24 132.56 204.345 133.677C204.485 135.057 204.904 136.385 205.306 137.695C205.742 139.145 206.074 140.594 206.319 142.079C206.913 145.835 206.965 149.643 206.983 153.433C207.052 153.485 207.105 153.555 207.175 153.625C208.275 154.795 211.07 156.857 213.708 157.433C216.345 158.027 230.983 168.105 239.786 168.001C239.786 167.981 239.797 167.964 239.805 167.945C239.798 167.964 239.793 167.983 239.786 168.001C248.551 168.001 250.39 160.874 251.508 157.433C251.893 156.228 244.869 157.835 242.354 153.905ZM239.821 167.896C239.826 167.885 239.83 167.873 239.833 167.861C239.828 167.875 239.825 167.889 239.819 167.903C239.819 167.901 239.819 167.898 239.819 167.896H239.821Z" fill="var(--sapContent_Illustrative_Color22)"/>
65
+ <path d="M213.417 127.605C213.417 127.605 213.385 122.991 209.733 129.881C206.094 136.784 210.387 142.536 212.531 144.639C214.676 146.743 225.742 163.225 234.565 163.609C243.388 163.993 248.862 167.357 250.828 159.915C250.828 159.915 254.864 152.642 251.47 146.549C248.077 140.455 244.343 129.819 244.343 129.819C244.343 129.819 243.751 135.111 227.506 136.108L222.68 136.513C222.68 136.513 224.548 134.362 220.899 131.346C217.251 128.331 213.757 126.925 213.757 126.925L213.417 127.605Z" fill="var(--sapContent_Illustrative_Color13)"/>
66
+ <path d="M222.726 136.166C222.814 136.252 222.606 136.464 222.62 136.624C222.759 138.229 223.604 140.036 223.854 141.627C224.274 144.168 224.804 146.695 225.384 149.197C225.642 150.281 225.924 151.365 226.342 152.386C226.569 152.952 226.859 153.53 227.234 154.021C227.219 153.687 227.142 153.367 227.04 153.071C226.861 152.406 226.607 151.766 226.49 151.088C226.345 150.212 226.238 149.324 226.18 148.435C226.122 147.522 226.15 146.595 226.079 145.694C226.035 144.991 225.942 144.288 226.022 143.583C226.068 143.236 226.164 142.914 226.321 142.604C226.467 142.331 226.698 141.97 227.018 141.893C227.277 141.804 227.476 141.951 227.723 141.948C227.797 141.947 227.773 141.997 227.809 141.861C227.843 141.626 227.767 141.355 227.727 141.121C227.688 140.837 227.648 140.553 227.707 140.268C227.826 139.773 228.116 139.178 228.658 139.024C229.2 138.871 229.82 139.087 230.376 139.069C231.166 139.037 231.967 138.893 232.732 138.738C233.496 138.582 234.273 138.463 235.05 138.32C236.406 138.06 237.749 137.714 238.991 137.121C240.318 136.466 241.433 135.504 242.51 134.505C243.428 133.644 244.309 132.722 244.978 131.665C244.56 130.545 244.331 129.856 244.331 129.856C244.331 129.856 243.739 135.148 227.494 136.145L222.726 136.166Z" fill="var(--sapContent_Illustrative_Color22)"/>
67
+ <path d="M196.412 76.5902L189.61 75.91L191.311 77.6105L195.052 80.3313L196.412 76.5902Z" fill="var(--sapContent_Illustrative_Color3)"/>
68
+ <defs>
69
+ <clipPath id="clip0_396_4278">
70
+ <rect width="16" height="27" fill="var(--sapContent_Illustrative_Color8)" transform="translate(193.358 178)"/>
71
+ </clipPath>
72
+ </defs>
73
+ </svg>`;
@@ -0,0 +1,60 @@
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-NoTasks">
2
+ <rect y="62" width="320" height="138" rx="24" fill="var(--sapContent_Illustrative_Color20)"/>
3
+ <path d="M206.559 192.711C236.239 188.053 259.593 179.782 258.723 174.237C257.852 168.692 231.778 160.815 202.098 165.473C172.419 170.131 150.374 185.561 151.244 191.106C152.115 196.651 176.88 197.369 206.559 192.711Z" fill="var(--sapContent_Illustrative_Color21)"/>
4
+ <path d="M94.8932 112.656C84.8205 105.192 74.7479 97.7268 64.6753 90.2701C64.2189 89.936 63.7788 90.6939 64.2271 91.028C74.2997 98.4928 84.3723 105.958 94.445 113.414C94.9013 113.748 95.3414 112.991 94.8932 112.656Z" fill="var(--sapContent_Illustrative_Color30)"/>
5
+ <path d="M93.8011 111.711C92.701 109.299 91.6008 106.879 90.5006 104.466C87.8684 98.6966 85.2443 92.935 82.612 87.1652L73.0773 66.2376C70.3146 60.1745 67.552 54.1195 64.7893 48.0564L62.0593 42.0666L61.2118 40.2167C61.0732 39.9152 60.9673 39.4914 60.7636 39.2306C60.7391 39.198 60.7228 39.1491 60.7065 39.1084C60.6169 38.9128 60.2827 39.0024 60.299 39.2143C60.8532 45.1145 61.4155 51.0146 61.9697 56.9229C62.8498 66.2539 63.7381 75.585 64.6182 84.916C64.8219 87.0756 65.0257 89.2352 65.2294 91.3948C65.2539 91.6718 65.6939 91.68 65.6695 91.3948C65.1153 85.4946 64.553 79.5945 63.9989 73.6862C63.1187 64.3551 62.2386 55.0241 61.3503 45.6931C61.1466 43.5335 60.9428 41.3739 60.7391 39.2143L60.3316 39.3284C61.4318 41.7406 62.532 44.161 63.6321 46.5732C66.2644 52.343 68.8885 58.1046 71.5207 63.8743L81.0555 84.8019C83.8181 90.8651 86.5808 96.92 89.3434 102.983L92.0735 108.973L92.921 110.823C93.0595 111.124 93.1655 111.548 93.3692 111.809C93.3937 111.842 93.41 111.89 93.4263 111.931C93.5403 112.192 93.9234 111.964 93.8093 111.711H93.8011Z" fill="var(--sapContent_Illustrative_Color30)"/>
6
+ <path d="M72.515 64.1108C69.1004 63.3284 65.6939 62.5461 62.2793 61.7556C61.7659 61.6415 61.5459 62.4238 62.0593 62.5461C65.4739 63.3284 68.8803 64.1108 72.2949 64.9013C72.8083 65.0153 73.0284 64.233 72.515 64.1108Z" fill="var(--sapContent_Illustrative_Color30)"/>
7
+ <rect x="60.586" y="39.3389" width="0.3" height="59.4438" transform="rotate(-11.3292 60.586 39.3389)" fill="var(--sapContent_Illustrative_Color30)"/>
8
+ <rect width="0.3" height="64.0404" transform="matrix(-0.959409 0.282019 0.282019 0.959409 60.8457 40.0654)" fill="var(--sapContent_Illustrative_Color30)"/>
9
+ <rect width="0.3" height="69.2382" transform="matrix(-0.934726 0.35537 0.35537 0.934726 61.1826 41.1893)" fill="var(--sapContent_Illustrative_Color30)"/>
10
+ <path d="M82.4247 84.9811L63.673 77.1333C63.2248 76.9459 63.021 77.6793 63.4692 77.8667C69.7198 80.4827 75.9704 83.0986 82.221 85.7146C82.6692 85.902 82.8729 85.1686 82.4247 84.9811Z" fill="var(--sapContent_Illustrative_Color30)"/>
11
+ <path d="M224.566 94.9562C233.221 104.026 241.875 113.089 250.53 122.159C250.921 122.566 251.54 121.947 251.149 121.539C242.495 112.469 233.84 103.407 225.185 94.3369C224.794 93.9294 224.175 94.5488 224.566 94.9562Z" fill="var(--sapContent_Illustrative_Color30)"/>
12
+ <path d="M225.927 95.657C228.633 89.8873 231.338 84.1175 234.044 78.3478C238.347 69.1634 242.649 59.9791 246.952 50.7947C247.93 48.7085 248.908 46.6141 249.894 44.5279L249.487 44.4138C249.495 46.9319 249.503 49.4582 249.519 51.9764L249.593 70.1413C249.625 77.4676 249.65 84.7939 249.682 92.1121C249.707 98.4441 249.731 104.776 249.756 111.108L249.78 117.351C249.78 118.272 249.593 119.437 249.788 120.35C249.796 120.39 249.788 120.439 249.788 120.48C249.788 120.765 250.228 120.765 250.228 120.48C250.22 117.962 250.212 115.436 250.196 112.917L250.122 94.7525C250.09 87.4262 250.065 80.0999 250.033 72.7817C250.008 66.4497 249.984 60.1176 249.959 53.7856L249.935 47.5431C249.935 46.6222 250.122 45.4569 249.927 44.5442C249.919 44.5034 249.927 44.4545 249.927 44.4138C249.927 44.21 249.609 44.0959 249.519 44.2997C246.814 50.0694 244.108 55.8392 241.403 61.609C237.1 70.7933 232.797 79.9776 228.494 89.162C227.516 91.2482 226.538 93.3426 225.552 95.4289C225.43 95.6815 225.813 95.9097 225.935 95.6489L225.927 95.657Z" fill="var(--sapContent_Illustrative_Color30)"/>
13
+ <path d="M250.946 69.0819C247.295 67.3624 243.644 65.6347 239.985 63.9152C239.471 63.6789 239.031 64.4368 239.536 64.6731C243.187 66.3926 246.838 68.1203 250.497 69.8398C251.011 70.0761 251.451 69.3183 250.946 69.0819Z" fill="var(--sapContent_Illustrative_Color30)"/>
14
+ <path d="M250.905 93.0818C244.524 88.3714 238.151 83.6611 231.77 78.9508C231.314 78.6166 230.874 79.3745 231.322 79.7087C237.703 84.419 244.076 89.1293 250.457 93.8397C250.913 94.1738 251.353 93.4159 250.905 93.0818Z" fill="var(--sapContent_Illustrative_Color30)"/>
15
+ <rect width="0.3" height="68.6061" transform="matrix(-0.996046 -0.0888429 -0.0888429 0.996046 249.704 46.1273)" fill="var(--sapContent_Illustrative_Color30)"/>
16
+ <rect x="249.367" y="45.1843" width="0.3" height="64.6185" transform="rotate(10.0288 249.367 45.1843)" fill="var(--sapContent_Illustrative_Color30)"/>
17
+ <rect x="249.159" y="45.2736" width="0.3" height="58.7542" transform="rotate(18.3082 249.159 45.2736)" fill="var(--sapContent_Illustrative_Color30)"/>
18
+ <path d="M249.226 122.053L191.895 146.525L173.054 148.367L149.461 147.096C149.461 147.096 214.55 121.148 223.808 95.3879L249.226 122.053Z" fill="var(--sapContent_Illustrative_Color15)"/>
19
+ <path d="M73.9086 97.0097L72.735 98.5418C74.0552 99.5441 75.4243 100.579 76.8016 101.63L77.9751 100.098C76.5978 99.0552 75.2206 98.0121 73.9086 97.0097ZM66.5823 91.46L65.4088 92.992C66.566 93.8722 67.9514 94.9235 69.4753 96.0807L70.6488 94.5486C69.1249 93.3914 67.7395 92.3401 66.5823 91.46ZM92.6277 111.206C91.5275 110.375 90.134 109.315 88.5611 108.117L87.3876 109.649C88.9686 110.847 90.3621 111.899 91.4542 112.738L92.6277 111.206ZM81.2267 102.568L80.0532 104.1C81.4467 105.159 82.8158 106.194 84.1197 107.188L85.2932 105.656C83.9893 104.662 82.6202 103.627 81.2267 102.568Z" fill="var(--sapContent_Illustrative_Color16)"/>
20
+ <path d="M247.181 115.216L244.646 117.44L248.158 121.156L250.693 118.932L247.181 115.216Z" fill="var(--sapContent_Illustrative_Color16)"/>
21
+ <path d="M246.529 114.531L244.125 116.886L247.637 120.602L250.041 118.247L246.529 114.531Z" fill="var(--sapContent_Illustrative_Color15)"/>
22
+ <path d="M240.922 108.549L238.387 110.774L241.9 114.49L244.434 112.265L240.922 108.549Z" fill="var(--sapContent_Illustrative_Color16)"/>
23
+ <path d="M240.27 107.856L237.866 110.212L241.378 113.928L243.782 111.573L240.27 107.856Z" fill="var(--sapContent_Illustrative_Color15)"/>
24
+ <path d="M234.468 101.785L231.933 104.01L235.445 107.726L237.98 105.501L234.468 101.785Z" fill="var(--sapContent_Illustrative_Color16)"/>
25
+ <path d="M233.808 101.093L231.403 103.456L234.924 107.172L237.328 104.809L233.808 101.093Z" fill="var(--sapContent_Illustrative_Color15)"/>
26
+ <path d="M228.258 95.2006L225.723 97.4253L229.236 101.141L231.77 98.9167L228.258 95.2006Z" fill="var(--sapContent_Illustrative_Color16)"/>
27
+ <path d="M227.606 94.5078L225.194 96.863L228.714 100.579L231.118 98.2239L227.606 94.5078Z" fill="var(--sapContent_Illustrative_Color15)"/>
28
+ <path d="M218.666 104.132L239.773 126.845L228.16 134.073L211.576 111.516L218.666 104.132Z" fill="var(--sapContent_Illustrative_Color16)"/>
29
+ <path d="M183.33 130.813L190.404 149.394L169.696 154.813L168.914 138.335L183.33 130.813Z" fill="var(--sapContent_Illustrative_Color16)"/>
30
+ <path d="M203.296 118.19L219.522 140.266L200.925 148.367L192.841 125.215L203.296 118.19Z" fill="var(--sapContent_Illustrative_Color16)"/>
31
+ <path d="M185.425 139.06C189.287 141.187 200.827 141.456 200.827 141.456C201.014 141.456 201.21 141.464 201.365 141.473L224.395 139.231C225.666 139.109 226.595 137.944 226.4 136.681C226.343 136.306 226.277 135.915 226.204 135.523C225.87 133.665 225.397 131.742 225.185 130.903C225.112 130.618 225.071 130.455 225.071 130.455C225.071 130.455 225.34 129.974 225.699 129.322C225.992 128.784 226.636 127.382 226.946 126.787C227.622 125.467 228.25 122.827 228.103 121.507C228.087 121.376 227.932 121.075 227.932 121.075C227.524 120.284 226.742 119.763 225.845 119.771H225.829C223.107 119.828 220.239 120.162 209.009 119.021C200.175 118.116 194.071 116.829 191.863 116.315C191.365 116.201 190.852 116.258 190.396 116.478C190.396 116.478 189.581 116.804 189.353 116.976C189.141 117.13 188.986 117.155 188.815 117.497C188.798 117.53 188.741 117.766 188.741 117.782C188.668 118.01 188.652 118.271 188.635 118.393C188.432 119.779 188.424 121.066 188.285 122.599C188.146 124.204 188.049 125.63 188 126.355C187.983 126.665 187.902 126.958 187.755 127.236C187.56 127.602 187.226 128.303 186.704 129.599C186.663 129.705 186.614 129.819 186.574 129.933C186.394 130.373 186.199 130.886 186.003 131.432C185.588 132.565 184.748 134.415 184.21 136.558C184.137 136.844 184.039 137.267 184.194 137.748C184.267 137.976 184.496 138.547 185.433 139.06H185.425Z" fill="var(--sapContent_Illustrative_Color25)"/>
32
+ <path d="M188.554 119.07C188.554 119.152 188.464 119.844 188.464 119.926C188.448 120.138 188.399 121.156 188.383 121.368C201.422 122.721 214.469 124.074 227.508 125.435C227.532 125.321 227.663 125.019 227.695 124.897C227.785 124.514 227.923 123.96 227.932 123.911C227.989 123.65 227.964 123.666 228.062 123.055C214.942 121.735 201.674 120.398 188.554 119.078V119.07Z" fill="var(--sapContent_Illustrative_Color1)"/>
33
+ <path d="M188.269 122.892L188.089 125.182L225.984 128.833C226.017 128.76 226.506 127.937 226.538 127.871C226.579 127.79 226.913 126.869 226.954 126.787C214.07 125.492 201.153 124.196 188.269 122.892Z" fill="var(--sapContent_Illustrative_Color1)"/>
34
+ <path d="M180.315 147.112C180.299 146.713 179.964 146.623 179.606 145.686C179.606 145.686 179.606 145.686 179.606 145.678C179.345 144.985 179.06 144.064 178.905 142.907C178.848 142.524 178.807 142.116 178.791 141.676C178.742 140.886 178.758 140.014 178.856 139.06C178.881 138.816 178.913 138.572 178.954 138.311C179.019 137.871 179.117 137.414 179.223 136.95C179.541 135.63 179.989 134.26 180.502 132.965C180.698 132.468 180.902 131.987 181.105 131.522C182.344 128.703 183.689 126.527 183.998 126.543C184.08 126.543 184.341 126.592 184.724 126.649C186.223 126.902 189.646 127.554 191.903 127.912C192.922 128.075 193.696 128.181 193.973 128.173C195.008 128.132 201.21 126.193 202.041 126.519C202.53 126.714 202.392 130.235 201.862 133.894C201.772 134.472 201.683 135.051 201.585 135.63C201.308 137.162 200.974 138.637 200.582 139.794C200.493 140.087 200.395 140.356 200.297 140.609C200.118 141.057 199.922 141.497 199.743 141.929C199.376 142.752 199.01 143.526 198.659 144.227C198.521 144.504 198.39 144.757 198.268 145.01C197.355 146.778 196.646 147.943 196.646 147.943" fill="var(--sapContent_Illustrative_Color24)"/>
35
+ <path d="M194.063 148.277C194.063 148.277 186.655 148 184.324 147.691C181.994 147.389 181.342 147.356 181.342 147.356" fill="var(--sapContent_Illustrative_Color24)"/>
36
+ <path d="M180.315 147.112C180.315 147.112 179.964 146.623 179.606 145.686C180.038 146.371 180.551 146.876 180.771 146.762C180.999 146.648 188.008 145.694 191.039 146.322C194.079 146.941 193.126 147.014 194.356 146.925C195.579 146.827 196.467 146.053 197.958 144.35C199.458 142.638 200.696 135.125 200.819 134.627C200.941 134.13 200.713 132.712 200.843 131.311C200.974 129.909 202.025 126.519 202.025 126.519C202.514 126.714 202.375 130.235 201.845 133.894C201.756 134.473 201.666 135.051 201.568 135.63C201.291 137.162 200.957 138.637 200.566 139.794C200.476 140.088 200.379 140.356 200.281 140.609C200.102 141.057 199.906 141.497 199.727 141.929C199.36 142.752 198.993 143.527 198.643 144.227C198.496 144.513 198.496 144.521 198.252 145.01C197.029 147.43 196.964 147.675 196.63 147.944C196.296 148.212 195.57 148.587 194.079 148.278C188.481 148.066 185.775 147.846 184.341 147.691C184.104 147.666 181.358 147.357 181.358 147.357" fill="var(--sapContent_Illustrative_Color1)"/>
37
+ <path d="M184.887 134.603C185.494 134.603 185.987 134.11 185.987 133.502C185.987 132.895 185.494 132.402 184.887 132.402C184.279 132.402 183.786 132.895 183.786 133.502C183.786 134.11 184.279 134.603 184.887 134.603Z" fill="var(--sapContent_Illustrative_Color11)"/>
38
+ <path d="M184.259 130.202C184.867 130.202 185.359 129.709 185.359 129.102C185.359 128.494 184.867 128.002 184.259 128.002C183.652 128.002 183.159 128.494 183.159 129.102C183.159 129.709 183.652 130.202 184.259 130.202Z" fill="var(--sapContent_Illustrative_Color11)"/>
39
+ <path d="M188.586 137.61C189.194 137.61 189.687 137.117 189.687 136.51C189.687 135.902 189.194 135.41 188.586 135.41C187.979 135.41 187.486 135.902 187.486 136.51C187.486 137.117 187.979 137.61 188.586 137.61Z" fill="var(--sapContent_Illustrative_Color11)"/>
40
+ <path d="M181.521 144.129C182.128 144.129 182.621 143.637 182.621 143.029C182.621 142.422 182.128 141.929 181.521 141.929C180.913 141.929 180.421 142.422 180.421 143.029C180.421 143.637 180.913 144.129 181.521 144.129Z" fill="var(--sapContent_Illustrative_Color11)"/>
41
+ <path d="M185.18 140.706C185.788 140.706 186.28 140.214 186.28 139.606C186.28 138.999 185.788 138.506 185.18 138.506C184.572 138.506 184.08 138.999 184.08 139.606C184.08 140.214 184.572 140.706 185.18 140.706Z" fill="var(--sapContent_Illustrative_Color11)"/>
42
+ <path d="M189.328 143.762C189.936 143.762 190.428 143.27 190.428 142.662C190.428 142.055 189.936 141.562 189.328 141.562C188.72 141.562 188.228 142.055 188.228 142.662C188.228 143.27 188.72 143.762 189.328 143.762Z" fill="var(--sapContent_Illustrative_Color11)"/>
43
+ <path d="M181.668 138.351C182.275 138.351 182.768 137.859 182.768 137.251C182.768 136.644 182.275 136.151 181.668 136.151C181.06 136.151 180.567 136.644 180.567 137.251C180.567 137.859 181.06 138.351 181.668 138.351Z" fill="var(--sapContent_Illustrative_Color11)"/>
44
+ <path d="M191.675 132.932C192.283 132.932 192.775 132.44 192.775 131.832C192.775 131.224 192.283 130.732 191.675 130.732C191.067 130.732 190.575 131.224 190.575 131.832C190.575 132.44 191.067 132.932 191.675 132.932Z" fill="var(--sapContent_Illustrative_Color11)"/>
45
+ <path d="M194.022 136.844C194.63 136.844 195.122 136.351 195.122 135.743C195.122 135.136 194.63 134.643 194.022 134.643C193.414 134.643 192.922 135.136 192.922 135.743C192.922 136.351 193.414 136.844 194.022 136.844Z" fill="var(--sapContent_Illustrative_Color11)"/>
46
+ <path d="M192.889 141.098C193.497 141.098 193.989 140.605 193.989 139.998C193.989 139.39 193.497 138.897 192.889 138.897C192.282 138.897 191.789 139.39 191.789 139.998C191.789 140.605 192.282 141.098 192.889 141.098Z" fill="var(--sapContent_Illustrative_Color11)"/>
47
+ <path d="M185.139 146.387C185.747 146.387 186.239 145.894 186.239 145.287C186.239 144.679 185.747 144.187 185.139 144.187C184.532 144.187 184.039 144.679 184.039 145.287C184.039 145.894 184.532 146.387 185.139 146.387Z" fill="var(--sapContent_Illustrative_Color11)"/>
48
+ <path d="M194.283 145.164C194.891 145.164 195.383 144.672 195.383 144.064C195.383 143.457 194.891 142.964 194.283 142.964C193.675 142.964 193.183 143.457 193.183 144.064C193.183 144.672 193.675 145.164 194.283 145.164Z" fill="var(--sapContent_Illustrative_Color11)"/>
49
+ <path d="M197.852 140.267C198.46 140.267 198.952 139.774 198.952 139.166C198.952 138.559 198.46 138.066 197.852 138.066C197.245 138.066 196.752 138.559 196.752 139.166C196.752 139.774 197.245 140.267 197.852 140.267Z" fill="var(--sapContent_Illustrative_Color11)"/>
50
+ <path d="M197.159 131.482C197.767 131.482 198.26 130.989 198.26 130.381C198.26 129.774 197.767 129.281 197.159 129.281C196.552 129.281 196.059 129.774 196.059 130.381C196.059 130.989 196.552 131.482 197.159 131.482Z" fill="var(--sapContent_Illustrative_Color11)"/>
51
+ <path d="M198.578 135.141C199.185 135.141 199.678 134.648 199.678 134.04C199.678 133.433 199.185 132.94 198.578 132.94C197.97 132.94 197.477 133.433 197.477 134.04C197.477 134.648 197.97 135.141 198.578 135.141Z" fill="var(--sapContent_Illustrative_Color11)"/>
52
+ <path d="M192.759 146.753C192.759 146.753 184.887 148.4 182.352 148.685C179.818 148.978 179.117 149.109 179.117 149.109" fill="var(--sapContent_Illustrative_Color24)"/>
53
+ <path d="M65.4658 91.672L94.4043 112.999C94.4043 112.999 142.657 140.707 151.621 144.431C160.593 148.155 185.914 145.124 191.325 143.437C196.744 141.742 249.218 122.069 249.218 122.069C249.218 122.069 249.454 121.914 236.815 132.435C220.165 146.281 196.899 155.514 182.23 159.679C173.616 162.123 157.146 165.114 146.821 165.114C136.496 165.114 118.966 156.818 111.836 150.584C97.7211 138.229 65.4658 91.672 65.4658 91.672Z" fill="var(--sapContent_Illustrative_Color16)"/>
54
+ <path d="M85.3013 119.086L113.36 123.772L128.509 132.256L98.8537 136.42L85.3013 119.086Z" fill="var(--sapContent_Illustrative_Color15)"/>
55
+ <path d="M111.836 150.559C113.303 151.659 114.492 152.776 116.652 154.153C117.825 154.903 121.028 156.712 124.231 158.326C131.133 161.805 138.093 163.786 138.093 163.786C145.704 157.967 152.42 151.839 160.031 146.02C157.057 145.172 153.846 144.463 150.871 143.624C148.402 142.923 146.837 141.554 144.368 140.853" fill="var(--sapContent_Illustrative_Color15)"/>
56
+ <path d="M160.919 163.932L182.206 145.604L195.88 141.839L188.815 157.625C188.815 157.625 188.342 157.755 187.625 157.951C185.579 158.521 184.52 159.1 183.876 159.279C176.289 161.398 175.931 161.219 175.425 161.333C174.097 161.634 171.383 162.294 167.235 163.003C166.445 163.142 165.622 163.256 162.794 163.761C162.248 163.859 161.213 163.867 160.919 163.924V163.932Z" fill="var(--sapContent_Illustrative_Color15)"/>
57
+ <path d="M212.513 135.67L207.069 150.47C207.11 150.445 214.893 146.664 214.933 146.647C214.958 146.631 221.306 143.143 221.331 143.127C221.632 139.468 221.942 135.801 222.243 132.142L212.513 135.678V135.67Z" fill="var(--sapContent_Illustrative_Color15)"/>
58
+ <path d="M235.364 127.236L231.46 136.559C232.284 135.915 233.726 134.88 234.574 134.22C236.725 132.549 236.904 132.321 237.344 131.971C238.51 131.05 240.156 129.713 242.136 127.977V124.701L235.356 127.228L235.364 127.236Z" fill="var(--sapContent_Illustrative_Color15)"/>
59
+ <path d="M80.5747 112.738C80.5747 112.738 121.379 140.022 130.147 143.999C136.039 146.672 144.213 152.89 157.342 154.821C159.86 155.188 196.059 155.058 196.059 155.058C193.207 155.098 181.472 162.93 148.459 165.195C142.265 165.619 140.554 164.543 137.637 163.932C128.941 162.131 119.724 156.427 116.652 154.153C113.384 151.741 110.638 149.646 105.341 143.991C102.513 140.975 99.8154 138.034 98.324 136.412C97.012 134.986 82.8158 115.558 80.5829 112.73L80.5747 112.738Z" fill="var(--sapContent_Illustrative_Color16)"/>
60
+ </svg>`;
@@ -0,0 +1,87 @@
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-NoTasks_v1">
2
+ <mask id="mask0_396_4862" class="sapIllus_MaskTypeAlpha" maskUnits="userSpaceOnUse" x="0" y="20" width="320" height="200">
3
+ <path d="M305.547 20H14.4533C12.5559 19.9983 10.6768 20.3705 8.92329 21.0954C7.16981 21.8203 5.57638 22.8836 4.23409 24.2247C2.8918 25.5657 1.82697 27.1582 1.10045 28.911C0.373942 30.6638 -8.08861e-07 32.5426 0 34.44V205.547C0 209.38 1.52275 213.056 4.23328 215.767C6.9438 218.477 10.6201 220 14.4533 220H305.547C309.38 220 313.056 218.477 315.767 215.767C318.477 213.056 320 209.38 320 205.547V34.44C320 32.5426 319.626 30.6638 318.9 28.911C318.173 27.1582 317.108 25.5657 315.766 24.2247C314.424 22.8836 312.83 21.8203 311.077 21.0954C309.323 20.3705 307.444 19.9983 305.547 20Z" fill="var(--sapContent_Illustrative_Color7)"/>
4
+ </mask>
5
+ <g mask="url(#mask0_396_4862)">
6
+ <path d="M305.547 20H14.4533C12.5559 19.9983 10.6768 20.3705 8.92329 21.0954C7.16981 21.8203 5.57638 22.8836 4.23409 24.2247C2.8918 25.5657 1.82697 27.1582 1.10045 28.911C0.373942 30.6638 -8.08861e-07 32.5426 0 34.44V205.547C0 209.38 1.52275 213.056 4.23328 215.767C6.9438 218.477 10.6201 220 14.4533 220H305.547C309.38 220 313.056 218.477 315.767 215.767C318.477 213.056 320 209.38 320 205.547V34.44C320 32.5426 319.626 30.6638 318.9 28.911C318.173 27.1582 317.108 25.5657 315.766 24.2247C314.424 22.8836 312.83 21.8203 311.077 21.0954C309.323 20.3705 307.444 19.9983 305.547 20Z" fill="var(--sapContent_Illustrative_Color7)"/>
7
+ <rect x="32" y="207" width="86.6463" height="13" rx="4" fill="var(--sapContent_Illustrative_Color19)"/>
8
+ <rect x="111.272" y="207" width="191.728" height="13" rx="4" fill="var(--sapContent_Illustrative_Color18)"/>
9
+ <rect x="-15.4889" y="6.48889" width="56" height="70.9333" rx="6.22222" fill="var(--sapContent_Illustrative_Color19)"/>
10
+ <rect x="-13.6222" y="4.45312" width="56" height="70.9333" rx="6.22222" fill="var(--sapContent_Illustrative_Color18)"/>
11
+ <rect x="-9.88889" y="8.1864" width="48.5333" height="63.4667" rx="3.73333" fill="var(--sapContent_Illustrative_Color7)"/>
12
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M36.1555 71.4406V8.3988C37.6052 8.91117 38.6439 10.2934 38.6444 11.9184V67.9211C38.6439 69.546 37.6052 70.9282 36.1555 71.4406Z" fill="var(--sapContent_Illustrative_Color19)"/>
13
+ <path d="M19.6293 21.7805C20.6373 22.6516 20.2142 24.8294 18.7084 26.6587C17.8124 27.7538 16.7173 28.4631 15.784 28.6871C15.9208 29.4462 16.0453 30.2427 16.1324 31.0889C16.6302 35.7556 16.8044 41.1316 13.2577 41.1565C9.13862 41.1938 8.75284 37.3858 8.32973 33.1049C8.2924 32.7565 8.25506 32.4205 8.21773 32.072C7.71995 27.3929 7.96884 23.4729 11.2915 23.0996C12.6231 22.9502 13.6062 23.5351 14.3404 24.6054C14.552 24.232 14.8008 23.8711 15.0871 23.5102C16.5928 21.6809 18.6213 20.9094 19.6293 21.7805Z" fill="var(--sapContent_Illustrative_Color18)"/>
14
+ <path d="M23.1138 35.8176C23.1138 38.5056 21.8818 40.6585 20.3512 40.671C16.6303 40.7083 17.3769 38.5181 17.5885 35.8176C17.8001 33.1047 18.8205 30.9892 20.3512 30.9643C23.1512 30.9021 23.1138 33.1296 23.1138 35.8176Z" fill="var(--sapContent_Illustrative_Color18)"/>
15
+ <path d="M25.1546 43.7198H4.67107C4.43463 43.7198 4.23552 43.919 4.23552 44.1678V58.3296C4.23552 58.5785 4.43463 58.7776 4.67107 58.7776H25.1546C25.3911 58.7776 25.5902 58.5785 25.5902 58.3296V44.1678C25.5902 43.919 25.3911 43.7198 25.1546 43.7198Z" fill="var(--sapContent_Illustrative_Color18)"/>
16
+ <path d="M25.1422 41.1936H4.69599C4.45955 41.1936 4.26044 41.3927 4.26044 41.6416V46.7314C4.26044 46.9803 4.45955 47.1794 4.69599 47.1794H25.1422C25.3787 47.1794 25.5778 46.9803 25.5778 46.7314V41.6416C25.5778 41.3927 25.3787 41.1936 25.1422 41.1936Z" fill="var(--sapContent_Illustrative_Color19)"/>
17
+ <path d="M26.3867 39.24H3.61334C3.37689 39.24 3.17778 39.4391 3.17778 39.688V45.2631C3.17778 45.512 3.37689 45.7111 3.61334 45.7111H26.3867C26.6231 45.7111 26.8222 45.512 26.8222 45.2631V39.688C26.8222 39.4391 26.6231 39.24 26.3867 39.24Z" fill="var(--sapContent_Illustrative_Color18)"/>
18
+ <rect x="73" y="100" width="45" height="57" rx="5" fill="var(--sapContent_Illustrative_Color19)"/>
19
+ <rect x="75" y="98.4355" width="45" height="57" rx="5" fill="var(--sapContent_Illustrative_Color18)"/>
20
+ <rect x="78" y="101.436" width="39" height="51" rx="3" fill="var(--sapContent_Illustrative_Color7)"/>
21
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M115 152.265V101.606C116.165 102.018 117 103.129 117 104.435V149.435C117 150.742 116.165 151.853 115 152.265Z" fill="var(--sapContent_Illustrative_Color19)"/>
22
+ <mask id="mask1_396_4862" class="sapIllus_MaskTypeAlpha" maskUnits="userSpaceOnUse" x="78" y="101" width="39" height="52">
23
+ <rect x="78" y="101.436" width="39" height="51" rx="3" fill="var(--sapContent_Illustrative_Color7)"/>
24
+ </mask>
25
+ <g mask="url(#mask1_396_4862)">
26
+ <path d="M102.073 139.258L87.9387 142.024L86.145 139.104C85.0386 137.299 84.3395 135.275 84.0963 133.173C83.8531 131.071 84.0717 128.942 84.7367 126.933C85.4018 124.923 86.4975 123.083 87.9475 121.539C89.3976 119.995 91.1672 118.785 93.1334 117.993L97.4471 116.257C102.923 114.051 108.5 119.212 106.7 124.824L102.073 139.258Z" fill="var(--sapContent_Illustrative_Color19)"/>
27
+ <path d="M99.5534 160.741L94.7598 158.929C94.2562 158.738 93.8043 158.432 93.4403 158.036C93.0762 157.64 92.81 157.165 92.6629 156.648L88.6271 142.529C88.54 142.225 88.5411 141.903 88.6303 141.6C88.7195 141.297 88.8932 141.025 89.1312 140.817C89.3691 140.609 89.6615 140.472 89.9742 140.423C90.287 140.374 90.6072 140.415 90.8977 140.541L102.096 145.377L103.163 158.025C103.201 158.474 103.124 158.925 102.94 159.336C102.756 159.747 102.47 160.105 102.109 160.377C101.749 160.648 101.325 160.823 100.878 160.887C100.431 160.951 99.9756 160.9 99.5534 160.741Z" fill="var(--sapContent_Illustrative_Color18)"/>
28
+ <path d="M102.576 151.077L102.336 148.206C101.381 147.556 100.358 147.012 99.285 146.584C96.2945 145.367 93.5597 145.15 93.1745 146.095C92.7892 147.04 94.8987 148.789 97.8861 150.005C99.7018 150.743 101.417 151.111 102.576 151.077Z" fill="var(--sapContent_Illustrative_Color19)"/>
29
+ <path d="M96.6588 126.493L101.672 126.765C102.515 126.809 103.341 127.018 104.102 127.381C104.863 127.744 105.546 128.253 106.11 128.879C106.674 129.505 107.108 130.236 107.389 131.03C107.669 131.824 107.79 132.665 107.744 133.506L107.251 142.573C107.158 144.269 106.395 145.858 105.128 146.992C103.861 148.126 102.194 148.711 100.495 148.619L98.354 148.503C95.8928 148.369 93.5855 147.266 91.9397 145.435C90.294 143.604 89.4445 141.196 89.5782 138.74L89.9159 132.539C90.0081 130.846 90.7699 129.258 92.034 128.125C93.2982 126.991 94.9615 126.404 96.6588 126.493Z" fill="var(--sapContent_Illustrative_Color18)"/>
30
+ <path d="M104.044 135.184L102.553 139.082C102.545 139.104 102.542 139.129 102.544 139.153C102.547 139.177 102.556 139.2 102.57 139.22C102.584 139.24 102.603 139.257 102.625 139.268C102.647 139.278 102.671 139.284 102.696 139.283H105.168C105.191 139.284 105.214 139.279 105.234 139.269C105.255 139.259 105.273 139.244 105.287 139.226C105.301 139.208 105.311 139.187 105.315 139.165C105.32 139.143 105.319 139.119 105.313 139.097L104.331 135.203C104.323 135.172 104.306 135.145 104.281 135.124C104.257 135.104 104.226 135.092 104.195 135.09C104.163 135.088 104.131 135.096 104.104 135.113C104.077 135.129 104.056 135.154 104.044 135.184Z" fill="var(--sapContent_Illustrative_Color19)"/>
31
+ <path d="M84.9935 130.904L87.4217 130.208C87.4662 130.192 87.5135 130.186 87.5606 130.189C87.6078 130.192 87.6537 130.205 87.6955 130.227C87.7374 130.249 87.7742 130.28 87.8036 130.316C87.8331 130.353 87.8546 130.396 87.8667 130.441L90.3434 139.048C90.5545 139.782 90.4649 140.569 90.0944 141.236C89.7239 141.903 89.1029 142.397 88.3679 142.607C88.281 142.632 88.1877 142.622 88.1086 142.578C88.0294 142.534 87.971 142.461 87.946 142.374L84.7677 131.329C84.7545 131.286 84.7499 131.242 84.7541 131.197C84.7583 131.153 84.7713 131.109 84.7923 131.07C84.8133 131.03 84.8418 130.995 84.8764 130.967C84.9109 130.938 84.9507 130.917 84.9935 130.904Z" fill="var(--sapContent_Illustrative_Color19)"/>
32
+ <path d="M89.1796 138.026L87.0196 137.15L92.8933 129.613L92.1796 133.47C91.9028 134.977 91.304 136.406 90.4238 137.661C90.2888 137.853 90.092 137.995 89.8659 138.061C89.6398 138.127 89.3978 138.115 89.1796 138.026Z" fill="var(--sapContent_Illustrative_Color19)"/>
33
+ <path d="M90.4814 140.129C91.2685 139.934 91.6155 138.607 91.2564 137.165C90.8973 135.722 89.9682 134.711 89.1811 134.906C88.3941 135.101 88.0471 136.429 88.4062 137.871C88.7652 139.313 89.6944 140.324 90.4814 140.129Z" fill="var(--sapContent_Illustrative_Color18)"/>
34
+ <path d="M101.181 131.137C107.691 130.244 112.643 127.155 112.241 124.238C111.839 121.321 106.235 119.681 99.7251 120.574C93.2148 121.467 88.263 124.556 88.665 127.473C89.067 130.39 94.6706 132.031 101.181 131.137Z" fill="var(--sapContent_Illustrative_Color19)"/>
35
+ <path d="M92.7897 129.578L88.7803 127.948L86.9165 132.512L90.9259 134.142L92.7897 129.578Z" fill="var(--sapContent_Illustrative_Color19)"/>
36
+ <path d="M92.5604 121.842C95.3396 119.005 96.9717 116.099 96.2058 115.352C95.44 114.605 92.5661 116.3 89.7869 119.138C87.0077 121.976 85.3756 124.881 86.1415 125.628C86.9073 126.375 89.7812 124.68 92.5604 121.842Z" fill="var(--sapContent_Illustrative_Color19)"/>
37
+ </g>
38
+ <rect x="151" y="5.56445" width="45" height="57" rx="5" fill="var(--sapContent_Illustrative_Color19)"/>
39
+ <rect x="153" y="4" width="45" height="57" rx="5" fill="var(--sapContent_Illustrative_Color18)"/>
40
+ <rect x="156" y="7" width="39" height="51" rx="3" fill="var(--sapContent_Illustrative_Color7)"/>
41
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M193 57.8292V7.17065C194.165 7.58249 195 8.69373 195 9.99995V55C195 56.3062 194.165 57.4174 193 57.8292Z" fill="var(--sapContent_Illustrative_Color19)"/>
42
+ <path d="M156 34C156 34 166 34 172.5 43C179 52 183 58 183 58H159C157.34 58 156 56.66 156 55V34Z" fill="var(--sapContent_Illustrative_Color19)"/>
43
+ <path d="M180.76 48.1601C179.09 47.7201 177.46 48.2601 175.69 49.2901C174.35 50.1201 173.05 51.0301 171.8 52.0101C169.58 53.6801 167.63 55.7001 166 58.0001H189C184.39 53.4701 184.3 49.0901 180.76 48.1601Z" fill="var(--sapContent_Illustrative_Color20)"/>
44
+ <path d="M183.28 33.19C186.2 33.19 188.56 30.91 188.56 28.09C188.56 25.27 186.19 22.99 183.28 22.99C180.37 22.99 178 25.27 178 28.09C178 30.91 180.37 33.19 183.28 33.19Z" fill="var(--sapContent_Illustrative_Color18)"/>
45
+ <rect x="248" y="53" width="45" height="57" rx="5" fill="var(--sapContent_Illustrative_Color19)"/>
46
+ <rect x="250" y="51.4355" width="45" height="57" rx="5" fill="var(--sapContent_Illustrative_Color18)"/>
47
+ <rect x="253" y="54.4355" width="39" height="51" rx="3" fill="var(--sapContent_Illustrative_Color7)"/>
48
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M290 105.265V54.6062C291.165 55.018 292 56.1293 292 57.4355V102.435C292 103.742 291.165 104.853 290 105.265Z" fill="var(--sapContent_Illustrative_Color19)"/>
49
+ <g opacity="0.5">
50
+ <path d="M284.092 80.4989L284.058 80.4546C282.487 77.8114 279.297 76 275.615 76C272.076 76 268.994 77.6686 267.365 80.1445V76.9204C267.365 76.8682 267.344 76.8182 267.307 76.7812C267.27 76.7443 267.22 76.7235 267.168 76.7235L265.031 78.2593H264.908C264.536 78.097 264.133 78.0181 263.727 78.0279C263.353 78.0223 262.983 78.0875 262.634 78.2199H262.58L260.197 76.7433C260.171 76.7433 260.145 76.7483 260.122 76.7582C260.098 76.7681 260.076 76.7827 260.058 76.8009C260.039 76.8192 260.025 76.8409 260.015 76.8648C260.005 76.8887 260 76.9143 260 76.9402V80.9911C260 82.0773 260.432 83.1189 261.2 83.8869C261.968 84.655 263.01 85.0864 264.096 85.0864H283.472C283.497 85.3374 283.511 85.5786 283.511 85.874C283.516 87.0401 283.233 88.1894 282.687 89.2198C282.14 90.2502 281.348 91.1299 280.38 91.7806L280.302 91.8348C280.179 91.9168 280.075 92.0227 279.995 92.1461C279.914 92.2695 279.86 92.4079 279.834 92.553C279.809 92.698 279.813 92.8467 279.846 92.9901C279.88 93.1335 279.942 93.2687 280.029 93.3875C280.116 93.5063 280.226 93.6063 280.352 93.6815C280.479 93.7568 280.619 93.8056 280.765 93.8252C280.911 93.8448 281.06 93.8346 281.202 93.7953C281.344 93.7561 281.476 93.6886 281.591 93.5969L281.651 93.5575C282.9 92.7002 283.921 91.5508 284.626 90.2092C285.33 88.8676 285.696 87.3744 285.692 85.8592C285.681 83.9564 285.126 82.0966 284.092 80.4989ZM266.144 81.8082L267.335 78.8549L267.36 80.1888L266.144 81.8082Z" fill="var(--sapContent_Illustrative_Color19)"/>
51
+ <path d="M266.144 81.7982L267.36 80.1592L267.34 78.8253L266.144 81.7982Z" fill="var(--sapContent_Illustrative_Color19)"/>
52
+ </g>
53
+ <path d="M163.033 124.876C163.033 126.59 164.423 127.979 166.137 127.979H186.668C186.847 127.979 187.026 127.964 187.203 127.933L190.393 127.374C191.034 127.262 191.624 126.951 192.079 126.485L198.12 120.296C198.685 119.717 199.001 118.94 199.002 118.131L199.021 96.148C199.023 94.4329 197.633 93.0417 195.918 93.0417H166.137C164.423 93.0417 163.033 94.4313 163.033 96.1453V124.876Z" fill="var(--sapContent_Illustrative_Color1)"/>
54
+ <rect x="166.735" y="99.8042" width="28.5868" height="18.0981" rx="3.10358" fill="var(--sapContent_Illustrative_Color8)"/>
55
+ <path d="M186.904 105.48C186.903 105.361 186.879 105.243 186.832 105.134C186.786 105.024 186.718 104.925 186.633 104.842C186.55 104.755 186.451 104.686 186.341 104.639C186.231 104.592 186.112 104.568 185.992 104.568C185.873 104.568 185.754 104.592 185.644 104.639C185.534 104.686 185.434 104.755 185.352 104.842L183.603 106.59L181.427 108.754L179.094 111.088L177.203 109.197L176.978 108.972C176.866 108.86 176.726 108.779 176.572 108.738C176.419 108.696 176.257 108.696 176.104 108.738C175.95 108.779 175.811 108.86 175.698 108.972C175.586 109.085 175.505 109.225 175.464 109.378C175.441 109.457 175.429 109.538 175.428 109.62C175.429 109.739 175.453 109.857 175.5 109.966C175.546 110.076 175.614 110.175 175.699 110.258L177.167 111.726L178.455 113.015C178.538 113.101 178.638 113.169 178.747 113.216C178.857 113.263 178.975 113.287 179.094 113.288C179.213 113.287 179.331 113.262 179.441 113.216C179.551 113.169 179.651 113.101 179.735 113.015L181.471 111.276L183.985 108.762L186.449 106.3L186.621 106.128C186.709 106.044 186.779 105.944 186.828 105.833C186.876 105.721 186.902 105.602 186.904 105.48Z" fill="var(--sapContent_Illustrative_Color3)"/>
56
+ <path d="M199.024 118.717C199.024 118.717 198.368 128.309 185.709 127.98C185.709 127.98 193.806 128.037 193.339 121.668C193.339 121.668 196.605 121.014 199.024 118.717Z" fill="var(--sapContent_Illustrative_Color16)"/>
57
+ <path d="M163.033 92.8303C163.033 91.1162 164.423 89.7267 166.137 89.7267H195.92C197.634 89.7267 199.024 91.1162 199.024 92.8303V96.3078H163.033V92.8303Z" fill="var(--sapContent_Illustrative_Color16)"/>
58
+ <path d="M181.264 95.2673C181.704 95.2406 182.127 95.0856 182.48 94.8217C182.833 94.5577 183.1 94.1962 183.25 93.7818C183.4 93.3673 183.426 92.918 183.324 92.4893C183.221 92.0606 182.996 91.6711 182.675 91.369C182.354 91.0669 181.952 90.8653 181.518 90.789C181.084 90.7128 180.637 90.7653 180.232 90.94C179.828 91.1147 179.483 91.4041 179.241 91.7723C178.998 92.1406 178.869 92.5716 178.869 93.0124C178.891 93.6279 179.155 94.21 179.603 94.6322C180.052 95.0544 180.649 95.2826 181.264 95.2673ZM181.762 91.3421C181.842 91.2219 182.186 91.3187 182.534 91.5526C182.881 91.7864 183.091 92.0771 183.011 92.194C182.931 92.3109 182.584 92.2174 182.24 91.9835C181.896 91.7497 181.682 91.459 181.762 91.3421Z" fill="var(--sapContent_Illustrative_Color3)"/>
59
+ <path d="M182.24 91.9836C182.574 92.2174 182.931 92.3177 183.011 92.1941C183.091 92.0705 182.878 91.7898 182.534 91.5527C182.19 91.3155 181.842 91.2186 181.762 91.3422C181.682 91.4658 181.896 91.7464 182.24 91.9836Z" fill="var(--sapContent_Illustrative_Color8)"/>
60
+ <path d="M185.033 145.876C185.033 147.59 186.423 148.979 188.137 148.979H208.668C208.847 148.979 209.026 148.964 209.203 148.933L212.393 148.374C213.034 148.262 213.624 147.951 214.079 147.485L220.12 141.296C220.685 140.717 221.001 139.94 221.002 139.131L221.021 117.148C221.023 115.433 219.633 114.042 217.918 114.042H188.137C186.423 114.042 185.033 115.431 185.033 117.145V145.876Z" fill="var(--sapContent_Illustrative_Color2)"/>
61
+ <rect x="188.735" y="120.804" width="28.5868" height="18.0981" rx="3.10358" fill="var(--sapContent_Illustrative_Color8)"/>
62
+ <path d="M208.904 126.48C208.903 126.361 208.879 126.243 208.832 126.134C208.786 126.024 208.718 125.925 208.633 125.842C208.55 125.755 208.451 125.686 208.341 125.639C208.231 125.592 208.112 125.568 207.992 125.568C207.873 125.568 207.754 125.592 207.644 125.639C207.534 125.686 207.434 125.755 207.352 125.842L205.603 127.59L203.427 129.754L201.094 132.088L199.203 130.197L198.978 129.972C198.866 129.86 198.726 129.779 198.572 129.738C198.419 129.696 198.257 129.696 198.104 129.738C197.95 129.779 197.811 129.86 197.698 129.972C197.586 130.085 197.505 130.225 197.464 130.378C197.441 130.457 197.429 130.538 197.428 130.62C197.429 130.739 197.453 130.857 197.5 130.966C197.546 131.076 197.614 131.175 197.699 131.258L199.167 132.726L200.455 134.015C200.538 134.101 200.638 134.169 200.747 134.216C200.857 134.263 200.975 134.287 201.094 134.288C201.213 134.287 201.331 134.262 201.441 134.216C201.551 134.169 201.651 134.101 201.735 134.015L203.471 132.276L205.985 129.762L208.449 127.3L208.621 127.128C208.709 127.044 208.779 126.944 208.828 126.833C208.876 126.721 208.902 126.602 208.904 126.48Z" fill="var(--sapContent_Illustrative_Color3)"/>
63
+ <path d="M221.024 139.717C221.024 139.717 220.368 149.309 207.709 148.98C207.709 148.98 215.806 149.037 215.339 142.668C215.339 142.668 218.605 142.014 221.024 139.717Z" fill="var(--sapContent_Illustrative_Color14)"/>
64
+ <path d="M185.033 113.83C185.033 112.116 186.423 110.727 188.137 110.727H217.92C219.634 110.727 221.024 112.116 221.024 113.83V117.308H185.033V113.83Z" fill="var(--sapContent_Illustrative_Color14)"/>
65
+ <path d="M203.264 116.267C203.704 116.241 204.127 116.086 204.48 115.822C204.833 115.558 205.1 115.196 205.25 114.782C205.4 114.367 205.426 113.918 205.324 113.489C205.221 113.061 204.996 112.671 204.675 112.369C204.354 112.067 203.952 111.865 203.518 111.789C203.084 111.713 202.637 111.765 202.232 111.94C201.828 112.115 201.483 112.404 201.241 112.772C200.998 113.141 200.869 113.572 200.869 114.012C200.891 114.628 201.155 115.21 201.603 115.632C202.052 116.054 202.649 116.283 203.264 116.267ZM203.762 112.342C203.842 112.222 204.186 112.319 204.534 112.553C204.881 112.786 205.091 113.077 205.011 113.194C204.931 113.311 204.584 113.217 204.24 112.984C203.896 112.75 203.682 112.459 203.762 112.342Z" fill="var(--sapContent_Illustrative_Color3)"/>
66
+ <path d="M204.24 112.984C204.574 113.217 204.931 113.318 205.011 113.194C205.091 113.07 204.878 112.79 204.534 112.553C204.19 112.315 203.842 112.219 203.762 112.342C203.682 112.466 203.896 112.746 204.24 112.984Z" fill="var(--sapContent_Illustrative_Color8)"/>
67
+ </g>
68
+ <g clip-path="url(#clip0_396_4862)">
69
+ <rect width="44.25" height="6.75" rx="3" transform="matrix(-1 0 0 1 106.75 200.25)" fill="var(--sapContent_Illustrative_Color14)"/>
70
+ <path d="M95.4772 205.114L92.5 200.25H199V204.615C199 204.93 198.946 205.241 198.841 205.531C198.736 205.821 198.582 206.085 198.388 206.306C198.194 206.528 197.964 206.703 197.711 206.822C197.458 206.941 197.187 207.002 196.914 207H98.642C98.0213 207.001 97.4096 206.831 96.8586 206.502C96.3076 206.174 95.8337 205.698 95.4772 205.114Z" fill="var(--sapContent_Illustrative_Color13)"/>
71
+ <path d="M153.439 132.001H51.4114C51.051 131.991 50.6931 132.063 50.3655 132.212C50.0379 132.362 49.7495 132.584 49.5226 132.861C49.2957 133.138 49.1365 133.464 49.0573 133.812C48.9781 134.161 48.9811 134.522 49.0659 134.869L62.6462 198.368C62.7613 198.9 63.0569 199.376 63.4836 199.719C63.9103 200.061 64.4425 200.248 64.9916 200.249H165.847C166.204 200.258 166.558 200.186 166.882 200.039C167.206 199.892 167.492 199.673 167.719 199.4C167.945 199.127 168.105 198.806 168.187 198.462C168.269 198.118 168.271 197.76 168.192 197.416L155.785 133.929C155.69 133.383 155.401 132.889 154.971 132.536C154.541 132.183 153.998 131.993 153.439 132.001Z" fill="var(--sapContent_Illustrative_Color2)"/>
72
+ <path d="M148.793 142.015C148.439 140.122 146.787 138.75 144.861 138.75H118.017C115.616 138.75 113.756 140.85 114.046 143.234L117.641 172.734C117.885 174.741 119.589 176.25 121.611 176.25H150.377C152.88 176.25 154.769 173.976 154.309 171.515L148.793 142.015Z" fill="var(--sapContent_Illustrative_Color13)"/>
73
+ <path d="M63.8541 146.286L114.746 146.462L133.741 146.532C134.3 146.524 134.843 146.716 135.272 147.072C135.702 147.429 135.99 147.927 136.085 148.478L141.347 176.064L144.159 190.842C144.235 191.189 144.232 191.548 144.149 191.894C144.066 192.239 143.906 192.561 143.68 192.836C143.454 193.11 143.169 193.329 142.846 193.477C142.523 193.625 142.17 193.698 141.815 193.689H71.6936C71.1356 193.683 70.5971 193.483 70.1698 193.124C69.7426 192.765 69.4529 192.269 69.35 191.721L61.5105 149.122C61.4472 148.777 61.4601 148.423 61.5484 148.083C61.6367 147.744 61.7982 147.428 62.0215 147.158C62.2449 146.888 62.5247 146.67 62.8412 146.519C63.1578 146.368 63.5036 146.289 63.8541 146.286Z" fill="var(--sapContent_Illustrative_Color8)"/>
74
+ <path d="M85.491 158.31C85.5937 158.41 85.6757 158.529 85.7322 158.661C85.7887 158.793 85.8187 158.934 85.8203 159.077C85.8193 159.221 85.7896 159.364 85.7331 159.496C85.6766 159.628 85.5943 159.748 85.491 159.849L78.2187 167.126C78.5529 167.27 78.913 167.346 79.2771 167.347H85.0536C85.3826 167.356 85.7097 167.295 86.013 167.167C86.3163 167.039 86.5886 166.848 86.8116 166.606C87.0345 166.363 87.2029 166.076 87.3054 165.763C87.4079 165.451 87.442 165.12 87.4056 164.792L86.8599 158.555C86.7938 157.862 86.4738 157.218 85.9615 156.746C85.4492 156.275 84.7807 156.009 84.0845 156.001H78.3081C77.9793 155.992 77.6525 156.054 77.3495 156.182C77.0466 156.31 76.7746 156.502 76.5519 156.744C76.3291 156.986 76.1607 157.272 76.0579 157.585C75.9552 157.897 75.9204 158.228 75.9561 158.555L76.5018 164.792C76.5275 165.059 76.5925 165.321 76.6947 165.569L83.9716 158.31C84.0706 158.209 84.1888 158.129 84.3193 158.074C84.4497 158.019 84.5898 157.991 84.7313 157.991C84.8728 157.991 85.0129 158.019 85.1434 158.074C85.2738 158.129 85.392 158.209 85.491 158.31Z" fill="var(--sapContent_Illustrative_Color6)"/>
75
+ <path d="M85.3829 171.1H79.6112C79.2824 171.092 78.9556 171.154 78.6527 171.282C78.3497 171.41 78.0778 171.601 77.855 171.843C77.6322 172.085 77.4637 172.372 77.361 172.684C77.2582 172.997 77.2235 173.328 77.2592 173.655L77.8049 179.892C77.8244 180.085 77.8638 180.276 77.9225 180.461L84.9784 173.405C85.0784 173.302 85.1983 173.219 85.3308 173.163C85.4633 173.107 85.6059 173.078 85.7499 173.078C85.8938 173.078 86.0363 173.107 86.1689 173.163C86.3014 173.219 86.4213 173.302 86.5213 173.405C86.6239 173.506 86.7055 173.626 86.7612 173.758C86.8169 173.891 86.8457 174.033 86.8459 174.177C86.8457 174.32 86.8169 174.463 86.7612 174.595C86.7055 174.728 86.6239 174.848 86.5213 174.948L79.3572 182.112C79.7434 182.314 80.1725 182.421 80.6084 182.423H86.3849C86.7139 182.432 87.0411 182.371 87.3444 182.243C87.6477 182.115 87.92 181.924 88.1429 181.682C88.3659 181.44 88.5343 181.152 88.6367 180.84C88.7392 180.527 88.7733 180.196 88.7369 179.869L88.1912 173.631C88.119 172.937 87.792 172.294 87.2734 171.826C86.7547 171.359 86.0812 171.1 85.3829 171.1Z" fill="var(--sapContent_Illustrative_Color6)"/>
76
+ <path d="M95.2894 164.896H129.097C129.512 164.904 129.924 164.823 130.306 164.659C130.687 164.495 131.029 164.252 131.309 163.945C131.589 163.638 131.801 163.275 131.929 162.88C132.058 162.486 132.101 162.068 132.055 161.655C131.966 160.776 131.557 159.961 130.907 159.363C130.257 158.765 129.411 158.426 128.527 158.409H94.7249C94.3093 158.402 93.8969 158.484 93.5151 158.648C93.1334 158.813 92.791 159.057 92.5107 159.363C92.2304 159.67 92.0187 160.034 91.8895 160.429C91.7603 160.824 91.7167 161.242 91.7614 161.655C91.8521 162.533 92.2609 163.347 92.9109 163.944C93.5609 164.542 94.4069 164.88 95.2894 164.896Z" fill="var(--sapContent_Illustrative_Color6)"/>
77
+ <path d="M96.3665 173.834C95.9513 173.827 95.5395 173.909 95.1583 174.074C94.7771 174.239 94.4353 174.483 94.1555 174.79C93.8758 175.096 93.6644 175.459 93.5355 175.854C93.4066 176.249 93.3631 176.666 93.4078 177.079C93.4974 177.958 93.906 178.773 94.5562 179.37C95.2064 179.967 96.053 180.305 96.9357 180.32H130.743C131.158 180.328 131.57 180.247 131.952 180.083C132.333 179.919 132.676 179.676 132.956 179.369C133.236 179.062 133.447 178.7 133.576 178.305C133.704 177.91 133.747 177.492 133.702 177.079C133.612 176.201 133.204 175.385 132.554 174.787C131.904 174.189 131.057 173.85 130.174 173.834H96.3665Z" fill="var(--sapContent_Illustrative_Color6)"/>
78
+ <path d="M75.6456 168.128C75.7458 168.231 75.8656 168.314 75.998 168.371C76.1303 168.429 76.2727 168.459 76.417 168.462C76.5614 168.46 76.7041 168.43 76.8366 168.373C76.9692 168.316 77.0888 168.232 77.1884 168.128L78.2186 167.102L85.4909 159.825C85.5941 159.725 85.6764 159.605 85.733 159.472C85.7895 159.34 85.8192 159.198 85.8202 159.054C85.8185 158.911 85.7886 158.769 85.732 158.637C85.6755 158.506 85.5936 158.387 85.4909 158.287C85.3915 158.182 85.2719 158.099 85.1393 158.042C85.0067 157.985 84.8638 157.955 84.7194 157.955C84.5751 157.955 84.4322 157.985 84.2996 158.042C84.1669 158.099 84.0473 158.182 83.948 158.287L76.6898 165.545L76.417 165.818L73.8675 163.268C73.6622 163.065 73.3849 162.951 73.096 162.951C72.8071 162.951 72.5298 163.065 72.3245 163.268C72.2219 163.369 72.1404 163.489 72.0846 163.621C72.0289 163.754 72.0002 163.896 72 164.04C72.0003 164.183 72.0291 164.324 72.0848 164.456C72.1406 164.588 72.2221 164.707 72.3245 164.807L75.6456 168.128Z" fill="var(--sapContent_Illustrative_Color3)"/>
79
+ <path d="M86.8408 174.2C86.8406 174.057 86.8118 173.915 86.7561 173.782C86.7004 173.65 86.6188 173.53 86.5162 173.429C86.4162 173.325 86.2963 173.243 86.1638 173.187C86.0312 173.131 85.8887 173.102 85.7448 173.102C85.6008 173.102 85.4582 173.131 85.3257 173.187C85.1932 173.243 85.0733 173.325 84.9733 173.429L77.9174 180.485L77.4187 180.984L74.8692 178.434C74.664 178.231 74.3867 178.117 74.0978 178.117C73.8088 178.117 73.5316 178.231 73.3263 178.434C73.2231 178.534 73.1408 178.654 73.0842 178.787C73.0277 178.919 72.9981 179.061 72.9971 179.205C72.9981 179.349 73.0277 179.492 73.0842 179.624C73.1408 179.757 73.2231 179.877 73.3263 179.977L76.6473 183.298C76.7475 183.401 76.8674 183.484 76.9998 183.54C77.1323 183.597 77.2747 183.626 77.4187 183.627C77.5627 183.626 77.705 183.596 77.8374 183.54C77.9698 183.483 78.0897 183.401 78.1902 183.298L79.3286 182.16L86.4927 174.995C86.6024 174.894 86.69 174.771 86.7499 174.634C86.8098 174.498 86.8407 174.35 86.8408 174.2Z" fill="var(--sapContent_Illustrative_Color3)"/>
80
+ </g>
81
+ <defs>
82
+ <clipPath id="clip0_396_4862">
83
+ <rect width="150" height="74.7446" fill="var(--sapContent_Illustrative_Color8)" transform="matrix(-1 0 0 1 199 132)"/>
84
+ </clipPath>
85
+ </defs>
86
+ </svg>
87
+ `;
@@ -0,0 +1,13 @@
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-PageNotFound">
2
+ <rect y="51" width="320" height="138" rx="24" fill="var(--sapContent_Illustrative_Color20)"/>
3
+ <path d="M238.901 167.095L178.861 147.135C178.733 147.095 178.597 147.079 178.47 147.103L93.4533 160.086C89.6334 160.524 89.2746 161.593 90.4309 162.159L150.583 182.582C152.927 183.379 155.431 183.571 157.872 183.132L235.504 168.889C239.037 168.419 239.738 167.366 238.909 167.095H238.901Z" fill="var(--sapContent_Illustrative_Color21)"/>
4
+ <path d="M90.4469 41.8559L115.854 141.929C116.252 143.372 117.648 144.305 119.131 144.114L199.132 131.378C203.757 130.206 205.081 126.474 204.69 125.294L165.463 31.6485C164.778 29.7585 163.542 28.9372 162.194 29.0249L94.0912 32.1828C92.1933 32.3024 88.3814 35.0377 90.4469 41.8559Z" fill="var(--sapContent_Illustrative_Color22)"/>
5
+ <path d="M91.4198 35.9539L117.736 139.32C118.134 140.763 119.53 141.696 121.013 141.505L202.003 128.642C203.893 128.395 205.081 126.473 204.451 124.671L173.948 28.5774C173.502 27.3095 172.266 26.4881 170.926 26.5678L94.1231 32.158C92.2252 32.2776 90.9094 34.1118 91.4198 35.9539Z" fill="var(--sapContent_Illustrative_Color2)"/>
6
+ <path d="M120.838 52.8284L151.939 165.684C152.385 167.311 153.964 168.364 155.647 168.148L246.533 151.593C251.756 150.269 253.247 146.059 252.537 144.025L205.87 40.5635C205.368 39.1281 203.973 38.2031 202.457 38.2988L124.945 41.9112C122.8 42.0468 118.493 45.133 120.83 52.8364L120.838 52.8284Z" fill="var(--sapContent_Illustrative_Color22)"/>
7
+ <path d="M121.93 46.161L154.06 162.741C154.506 164.368 156.085 165.42 157.768 165.205L249.77 148.506C251.908 148.227 253.247 146.058 252.538 144.025L215.456 37.086C214.954 35.6506 213.558 34.7255 212.043 34.8212L124.985 41.8787C122.84 42.0143 121.356 44.0877 121.93 46.161Z" fill="var(--sapContent_Illustrative_Color8)"/>
8
+ <path d="M162.852 158.766C162.479 158.766 162.146 158.497 162.075 158.116C161.995 157.688 162.281 157.268 162.709 157.188L167.386 156.316C167.822 156.237 168.234 156.523 168.314 156.951C168.393 157.379 168.108 157.799 167.68 157.878L163.002 158.75C162.955 158.758 162.907 158.766 162.86 158.766H162.852ZM158.586 157.656C158.333 157.656 158.079 157.529 157.928 157.299C157.699 156.959 157.532 156.586 157.421 156.19L156.414 152.543C156.295 152.123 156.549 151.687 156.969 151.568C157.389 151.449 157.825 151.702 157.944 152.123L158.951 155.769C159.015 156.007 159.118 156.229 159.252 156.427C159.498 156.792 159.395 157.284 159.03 157.529C158.896 157.617 158.745 157.664 158.594 157.664L158.586 157.656ZM172.198 157.014C171.826 157.014 171.493 156.744 171.421 156.364C171.342 155.936 171.628 155.516 172.056 155.436L176.733 154.564C177.169 154.485 177.581 154.77 177.661 155.199C177.74 155.627 177.454 156.047 177.026 156.126L172.349 156.998C172.301 157.006 172.254 157.014 172.206 157.014H172.198ZM181.553 155.27C181.18 155.27 180.847 155 180.776 154.62C180.697 154.192 180.982 153.772 181.41 153.692L186.088 152.82C186.524 152.741 186.936 153.026 187.015 153.454C187.094 153.883 186.809 154.303 186.381 154.382L181.704 155.254C181.656 155.262 181.609 155.27 181.561 155.27H181.553ZM190.908 153.526C190.535 153.526 190.202 153.256 190.131 152.876C190.051 152.448 190.337 152.028 190.765 151.948L195.442 151.076C195.878 151.005 196.291 151.282 196.37 151.71C196.449 152.138 196.164 152.559 195.736 152.638L191.058 153.51C191.011 153.518 190.963 153.526 190.916 153.526H190.908ZM200.254 151.782C199.882 151.782 199.549 151.512 199.478 151.132C199.398 150.704 199.684 150.283 200.112 150.204L204.789 149.332C205.217 149.261 205.637 149.538 205.717 149.966C205.796 150.394 205.51 150.815 205.082 150.894L200.405 151.766C200.357 151.774 200.31 151.782 200.262 151.782H200.254ZM209.609 150.038C209.237 150.038 208.904 149.768 208.832 149.388C208.753 148.959 209.038 148.539 209.466 148.46L214.144 147.588C214.58 147.517 214.992 147.794 215.071 148.222C215.151 148.65 214.865 149.07 214.437 149.15L209.76 150.022C209.712 150.03 209.665 150.038 209.617 150.038H209.609ZM155.915 148.539C155.566 148.539 155.249 148.309 155.154 147.961L153.893 143.37C153.774 142.95 154.028 142.514 154.448 142.395C154.868 142.276 155.304 142.53 155.423 142.95L156.684 147.54C156.803 147.961 156.549 148.397 156.129 148.516C156.058 148.531 155.986 148.547 155.915 148.547V148.539ZM218.956 148.286C218.583 148.286 218.25 148.016 218.179 147.636C218.1 147.207 218.385 146.787 218.813 146.708L223.491 145.836C223.927 145.765 224.339 146.042 224.418 146.47C224.497 146.898 224.212 147.318 223.784 147.398L219.106 148.27C219.059 148.278 219.011 148.286 218.964 148.286H218.956ZM228.311 146.542C227.938 146.542 227.605 146.272 227.534 145.891C227.454 145.463 227.74 145.043 228.168 144.964L232.845 144.092C233.281 144.021 233.693 144.298 233.773 144.726C233.852 145.154 233.567 145.574 233.139 145.654L228.461 146.526C228.414 146.534 228.366 146.542 228.318 146.542H228.311ZM237.665 144.797C237.293 144.797 236.96 144.528 236.888 144.147C236.809 143.719 237.094 143.299 237.523 143.22L242.2 142.348C242.636 142.276 243.048 142.554 243.127 142.982C243.207 143.41 242.921 143.83 242.493 143.91L237.816 144.782C237.768 144.79 237.721 144.797 237.673 144.797H237.665ZM245.268 140.754C244.84 140.754 244.483 140.413 244.475 139.977C244.475 139.74 244.428 139.502 244.348 139.272L243.104 135.689C242.961 135.276 243.175 134.824 243.595 134.682C244.007 134.531 244.459 134.753 244.602 135.173L245.847 138.757C245.981 139.145 246.053 139.541 246.061 139.946C246.069 140.382 245.728 140.746 245.284 140.754H245.268ZM153.394 139.367C153.045 139.367 152.728 139.137 152.633 138.788L151.372 134.198C151.253 133.778 151.507 133.342 151.927 133.223C152.347 133.104 152.783 133.358 152.902 133.778L154.163 138.368C154.282 138.788 154.028 139.224 153.608 139.343C153.537 139.359 153.465 139.375 153.394 139.375V139.367ZM242.287 131.733C241.962 131.733 241.653 131.527 241.542 131.201L239.98 126.706C239.837 126.294 240.051 125.842 240.472 125.7C240.884 125.557 241.336 125.771 241.478 126.191L243.04 130.686C243.183 131.098 242.969 131.55 242.549 131.693C242.461 131.725 242.374 131.741 242.287 131.741V131.733ZM150.865 130.195C150.516 130.195 150.199 129.965 150.104 129.616L148.843 125.034C148.724 124.614 148.978 124.178 149.398 124.059C149.818 123.94 150.254 124.193 150.373 124.614L151.634 129.196C151.753 129.616 151.499 130.052 151.079 130.171C151.008 130.187 150.936 130.203 150.865 130.203V130.195ZM239.164 122.751C238.839 122.751 238.529 122.544 238.418 122.219L236.857 117.724C236.714 117.312 236.928 116.86 237.348 116.718C237.76 116.567 238.212 116.789 238.355 117.209L239.917 121.704C240.059 122.116 239.845 122.568 239.425 122.711C239.338 122.743 239.251 122.758 239.164 122.758V122.751ZM148.344 121.022C147.995 121.022 147.678 120.792 147.583 120.444L146.322 115.861C146.203 115.441 146.457 115.005 146.877 114.886C147.297 114.767 147.733 115.021 147.852 115.441L149.113 120.023C149.232 120.444 148.978 120.88 148.558 120.999C148.487 121.014 148.415 121.03 148.344 121.03V121.022ZM236.04 113.761C235.715 113.761 235.406 113.554 235.295 113.229L233.733 108.734C233.59 108.322 233.804 107.87 234.225 107.728C234.637 107.585 235.089 107.799 235.231 108.219L236.793 112.714C236.936 113.126 236.722 113.578 236.302 113.721C236.214 113.753 236.127 113.768 236.04 113.768V113.761ZM145.815 111.85C145.466 111.85 145.149 111.62 145.054 111.271L143.793 106.681C143.674 106.261 143.928 105.825 144.348 105.706C144.769 105.587 145.205 105.841 145.323 106.261L146.584 110.851C146.703 111.271 146.449 111.707 146.029 111.826C145.958 111.842 145.886 111.858 145.815 111.858V111.85ZM232.924 104.778C232.599 104.778 232.29 104.572 232.179 104.247L230.617 99.7523C230.475 99.3401 230.689 98.8882 231.109 98.7455C231.521 98.6028 231.973 98.8168 232.116 99.237L233.678 103.732C233.82 104.144 233.606 104.596 233.186 104.739C233.099 104.771 233.012 104.786 232.924 104.786V104.778ZM143.294 102.678C142.945 102.678 142.628 102.448 142.533 102.099L141.272 97.5088C141.153 97.0886 141.407 96.6526 141.827 96.5337C142.248 96.4148 142.684 96.6684 142.802 97.0886L144.063 101.679C144.182 102.099 143.928 102.535 143.508 102.654C143.437 102.67 143.365 102.686 143.294 102.686V102.678ZM229.801 95.7885C229.476 95.7885 229.167 95.5824 229.056 95.2573L227.494 90.7623C227.351 90.3501 227.565 89.8982 227.985 89.7555C228.398 89.6128 228.85 89.8268 228.992 90.247L230.554 94.742C230.697 95.1543 230.483 95.6061 230.063 95.7488C229.975 95.7805 229.888 95.7964 229.801 95.7964V95.7885ZM140.765 93.5053C140.416 93.5053 140.099 93.2754 140.004 92.9266L138.743 88.3364C138.625 87.9163 138.878 87.4802 139.298 87.3613C139.719 87.2424 140.155 87.4961 140.274 87.9163L141.534 92.5064C141.653 92.9266 141.399 93.3626 140.979 93.4815C140.908 93.4974 140.836 93.5132 140.765 93.5132V93.5053ZM226.677 86.8064C226.352 86.8064 226.043 86.6003 225.932 86.2752L224.37 81.7802C224.228 81.368 224.442 80.9161 224.862 80.7734C225.274 80.6307 225.726 80.8448 225.869 81.2649L227.431 85.7599C227.573 86.1722 227.359 86.6241 226.939 86.7668C226.852 86.7985 226.765 86.8143 226.677 86.8143V86.8064ZM138.244 84.333C137.895 84.333 137.578 84.1031 137.483 83.7542L136.222 79.172C136.104 78.7519 136.357 78.3158 136.777 78.1969C137.198 78.078 137.634 78.3317 137.753 78.7519L139.013 83.3341C139.132 83.7542 138.878 84.1903 138.458 84.3092C138.387 84.325 138.315 84.3409 138.244 84.3409V84.333ZM223.554 77.8164C223.229 77.8164 222.92 77.6103 222.809 77.2852L221.247 72.7902C221.104 72.378 221.318 71.9261 221.738 71.7834C222.151 71.6407 222.603 71.8548 222.745 72.2749L224.307 76.7699C224.45 77.1822 224.236 77.6341 223.816 77.7768C223.728 77.8085 223.641 77.8243 223.554 77.8243V77.8164ZM135.715 75.1606C135.366 75.1606 135.049 74.9307 134.954 74.5819L133.694 69.9918C133.575 69.5716 133.828 69.1356 134.248 69.0167C134.669 68.8977 135.105 69.1514 135.224 69.5716L136.484 74.1617C136.603 74.5819 136.349 75.0179 135.929 75.1368C135.858 75.1527 135.786 75.1685 135.715 75.1685V75.1606ZM220.43 68.8264C220.105 68.8264 219.796 68.6203 219.685 68.2952L218.123 63.8002C217.981 63.388 218.195 62.9361 218.615 62.7934C219.027 62.6507 219.479 62.8648 219.622 63.2849L221.184 67.7799C221.326 68.1922 221.112 68.6441 220.692 68.7868C220.605 68.8185 220.518 68.8343 220.43 68.8343V68.8264ZM133.194 65.9883C132.845 65.9883 132.528 65.7584 132.433 65.4096L131.173 60.8194C131.054 60.3993 131.307 59.9632 131.727 59.8443C132.148 59.7254 132.584 59.9791 132.703 60.3993L133.963 64.9894C134.082 65.4096 133.828 65.8456 133.408 65.9645C133.337 65.9804 133.265 65.9962 133.194 65.9962V65.9883ZM217.307 59.8443C216.982 59.8443 216.673 59.6382 216.562 59.3132L215 54.8182C214.857 54.4059 215.071 53.954 215.491 53.8113C215.904 53.6686 216.356 53.8827 216.498 54.3029L218.06 58.7979C218.203 59.2101 217.989 59.662 217.569 59.8047C217.481 59.8364 217.394 59.8522 217.307 59.8522V59.8443ZM130.665 56.8159C130.316 56.8159 129.999 56.586 129.904 56.2372L128.644 51.6471C128.525 51.2269 128.778 50.7909 129.199 50.672C129.619 50.5531 130.055 50.8068 130.174 51.2269L131.434 55.817C131.553 56.2372 131.299 56.6732 130.879 56.7922C130.808 56.808 130.737 56.8239 130.665 56.8239V56.8159ZM214.191 50.8543C213.866 50.8543 213.557 50.6482 213.446 50.3232L211.884 45.8282C211.742 45.4159 211.956 44.964 212.376 44.8213C212.788 44.6786 213.24 44.8927 213.383 45.3129L214.944 49.8079C215.087 50.2201 214.873 50.672 214.453 50.8147C214.366 50.8464 214.279 50.8622 214.191 50.8622V50.8543ZM130.11 49.3243C129.92 49.3243 129.722 49.2529 129.571 49.1182C129.246 48.8248 129.23 48.3175 129.524 48.0003C130.205 47.2631 131.125 46.827 132.132 46.7636L134.51 46.5654C134.962 46.5258 135.327 46.8508 135.366 47.2869C135.406 47.7229 135.081 48.1034 134.645 48.143L132.251 48.3412C131.64 48.3809 131.093 48.6425 130.697 49.0785C130.538 49.245 130.324 49.3322 130.11 49.3322V49.3243ZM139.314 47.7467C138.91 47.7467 138.561 47.4375 138.521 47.0173C138.482 46.5813 138.807 46.2008 139.243 46.1611L143.984 45.7647C144.42 45.7092 144.8 46.0501 144.84 46.4862C144.88 46.9222 144.554 47.3027 144.118 47.3423L139.378 47.7387C139.378 47.7387 139.33 47.7387 139.314 47.7387V47.7467ZM148.796 46.9539C148.391 46.9539 148.043 46.6447 148.003 46.2245C147.963 45.7885 148.288 45.408 148.724 45.3684L153.465 44.972C153.909 44.9244 154.282 45.2574 154.321 45.6934C154.361 46.1294 154.036 46.5099 153.6 46.5496L148.859 46.946C148.859 46.946 148.812 46.946 148.796 46.946V46.9539ZM158.277 46.1691C157.873 46.1691 157.524 45.8599 157.485 45.4397C157.445 45.0037 157.77 44.6232 158.206 44.5835L162.947 44.1871C163.391 44.1475 163.763 44.4725 163.803 44.9085C163.843 45.3446 163.518 45.7251 163.081 45.7647L158.341 46.1611C158.341 46.1611 158.293 46.1611 158.277 46.1611V46.1691ZM167.759 45.3763C167.355 45.3763 167.006 45.0671 166.966 44.6469C166.926 44.2109 167.251 43.8304 167.687 43.7907L172.428 43.3944C172.872 43.3468 173.245 43.6798 173.284 44.1158C173.324 44.5518 172.999 44.9323 172.563 44.972L167.822 45.3684C167.822 45.3684 167.775 45.3684 167.759 45.3684V45.3763ZM177.24 44.5914C176.836 44.5914 176.487 44.2823 176.448 43.8621C176.408 43.4261 176.733 43.0455 177.169 43.0059L181.91 42.6095C182.362 42.5699 182.726 42.8949 182.766 43.3309C182.806 43.767 182.481 44.1475 182.045 44.1871L177.304 44.5835C177.304 44.5835 177.256 44.5835 177.24 44.5835V44.5914ZM186.722 43.8066C186.318 43.8066 185.969 43.4974 185.929 43.0773C185.889 42.6412 186.214 42.2607 186.651 42.2211L191.391 41.8247C191.827 41.7692 192.208 42.1101 192.247 42.5461C192.287 42.9821 191.962 43.3626 191.526 43.4023L186.785 43.7987C186.785 43.7987 186.738 43.7987 186.722 43.7987V43.8066ZM196.195 43.0138C195.791 43.0138 195.442 42.7046 195.403 42.2845C195.363 41.8485 195.688 41.4679 196.124 41.4283L200.865 41.0319C201.309 40.9843 201.681 41.3173 201.721 41.7533C201.761 42.1893 201.436 42.5699 201 42.6095L196.259 43.0059C196.259 43.0059 196.211 43.0059 196.195 43.0059V43.0138ZM210.362 42.332C210.235 42.332 210.109 42.3003 209.99 42.2369C209.657 42.0625 209.284 41.9674 208.911 41.9674H208.753L205.748 42.2211C205.304 42.2607 204.932 41.9357 204.892 41.4996C204.852 41.0636 205.178 40.6831 205.614 40.6434L208.65 40.3898C208.753 40.3898 208.832 40.3818 208.911 40.3818C209.546 40.3818 210.18 40.5404 210.743 40.8416C211.131 41.0478 211.274 41.5314 211.068 41.9119C210.925 42.1814 210.648 42.332 210.37 42.332H210.362Z" fill="var(--sapContent_Illustrative_Color21)"/>
9
+ <path d="M182.25 73.0912C171.365 74.2794 164.857 83.7452 167.983 94.3753C171.165 105.189 182.968 112.741 194.076 111.09C204.945 109.479 210.783 99.6704 207.394 89.3114C204.052 79.1279 192.912 71.9269 182.25 73.0912ZM192.681 103.195C192.401 103.65 191.955 103.921 191.325 104.009C190.695 104.096 190.097 103.977 189.57 103.634C189.044 103.291 188.677 102.812 188.486 102.19C188.295 101.568 188.35 101.066 188.637 100.611C188.925 100.165 189.387 99.8936 190.025 99.8059C190.663 99.7182 191.221 99.8458 191.747 100.189C192.266 100.532 192.625 100.994 192.808 101.592C192.992 102.19 192.96 102.749 192.688 103.203L192.681 103.195ZM194.746 88.2907C194.61 89.128 194.347 89.8457 193.948 90.4438C193.55 91.0419 193.007 91.7118 192.33 92.4534C191.795 93.0754 191.405 93.5858 191.141 93.9765C190.878 94.3673 190.695 94.8378 190.591 95.38C190.488 95.9223 190.535 96.5364 190.735 97.2222L187.712 97.6289C187.417 96.6002 187.338 95.699 187.465 94.9175C187.593 94.136 187.832 93.4821 188.175 92.9398C188.518 92.3976 189.012 91.7835 189.642 91.0818C189.889 90.7947 190.001 90.6671 189.985 90.691C190.456 90.1727 190.822 89.7022 191.086 89.2795C191.349 88.8569 191.524 88.3704 191.596 87.8202C191.676 87.2699 191.596 86.6479 191.381 85.9462C191.118 85.1168 190.679 84.415 190.065 83.8568C189.451 83.2986 188.733 82.8999 187.92 82.6686C187.106 82.4374 186.261 82.3736 185.4 82.4772C184.036 82.6367 182.999 83.0753 182.29 83.793C181.58 84.5107 181.046 85.4996 180.687 86.7596L177.672 85.6112C177.983 84.0482 178.709 82.7563 179.857 81.7356C180.998 80.7149 182.561 80.0928 184.546 79.8616C186.102 79.6782 187.553 79.7818 188.901 80.1726C190.248 80.5633 191.405 81.2093 192.362 82.1104C193.326 83.0195 194.012 84.12 194.427 85.4358C194.762 86.4964 194.866 87.4454 194.73 88.2827L194.746 88.2907Z" fill="var(--sapContent_Illustrative_Color22)"/>
10
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M212.622 20L212.622 31.1875L210.622 31.1875L210.622 20L212.622 20Z" fill="var(--sapContent_Illustrative_Color4)"/>
11
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M224.099 24.1007L217.441 33.1036L215.83 31.9189L222.488 22.9161L224.099 24.1007Z" fill="var(--sapContent_Illustrative_Color4)"/>
12
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M230.295 35.447L219.382 38.0328L218.915 36.0879L229.829 33.5021L230.295 35.447Z" fill="var(--sapContent_Illustrative_Color4)"/>
13
+ </svg>`;