@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,47 @@
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-AddPeopleToCalendar">
2
+ <rect y="59" width="320" height="138" rx="24" fill="var(--sapContent_Illustrative_Color20)"/>
3
+ <g clip-path="url(#clip0_6879_7322)">
4
+ <path d="M210.382 169.845C207.952 157.687 205.369 145.559 202.913 133.407C202.664 132.17 202.407 130.918 201.86 129.785C200.171 126.298 196.347 124.846 193.449 122.692C192.101 121.688 183.048 116.734 183.048 115.781V133.195C183.178 133.347 183.3 133.485 183.409 133.607C183.433 133.631 183.453 133.655 183.473 133.676C183.751 133.975 183.794 134.435 183.563 134.772C183.433 134.964 183.256 135.137 183.033 135.215V89.645V75.8136C183.033 74.0985 181.408 72.7121 179.4 72.7121H155.437V71.7858C155.437 71.3526 155.095 71 154.676 71C154.256 71 153.915 71.3526 153.915 71.7858V72.7121H114.685V71.7858C114.685 71.3526 114.343 71 113.924 71C113.505 71 113.163 71.3526 113.163 71.7858V72.7121H90.3042C90.1567 72.7121 90.0092 72.7181 89.8675 72.733C89.7431 72.745 89.6216 72.7599 89.503 72.7808C89.4886 72.7808 89.4741 72.7838 89.4596 72.7868C88.2969 72.99 87.3105 73.6055 86.7147 74.4481C86.33 74.9889 86.1073 75.6224 86.1073 76.3007V89.651V118.664C85.6532 118.954 85.2106 119.259 84.7768 119.585L83.4347 120.597L83.2264 113.02C83.2264 113.02 85.1528 107.719 85.928 102.26C85.9627 102.021 85.9945 101.785 86.0234 101.546C86.0899 101.011 86.1131 100.494 86.1044 99.9923C86.0726 98.325 85.6561 96.855 85.0776 95.6747C85.0197 95.5552 84.959 95.4417 84.8982 95.3281C83.8049 93.3052 82.2545 92.2296 81.5488 92.5971C80.2906 93.2455 79.8943 98.9555 79.6166 100.689C79.3939 102.072 76.97 109.306 75.6597 111.947C75.5701 112.127 75.492 112.309 75.4197 112.497C75.2056 113.059 75.0755 113.647 75.0321 114.251L74.0573 127.521L73.8664 130.132C73.8664 130.132 72.4231 131.423 71.2256 132.797C70.8207 133.263 70.4446 133.736 70.1612 134.175C69.8488 134.659 69.7562 135.322 69.8228 136.21C69.8546 136.631 69.924 137.106 70.0252 137.635C70.0628 137.832 70.1033 138.035 70.1496 138.247C70.2133 138.543 70.2827 138.854 70.3608 139.183C70.4996 139.774 70.6645 140.42 70.8438 141.119C71.3384 143.046 71.9603 145.395 72.6111 148.248C73.7912 153.435 74.1615 157.816 74.2714 160.373C74.2772 160.502 74.2829 160.624 74.2858 160.744C74.2945 160.98 74.3003 161.198 74.3061 161.398C74.3119 161.595 74.3148 161.775 74.3148 161.933C74.3148 162.091 74.3148 162.229 74.3148 162.342C74.3148 162.632 74.309 162.782 74.309 162.782C74.0024 164.049 73.5916 165.292 73.0739 166.499L71.3702 170.467L67.1762 180.288H67.1675L60 197H85.7573C88.7105 188.577 91.493 180.659 93.055 176.443L93.0492 176.416C93.1591 176.12 93.2661 175.833 93.3731 175.552C95.1173 174.309 96.2367 172.717 96.9019 170.921C101.423 161.503 100.931 144.176 100.931 144.176L94.0615 144.185C94.0615 144.185 94.0615 144.179 94.0615 144.176H122.648C122.463 144.447 122.257 144.731 122.026 145.036C121.974 145.105 121.922 145.171 121.867 145.242C121.763 145.377 121.653 145.511 121.537 145.655C121.531 145.661 121.528 145.667 121.522 145.673C121.167 146.109 120.825 146.751 120.513 147.531C120.444 147.707 120.374 147.89 120.308 148.078C120.273 148.173 120.238 148.272 120.206 148.374C119.961 149.103 119.741 149.912 119.559 150.764C119.544 150.833 119.53 150.899 119.515 150.967C119.405 151.499 119.307 152.046 119.223 152.596C119.194 152.79 119.168 152.987 119.142 153.181C119.116 153.393 119.09 153.606 119.07 153.821C119.032 154.182 119.003 154.541 118.983 154.896C118.983 154.917 118.983 154.938 118.98 154.962C118.937 155.724 118.931 156.465 118.968 157.164C118.977 157.341 118.992 157.514 119.006 157.684C119.038 158.025 119.081 158.351 119.136 158.661C119.191 158.972 119.261 159.265 119.342 159.54C119.504 160.087 119.72 160.553 119.995 160.911C120.07 161.007 120.143 161.108 120.215 161.21C120.895 162.181 121.485 163.418 121.974 164.646C122.034 164.802 122.095 164.957 122.156 165.112C122.194 165.211 122.231 165.313 122.266 165.411C122.437 165.877 122.593 166.331 122.732 166.762C123.267 168.414 123.539 170.144 123.539 171.886L123.559 197H150.629C147.422 180.133 144.115 161.034 145.278 159.489C145.348 159.399 145.42 159.31 145.492 159.223C145.559 159.145 145.631 159.065 145.703 158.987C145.712 158.978 145.718 158.969 145.727 158.96C145.776 158.909 145.828 158.858 145.877 158.805C147.08 157.598 148.752 156.704 150.071 155.62C151.483 154.46 153.606 152.805 154.271 150.955C154.271 150.955 154.271 150.955 154.271 150.952C154.705 150.217 155.043 149.428 155.237 148.574C155.489 147.468 155.639 145.941 155.711 144.182H170.495C170.639 149.817 171.281 155.446 173.254 155.885C175.143 156.307 176.563 154.63 177.538 152.73C178.877 156.322 180.685 159.764 185.032 165.65C186.227 167.267 187.204 168.614 188.011 169.744C188.347 170.21 188.651 170.64 188.928 171.034C189.125 171.315 189.313 171.581 189.484 171.829C189.582 171.973 189.677 172.11 189.767 172.242C190.765 173.691 191.262 174.489 191.508 174.922C191.575 175.038 191.624 175.131 191.662 175.2C191.685 175.245 191.702 175.283 191.717 175.31C191.748 175.382 191.754 175.403 191.754 175.403L191.028 197.006H214C212.204 183.521 210.382 169.851 210.382 169.851V169.845Z" fill="var(--sapContent_Illustrative_Color21)"/>
5
+ </g>
6
+ <path d="M102.111 134.554L115.941 134.54C115.941 134.54 116.821 164.457 106.665 171.641C97.1626 178.365 102.111 134.554 102.111 134.554Z" fill="var(--sapContent_Illustrative_Color30)"/>
7
+ <path d="M201.618 120.619C201.618 120.619 199.754 147.317 204.703 148.377C209.651 149.441 211.973 139.211 211.973 139.211C211.973 139.211 211.295 125.382 201.618 120.619Z" fill="var(--sapContent_Illustrative_Color3)"/>
8
+ <path d="M211.816 134.537H102.899C100.056 134.537 97.7483 132.629 97.7483 130.275V55.4097C97.7483 53.0565 100.052 51.1484 102.899 51.1484H212.246C214.709 51.1484 216.704 52.8021 216.704 54.8373V130.491C216.704 132.728 214.514 134.537 211.813 134.537" fill="var(--sapContent_Illustrative_Color14)"/>
9
+ <path d="M211.518 132.978H102.885C100.049 132.978 97.7483 131.081 97.7483 128.742V54.2649C97.7483 51.9258 100.049 50.0283 102.885 50.0283H211.948C214.404 50.0283 216.396 51.6714 216.396 53.6995V128.957C216.396 131.18 214.213 132.986 211.515 132.986" fill="var(--sapContent_Illustrative_Color8)"/>
10
+ <path d="M216.704 70.0486H97.7483V54.2649C97.7483 51.9258 100.052 50.0283 102.899 50.0283H212.246C214.709 50.0283 216.704 51.6714 216.704 53.696V70.0486Z" fill="var(--sapContent_Illustrative_Color11)"/>
11
+ <path d="M171.63 68.2214C167.608 67.3027 163.518 66.5537 159.383 65.9989C154.978 65.4088 150.519 65.1156 146.061 64.8506C137.63 64.3488 128.773 64.0202 120.815 61.6564C115.93 60.2041 111.958 57.759 110.29 53.9006C109.746 52.6462 109.42 51.3424 109.228 50.0244H102.903C100.059 50.0244 97.7518 51.9219 97.7518 54.261V70.0482H178.736C176.397 69.3769 174.026 68.7691 171.63 68.2214Z" fill="var(--sapContent_Illustrative_Color1)"/>
12
+ <path d="M139.135 70L139.135 132.5L136.865 132.5L136.865 70L139.135 70Z" fill="var(--sapContent_Illustrative_Color11)"/>
13
+ <path d="M176.768 70V132.795H174.499V70H176.768Z" fill="var(--sapContent_Illustrative_Color11)"/>
14
+ <path d="M216.399 87.9766V90.2461H97.8158V87.9766H216.399Z" fill="var(--sapContent_Illustrative_Color11)"/>
15
+ <path d="M216.399 110.265V112.535H97.8158V110.265H216.399Z" fill="var(--sapContent_Illustrative_Color11)"/>
16
+ <path d="M132.419 57.4199C133.58 57.4199 134.524 56.6284 134.524 55.6496C134.524 54.6709 133.583 53.8794 132.419 53.8794C131.255 53.8794 130.317 54.6709 130.317 55.6496C130.317 56.6284 131.258 57.4199 132.419 57.4199Z" fill="var(--sapContent_Illustrative_Color1)"/>
17
+ <path d="M131.954 53.9219C131.017 54.0985 130.314 54.8052 130.314 55.6497C130.314 56.4942 131.013 57.1973 131.954 57.3775C132.891 57.2009 133.594 56.4942 133.594 55.6497C133.594 54.8052 132.895 54.1021 131.954 53.9219Z" fill="var(--sapContent_Illustrative_Color14)"/>
18
+ <path d="M182.368 57.4199C183.528 57.4199 184.469 56.6284 184.469 55.6496C184.469 54.6709 183.528 53.8794 182.368 53.8794C181.207 53.8794 180.266 54.6709 180.266 55.6496C180.266 56.6284 181.207 57.4199 182.368 57.4199Z" fill="var(--sapContent_Illustrative_Color1)"/>
19
+ <path d="M181.903 53.9219C180.965 54.0985 180.263 54.8052 180.263 55.6497C180.263 56.4942 180.962 57.1973 181.903 57.3775C182.84 57.2009 183.543 56.4942 183.543 55.6497C183.543 54.8052 182.843 54.1021 181.903 53.9219Z" fill="var(--sapContent_Illustrative_Color14)"/>
20
+ <path d="M131.89 48H131.886C131.371 48 130.953 48.4161 130.953 48.9293V55.1657C130.953 55.679 131.371 56.095 131.886 56.095H131.89C132.406 56.095 132.823 55.679 132.823 55.1657V48.9293C132.823 48.4161 132.406 48 131.89 48Z" fill="var(--sapContent_Illustrative_Color14)"/>
21
+ <path d="M181.906 48H181.903C181.387 48 180.969 48.4161 180.969 48.9293V55.1657C180.969 55.679 181.387 56.095 181.903 56.095H181.906C182.422 56.095 182.84 55.679 182.84 55.1657V48.9293C182.84 48.4161 182.422 48 181.906 48Z" fill="var(--sapContent_Illustrative_Color14)"/>
22
+ <path d="M97.3223 197C100.947 187.04 104.361 177.676 106.278 172.69L106.271 172.659C106.406 172.309 106.538 171.97 106.669 171.637C118.035 163.839 107.78 144.31 107.244 140.052C106.708 135.795 107.957 131.894 109.203 131.894C110.449 131.894 113.481 128.7 115.263 128.17C117.045 127.636 127.204 129.41 130.946 129.943C134.687 130.477 136.65 128.523 135.578 123.558C134.506 118.594 111.788 109.722 113.846 110.064C115.905 110.407 121.993 109.552 127.652 109.382C133.31 109.213 138.627 105.372 135.284 102.98C133.154 101.457 120.673 100.835 111.88 100.584C106.225 100.422 100.68 102.132 96.1119 105.453L94.4648 106.651L94.2092 97.6904C94.2092 97.6904 96.7828 90.8639 97.6418 84.1186C98.5008 77.3769 93.6945 72.7658 92.1503 73.5361C90.6062 74.3028 91.1564 81.7194 90.8121 83.7653C90.5387 85.4012 86.531 93.2913 84.9194 96.4149C84.4828 97.2629 84.2201 98.1886 84.1491 99.1391L82.715 117.919C82.715 117.919 79.5416 120.65 78.1713 122.7C76.8011 124.749 78.8564 129.526 81.1709 139.342C83.4853 149.158 83.2617 156.529 83.2617 156.529C82.8854 158.027 82.3814 159.497 81.746 160.924L79.6551 165.617L74.508 177.231H74.4973L65.7117 197H97.3223Z" fill="var(--sapContent_Illustrative_Color15)"/>
23
+ <path d="M79.1617 197C83.6451 181.57 88.2385 165.641 88.7603 163.161C89.8501 157.966 88.8384 153.196 87.6457 148.126C86.5701 143.568 85.4945 138.996 83.819 134.621C83.0168 132.522 82.0761 130.48 81.075 128.466C80.6491 127.615 80.2089 126.756 80.0172 125.823C79.6374 123.968 80.7023 122.555 81.8453 121.191C82.9635 119.859 84.1633 118.594 85.4484 117.417C86.9925 116.004 88.5686 114.605 89.9175 113C90.095 112.788 90.308 112.481 90.5245 112.149C90.8085 111.711 90.276 111.202 89.8465 111.499C88.487 112.428 86.7405 113.612 86.0483 114.011C85.7465 114.188 85.2318 114.043 85.1715 113.654C84.7313 110.898 85.1786 108.174 85.3241 105.393C85.5336 101.46 86.0625 97.4393 87.5534 93.761C88.6964 90.9378 90.4216 88.3726 91.341 85.4575C92.2355 82.6202 92.3278 79.5921 92.452 76.6452C92.4662 76.3201 92.7289 76.0622 93.0555 76.0516C95.6681 75.9562 96.2006 79.2988 96.6017 81.2174C96.8112 82.2174 97.0135 83.7367 97.5318 84.9593C97.5744 84.6766 97.6134 84.394 97.6489 84.1113C98.5079 77.3696 93.7016 72.7585 92.1574 73.5287C90.6133 74.2955 90.1269 81.0478 89.7862 83.0972C89.5128 84.7332 86.5381 93.2875 84.9301 96.4111C84.4935 97.2591 84.2308 98.1848 84.1598 99.1353L82.7257 117.915C82.7257 117.915 79.5522 120.647 78.182 122.696C76.8118 124.745 78.8671 129.523 81.1815 139.338C83.496 149.154 83.2724 156.525 83.2724 156.525C82.8961 158.023 82.392 159.493 81.7566 160.92L79.6658 165.613L74.5186 177.227H74.508L65.7117 197H79.1617Z" fill="var(--sapContent_Illustrative_Color16)"/>
24
+ <path d="M111.855 117.283C105.686 117.513 100.148 121.202 94.1595 122.523C93.6945 122.626 93.8187 123.311 94.2944 123.258C96.3497 123.036 98.4298 122.113 100.393 121.336C107.027 118.718 114.624 117.735 121.287 120.29C124.439 121.499 128.472 124.371 131.819 123.922L132.912 123.792C126.579 121.622 118.55 117.032 111.855 117.28V117.283Z" fill="var(--sapContent_Illustrative_Color16)"/>
25
+ <path d="M112.718 109.474C110.712 108.57 108.43 108.502 106.374 109.29C103.943 110.227 100.563 111.884 98.7529 112.859C95.6504 114.53 92.5302 116.212 89.6407 118.212C89.1579 118.544 89.5981 119.276 90.1199 119.014C93.0946 117.53 96.0018 115.622 98.9552 114.043C103.449 111.64 108.415 108.75 113.119 110.711C113.786 110.99 123.008 115.711 123.317 114.7L112.718 109.471V109.474Z" fill="var(--sapContent_Illustrative_Color16)"/>
26
+ <path d="M126.072 101.301C126.15 101.294 127.449 102.937 127.68 103.093C128.468 103.623 129.331 103.842 130.246 103.87C131.744 103.916 133.597 103.87 135.266 103.881C135.891 103.884 136.111 102.969 135.575 102.612C134.254 101.729 131.542 100.8 126.072 101.301Z" fill="var(--sapContent_Illustrative_Color16)"/>
27
+ <path d="M129.604 122.495C129.544 122.488 129.49 122.537 129.505 122.597C129.565 122.901 129.522 123.657 129.568 123.795C129.746 124.315 130.143 124.742 130.605 125.032C131.169 125.385 131.823 125.562 132.476 125.71C133.612 125.965 134.751 126.247 135.855 126.618C135.855 126.618 136.164 123.456 129.604 122.495Z" fill="var(--sapContent_Illustrative_Color16)"/>
28
+ <path d="M200.571 123.657C202.708 125.996 205.398 129.954 207.958 137.748C210.517 145.539 211.149 149.479 219.157 159.927C227.166 170.376 227.407 171.457 227.407 171.457L226.516 197.003H254.708C252.504 181.057 250.268 164.892 250.268 164.892C247.286 150.514 244.116 136.172 241.102 121.802C240.797 120.339 240.481 118.859 239.81 117.52C237.737 113.396 233.044 111.679 229.487 109.131C227.833 107.944 216.722 102.086 216.722 100.958V121.551C216.882 121.731 217.031 121.894 217.166 122.039C217.194 122.067 217.219 122.095 217.244 122.12C217.585 122.473 217.638 123.018 217.354 123.417C217.07 123.816 216.644 124.145 216.016 123.929C214.159 123.293 212.665 119.223 211.809 117.608C209.85 113.901 195.243 97.0223 191.246 105.714C187.408 114.064 198.43 121.318 200.564 123.661L200.571 123.657Z" fill="var(--sapContent_Illustrative_Color31)"/>
29
+ <path d="M200.571 123.657C202.708 126 205.044 129.954 207.603 137.748C210.162 145.54 211.149 149.479 219.157 159.928C227.166 170.376 227.407 171.457 227.407 171.457L226.516 197.004H242.036C240.073 185.573 236.927 173.542 230.144 164.984C228.529 162.945 226.743 161.048 224.883 159.231C223.051 157.44 221.465 155.62 220.233 153.363C217.741 148.794 216.662 143.635 214.873 138.784C213.052 133.848 210.436 129.357 206.939 125.413C205.221 123.477 203.372 121.664 201.519 119.855C199.761 118.138 197.905 116.481 196.57 114.4C195.519 112.757 194.856 110.919 194.866 108.958C194.877 107.107 195.452 105.326 196.254 103.669C194.121 103.061 192.282 103.464 191.246 105.718C187.408 114.068 198.43 121.322 200.564 123.664L200.571 123.657Z" fill="var(--sapContent_Illustrative_Color3)"/>
30
+ <path d="M197.348 113.467C198.803 112.714 199.999 111.548 200.794 110.12L200.805 110.103C201.085 109.601 201.082 108.99 200.798 108.492C199.591 106.382 196.073 101.177 192.2 104.329C187.88 107.841 193.482 111.986 195.697 113.396C196.194 113.714 196.826 113.739 197.351 113.467H197.348Z" fill="var(--sapContent_Illustrative_Color28)"/>
31
+ <path d="M142.692 161.242C143.349 163.196 143.682 165.242 143.682 167.302L143.707 197H176.929C172.993 177.054 168.935 154.468 170.362 152.642C172.957 149.324 181.107 146.002 182.591 139.734C184.075 133.466 182.708 115.834 181.65 110.453C180.593 105.071 178.594 93.6056 174.835 94.1921C171.374 94.7292 171.097 97.0506 171.076 97.4181C171.101 96.8068 171.25 90.2983 166.969 89.369C166.056 89.1712 165.109 89.3549 164.306 89.8354C163.504 90.316 162.56 91.0863 162.492 92.0862C162.492 92.0862 161.552 89.8637 158.85 90.9167C156.145 91.9696 155.677 100.743 155.677 100.743C155.677 100.743 152.269 99.3403 151.094 102.966C149.919 106.591 147.569 123.791 145.805 127.887C144.041 131.982 143.806 133.268 141.222 136.31C138.638 139.353 136.639 150.935 139.341 154.327C140.8 156.157 141.95 159.005 142.699 161.245L142.692 161.242Z" fill="var(--sapContent_Illustrative_Color28)"/>
32
+ <path d="M181.402 142.55C181.43 142.476 181.338 142.405 181.278 142.458C180.167 143.342 162.173 156.03 152.784 143.557C151.96 142.465 150.221 142.363 148.826 142.398C148.67 142.402 147.924 142.515 147.143 142.628C146.089 142.78 145.432 143.847 145.777 144.85C146.281 146.327 146.905 148.013 147.434 149.034C147.924 149.988 148.418 150.956 148.961 151.882C149.536 152.857 150.342 153.663 151.236 154.352C151.254 154.366 151.275 154.38 151.296 154.398C155.489 157.634 161.154 158.27 165.957 156.019C166.642 155.698 169.578 153.652 170.366 152.642C171.825 150.772 174.338 149.578 176.251 148.069C177.984 146.698 180.589 144.741 181.406 142.554L181.402 142.55Z" fill="var(--sapContent_Illustrative_Color30)"/>
33
+ <path d="M154.275 121.825C154.527 119.038 154.438 116.604 154.899 114.032C155.123 112.778 155.212 112.347 155.421 111.089C155.727 109.251 156.099 105.785 155.925 104.778C155.798 104.033 156.067 101.368 155.677 100.736C155.62 102.898 154.757 110.431 154.598 111.449C154.445 112.442 154.36 113.442 154.275 114.442C154.108 116.41 154.03 118.382 153.93 120.357C153.831 122.35 153.671 124.337 153.419 126.319C153.242 127.711 152.988 129.408 152.368 131.042C152.244 131.211 152.18 131.416 152.177 131.625C152.177 131.763 152.191 132.021 152.28 132.134C152.447 132.342 152.748 131.936 152.826 131.802C154.318 129.102 153.998 124.874 154.275 121.825Z" fill="var(--sapContent_Illustrative_Color30)"/>
34
+ <path d="M162.489 92.0825C162.446 95.5912 162.89 101.93 163.21 105.941C163.398 108.329 163.273 110.732 162.833 113.089C162.446 115.163 162.443 124.943 162.457 128.66C162.457 128.865 162.752 128.897 162.798 128.699C163.199 126.961 163.834 124.007 163.934 122.275C164.008 120.95 164.026 119.625 164.03 118.297C164.033 116.785 164.076 115.272 164.136 113.763C164.253 110.718 164.424 107.672 164.427 104.623C164.427 101.789 164.189 98.9444 163.731 96.1495C163.579 95.2202 162.847 92.0366 162.485 92.0861L162.489 92.0825Z" fill="var(--sapContent_Illustrative_Color30)"/>
35
+ <path d="M173.007 105.17C172.339 102.884 171.953 100.563 171.661 98.1848C171.594 97.6336 171.587 96.9269 171.338 96.4146C170.49 97.9834 171.253 104.46 171.903 106.58C172.577 108.774 173.536 110.905 173.763 113.212C173.877 114.371 173.703 115.527 173.603 116.679C173.497 117.919 173.404 119.159 173.33 120.403C173.28 121.194 173.358 125.307 173.422 128.116C173.429 128.367 173.798 128.388 173.83 128.137C174.15 125.643 174.576 122.198 174.594 121.491C174.626 120.389 175.311 114.329 173.433 106.513C173.323 106.054 173.138 105.619 173.007 105.17Z" fill="var(--sapContent_Illustrative_Color30)"/>
36
+ <path d="M142.692 161.242C143.349 163.196 143.682 165.242 143.682 167.302L143.707 197H151.332C151.683 188.474 152.07 180.252 151.275 176.365C150.466 172.415 149.656 168.387 147.882 164.733C146.27 161.419 144.172 158.362 142.589 155.03C141.822 153.419 141.176 151.741 140.793 149.992C140.367 148.038 140.296 146.031 140.484 144.045C140.761 141.123 141.528 138.257 141.989 135.356C141.755 135.653 141.503 135.968 141.215 136.303C138.631 139.346 136.632 150.928 139.334 154.32C140.793 156.151 141.943 158.998 142.692 161.239V161.242Z" fill="var(--sapContent_Illustrative_Color30)"/>
37
+ <path d="M154.069 100.457C154.069 100.457 153.029 100.849 152.901 102.912C152.837 103.919 152.773 104.774 152.72 105.389C152.674 105.941 153.114 106.41 153.668 106.41H155.581C155.581 106.41 156.344 101.149 155.581 100.644C154.818 100.139 154.065 100.453 154.065 100.453L154.069 100.457Z" fill="var(--sapContent_Illustrative_Color30)"/>
38
+ <path d="M158.999 97.3684H160.526C160.948 97.3684 161.303 97.0575 161.356 96.6441C161.569 95.0046 161.882 91.1425 160.089 91.0189C157.853 90.8634 158.023 94.2237 158.162 96.584C158.187 97.0257 158.556 97.3684 158.999 97.3684Z" fill="var(--sapContent_Illustrative_Color30)"/>
39
+ <path d="M165.691 97.167H168.389C168.79 97.167 169.134 96.8808 169.201 96.4851C169.493 94.7784 169.986 90.4359 167.49 90.2981C164.406 90.1285 164.679 93.8491 164.867 96.4038C164.899 96.8313 165.258 97.1635 165.691 97.1635V97.167Z" fill="var(--sapContent_Illustrative_Color30)"/>
40
+ <path d="M174.469 100.937L176.567 100.383C176.965 100.277 177.227 99.9021 177.188 99.4922C177.032 97.9057 176.436 94.2381 174.324 94.6762C171.7 95.2203 172.712 98.2591 173.458 100.404C173.603 100.817 174.043 101.05 174.466 100.937H174.469Z" fill="var(--sapContent_Illustrative_Color30)"/>
41
+ <defs>
42
+ <clipPath id="clip0_6879_7322">
43
+ <rect width="154" height="126" fill="var(--sapContent_Illustrative_Color8)" transform="translate(60 71)"/>
44
+ </clipPath>
45
+ </defs>
46
+ </svg>
47
+ `;
@@ -0,0 +1,38 @@
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-AddingColumns">
2
+ <rect x="1" y="67.249" width="320" height="138" rx="24" fill="var(--sapContent_Illustrative_Color20)"/>
3
+ <path d="M219.659 168.403L180.521 153.692C180.388 153.651 180.256 153.63 180.124 153.661L63.7679 161.532C59.4305 161.714 59.513 163.069 60.6938 163.639L102.483 180.495C104.875 181.309 107.42 181.502 109.903 181.054L216.198 170.225C219.791 169.747 221.314 169.081 219.659 168.403Z" fill="var(--sapContent_Illustrative_Color21)"/>
4
+ <path d="M76.0799 77.8222L99.1614 161.677C99.6554 163.479 101.412 164.641 103.26 164.403L231.704 146.884C236.214 145.438 237.989 140.791 237.211 138.54L176.932 65.5176C176.374 63.9258 174.828 62.9012 173.154 63.011L80.6359 65.728C78.2573 65.8744 73.4909 69.2959 76.0799 77.8222Z" fill="var(--sapContent_Illustrative_Color22)"/>
5
+ <path d="M77.2875 70.4499L101.503 158.421C101.997 160.223 103.754 161.385 105.602 161.147L234.201 143.463C236.561 143.161 238.053 140.755 237.266 138.505L208.476 60.5147C207.918 58.9229 206.372 57.8983 204.697 58.008L80.6724 65.7018C78.2938 65.8482 76.6563 68.1445 77.2875 70.4407V70.4499Z" fill="var(--sapContent_Illustrative_Color8)"/>
6
+ <path d="M208.476 60.5147C207.918 58.9229 206.372 57.8983 204.697 58.008L80.6724 65.7018C78.2938 65.8482 76.6563 68.1445 77.2875 70.4407L80.6816 82.7636L212.519 71.4745L208.467 60.5056L208.476 60.5147Z" fill="var(--sapContent_Illustrative_Color14)"/>
7
+ <path d="M100.763 72.5622C101.403 75.2884 99.4453 77.6853 96.3714 77.9598C93.2609 78.2434 90.123 76.2582 89.382 73.4862C88.6318 70.6685 90.6353 68.1618 93.8556 67.9331C97.0301 67.7044 100.113 69.7994 100.763 72.5622Z" fill="var(--sapContent_Illustrative_Color2)"/>
8
+ <path d="M118.593 94.4183L94.9256 96.6048C94.6237 96.6322 94.3218 96.4493 94.2486 96.1931L93.2515 92.7167C93.1783 92.4605 93.3612 92.2318 93.6631 92.2044L117.275 90.0911C117.568 90.0637 117.861 90.2466 117.934 90.4936L118.968 93.906C119.041 94.153 118.867 94.3817 118.583 94.4092L118.593 94.4183Z" fill="var(--sapContent_Illustrative_Color2)"/>
9
+ <path d="M118.373 105.102L97.9445 107.142C97.6426 107.17 97.3407 106.987 97.2676 106.731L96.2612 103.208C96.188 102.952 96.371 102.714 96.6729 102.687L117.056 100.72C117.348 100.693 117.641 100.876 117.723 101.132L118.766 104.599C118.84 104.855 118.666 105.084 118.373 105.111V105.102Z" fill="var(--sapContent_Illustrative_Color2)"/>
10
+ <path d="M124.896 115.268L101 117.829C100.698 117.866 100.397 117.674 100.314 117.408L99.2895 113.831C99.2164 113.566 99.3993 113.328 99.7012 113.301L123.551 110.822C123.844 110.794 124.146 110.977 124.219 111.233L125.28 114.737C125.363 114.993 125.189 115.231 124.896 115.259V115.268Z" fill="var(--sapContent_Illustrative_Color2)"/>
11
+ <path d="M128.116 125.917L104.101 128.671C103.799 128.707 103.488 128.515 103.415 128.25L102.381 124.627C102.308 124.362 102.491 124.124 102.793 124.087L126.762 121.416C127.055 121.38 127.357 121.572 127.439 121.828L128.518 125.387C128.601 125.652 128.427 125.89 128.134 125.917H128.116Z" fill="var(--sapContent_Illustrative_Color2)"/>
12
+ <path d="M125.709 137.405L107.248 139.656C106.946 139.692 106.635 139.5 106.553 139.235L105.5 135.557C105.427 135.292 105.61 135.045 105.912 135.008L124.328 132.822C124.621 132.785 124.932 132.977 125.005 133.243L126.084 136.865C126.167 137.131 125.984 137.378 125.691 137.414L125.709 137.405Z" fill="var(--sapContent_Illustrative_Color2)"/>
13
+ <path d="M134.693 147.662L110.441 150.809C110.13 150.846 109.819 150.663 109.746 150.388L108.675 146.656C108.593 146.381 108.785 146.134 109.087 146.088L133.294 143.024C133.587 142.987 133.898 143.17 133.98 143.445L135.087 147.104C135.169 147.369 134.995 147.625 134.693 147.662Z" fill="var(--sapContent_Illustrative_Color2)"/>
14
+ <path d="M160.255 90.5568L141.143 92.3225C140.86 92.3499 140.567 92.167 140.494 91.9199L139.424 88.5625C139.341 88.3155 139.506 88.0959 139.79 88.0685L158.864 86.3577C159.138 86.3303 159.422 86.5132 159.504 86.7511L160.602 90.0628C160.684 90.3098 160.529 90.5202 160.255 90.5477V90.5568Z" fill="var(--sapContent_Illustrative_Color2)"/>
15
+ <path d="M166.732 100.282L144.391 102.514C144.108 102.541 143.815 102.358 143.733 102.111L142.653 98.708C142.571 98.461 142.735 98.2323 143.019 98.2048L165.323 96.0458C165.597 96.0184 165.881 96.1922 165.963 96.4392L167.079 99.7875C167.162 100.035 167.006 100.254 166.732 100.282Z" fill="var(--sapContent_Illustrative_Color2)"/>
16
+ <path d="M170.116 110.427L147.675 112.833C147.392 112.861 147.099 112.687 147.016 112.431L145.919 108.982C145.836 108.726 146.001 108.497 146.285 108.469L168.689 106.137C168.964 106.109 169.256 106.283 169.339 106.53L170.473 109.924C170.555 110.171 170.4 110.4 170.125 110.427H170.116Z" fill="var(--sapContent_Illustrative_Color2)"/>
17
+ <path d="M168.241 121.324L151.005 123.3C150.721 123.336 150.419 123.153 150.337 122.897L149.23 119.393C149.148 119.137 149.313 118.908 149.596 118.872L166.804 116.96C167.079 116.932 167.372 117.106 167.454 117.362L168.597 120.811C168.68 121.068 168.524 121.296 168.25 121.333L168.241 121.324Z" fill="var(--sapContent_Illustrative_Color2)"/>
18
+ <path d="M177.023 131.139L154.372 133.902C154.088 133.939 153.786 133.756 153.704 133.49L152.579 129.941C152.497 129.685 152.661 129.447 152.945 129.41L175.551 126.72C175.825 126.684 176.118 126.867 176.209 127.123L177.371 130.609C177.453 130.865 177.298 131.103 177.023 131.13V131.139Z" fill="var(--sapContent_Illustrative_Color2)"/>
19
+ <path d="M177.334 142.128L157.793 144.662C157.509 144.699 157.207 144.516 157.116 144.25L155.972 140.655C155.89 140.39 156.055 140.152 156.338 140.115L175.843 137.645C176.117 137.609 176.419 137.792 176.501 138.048L177.672 141.588C177.755 141.844 177.599 142.091 177.325 142.128H177.334Z" fill="var(--sapContent_Illustrative_Color2)"/>
20
+ <path d="M205.567 86.3673L184.617 88.3067C184.351 88.3342 184.068 88.1603 183.985 87.9225L182.851 84.6748C182.769 84.4369 182.915 84.2265 183.18 84.1991L204.094 82.3237C204.35 82.2962 204.624 82.47 204.707 82.7079L205.868 85.9007C205.951 86.1385 205.814 86.349 205.557 86.3673H205.567Z" fill="var(--sapContent_Illustrative_Color2)"/>
21
+ <path d="M203.133 96.6512L188.048 98.1516C187.782 98.179 187.499 98.0052 187.416 97.7582L186.273 94.4648C186.191 94.2269 186.337 94.0074 186.602 93.9799L201.661 92.5253C201.917 92.4979 202.2 92.6717 202.283 92.9095L203.454 96.1572C203.536 96.3951 203.399 96.6147 203.143 96.6329L203.133 96.6512Z" fill="var(--sapContent_Illustrative_Color2)"/>
22
+ <path d="M206.673 106.512L191.523 108.131C191.258 108.159 190.974 107.985 190.883 107.738L189.721 104.399C189.639 104.152 189.785 103.932 190.051 103.905L205.173 102.331C205.429 102.304 205.713 102.477 205.804 102.715L206.984 106.009C207.076 106.246 206.929 106.466 206.673 106.503V106.512Z" fill="var(--sapContent_Illustrative_Color2)"/>
23
+ <path d="M216.252 115.824L195.046 118.249C194.78 118.276 194.488 118.102 194.405 117.855L193.225 114.47C193.143 114.223 193.289 113.995 193.554 113.967L214.724 111.607C214.98 111.579 215.264 111.753 215.355 111.991L216.563 115.312C216.654 115.559 216.517 115.779 216.252 115.806V115.824Z" fill="var(--sapContent_Illustrative_Color2)"/>
24
+ <path d="M216.902 126.263L198.614 128.495C198.349 128.532 198.056 128.349 197.965 128.102L196.775 124.671C196.684 124.424 196.839 124.195 197.105 124.159L215.365 121.991C215.63 121.963 215.914 122.137 215.996 122.384L217.213 125.76C217.304 126.007 217.167 126.236 216.902 126.263Z" fill="var(--sapContent_Illustrative_Color2)"/>
25
+ <path d="M218.575 136.766L202.227 138.889C201.953 138.925 201.669 138.742 201.578 138.486L200.37 135.01C200.279 134.754 200.425 134.525 200.699 134.488L217.02 132.421C217.285 132.384 217.569 132.567 217.661 132.814L218.896 136.245C218.987 136.501 218.85 136.73 218.584 136.766H218.575Z" fill="var(--sapContent_Illustrative_Color2)"/>
26
+ <path d="M182.373 94.0301L206.821 163.404C207.371 165.409 209.325 166.702 211.381 166.437L254.903 159.791C257.529 159.455 261.338 155.991 260.779 152.582L232.409 87.3939C231.788 85.6229 230.068 84.483 228.206 84.6051L187.091 85.6873C184.465 86.5728 181.05 89.7858 182.373 94.0301Z" fill="var(--sapContent_Illustrative_Color14)"/>
27
+ <path d="M184.54 90.7067L209.161 160.396C209.711 162.401 211.665 163.694 213.721 163.429L257.354 156.875C259.98 156.539 261.639 153.862 260.764 151.358L234.749 84.3759C234.128 82.6049 232.408 81.4649 230.545 81.5871L188.306 85.4242C185.66 85.5871 183.838 88.1418 184.54 90.6965V90.7067Z" fill="var(--sapContent_Illustrative_Color2)"/>
28
+ <path d="M225.14 97.1186L202.239 99.7446C201.954 99.7751 201.649 99.6021 201.547 99.3476L200.265 95.9482C200.173 95.7039 200.326 95.4698 200.611 95.4392L223.471 92.8438C223.756 92.8133 224.061 92.9863 224.153 93.2306L225.466 96.6097C225.557 96.854 225.415 97.0881 225.13 97.1186H225.14Z" fill="var(--sapContent_Illustrative_Color8)"/>
29
+ <path d="M222.555 108.08L206.118 110.014C205.833 110.045 205.517 109.872 205.426 109.617L204.133 106.187C204.041 105.933 204.194 105.709 204.479 105.668L220.896 103.754C221.181 103.724 221.487 103.897 221.588 104.151L222.901 107.561C222.993 107.816 222.84 108.039 222.566 108.08H222.555Z" fill="var(--sapContent_Illustrative_Color8)"/>
30
+ <path d="M226.525 118.401L210.036 120.396C209.751 120.427 209.436 120.254 209.344 119.999L208.041 116.539C207.95 116.284 208.102 116.05 208.387 116.02L224.855 114.045C225.14 114.014 225.446 114.187 225.548 114.442L226.871 117.882C226.973 118.137 226.82 118.371 226.535 118.401H226.525Z" fill="var(--sapContent_Illustrative_Color8)"/>
31
+ <path d="M237.11 127.988L213.985 130.859C213.7 130.899 213.385 130.716 213.283 130.462L211.97 126.971C211.878 126.716 212.031 126.482 212.316 126.441L235.41 123.602C235.695 123.571 236.011 123.744 236.102 123.999L237.446 127.459C237.548 127.714 237.395 127.948 237.11 127.988Z" fill="var(--sapContent_Illustrative_Color8)"/>
32
+ <path d="M237.873 138.879L217.974 141.414C217.679 141.455 217.374 141.271 217.272 141.007L215.939 137.485C215.837 137.231 216 136.986 216.285 136.956L236.163 134.452C236.448 134.411 236.763 134.594 236.865 134.849L238.219 138.35C238.32 138.605 238.168 138.849 237.883 138.879H237.873Z" fill="var(--sapContent_Illustrative_Color8)"/>
33
+ <path d="M239.746 149.749L221.985 152.07C221.69 152.111 221.375 151.927 221.283 151.663L219.94 148.111C219.838 147.846 220.001 147.612 220.286 147.571L238.016 145.281C238.301 145.24 238.617 145.424 238.718 145.678L240.082 149.21C240.184 149.474 240.031 149.709 239.746 149.749Z" fill="var(--sapContent_Illustrative_Color8)"/>
34
+ <path d="M218.237 117.933C218.237 117.933 212.19 126.149 200.446 127.675C188.701 129.201 172.591 120.507 168.382 107.133C163.808 92.598 172.176 82.6374 186.476 79.5379C199.567 78.4941 218.237 117.933 218.237 117.933Z" fill="var(--sapContent_Illustrative_Color16)"/>
35
+ <path d="M219.825 99.5875C224.687 112.315 217.872 124.275 204.155 125.939C190.1 127.642 174.935 117.864 170.726 104.483C166.659 91.5603 174.551 80.5229 187.939 79.4522C201.03 78.4084 215.125 87.2639 219.832 99.5808L219.825 99.5875Z" fill="var(--sapContent_Illustrative_Color15)"/>
36
+ <path d="M209.06 98.6904C208.939 98.3673 208.615 98.1667 208.272 98.2019L198.315 99.2228C197.968 99.2583 197.642 99.0537 197.524 98.7264L194.319 89.893C194.202 89.5688 193.881 89.3646 193.537 89.3957L188.283 89.8721C187.789 89.9169 187.47 90.4151 187.636 90.8823L190.544 99.0724C190.709 99.5361 190.395 100.032 189.906 100.082L180.236 101.074C179.75 101.124 179.437 101.613 179.595 102.075L181.224 106.837C181.339 107.173 181.672 107.384 182.025 107.346L192.458 106.201C192.808 106.163 193.139 106.37 193.256 106.702L196.534 115.927C196.653 116.261 196.988 116.469 197.341 116.426L202.718 115.773C203.203 115.715 203.507 115.22 203.34 114.761L200.267 106.291C200.099 105.829 200.409 105.331 200.898 105.278L210.141 104.266C210.634 104.212 210.943 103.708 210.769 103.244L209.06 98.6904Z" fill="var(--sapContent_Illustrative_Color8)"/>
37
+ </svg>
38
+ `;
@@ -0,0 +1,54 @@
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-BalloonSky">
2
+ <mask id="mask0_11_137" 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 20V20Z" fill="var(--sapContent_Illustrative_Color7)"/>
4
+ </mask>
5
+ <g mask="url(#mask0_11_137)">
6
+ <mask id="mask1_11_137" class="sapIllus_MaskTypeAlpha" maskUnits="userSpaceOnUse" x="0" y="20" width="320" height="200">
7
+ <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 20V20Z" fill="var(--sapContent_Illustrative_Color7)"/>
8
+ </mask>
9
+ <g mask="url(#mask1_11_137)">
10
+ <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 20V20Z" fill="var(--sapContent_Illustrative_Color7)"/>
11
+ <path d="M314.227 135.764C282.794 132.922 251.467 137.336 220.327 141.258C199.179 143.922 177.987 146.199 156.846 148.939C135.487 151.707 114.128 154.541 92.6914 156.675C82.0144 157.736 71.3237 158.655 60.6111 159.283C50.1589 159.895 39.5203 158.867 29.0982 158.087C19.4163 157.361 9.70966 156.595 0.00854492 156.293V220.392H320V136.269C318.081 136.101 316.16 135.94 314.23 135.764H314.227Z" fill="var(--sapContent_Illustrative_Color18)"/>
12
+ <path d="M61.4825 160.759C62.1925 160.893 39.7722 166.827 35.6083 167.71C40.8467 169.265 101.548 174.513 126.383 172.113C139.314 170.862 151.748 168.27 164.352 165.241C174.527 162.794 184.963 160.954 194.721 157.086C186.465 157.209 169.193 158.817 169.785 158.537C184.135 151.712 200.286 149.841 215.267 144.789C220.105 143.159 224.932 141.475 229.834 140.054C226.665 140.454 223.496 140.858 220.327 141.258C199.179 143.922 177.986 146.199 156.846 148.939C135.487 151.707 114.127 154.54 92.6911 156.674C82.0141 157.736 71.3234 158.655 60.6108 159.283C56.7731 159.508 52.908 159.508 49.0402 159.385C53.2095 159.615 57.3652 159.98 61.4852 160.759H61.4825Z" fill="var(--sapContent_Illustrative_Color18)"/>
13
+ <g class="sapIllus_BlendModeMultiply" opacity="0.4">
14
+ <path d="M314.227 135.764C290.083 133.583 266.004 135.681 242.026 138.548C242.816 138.556 243.6 138.542 244.392 138.559C252.915 138.748 262.618 138.625 270.713 141.664C272.511 142.339 275.549 143.631 275.379 146.042C275.105 149.948 269.559 152.667 266.585 153.962C259.184 157.187 250.944 159.143 243.079 160.858C233.378 162.97 223.447 164.627 213.565 165.642C195.407 167.507 176.819 167.186 159.017 171.578C172.268 172.724 199.73 174.11 198.863 174.143C190.001 174.497 181.303 176.151 172.619 177.854C189.247 179.459 205.936 180.227 222.493 182.556C231.725 183.853 240.853 185.485 250.006 187.244C254.348 188.075 258.751 188.536 263.068 189.49C267.037 190.368 272.158 191.345 274.992 194.551C276.464 196.219 276.237 198.469 274.406 199.725C271.547 201.692 267.651 202.136 264.296 202.523C259.976 203.019 255.623 203.203 251.278 203.244C234.483 203.404 217.745 203.897 201.013 201.958C180.709 199.607 160.281 197.347 140.539 191.88C130.27 189.038 120.098 185.779 109.717 183.36C99.4647 180.973 89.0975 179.113 78.6727 177.681C67.8888 176.2 56.9678 174.776 46.0907 174.208C35.5947 173.66 13.7089 172.76 14.4106 172.532C20.6907 170.483 27.1243 169.065 33.6347 168.045C29.257 167.949 24.8491 168.533 20.4632 168.585C19.7423 168.593 31.3266 164.942 36.9022 164.07C26.9407 161.777 11.4337 168.366 5.84985 157.473C5.66071 157.102 5.81696 156.721 6.17331 156.551C4.11741 156.45 2.05877 156.356 0.00012207 156.29V220.389H319.992V136.268C318.073 136.101 316.151 135.939 314.222 135.764H314.227Z" fill="var(--sapContent_Illustrative_Color18)"/>
15
+ </g>
16
+ </g>
17
+ <ellipse cx="294.667" cy="40.6667" rx="2.66666" ry="2.66667" fill="var(--sapContent_Illustrative_Color10)"/>
18
+ <circle cx="170" cy="46.6667" r="2" fill="var(--sapContent_Illustrative_Color10)"/>
19
+ <ellipse cx="104" cy="88.6667" rx="1.33334" ry="1.33333" fill="var(--sapContent_Illustrative_Color10)"/>
20
+ <ellipse cx="257.333" cy="44.6667" rx="1.33334" ry="1.33333" fill="var(--sapContent_Illustrative_Color10)"/>
21
+ <ellipse cx="305.333" cy="78" rx="1.33333" ry="1.33334" fill="var(--sapContent_Illustrative_Color10)"/>
22
+ <ellipse cx="45.3333" cy="59.3333" rx="1.33333" ry="1.33333" fill="var(--sapContent_Illustrative_Color10)"/>
23
+ <ellipse cx="104.667" cy="28" rx="2" ry="2" fill="var(--sapContent_Illustrative_Color10)"/>
24
+ <circle cx="30" cy="92" r="2" fill="var(--sapContent_Illustrative_Color10)"/>
25
+ <path d="M88.0122 144.846V214.478H95.6429C95.8949 214.482 96.1355 214.584 96.3124 214.764C96.4894 214.943 96.5886 215.186 96.5886 215.438V173.5C96.6154 173.323 96.6787 173.153 96.7745 173.001C96.8704 172.849 96.9969 172.719 97.1457 172.618L109.946 166.249V144.846C109.946 144.591 109.844 144.347 109.665 144.167C109.485 143.987 109.241 143.886 108.987 143.886H88.9709C88.845 143.886 88.7203 143.911 88.604 143.959C88.4877 144.007 88.3821 144.078 88.2931 144.167C88.2041 144.256 88.1333 144.362 88.0851 144.478C88.0369 144.595 88.0122 144.72 88.0122 144.846V144.846Z" fill="var(--sapContent_Illustrative_Color20)"/>
26
+ <path d="M74.6682 223.637V110.407C74.6683 110.199 74.6016 109.998 74.4778 109.832C74.354 109.666 74.1801 109.544 73.9817 109.486L59.1479 105.166L28.2107 96.1765C28.0694 96.134 27.9202 96.1253 27.7749 96.1509C27.6296 96.1765 27.4922 96.2357 27.3738 96.3239C27.2555 96.4122 27.1594 96.5269 27.0933 96.659C27.0272 96.7911 26.9929 96.9369 26.993 97.0846C26.993 99.5493 26.993 104.751 26.993 104.945V110.861H32.3046C34.1372 110.864 35.8936 111.595 37.1882 112.894C38.4828 114.193 39.2097 115.953 39.2097 117.788C39.1994 118.118 39.1692 118.447 39.1191 118.773H41.9305C43.7652 118.773 45.5248 119.503 46.8222 120.802C48.1196 122.101 48.8485 123.863 48.8485 125.7C48.8485 127.537 48.1196 129.299 46.8222 130.598C45.5248 131.897 43.7652 132.627 41.9305 132.627H27.006V187.433C27.0165 187.502 27.0165 187.572 27.006 187.641C26.9627 187.867 26.8383 188.07 26.6562 188.211L7.22333 202.117C7.17743 202.153 7.13978 202.198 7.11294 202.249C7.0861 202.301 7.07072 202.357 7.06787 202.415V223.663C7.07186 223.727 7.09331 223.789 7.12986 223.841C7.16641 223.894 7.21669 223.936 7.2752 223.961C7.33062 223.974 7.38821 223.974 7.44362 223.961H74.3573C74.4371 223.948 74.5105 223.909 74.5665 223.851C74.6225 223.793 74.6582 223.718 74.6682 223.637V223.637Z" fill="var(--sapContent_Illustrative_Color20)"/>
27
+ <path d="M95.6301 214.478H83.2448C82.9905 214.478 82.7468 214.579 82.567 214.76C82.3872 214.94 82.2861 215.184 82.2861 215.438V224.026H96.5369V215.438C96.5372 215.192 96.4434 214.956 96.2747 214.777C96.106 214.599 95.8753 214.492 95.6301 214.478V214.478Z" fill="var(--sapContent_Illustrative_Color20)"/>
28
+ <path d="M127.888 157.312L109.932 166.25L97.1327 172.619C96.9839 172.72 96.8575 172.85 96.7616 173.002C96.6657 173.153 96.6024 173.323 96.5756 173.501V224.091H82.3248V215.504C82.3248 215.249 82.4259 215.005 82.6057 214.825C82.7855 214.645 83.0292 214.544 83.2835 214.544H88.0122V144.911C88.0122 144.657 88.1133 144.413 88.2931 144.233C88.4729 144.053 88.7166 143.952 88.9709 143.952H103.947V91.9347V77.7177V59.2978C103.924 58.9388 103.762 58.6029 103.496 58.3609C103.23 58.1189 102.881 57.9898 102.522 58.0006H60.3269C59.42 58.0006 59.1609 58.5195 59.1609 59.2978V105.101L73.9947 109.421C74.1931 109.479 74.3671 109.601 74.4908 109.767C74.6146 109.933 74.6813 110.135 74.6812 110.342V223.572C74.6779 223.67 74.6368 223.762 74.5667 223.83C74.4966 223.898 74.4031 223.935 74.3056 223.935H128.99V158.143C129.013 158.002 128.997 157.858 128.945 157.726C128.892 157.594 128.804 157.479 128.69 157.393C128.577 157.308 128.442 157.255 128.301 157.241C128.159 157.226 128.017 157.251 127.888 157.312V157.312ZM113.728 193.024C113.728 193.086 113.716 193.148 113.692 193.205C113.667 193.263 113.632 193.315 113.587 193.359C113.543 193.402 113.49 193.436 113.431 193.459C113.373 193.482 113.311 193.492 113.249 193.491H103.727C103.602 193.491 103.482 193.442 103.392 193.355C103.303 193.267 103.251 193.149 103.248 193.024V183.477C103.248 182.085 103.8 180.75 104.782 179.766C105.765 178.782 107.098 178.229 108.488 178.229C109.878 178.229 111.211 178.782 112.193 179.766C113.176 180.75 113.728 182.085 113.728 183.477V193.024Z" fill="var(--sapContent_Illustrative_Color19)"/>
29
+ <path d="M108.495 178.222C107.125 178.239 105.817 178.791 104.849 179.76C103.881 180.73 103.329 182.04 103.312 183.41V192.958C103.316 193.083 103.368 193.202 103.457 193.289C103.547 193.376 103.667 193.425 103.792 193.425H113.314C113.376 193.426 113.438 193.416 113.496 193.393C113.554 193.37 113.607 193.336 113.652 193.293C113.697 193.249 113.732 193.197 113.757 193.139C113.781 193.082 113.793 193.02 113.793 192.958V183.41C113.776 182.019 113.209 180.692 112.215 179.719C111.222 178.746 109.884 178.208 108.495 178.222V178.222Z" fill="var(--sapContent_Illustrative_Color18)"/>
30
+ <path d="M48.8616 125.714C48.8616 123.877 48.1326 122.115 46.8352 120.816C45.5379 119.517 43.7781 118.788 41.9434 118.788H39.1322C39.1822 118.461 39.2124 118.132 39.2228 117.802C39.2228 115.967 38.4958 114.207 37.2012 112.908C35.9066 111.609 34.1502 110.878 32.3177 110.875H9.91805C8.08326 110.875 6.32371 111.604 5.02631 112.903C3.72892 114.203 3 115.964 3 117.802C3 119.639 3.72892 121.401 5.02631 122.7C6.32371 123.999 8.08326 124.729 9.91805 124.729H12.7294C12.6686 125.054 12.634 125.384 12.6258 125.714C12.6258 127.552 13.3546 129.313 14.652 130.613C15.9494 131.912 17.7091 132.641 19.5439 132.641H41.9434C43.7781 132.641 45.5379 131.912 46.8352 130.613C48.1326 129.313 48.8616 127.552 48.8616 125.714Z" fill="var(--sapContent_Illustrative_Color19)"/>
31
+ <path d="M16.733 58.5036C16.0693 61.7677 10.5904 65.0905 9.65688 65.5693C9.58096 65.5883 9.50193 65.5913 9.42478 65.5782C9.34762 65.5651 9.27403 65.5361 9.20864 65.4931C7.31994 62.9602 4.79152 59.7853 5.38337 56.2209C5.97522 52.6565 9.11508 50.4587 12.3463 51.1158C15.5776 51.773 17.4532 54.9653 16.733 58.5036Z" fill="var(--sapContent_Illustrative_Color3)"/>
32
+ <path d="M6.39944 54.9762C6.36133 54.9765 6.32381 54.9667 6.29065 54.9479C6.24088 54.9192 6.20448 54.872 6.18939 54.8166C6.17431 54.7611 6.18177 54.7019 6.21014 54.652C6.30611 54.4818 6.41447 54.3189 6.53435 54.1645C6.55231 54.1422 6.5745 54.1236 6.59967 54.1099C6.62483 54.0961 6.65246 54.0875 6.68097 54.0844C6.70948 54.0814 6.73831 54.084 6.7658 54.0922C6.79329 54.1003 6.8189 54.1138 6.84116 54.1319C6.86335 54.15 6.88175 54.1723 6.8953 54.1976C6.90884 54.2228 6.91728 54.2505 6.92011 54.279C6.92294 54.3075 6.92011 54.3363 6.91179 54.3637C6.90347 54.3911 6.88982 54.4166 6.87162 54.4387C6.76757 54.5772 6.67306 54.7226 6.58875 54.8739C6.56877 54.9059 6.54081 54.9322 6.50762 54.9501C6.47444 54.968 6.43716 54.977 6.39944 54.9762V54.9762Z" fill="var(--sapContent_Illustrative_Color15)"/>
33
+ <path d="M5.68578 79C5.66154 78.9997 5.6377 78.9937 5.61615 78.9826C5.59927 78.9735 5.58436 78.9611 5.57226 78.9462C5.56016 78.9313 5.55112 78.9142 5.54566 78.8958C5.54021 78.8774 5.53844 78.8581 5.54045 78.839C5.54247 78.8199 5.54823 78.8014 5.55741 78.7846C5.65097 78.6083 5.67926 78.469 5.63791 78.3885C5.59657 78.308 5.56176 78.3211 5.47472 78.2884C5.34306 78.2538 5.23043 78.1686 5.16139 78.0512C5.13236 77.9862 5.11828 77.9155 5.12016 77.8444C5.12204 77.7732 5.13985 77.7033 5.17227 77.6399C5.21377 77.5232 5.24151 77.4019 5.25495 77.2787C5.26606 77.1788 5.25869 77.0778 5.23319 76.9806C5.20764 76.8849 5.19808 76.7856 5.20491 76.6868C5.22231 76.4409 5.22449 76.2103 5.22667 75.9665C5.22884 75.7228 5.22666 75.5096 5.24189 75.2267C5.30475 74.5607 5.4094 73.8993 5.55523 73.2465C5.61666 73.0185 5.65744 72.7854 5.67708 72.5501C5.62703 71.8799 6.39949 70.9442 6.96305 70.2587C7.11887 70.0863 7.2642 69.9046 7.39823 69.7147C8.01275 68.6787 8.57343 67.6118 9.07805 66.5181C9.09455 66.4832 9.1242 66.4563 9.16049 66.4432C9.19679 66.4302 9.23678 66.432 9.27171 66.4484C9.28889 66.4564 9.30434 66.4676 9.31715 66.4816C9.32996 66.4955 9.33989 66.5119 9.34636 66.5297C9.35283 66.5475 9.35572 66.5664 9.35486 66.5853C9.354 66.6042 9.3494 66.6228 9.34134 66.6399C8.83322 67.7435 8.26817 68.8199 7.64846 69.8648C7.51049 70.0671 7.36083 70.2611 7.20022 70.4459C6.69759 71.0552 5.93819 71.9691 5.97953 72.5305C5.96325 72.7985 5.91876 73.064 5.8468 73.3226C5.70847 73.9552 5.60748 74.5953 5.54435 75.2397C5.53129 75.5161 5.52912 75.7468 5.52912 75.9687C5.52912 76.1907 5.52912 76.4518 5.50736 76.7086C5.50118 76.7818 5.50856 76.8556 5.52912 76.9262C5.56063 77.0535 5.56947 77.1854 5.55523 77.3157C5.54153 77.4642 5.50937 77.6104 5.45949 77.7509C5.42032 77.8684 5.41162 77.9011 5.4312 77.9381C5.45079 77.9751 5.50301 78.0034 5.58787 78.0338C5.71243 78.067 5.82116 78.1433 5.89467 78.2492C5.93798 78.3589 5.9533 78.4775 5.93924 78.5946C5.92518 78.7116 5.8822 78.8232 5.81416 78.9195C5.8022 78.9434 5.7839 78.9635 5.76126 78.9777C5.73862 78.9919 5.71251 78.9996 5.68578 79V79Z" fill="var(--sapContent_Illustrative_Color6)"/>
34
+ <path d="M9.20865 65.4866L8.55587 66.357C8.5433 66.3742 8.53535 66.3943 8.53277 66.4154C8.5302 66.4365 8.5331 66.4579 8.54118 66.4776C8.54926 66.4972 8.56226 66.5145 8.57894 66.5277C8.59561 66.5409 8.61539 66.5496 8.63638 66.5529L9.81574 66.7705C9.83645 66.7736 9.85762 66.7714 9.87727 66.7642C9.89691 66.7569 9.9144 66.7448 9.92809 66.7289C9.94177 66.713 9.95122 66.694 9.95554 66.6735C9.95987 66.653 9.95893 66.6317 9.95282 66.6117L9.65036 65.5519" fill="var(--sapContent_Illustrative_Color3)"/>
35
+ <path d="M289.191 61.6667H263.923C262.898 61.6667 261.882 61.865 260.935 62.2503C259.988 62.6355 259.127 63.2003 258.402 63.9122C257.676 64.6241 257.101 65.4693 256.709 66.3994C256.316 67.3296 256.114 68.3265 256.114 69.3333C256.114 70.3401 256.316 71.3371 256.709 72.2672C257.101 73.1974 257.676 74.0426 258.402 74.7545C259.127 75.4664 259.988 76.0311 260.935 76.4164C261.882 76.8017 262.898 77 263.923 77H289.191C291.262 77 293.248 76.1923 294.713 74.7545C296.177 73.3167 297 71.3667 297 69.3333C297 67.3 296.177 65.35 294.713 63.9122C293.248 62.4744 291.262 61.6667 289.191 61.6667V61.6667Z" fill="var(--sapContent_Illustrative_Color18)"/>
36
+ <path d="M276.076 54H250.809C249.784 54 248.768 54.1983 247.821 54.5836C246.873 54.9689 246.012 55.5336 245.287 56.2455C244.562 56.9574 243.987 57.8026 243.594 58.7328C243.202 59.6629 243 60.6599 243 61.6667C243 62.6735 243.202 63.6704 243.594 64.6006C243.987 65.5307 244.562 66.3759 245.287 67.0878C246.012 67.7997 246.873 68.3645 247.821 68.7497C248.768 69.135 249.784 69.3333 250.809 69.3333H276.076C278.148 69.3333 280.134 68.5256 281.598 67.0878C283.063 65.65 283.886 63.7 283.886 61.6667C283.886 59.6333 283.063 57.6833 281.598 56.2455C280.134 54.8077 278.148 54 276.076 54V54Z" fill="var(--sapContent_Illustrative_Color18)"/>
37
+ <path d="M137.511 146.787C137.404 146.756 137.313 146.683 137.26 146.584C137.206 146.486 137.194 146.37 137.226 146.263C137.391 145.7 137.379 145.285 137.21 145.086C137.041 144.887 136.95 144.931 136.674 144.928C136.276 144.907 135.902 144.733 135.631 144.442C135.508 144.273 135.425 144.079 135.387 143.874C135.349 143.668 135.358 143.457 135.412 143.255C135.462 142.896 135.467 142.532 135.426 142.172C135.399 141.88 135.316 141.595 135.183 141.333C135.052 141.087 134.962 140.82 134.918 140.544C134.827 139.849 134.923 139.141 135.195 138.495C134.657 137.87 134.292 137.116 134.135 136.306C133.921 135.007 134.424 133.663 134.945 132.281C134.987 132.138 135.028 132 135.066 131.87C135.312 131.324 135.46 130.74 135.504 130.144C135.532 129.577 135.459 129.009 135.287 128.467C134.629 126.241 135.844 122.193 136.813 119.338L136.844 119.234C137.969 115.894 138.918 112.498 139.687 109.058C139.694 108.998 139.713 108.94 139.744 108.888C139.774 108.837 139.816 108.792 139.865 108.757C139.914 108.722 139.97 108.698 140.029 108.686C140.088 108.674 140.149 108.675 140.208 108.688C140.267 108.701 140.322 108.727 140.371 108.763C140.419 108.799 140.459 108.845 140.488 108.898C140.518 108.951 140.536 109.009 140.541 109.069C140.546 109.129 140.539 109.19 140.519 109.247C139.742 112.715 138.785 116.139 137.651 119.507L137.644 119.534C136.203 123.77 135.694 126.654 136.118 128.108C136.329 128.751 136.419 129.428 136.382 130.104C136.338 130.791 136.171 131.463 135.889 132.091C135.851 132.222 135.812 132.352 135.772 132.49C135.257 133.851 134.811 135.049 134.997 136.105C135.095 136.651 135.318 137.166 135.647 137.612C136.01 137.059 136.558 136.654 137.192 136.468C138.018 136.271 139.106 136.507 139.43 137.241C139.508 137.447 139.539 137.669 139.52 137.888C139.501 138.108 139.432 138.32 139.319 138.509C139.193 138.802 139 139.061 138.756 139.266C138.512 139.472 138.223 139.617 137.913 139.69C137.602 139.764 137.279 139.764 136.969 139.69C136.659 139.617 136.37 139.471 136.126 139.266L135.898 139.1C135.774 139.498 135.737 139.919 135.79 140.333C135.814 140.536 135.877 140.733 135.975 140.913C136.147 141.257 136.254 141.631 136.289 142.015C136.336 142.439 136.331 142.867 136.276 143.29C136.235 143.647 136.234 143.746 136.312 143.84C136.391 143.935 136.555 143.983 136.819 144.025C137.219 144.043 137.596 144.216 137.871 144.506C138.065 144.792 138.183 145.121 138.215 145.465C138.246 145.809 138.19 146.155 138.052 146.471C138.021 146.579 137.947 146.67 137.849 146.725C137.75 146.78 137.634 146.793 137.526 146.763L137.511 146.787ZM136.239 138.305C136.351 138.407 136.47 138.502 136.596 138.588C136.906 138.835 137.3 138.952 137.694 138.911C137.88 138.85 138.051 138.752 138.197 138.623C138.344 138.494 138.463 138.337 138.548 138.161C138.648 137.998 138.683 137.802 138.645 137.614C138.48 137.46 138.278 137.352 138.058 137.302C137.837 137.252 137.608 137.262 137.393 137.33C136.895 137.492 136.481 137.841 136.239 138.305V138.305Z" fill="var(--sapContent_Illustrative_Color6)"/>
38
+ <path d="M166.938 85.7617C163.686 95.9023 145.062 104.539 141.951 105.739C141.703 105.772 141.451 105.752 141.211 105.681C140.972 105.611 140.749 105.491 140.559 105.329C135.441 96.6083 128.519 85.622 131.654 74.5021C134.79 63.3822 145.549 57.4938 155.571 60.7107C165.593 63.9277 170.48 74.7332 166.938 85.7617Z" fill="var(--sapContent_Illustrative_Color3)"/>
39
+ <path d="M140.561 105.322L138.194 107.879C138.147 107.929 138.114 107.991 138.098 108.058C138.082 108.125 138.084 108.194 138.103 108.26C138.123 108.326 138.159 108.386 138.208 108.434C138.258 108.481 138.319 108.516 138.385 108.532L142.066 109.617C142.131 109.635 142.199 109.635 142.264 109.619C142.33 109.603 142.39 109.57 142.439 109.524C142.488 109.478 142.525 109.42 142.545 109.356C142.566 109.292 142.57 109.224 142.556 109.158L141.975 105.682" fill="var(--sapContent_Illustrative_Color3)"/>
40
+ <path d="M138.122 67.3843C138.062 67.3651 138.006 67.3365 137.955 67.2995C137.913 67.262 137.879 67.2165 137.854 67.1656C137.83 67.1148 137.815 67.0596 137.812 67.0032C137.809 66.9468 137.817 66.8903 137.836 66.837C137.854 66.7837 137.883 66.7347 137.921 66.6926C139.528 64.9899 141.459 63.6263 143.601 62.6821C143.652 62.6497 143.709 62.6283 143.768 62.6194C143.828 62.6105 143.889 62.6143 143.947 62.6305C144.005 62.6467 144.059 62.6749 144.106 62.7134C144.152 62.7519 144.19 62.7997 144.217 62.8538C144.243 62.9078 144.258 62.9669 144.261 63.0272C144.263 63.0875 144.253 63.1476 144.23 63.2036C144.208 63.2596 144.174 63.3102 144.131 63.3522C144.087 63.3942 144.036 63.4267 143.979 63.4474C141.935 64.3483 140.09 65.6478 138.554 67.2699C138.5 67.328 138.431 67.3697 138.355 67.3899C138.278 67.4102 138.198 67.4082 138.122 67.3843Z" fill="var(--sapContent_Illustrative_Color15)"/>
41
+ <path d="M135.284 70.6262L135.146 70.5857C135.101 70.5532 135.062 70.5118 135.032 70.464C135.003 70.4162 134.983 70.363 134.974 70.3074C134.965 70.2519 134.968 70.1952 134.981 70.1406C134.994 70.086 135.019 70.0347 135.052 69.9895C135.411 69.496 135.803 69.0276 136.226 68.5874C136.306 68.5085 136.415 68.4649 136.528 68.4662C136.641 68.4675 136.749 68.5136 136.828 68.5943C136.906 68.675 136.95 68.7838 136.949 68.8967C136.947 69.0096 136.901 69.1173 136.821 69.1963C136.426 69.5992 136.061 70.0308 135.73 70.4876C135.675 70.5499 135.605 70.5959 135.526 70.6204C135.448 70.6449 135.364 70.6469 135.284 70.6262V70.6262Z" fill="var(--sapContent_Illustrative_Color15)"/>
42
+ <path d="M212.485 151.086C209.86 156.041 199.43 158.799 197.695 159.128C197.563 159.123 197.434 159.09 197.315 159.032C197.197 158.974 197.092 158.892 197.007 158.792C195.162 153.802 192.59 147.471 195.243 141.997C197.895 136.522 204.012 134.468 208.918 137.067C213.823 139.666 215.333 145.714 212.485 151.086Z" fill="var(--sapContent_Illustrative_Color3)"/>
43
+ <path d="M197.476 140.47C197.415 140.453 197.359 140.419 197.314 140.373C197.247 140.303 197.211 140.209 197.213 140.113C197.215 140.016 197.255 139.924 197.325 139.857C197.561 139.628 197.814 139.416 198.081 139.224C198.12 139.196 198.165 139.177 198.212 139.167C198.259 139.156 198.308 139.156 198.356 139.164C198.403 139.173 198.448 139.191 198.489 139.217C198.529 139.243 198.564 139.277 198.592 139.317C198.619 139.357 198.638 139.402 198.648 139.449C198.658 139.496 198.658 139.545 198.649 139.592C198.64 139.64 198.622 139.685 198.595 139.725C198.569 139.765 198.535 139.8 198.495 139.827C198.261 140.001 198.039 140.191 197.831 140.395C197.783 140.438 197.726 140.467 197.664 140.48C197.601 140.493 197.537 140.49 197.476 140.47V140.47Z" fill="var(--sapContent_Illustrative_Color15)"/>
44
+ <path d="M197.01 158.781L195.542 159.876C195.513 159.898 195.491 159.927 195.476 159.959C195.462 159.992 195.457 160.028 195.46 160.064C195.464 160.099 195.477 160.133 195.498 160.163C195.518 160.192 195.546 160.215 195.578 160.231L197.379 161.144C197.411 161.158 197.447 161.165 197.482 161.163C197.517 161.16 197.551 161.149 197.581 161.13C197.61 161.111 197.635 161.084 197.651 161.053C197.668 161.022 197.677 160.988 197.676 160.952L197.692 159.097" fill="var(--sapContent_Illustrative_Color3)"/>
45
+ <path d="M105.04 43.631C102.653 48.136 93.1714 50.6434 91.5938 50.9423C91.4741 50.9373 91.3567 50.9076 91.2491 50.855C91.1415 50.8024 91.046 50.728 90.9686 50.6365C89.2919 46.1006 86.9537 40.3453 89.365 35.3685C91.7764 30.3916 97.3371 28.5236 101.797 30.8867C106.256 33.2498 107.628 38.7481 105.04 43.631Z" fill="var(--sapContent_Illustrative_Color1)"/>
46
+ <path d="M91.3956 33.9809C91.3395 33.9648 91.2886 33.9342 91.2481 33.8923C91.1874 33.8286 91.1544 33.7435 91.1563 33.6556C91.1581 33.5676 91.1947 33.484 91.2579 33.4229C91.4725 33.2146 91.7021 33.0223 91.9448 32.8476C91.9809 32.8226 92.0215 32.8049 92.0644 32.7956C92.1073 32.7863 92.1516 32.7856 92.1948 32.7934C92.2379 32.8013 92.2791 32.8177 92.316 32.8415C92.3528 32.8654 92.3845 32.8963 92.4094 32.9325C92.4341 32.9687 92.4515 33.0094 92.4605 33.0523C92.4694 33.0952 92.4698 33.1395 92.4617 33.1826C92.4535 33.2256 92.4369 33.2667 92.4128 33.3033C92.3887 33.34 92.3577 33.3715 92.3214 33.3961C92.1087 33.5544 91.907 33.727 91.7177 33.9126C91.6746 33.951 91.6222 33.9774 91.5657 33.9894C91.5092 34.0013 91.4506 33.9984 91.3956 33.9809V33.9809Z" fill="var(--sapContent_Illustrative_Color16)"/>
47
+ <path d="M79.952 68.9418C79.9165 68.9308 79.8841 68.9117 79.8573 68.8861C79.8364 68.8654 79.8199 68.8408 79.8086 68.8137C79.7973 68.7866 79.7914 68.7575 79.7914 68.7282C79.7913 68.6988 79.7971 68.6697 79.8083 68.6425C79.8195 68.6154 79.836 68.5907 79.8567 68.57C80.0704 68.3517 80.1722 68.1595 80.1463 68.0234C80.1204 67.8873 80.0637 67.8914 79.95 67.8058C79.7717 67.698 79.6433 67.5241 79.5927 67.322C79.5782 67.214 79.5881 67.1041 79.6217 67.0004C79.6552 66.8967 79.7116 66.8019 79.7866 66.7229C79.8981 66.5694 79.9913 66.4034 80.0643 66.2283C80.1238 66.0865 80.1567 65.935 80.1614 65.7812C80.1653 65.6297 80.1942 65.4798 80.247 65.3377C80.3789 64.9842 80.4819 64.6465 80.5906 64.2897C80.6993 63.9328 80.7883 63.6188 80.9331 63.21C81.3136 62.2595 81.7534 61.3338 82.25 60.4384C82.4389 60.1303 82.5996 59.8058 82.7302 59.4688C82.9468 58.4632 84.4858 57.4237 85.6097 56.6613C85.9131 56.4755 86.2051 56.2717 86.4841 56.0509C87.8345 54.7959 89.1194 53.4721 90.3335 52.0847C90.3728 52.0407 90.428 52.014 90.4869 52.0106C90.5459 52.0071 90.6038 52.0272 90.648 52.0663C90.6697 52.0854 90.6875 52.1086 90.7003 52.1347C90.7131 52.1607 90.7206 52.189 90.7224 52.2179C90.7242 52.2468 90.7203 52.2759 90.7108 52.3033C90.7013 52.3307 90.6866 52.3559 90.6673 52.3776C89.4438 53.7778 88.1484 55.1136 86.7865 56.3796C86.4964 56.6168 86.1927 56.8369 85.877 57.0386C84.8754 57.7157 83.365 58.7288 83.1828 59.571C83.0429 59.9573 82.8627 60.3278 82.6451 60.6764C82.1683 61.5452 81.743 62.4413 81.3715 63.3601C81.2327 63.7602 81.1297 64.0979 81.0337 64.4237C80.9376 64.7496 80.8246 65.133 80.6816 65.5005C80.6408 65.6054 80.6197 65.7169 80.6194 65.8294C80.6105 66.0299 80.5665 66.2274 80.4891 66.4126C80.4048 66.6247 80.2943 66.8254 80.1603 67.0101C80.0519 67.1657 80.025 67.2098 80.0378 67.2726C80.0505 67.3354 80.1149 67.3995 80.2263 67.481C80.3948 67.5836 80.5214 67.7427 80.5835 67.93C80.5997 68.1097 80.5708 68.2905 80.4995 68.4562C80.4283 68.622 80.3168 68.7673 80.1753 68.8791C80.1474 68.9091 80.1118 68.9307 80.0724 68.9418C80.033 68.9528 79.9914 68.9528 79.952 68.9418V68.9418Z" fill="var(--sapContent_Illustrative_Color6)"/>
48
+ <path d="M90.9715 50.627L89.6365 51.6224C89.6106 51.6421 89.5902 51.6682 89.5773 51.6981C89.5644 51.7279 89.5594 51.7606 89.5628 51.793C89.5661 51.8253 89.5778 51.8563 89.5965 51.8829C89.6153 51.9095 89.6406 51.9308 89.6699 51.9448L91.3072 52.7746C91.3363 52.7881 91.3683 52.7941 91.4003 52.7919C91.4323 52.7897 91.4632 52.7795 91.4902 52.7621C91.5171 52.7447 91.5392 52.7208 91.5545 52.6926C91.5697 52.6644 91.5775 52.6328 91.5772 52.6007L91.5917 50.914" fill="var(--sapContent_Illustrative_Color1)"/>
49
+ <path d="M248.04 89.631C245.653 94.136 236.171 96.6434 234.594 96.9423C234.474 96.9373 234.357 96.9076 234.249 96.855C234.142 96.8024 234.046 96.728 233.969 96.6365C232.292 92.1006 229.954 86.3453 232.365 81.3685C234.776 76.3916 240.337 74.5236 244.797 76.8867C249.256 79.2498 250.628 84.7481 248.04 89.631Z" fill="var(--sapContent_Illustrative_Color1)"/>
50
+ <path d="M234.396 79.9809C234.339 79.9648 234.289 79.9342 234.248 79.8923C234.187 79.8286 234.154 79.7435 234.156 79.6556C234.158 79.5676 234.195 79.484 234.258 79.4229C234.472 79.2146 234.702 79.0223 234.945 78.8476C234.981 78.8226 235.022 78.8049 235.064 78.7956C235.107 78.7863 235.152 78.7856 235.195 78.7934C235.238 78.8013 235.279 78.8177 235.316 78.8415C235.353 78.8654 235.385 78.8963 235.409 78.9325C235.434 78.9686 235.452 79.0094 235.46 79.0523C235.469 79.0952 235.47 79.1395 235.462 79.1826C235.453 79.2256 235.437 79.2667 235.413 79.3033C235.389 79.34 235.358 79.3715 235.321 79.3961C235.109 79.5544 234.907 79.727 234.718 79.9126C234.675 79.951 234.622 79.9774 234.566 79.9894C234.509 80.0013 234.451 79.9984 234.396 79.9809V79.9809Z" fill="var(--sapContent_Illustrative_Color16)"/>
51
+ <path d="M233.972 96.627L232.637 97.6224C232.611 97.6421 232.59 97.6682 232.577 97.6981C232.564 97.7279 232.559 97.7606 232.563 97.793C232.566 97.8253 232.578 97.8563 232.597 97.8829C232.615 97.9095 232.641 97.9308 232.67 97.9448L234.307 98.7746C234.336 98.7881 234.368 98.7941 234.4 98.7919C234.432 98.7897 234.463 98.7795 234.49 98.7621C234.517 98.7447 234.539 98.7208 234.554 98.6926C234.57 98.6644 234.578 98.6328 234.577 98.6007L234.592 96.914" fill="var(--sapContent_Illustrative_Color1)"/>
52
+ </g>
53
+ </svg>
54
+ `;
@@ -0,0 +1,42 @@
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-BeforeSearch">
2
+ <rect y="48" width="320" height="138" rx="24" fill="var(--sapContent_Illustrative_Color20)"/>
3
+ <path d="M152.517 191.034C194.224 191.034 228.034 157.224 228.034 115.517C228.034 73.8102 194.224 40 152.517 40C110.81 40 77 73.8102 77 115.517C77 157.224 110.81 191.034 152.517 191.034Z" fill="var(--sapContent_Illustrative_Color2)"/>
4
+ <path d="M147.803 104.964C146.061 104.964 144.216 105.17 142.475 105.375C141.655 105.477 140.835 105.579 140.016 105.682C138.992 105.579 137.864 105.272 136.941 104.964C135.609 104.452 134.277 104.145 132.945 104.043C131.511 104.043 129.667 104.657 129.052 107.628C128.847 108.243 128.847 108.858 129.052 109.473C129.155 110.088 129.359 110.601 129.769 111.112C130.589 112.137 132.023 112.547 133.97 112.547C135.098 112.547 136.224 112.444 137.351 112.24C137.864 112.24 138.377 112.137 138.888 112.035C139.503 112.035 139.811 112.342 140.528 112.957C141.552 113.982 142.782 114.801 144.114 115.212H144.524C146.778 116.236 149.135 116.748 151.594 116.953C152.311 116.953 153.028 116.953 153.745 116.646C154.464 116.44 155.078 116.031 155.59 115.519C156.103 114.904 156.41 114.084 156.615 113.367C156.82 112.547 156.718 111.727 156.615 111.01C156 107.014 153.132 105.067 147.906 105.067L147.803 104.964Z" fill="var(--sapContent_Illustrative_Color17)"/>
5
+ <path d="M192.862 138.366C190.085 138.366 187.307 138.878 184.735 139.698C183.808 140.006 182.883 140.21 181.956 140.313C181.339 140.313 180.722 140.108 180.208 139.698C179.179 138.878 178.459 137.752 178.047 136.522C177.121 134.473 175.887 131.809 171.873 131.809H171.051C169.405 131.809 167.656 131.501 166.112 130.886C164.569 130.271 163.129 129.349 161.997 128.119C161.379 127.505 160.762 126.993 159.939 126.685C159.116 126.378 158.293 126.173 157.47 126.173C156.133 126.173 154.898 126.48 153.663 126.89C152.737 127.198 151.811 127.402 150.782 127.402C149.444 127.402 148.107 126.89 146.872 126.275C145.74 125.558 144.712 124.636 143.992 123.406C143.683 122.791 142.963 121.357 141.523 121.357C140.081 121.357 139.361 122.279 137.818 124.431C137.613 124.84 137.407 125.148 137.201 125.455C136.892 125.968 136.584 126.48 136.172 126.89C135.349 126.173 134.526 125.353 133.909 124.431C133.394 123.816 132.982 123.099 132.469 122.484C129.793 118.897 127.838 116.233 125.781 115.209C125.061 114.901 124.443 114.594 123.723 114.39C122.283 113.979 121.254 113.569 120.739 112.443C120.534 111.93 120.431 111.417 120.431 110.803C120.225 108.446 119.607 106.295 114.258 106.295C108.907 106.295 111.273 105.885 110.965 105.27C110.553 104.348 111.171 102.606 112.92 100.044C114.258 97.8921 115.8 96.9697 117.344 96.9697C118.887 96.9697 120.019 97.6878 121.459 99.1219C123.723 101.376 125.883 102.401 128.045 102.401C128.97 102.401 129.896 102.196 130.719 101.786C131.542 101.376 132.262 100.864 132.88 100.146C135.246 97.8921 136.378 95.4334 137.613 90.8226C138.848 86.0064 140.905 80.473 146.77 79.4484C148.107 79.2434 149.444 79.0385 150.576 78.936C155.721 78.2187 159.837 77.7065 161.791 74.6325C164.672 70.3289 166.112 63.3612 160.557 57.9305C157.675 54.8565 153.56 53.0121 149.342 52.8072C147.387 52.8072 145.432 53.3196 143.58 54.2418C141.831 55.1639 140.288 56.3935 139.053 57.9305C136.069 61.4144 133.806 63.7711 132.057 63.7711C131.028 63.6686 130.102 63.0538 129.382 62.2341C128.867 61.6193 128.558 61.0045 128.353 60.2872C128.147 59.5699 128.147 58.7502 128.353 58.0329C128.456 57.1108 128.867 56.291 129.382 55.5738C129.896 54.8565 130.617 54.2418 131.44 53.9343C132.982 53.3195 134.526 53.1146 136.172 53.217C139.259 53.217 142.86 53.1146 145.227 49.1184C146.461 47.0692 146.77 45.3272 146.152 43.7902C145.74 43.0729 145.227 42.3557 144.609 41.8434C143.992 41.331 143.168 40.9212 142.345 40.7162H141.933C129.382 42.4582 117.447 47.3765 107.261 54.9589C97.0754 62.5415 88.9158 73.106 83.803 84.1618C83.7001 84.4692 80.0991 91.7439 81.2309 96.458C81.951 98.8145 83.2886 100.967 85.3462 102.503C87.3011 104.04 89.7704 104.859 92.2397 104.963C96.458 104.963 99.236 105.987 101.294 110.906C103.557 116.439 108.907 119.922 112.92 121.255C113.435 121.459 114.052 121.561 114.566 121.767C117.242 122.484 119.504 123.099 121.151 127.3C121.666 128.837 122.694 130.271 124.031 131.194C125.369 132.116 127.118 132.526 128.765 132.424H131.234C132.16 132.424 133.497 132.526 133.909 133.243C134.114 133.652 134.424 134.984 132.262 138.674C127.633 146.768 128.765 150.458 131.13 155.068C132.469 157.835 134.424 160.191 136.892 161.934C139.361 163.777 142.243 165.007 145.227 165.52C145.844 165.52 146.461 165.827 147.078 166.135C147.592 166.442 148.107 166.954 148.416 167.569C149.651 170.029 148.416 174.229 146.77 177.406C146.049 178.943 145.123 180.275 144.095 181.607C143.065 183.041 142.243 184.066 142.243 185.603C142.345 187.448 142.626 188.169 143.243 189.911L143.431 190.575C146.209 190.986 151.814 191.317 156.376 190.975L159.911 190.731L156.824 188.989C156.824 188.989 155.178 188.067 155.309 185.603C155.309 182.017 157.573 183.246 164.054 183.246H166.626C167.758 183.246 168.788 182.632 169.61 181.812L170.125 181.197C172.491 178.328 178.047 171.463 180.516 169.926C181.546 169.209 182.78 168.696 184.015 168.491C186.072 167.979 188.027 166.954 189.57 165.417C190.29 164.7 190.907 163.881 191.319 162.958C191.731 162.036 191.937 161.011 191.937 159.987C191.937 158.757 192.245 157.527 192.966 156.503C193.789 155.376 194.921 154.453 196.258 153.736C197.904 152.712 199.962 151.482 200.888 148.715C202.225 145.026 202.431 142.67 201.197 140.928C199.962 139.186 197.493 138.366 193.171 138.366H192.862Z" fill="var(--sapContent_Illustrative_Color17)"/>
6
+ <path d="M155.488 49.5682C156.922 49.978 158.46 50.183 159.997 50.183C160.918 50.183 161.533 50.183 161.841 50.3879C162.148 50.9002 162.456 51.4125 162.558 51.9249C163.07 53.3593 163.685 55.1012 165.427 55.921C166.862 56.5358 168.398 56.7408 169.936 56.7408C171.268 56.7408 174.752 56.5358 176.699 54.6914C180.695 50.9002 174.771 43.8184 174.566 43.511L174.338 43.2259C167.267 41.0019 159.17 39.8045 150.16 40.039L150.365 41.1661C150.468 41.8832 151.697 48.3386 155.488 49.5682Z" fill="var(--sapContent_Illustrative_Color17)"/>
7
+ <path d="M219.938 98.6132C222.193 94.2066 221.988 89.4936 219.119 84.9849C213.893 76.3779 201.187 70.6398 192.683 70.6398C184.178 70.6398 183.768 72.7915 182.642 76.5828C181.617 79.6567 181.31 83.0381 181.925 86.2147C182.436 89.4936 183.768 92.465 185.817 95.129C190.634 101.585 199.036 105.888 206.823 105.888C214.61 105.888 217.48 103.326 219.938 98.6132Z" fill="var(--sapContent_Illustrative_Color17)"/>
8
+ <path d="M155.871 132.184C164.846 118.989 179.554 116.691 185.787 117.19L197.752 126.186C207.325 148.978 197.45 172.121 191.218 180.368C167.096 194.453 143.945 192.286 129.403 187.439C129.403 179.192 144.653 148.678 155.871 132.184Z" fill="var(--sapContent_Illustrative_Color14)"/>
9
+ <path d="M173.01 130.786C166.862 131.606 161.904 128.588 160.368 126.88C150.73 136.46 140.633 157.17 138.413 162.976C139.233 163.386 141.074 163.746 141.758 164.088C147.086 164.497 148.419 166.991 148.419 168.186C156.616 170.646 172.526 170.046 179.527 169.363C180.04 168.851 181.821 167.571 184.281 167.161C187.355 166.649 191.454 163.063 191.454 158.451C191.454 154.763 195.894 152.134 198.114 151.28C199.651 149.059 202.315 143.696 200.676 140.008C199.036 136.319 191.112 137.105 187.355 137.959C185.306 140.862 180.797 145.132 179.158 138.983C177.518 132.835 174.376 130.957 173.01 130.786Z" fill="var(--sapContent_Illustrative_Color17)"/>
10
+ <path d="M173.01 130.786C166.862 131.606 161.904 128.588 160.368 126.88C150.73 136.46 140.633 157.17 138.413 162.976C139.233 163.386 141.074 163.746 141.758 164.088C147.086 164.497 148.419 166.991 148.419 168.186C156.616 170.646 172.526 170.046 179.527 169.363C180.04 168.851 181.821 167.571 184.281 167.161C187.355 166.649 191.454 163.063 191.454 158.451C191.454 154.763 195.894 152.134 198.114 151.28C199.651 149.059 202.315 143.696 200.676 140.008C199.036 136.319 191.112 137.105 187.355 137.959C185.306 140.862 180.797 145.132 179.158 138.983C177.518 132.835 174.376 130.957 173.01 130.786Z" fill="var(--sapContent_Illustrative_Color22)"/>
11
+ <path d="M210.083 80.601C210.19 80.601 210.401 80.707 210.508 80.813C210.401 80.813 210.19 80.707 210.083 80.601Z" fill="var(--sapContent_Illustrative_Color25)"/>
12
+ <path d="M211.355 81.1332C211.355 81.1332 211.568 81.1332 211.674 81.2395C211.674 81.2395 211.461 81.2395 211.355 81.1332Z" fill="var(--sapContent_Illustrative_Color25)"/>
13
+ <path d="M208.707 80.073C208.918 80.073 209.024 80.1789 209.236 80.2849C209.024 80.2849 208.918 80.1789 208.707 80.073Z" fill="var(--sapContent_Illustrative_Color25)"/>
14
+ <path d="M124.379 158.085C90.7124 143.32 80.077 111.454 79.9062 94.718C70.7824 124.37 82.4154 170.959 127.921 186.925C167.438 200.792 199.027 178.845 212.203 161.778C165.581 174.074 153.581 170.894 124.379 158.085Z" fill="var(--sapContent_Illustrative_Color13)"/>
15
+ <path d="M203.252 81.6405C203.457 81.6405 203.764 81.6405 203.97 81.743C203.764 81.743 203.457 81.743 203.252 81.6405Z" fill="var(--sapContent_Illustrative_Color25)"/>
16
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M138.01 163.774C133.01 174.148 129.397 183.434 129.392 187.455C133.164 188.693 136.891 189.593 140.554 190.195C144.238 190.792 148.206 191.149 152.396 191.152C167.28 191.124 180.669 186.509 191.213 180.383C193.607 177.213 196.537 171.846 198.696 165.147C169.672 171.781 156.055 170.577 138.01 163.774Z" fill="var(--sapContent_Illustrative_Color14)"/>
17
+ <path d="M169.519 180.227L180.134 167.895C163.184 169.46 155.143 168.027 148.373 166.46C148.462 166.529 148.979 167.817 148.58 170.32C148.081 173.449 143.595 181.27 142.598 182.834C141.8 184.086 143.046 188.321 143.711 190.407C147.762 190.987 155.142 191.219 159.413 190.639C159.413 190.639 156.556 189.091 155.559 187.528C151.798 181.626 157.055 181.792 162.539 182.313C166.926 182.73 169.02 181.096 169.519 180.227Z" fill="var(--sapContent_Illustrative_Color13)"/>
18
+ <path d="M169.515 180.227L180.13 167.895C163.18 169.46 155.139 168.027 148.37 166.46C148.458 166.529 148.975 167.817 148.576 170.32C148.077 173.449 143.591 181.27 142.594 182.834C141.796 184.086 143.042 188.321 143.707 190.407C147.758 190.987 155.138 191.219 159.41 190.639C159.41 190.639 156.552 189.091 155.556 187.527C151.795 181.625 157.051 181.792 162.535 182.313C166.922 182.73 169.016 181.096 169.515 180.227Z" fill="var(--sapContent_Illustrative_Color22)"/>
19
+ <path d="M220.344 128.238C220.027 127.708 218.862 125.589 216.849 125.377C215.259 125.271 213.989 126.225 212.187 128.449C207.526 134.276 207.314 135.759 208.585 139.573C208.797 140.209 209.221 140.738 209.75 141.163C210.281 141.481 210.916 141.692 211.551 141.692C213.882 141.692 216.425 140.103 217.061 139.679C217.484 139.361 217.802 139.043 218.12 138.725C221.405 135.335 220.557 129.826 220.239 128.238H220.344Z" fill="var(--sapContent_Illustrative_Color17)"/>
20
+ <path d="M242.271 108.823C244.644 118.747 240.735 128.966 235.853 136.262C231.461 142.818 224.052 147.437 214.35 148.597C192.952 151.15 170.049 135.911 164.275 115.262C158.501 94.6133 171.183 74.9577 191.503 74.0202C211.023 73.1198 235.723 90.5366 242.271 108.823Z" fill="var(--sapContent_Illustrative_Color16)"/>
21
+ <path d="M240.84 103.729C247.649 122.737 237.377 140.61 216.884 143.059C195.486 145.612 172.583 130.372 166.809 109.724C161.035 89.0749 174.045 73.6687 194.371 72.7312C213.892 71.8308 234.298 85.4485 240.847 103.729H240.84Z" fill="var(--sapContent_Illustrative_Color15)"/>
22
+ <path d="M236.274 104.099C242.116 120.634 233.059 136.052 215.292 138.081C196.843 140.185 177.13 127.066 172.069 109.304C167.187 92.171 178.121 77.9735 195.765 77.0793C212.801 76.222 230.631 88.119 236.281 104.099H236.274Z" fill="var(--sapContent_Illustrative_Color25)"/>
23
+ <path d="M240.592 196.444L228.921 199.54L210.379 140.548L221.313 139.278L240.592 196.444Z" fill="var(--sapContent_Illustrative_Color15)"/>
24
+ <path d="M171.455 95.9886L195.585 77.0916C182.91 77.8008 173.735 85.3868 171.455 95.9886Z" fill="var(--sapContent_Illustrative_Color25)"/>
25
+ <path d="M215.292 138.081C230.965 136.293 239.855 124.087 237.724 109.884L199.116 136.256C204.351 137.995 209.877 138.698 215.292 138.081Z" fill="var(--sapContent_Illustrative_Color8)"/>
26
+ <path d="M217.256 82.4202L217.243 82.4141L217.256 82.4202Z" fill="var(--sapContent_Illustrative_Color25)"/>
27
+ <path d="M195.759 77.079C196.26 77.0545 196.756 77.0422 197.258 77.0361C196.756 77.0361 196.26 77.0545 195.759 77.079Z" fill="var(--sapContent_Illustrative_Color25)"/>
28
+ <path d="M211.971 79.9101C212.126 79.9718 212.281 80.0334 212.43 80.0951C212.275 80.0334 212.126 79.9718 211.971 79.9101Z" fill="var(--sapContent_Illustrative_Color25)"/>
29
+ <path d="M213.377 80.4899C213.483 80.5392 213.588 80.5885 213.693 80.6317C213.588 80.5824 213.483 80.533 213.377 80.4899Z" fill="var(--sapContent_Illustrative_Color25)"/>
30
+ <path d="M210.546 79.3735C210.72 79.4352 210.899 79.4969 211.073 79.5647C210.899 79.4969 210.726 79.4352 210.546 79.3735Z" fill="var(--sapContent_Illustrative_Color25)"/>
31
+ <path d="M200.907 77.2026C201.192 77.2271 201.477 77.2578 201.768 77.2945C201.483 77.2639 201.198 77.2332 200.907 77.2026Z" fill="var(--sapContent_Illustrative_Color25)"/>
32
+ <path d="M199.364 77.0916C199.662 77.1099 199.965 77.1222 200.262 77.1467C199.965 77.1222 199.662 77.1038 199.364 77.0916Z" fill="var(--sapContent_Illustrative_Color25)"/>
33
+ <path d="M202.425 77.3752C202.703 77.412 202.988 77.4549 203.267 77.4979C202.988 77.4549 202.71 77.412 202.425 77.3752Z" fill="var(--sapContent_Illustrative_Color25)"/>
34
+ <path d="M197.76 77.0422C198.094 77.0422 198.423 77.0484 198.757 77.0606C198.423 77.0484 198.088 77.0422 197.76 77.0422Z" fill="var(--sapContent_Illustrative_Color25)"/>
35
+ <path d="M237.997 112.45C237.08 94.0829 219.356 79.3921 201.762 77.2026C195.641 76.6414 184.88 76.6414 177.068 85.0969C176.188 86.0467 175.364 87.1569 174.596 88.3287C174.466 88.526 174.392 88.6617 174.274 88.8529C174.255 88.8776 174.249 88.9084 174.231 88.9393C183.492 77.8317 198.299 77.1224 211.383 82.3031C224.925 87.6626 236.621 99.3376 237.997 112.462V112.45Z" fill="var(--sapContent_Illustrative_Color16)"/>
36
+ <path d="M192.686 79.3613L171.455 95.9887C170.582 100.059 170.718 104.568 172.069 109.304C172.18 109.699 172.304 110.087 172.434 110.476L213.514 83.2097C206.786 80.2062 199.5 78.7137 192.686 79.3613Z" fill="var(--sapContent_Illustrative_Color8)"/>
37
+ <path d="M205.931 142.88L212.293 146.636C212.293 146.636 210.968 143.361 215.329 142.911V142.843C213.582 143.108 210.063 143.46 205.931 142.874V142.88Z" fill="var(--sapContent_Illustrative_Color16)"/>
38
+ <path d="M219.95 142.257C220.836 142.294 222.385 142.948 223.122 144.829L224.175 141.412C224.175 141.412 223.203 141.881 219.95 142.251V142.257Z" fill="var(--sapContent_Illustrative_Color16)"/>
39
+ <path d="M228.921 199.54L211.538 144.298L212.708 143.126C212.708 143.126 214.932 142.997 217.46 142.491C217.46 142.491 216.587 143.472 216.841 144.829C217.857 150.157 234.385 198.504 234.385 198.504L228.915 199.54H228.921Z" fill="var(--sapContent_Illustrative_Color16)"/>
40
+ <path d="M240.592 196.444C240.592 197.085 237.582 198.152 232.657 199.417C230.222 199.904 229.026 199.842 228.921 199.54C228.847 199.324 230.179 198.492 232.595 197.714C236.213 196.586 240.184 195.951 240.592 196.444Z" fill="var(--sapContent_Illustrative_Color16)"/>
41
+ </svg>
42
+ `;
@@ -0,0 +1,32 @@
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-Connection">
2
+ <mask id="mask0_396_6119" 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_6119)">
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
+ <path d="M-13.5509 36.5324C-13.5509 36.5324 -13.236 7.68759 -3.3136 -8.1013C6.60876 -23.8902 36.0084 -48 69.3629 -48C102.717 -48 121.862 -31.4103 121.862 -31.4103C121.862 -31.4103 159.977 1.21188 154.429 40.2054L154.972 156.611H-9.17597L-13.5509 36.5324Z" fill="var(--sapContent_Illustrative_Color19)"/>
8
+ <path d="M171.701 172V90.9318C171.701 90.9318 197.654 62.3482 169.706 44.07C165.143 42.0213 160.247 40.801 155.252 40.4665C150.247 40.0309 145.242 41.3017 141.059 44.07C129.405 52.3039 127.06 62.2263 127.06 65.5512V172H171.701Z" fill="var(--sapContent_Illustrative_Color18)"/>
9
+ <path d="M128.337 84.3342H10.4938C0.00740719 84.3342 -8.49353 92.7905 -8.49353 103.222V109.158C-8.49353 119.589 0.00740719 128.045 10.4938 128.045H128.337C138.823 128.045 147.324 119.589 147.324 109.158V103.222C147.324 92.7905 138.823 84.3342 128.337 84.3342Z" fill="var(--sapContent_Illustrative_Color18)"/>
10
+ <path d="M-30.3682 171.739V90.723C-30.3682 90.723 -56.3204 62.122 -28.3732 43.8612C-23.8051 41.8046 -18.9037 40.5782 -13.901 40.2403C-8.89389 39.8056 -3.88738 41.0829 0.291358 43.8612C11.9462 52.0777 14.2912 62.0175 14.2912 65.3249V171.739H-30.3682Z" fill="var(--sapContent_Illustrative_Color18)"/>
11
+ <path d="M134.427 61.9826L134.235 61.7563C125.905 47.83 108.965 38.2209 89.4002 38.2209C70.6229 38.2209 54.2606 47.0292 45.6508 60.1025V43.0777C45.6508 42.8007 45.5402 42.535 45.3432 42.3392C45.1463 42.1433 44.8792 42.0333 44.6007 42.0333L33.2084 50.1453H32.5609C30.5904 49.2766 28.4506 48.8544 26.296 48.9093C24.3181 48.8743 22.3517 49.2171 20.5036 49.919H20.1361L7.50128 42.0506C7.36193 42.0483 7.22343 42.0736 7.09402 42.1251C6.9646 42.1765 6.84678 42.2531 6.74742 42.3503C6.64806 42.4475 6.56918 42.5635 6.51532 42.6914C6.46146 42.8192 6.4337 42.9565 6.43372 43.0951V64.5241C6.43372 70.2675 8.72735 75.7756 12.81 79.8367C16.8926 83.8979 22.4297 86.1795 28.2034 86.1795H45.6157H131.05C131.198 87.5615 131.273 88.9502 131.277 90.34C131.33 96.5236 129.838 102.623 126.937 108.092C124.035 113.561 119.814 118.228 114.652 121.674L114.25 121.97C113.008 122.87 112.177 124.224 111.939 125.734C111.701 127.244 112.076 128.786 112.981 130.021C113.886 131.256 115.247 132.083 116.765 132.32C118.283 132.556 119.833 132.183 121.075 131.283L121.39 131.057C128.028 126.536 133.455 120.469 137.198 113.385C140.94 106.3 142.885 98.4127 142.862 90.4096C142.833 80.3277 139.906 70.4643 134.427 61.9826ZM39.1233 68.9457L45.4583 53.2787L45.5807 60.2418L39.1233 68.9457Z" fill="var(--sapContent_Illustrative_Color20)"/>
12
+ <path d="M39.1233 68.911L45.5982 60.2245L45.4757 53.1917L39.1233 68.911Z" fill="var(--sapContent_Illustrative_Color20)"/>
13
+ <path d="M225.114 -28.5415H218.841V166.497H225.114V-28.5415Z" fill="var(--sapContent_Illustrative_Color19)"/>
14
+ <path d="M245.215 165.398H198.854C196.337 165.398 194.298 167.437 194.298 169.953C194.298 172.469 196.337 174.509 198.854 174.509H245.215C247.731 174.509 249.772 172.469 249.772 169.953C249.772 167.437 247.731 165.398 245.215 165.398Z" fill="var(--sapContent_Illustrative_Color19)"/>
15
+ <path d="M278.43 134.089L287.146 135.918C287.832 136.062 288.433 136.472 288.816 137.059C289.199 137.646 289.334 138.361 289.19 139.046L285.535 156.463C285.391 157.149 284.981 157.75 284.394 158.133C283.808 158.516 283.093 158.651 282.407 158.507L273.691 156.678C272.876 156.507 272.162 156.019 271.707 155.322C271.252 154.625 271.092 153.775 271.263 152.96L274.71 136.532C274.793 136.127 274.955 135.742 275.187 135.4C275.419 135.058 275.717 134.765 276.062 134.538C276.408 134.31 276.795 134.154 277.202 134.077C277.608 134 278.026 134.004 278.43 134.089Z" fill="var(--sapContent_Illustrative_Color9)"/>
16
+ <path d="M280.357 134.492L277.993 133.996L273.254 156.585L275.618 157.081L280.357 134.492Z" fill="var(--sapContent_Illustrative_Color17)"/>
17
+ <path d="M268.304 126.378L277.631 128.335C277.935 128.399 278.224 128.522 278.48 128.698C278.737 128.873 278.956 129.097 279.126 129.357C279.296 129.617 279.413 129.908 279.47 130.213C279.528 130.519 279.524 130.832 279.461 131.136L273.588 159.125C273.444 159.811 273.034 160.411 272.447 160.795C271.86 161.178 271.145 161.312 270.459 161.168L261.403 159.268C260.789 159.139 260.251 158.772 259.908 158.247C259.565 157.721 259.444 157.081 259.573 156.467L265.503 128.208C265.567 127.904 265.69 127.615 265.865 127.359C266.04 127.102 266.264 126.883 266.524 126.713C266.784 126.543 267.075 126.426 267.381 126.369C267.686 126.311 268 126.315 268.304 126.378Z" fill="var(--sapContent_Illustrative_Color9)"/>
18
+ <path d="M267.615 126.232L262.045 125.063C260.617 124.764 259.216 125.679 258.916 127.107L253.101 154.822C252.802 156.25 253.716 157.65 255.145 157.95L260.715 159.119C262.143 159.418 263.544 158.504 263.843 157.075L269.659 129.361C269.958 127.932 269.043 126.532 267.615 126.232Z" fill="var(--sapContent_Illustrative_Color17)"/>
19
+ <path d="M264.073 134.412L261.998 133.977C261.694 133.913 261.396 134.108 261.332 134.412L260.557 138.105C260.493 138.41 260.688 138.708 260.992 138.772L263.067 139.207C263.371 139.271 263.67 139.076 263.733 138.772L264.508 135.079C264.572 134.774 264.377 134.476 264.073 134.412Z" fill="var(--sapContent_Illustrative_Color4)"/>
20
+ <path d="M261.755 145.458L259.68 145.022C259.376 144.958 259.078 145.153 259.014 145.457L258.239 149.151C258.175 149.455 258.37 149.753 258.674 149.817L260.749 150.252C261.053 150.316 261.351 150.121 261.415 149.817L262.19 146.124C262.254 145.82 262.059 145.521 261.755 145.458Z" fill="var(--sapContent_Illustrative_Color4)"/>
21
+ <path d="M209.568 120.621L228.755 124.647C229.643 124.834 230.42 125.365 230.916 126.124C231.412 126.883 231.586 127.808 231.399 128.696C231.213 129.583 230.682 130.361 229.923 130.857C229.163 131.352 228.238 131.526 227.351 131.34L208.163 127.314L209.568 120.621Z" fill="var(--sapContent_Illustrative_Color3)"/>
22
+ <path d="M206.579 135.547L225.773 139.574C226.66 139.76 227.437 140.291 227.933 141.051C228.429 141.81 228.603 142.735 228.417 143.623C228.231 144.51 227.7 145.287 226.94 145.783C226.181 146.279 225.256 146.453 224.368 146.267L205.175 142.24L206.579 135.547Z" fill="var(--sapContent_Illustrative_Color3)"/>
23
+ <path d="M198.62 106.982L214.054 110.22C214.5 110.314 214.924 110.494 215.301 110.752C215.678 111.009 216 111.339 216.25 111.721C216.499 112.103 216.671 112.53 216.755 112.979C216.84 113.427 216.835 113.888 216.741 114.335L209.094 150.781C208.905 151.683 208.365 152.473 207.593 152.977C206.822 153.481 205.881 153.658 204.979 153.469L189.546 150.23L198.62 106.982Z" fill="var(--sapContent_Illustrative_Color9)"/>
24
+ <path d="M201.736 107.632L194.952 106.208C193.073 105.814 191.231 107.017 190.837 108.896L183.189 145.345C182.795 147.223 183.998 149.066 185.876 149.46L192.661 150.883C194.539 151.278 196.381 150.074 196.775 148.196L204.423 111.747C204.817 109.868 203.614 108.026 201.736 107.632Z" fill="var(--sapContent_Illustrative_Color17)"/>
25
+ <path d="M195.328 114.044L184.537 111.78C182.659 111.386 180.816 112.589 180.422 114.468L175.699 136.977C175.305 138.856 176.508 140.698 178.387 141.092L189.178 143.357C191.056 143.751 192.899 142.547 193.293 140.669L198.016 118.159C198.41 116.281 197.207 114.439 195.328 114.044Z" fill="var(--sapContent_Illustrative_Color9)"/>
26
+ <path d="M181.962 111.241L179.032 110.626C177.153 110.232 175.311 111.435 174.917 113.314L170.194 135.823C169.8 137.702 171.003 139.544 172.882 139.938L175.811 140.553C177.69 140.947 179.532 139.744 179.926 137.865L184.649 115.356C185.043 113.477 183.84 111.635 181.962 111.241Z" fill="var(--sapContent_Illustrative_Color17)"/>
27
+ <path d="M267.262 202.907C259.727 202.907 254.104 200.482 251.424 196.068C249.397 192.73 249.018 188.048 250.389 183.221C251.713 178.558 254.43 174.458 257.815 171.953C267.019 165.157 282.503 164.181 298.692 181.384C302.071 174.421 302.944 166.649 300.343 160.451C299.41 158.204 295.733 150.706 288.039 148.692C287.76 148.619 287.521 148.438 287.375 148.189C287.229 147.939 287.187 147.642 287.26 147.363C287.333 147.083 287.514 146.844 287.764 146.698C288.013 146.552 288.31 146.511 288.589 146.584C297.25 148.853 301.312 157.131 302.351 159.612C305.335 166.761 304.116 175.776 299.932 183.644C299.899 183.726 299.858 183.804 299.808 183.877C296.845 189.345 292.447 194.234 287.029 197.501C281.434 200.877 274.054 202.898 267.302 202.907H267.262ZM271.744 169.543C267.191 169.524 262.755 170.986 259.105 173.709C252.702 178.434 249.78 189.152 253.286 194.943C255.555 198.673 260.516 200.731 267.274 200.731H267.321C273.693 200.731 280.65 198.819 285.925 195.636C290.834 192.68 294.856 188.319 297.632 183.429C290.793 176 283.414 171.356 276.286 169.985C274.79 169.693 273.269 169.546 271.744 169.543Z" fill="var(--sapContent_Illustrative_Color4)"/>
28
+ <path d="M234.753 219.442C234.494 219.438 234.244 219.342 234.049 219.171C233.853 219 233.725 218.765 233.688 218.508C233.651 218.251 233.706 217.99 233.844 217.77C233.982 217.55 234.195 217.387 234.442 217.309C252.496 211.854 262.453 197.856 260.429 188.205C259.634 184.409 256.876 180.962 252.459 178.233C244.43 173.259 232.301 171.524 222.966 173.98C217.339 175.46 214.455 178.037 211.663 180.53C208.872 183.023 205.931 185.656 200.473 186.84C192.254 188.621 182.443 186.389 173.538 180.716C164.492 174.95 157.762 166.417 155.07 157.272C152.31 147.897 151.719 130.903 161.909 125.211C167.271 122.214 173.41 123.321 176.596 124.25C176.873 124.333 177.106 124.522 177.244 124.776C177.381 125.03 177.412 125.329 177.33 125.606C177.248 125.883 177.058 126.116 176.804 126.253C176.55 126.391 176.252 126.422 175.975 126.339C173.106 125.506 167.61 124.499 162.947 127.11C158.011 129.871 156.31 135.755 155.754 140.203C155.138 145.726 155.61 151.316 157.143 156.656C159.686 165.292 166.083 173.393 174.691 178.882C183.112 184.247 192.335 186.377 199.994 184.714C204.899 183.651 207.476 181.347 210.205 178.907C213.05 176.367 216.27 173.489 222.403 171.876C232.27 169.28 245.095 171.133 253.594 176.38C258.53 179.429 261.626 183.365 262.549 187.76C263.696 193.231 261.564 199.737 256.699 205.618C251.552 211.835 243.867 216.731 235.064 219.395C234.963 219.425 234.858 219.441 234.753 219.442Z" fill="var(--sapContent_Illustrative_Color4)"/>
29
+ <path d="M261.503 78.7399L240.342 96.5474C240.302 96.5825 240.273 96.6275 240.256 96.6777C240.24 96.7279 240.238 96.7815 240.25 96.8328C240.262 96.8842 240.288 96.9314 240.324 96.9696C240.361 97.0078 240.407 97.0355 240.459 97.0498L251.047 99.8653C251.089 99.8764 251.128 99.8967 251.162 99.9247C251.195 99.9527 251.222 99.9877 251.24 100.027C251.258 100.067 251.266 100.109 251.266 100.153C251.265 100.196 251.254 100.239 251.235 100.277L243.812 115.083C243.781 115.143 243.771 115.213 243.786 115.279C243.8 115.345 243.838 115.404 243.891 115.446C243.945 115.488 244.012 115.51 244.08 115.509C244.149 115.507 244.214 115.482 244.266 115.437L265.646 97.6802C265.686 97.6457 265.717 97.601 265.733 97.5508C265.75 97.5005 265.753 97.4467 265.741 97.395C265.73 97.3434 265.704 97.2959 265.667 97.2576C265.63 97.2193 265.583 97.1918 265.531 97.1779L254.773 94.3874C254.731 94.3759 254.692 94.3553 254.658 94.3272C254.625 94.299 254.598 94.2639 254.58 94.2243C254.562 94.1848 254.553 94.1418 254.553 94.0984C254.554 94.0549 254.564 94.0121 254.583 93.973L261.96 79.0916C261.991 79.0312 262 78.9618 261.986 78.8954C261.971 78.829 261.933 78.7698 261.879 78.7281C261.825 78.6864 261.757 78.6647 261.689 78.6669C261.62 78.6691 261.555 78.6949 261.503 78.7399Z" fill="var(--sapContent_Illustrative_Color3)"/>
30
+ </g>
31
+ </svg>
32
+ `;
@@ -0,0 +1,20 @@
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-DragFilesToUpload">
2
+ <rect y="45" width="320" height="138" rx="24" fill="var(--sapContent_Illustrative_Color20)"/>
3
+ <path d="M144.65 55.369C143.41 56.279 142.06 57.029 140.72 57.769C134.03 61.479 127.34 65.189 120.65 68.899C119.06 69.779 117.19 70.719 116.03 72.169C114.63 73.929 114.23 76.409 113.22 78.399C112.21 80.409 106.82 91.809 106.48 93.499C106.35 94.169 105.63 99.169 104.96 99.599L82.96 101.729L83.12 111.239C83.12 111.239 79.63 111.489 76.76 111.559C73.25 111.649 71.31 113.669 71 116.639L74.5 162.809C74.64 164.629 75 165.829 76.36 166.979L79.79 170.179C80.6 170.899 81.66 171.369 82.82 171.439L147.53 174.969C150.13 175.109 151.89 173.539 152.68 170.649L161.83 127.449C162.11 124.649 160.11 122.239 157.35 122.089L151.73 121.779C151.98 119.049 150.18 116.779 147.51 116.619L145.37 116.489L141.93 94.199L128.74 95.769C129.81 93.849 131.01 90.499 131.3 89.859C132.24 87.829 141.42 84.669 146.57 80.259C151.72 75.859 153.63 74.489 153.63 74.489L156.63 72.879C157.07 73.659 157.45 74.159 157.73 74.289C159.1 74.919 161.78 72.979 163.47 71.579C163.76 71.949 164.06 72.299 164.36 72.589C164.36 72.589 166.59 75.209 168.08 75.209C168.08 75.209 168.08 75.209 168.09 75.209H168.1H168.12C168.12 75.209 168.15 75.179 168.17 75.169L202.12 45.019H160.64C154.21 49.189 144.68 55.349 144.64 55.379L144.66 55.359L144.65 55.369Z" fill="var(--sapContent_Illustrative_Color21)"/>
4
+ <path d="M146.16 123.349L146.23 118.189C146.58 115.719 144.96 113.589 142.61 113.439L114.74 111.719C112.37 111.569 110.21 113.479 109.93 115.959L110.02 120.249L102.47 119.789C99.0699 119.579 96.0099 122.289 95.6299 125.819L99.7799 180.569C99.9499 182.729 100.37 184.159 101.99 185.519L106.05 189.309L185.79 194.769C188.96 194.939 192.71 188.779 193.31 185.589L191.3 132.479C191.92 128.999 189.72 125.989 186.37 125.789L146.16 123.339V123.349Z" fill="var(--sapContent_Illustrative_Color22)"/>
5
+ <path d="M182.401 129.679L105.841 125.569C105.141 125.569 104.811 125.879 104.811 126.659L105.231 179.449C105.231 180.639 106.201 181.649 107.371 181.719L182.851 185.829C184.021 185.889 184.961 184.979 184.951 183.799L184.531 131.949C184.531 130.759 183.561 129.749 182.391 129.679H182.401Z" fill="var(--sapContent_Illustrative_Color2)"/>
6
+ <path d="M124.81 141.609L186.03 134.719L179.56 92.8188L119.77 101.549L124.81 141.609Z" fill="var(--sapContent_Illustrative_Color27)"/>
7
+ <path d="M147.551 83.9289L144.721 95.8689C144.561 96.5589 144.491 97.2889 144.531 97.9989L150.051 97.2089L150.961 94.1089C150.961 94.1089 153.581 87.7189 153.341 83.7089C153.221 81.6389 151.801 81.2689 150.461 81.3889C149.051 81.5189 147.881 82.5489 147.551 83.9289Z" fill="var(--sapContent_Illustrative_Color29)"/>
8
+ <path d="M153.66 80.419L150.7 92.879C150.57 93.419 150.5 93.969 150.49 94.519L150.42 97.139L155.71 96.379L157 90.869C157 90.869 159.62 84.479 159.38 80.469C159.24 78.109 157.41 77.959 155.93 78.229C154.81 78.439 153.92 79.289 153.65 80.399V80.419H153.66Z" fill="var(--sapContent_Illustrative_Color29)"/>
9
+ <path d="M182.88 45.2091C181.36 46.3191 179.71 47.2391 178.06 48.1491C169.86 52.6991 161.66 57.2491 153.46 61.7991C151.51 62.8791 149.22 64.0291 147.8 65.8091C146.08 67.9691 145.59 71.0091 144.36 73.4491C143.12 75.9091 136.51 89.8891 136.1 91.9591C135.93 92.8091 134.99 99.3591 134.15 99.4891L144.11 98.0591L146.13 90.5091L162.47 83.7491C161.07 85.8491 160.18 86.7791 156.43 91.7091C152.68 96.6391 152.03 102.029 156.63 104.679C161.23 107.339 169.53 91.0291 170.69 88.5491C171.84 86.0591 178.97 83.1091 185.28 77.7091C191.6 72.3091 194.09 67.8791 194.09 67.8791L218.97 54.4891L217.9 45.0391H183.11C183.03 45.0991 182.94 45.1691 182.86 45.2291L182.88 45.2091Z" fill="var(--sapContent_Illustrative_Color31)"/>
10
+ <path d="M203.471 57.959C201.131 57.899 198.761 58.199 196.571 59.029C195.471 59.439 194.431 59.989 193.471 60.659C192.981 60.999 192.471 61.359 192.091 61.829C191.411 62.669 190.921 63.669 190.431 64.629C189.751 65.969 189.121 67.339 188.461 68.689C187.131 71.449 185.791 74.339 183.861 76.739C182.651 78.239 176.581 81.749 175.201 83.039C173.951 84.209 172.631 85.309 171.381 86.479C170.091 87.699 168.851 89.009 168.061 90.619C167.351 92.069 166.841 93.949 165.461 94.909C164.991 95.239 164.491 95.419 163.971 95.539C163.161 95.729 162.931 96.769 163.591 97.249C163.811 97.409 163.981 97.559 164.031 97.689C164.221 98.149 159.891 103.759 159.061 104.629C163.761 103.499 169.491 91.529 170.511 89.329C171.661 86.839 178.791 83.889 185.101 78.489C191.411 73.089 193.901 68.659 193.901 68.659L211.361 59.259C208.791 58.489 206.141 57.999 203.471 57.939V57.959Z" fill="var(--sapContent_Illustrative_Color15)"/>
11
+ <path d="M157.32 90.5791C157.54 90.3591 158.26 89.9891 158.5 89.7991C159.7 88.8591 160.39 87.8691 161.24 86.8191C162.11 85.7391 162.98 84.5591 163.5 83.2591C164.04 81.8991 164.26 80.2791 163.71 78.8891C163.44 78.2091 162.98 77.6291 162.38 77.2091C161.98 76.9391 161.43 76.3591 160.99 76.1691C159.88 75.6791 158.79 75.0991 157.6 74.8391C156.76 74.6491 155.93 74.4991 155.06 74.4791C154.26 74.4591 153.78 74.9191 153.87 75.6691C153.96 76.4091 154.32 77.2791 154.49 78.1091C154.69 79.0991 154.66 79.9091 153.87 80.5291C153.43 80.8791 152.68 81.0291 152.16 81.2591C149.51 82.3691 148.35 85.1191 146.34 87.1891C145.3 88.2591 144.28 89.4991 143.21 90.5491C142.85 90.8991 142.5 91.2891 142.3 91.7491C142.06 92.3191 142.06 92.9691 141.99 93.5791C141.71 95.9991 140.2 96.9991 138.91 98.8091L144.12 98.0591L146.33 91.3991L162.5 83.7591C161.32 85.5191 159.75 87.4491 157.32 90.5991V90.5791Z" fill="var(--sapContent_Illustrative_Color3)"/>
12
+ <path d="M155.9 97.049C156.23 96.729 156.74 96.699 157.12 96.959C157.95 97.529 159.81 98.509 160.96 99.099C161.53 99.389 161.78 100.059 161.54 100.639C160.76 102.559 158.97 105.689 156.53 104.799C153.74 103.779 152.13 100.639 155.89 97.049H155.9Z" fill="var(--sapContent_Illustrative_Color3)"/>
13
+ <path d="M207.04 66.319C207.04 66.319 209.8 69.559 211.62 69.529C212.74 69.529 207.54 55.649 203.39 45.019H197.13C199.52 52.829 203.08 62.429 207.04 66.319Z" fill="var(--sapContent_Illustrative_Color22)"/>
14
+ <path d="M198.91 68.419C201.46 69.589 207.79 63.449 207.79 63.449L218.96 56.959L217.62 45.019H188.88C191.6 52.739 197.03 67.549 198.92 68.409H198.91V68.419Z" fill="var(--sapContent_Illustrative_Color8)"/>
15
+ <path d="M199.22 45.019C203.84 55.079 210.11 68.319 211.63 69.529L249.39 45.019H199.21H199.22Z" fill="var(--sapContent_Illustrative_Color13)"/>
16
+ <path d="M244.32 45.019C242.27 46.459 240.18 47.829 238.02 49.099C235.67 50.479 233.26 51.769 230.72 52.769C228.08 53.809 225.33 54.609 222.51 54.959C219.69 55.319 216.81 55.219 214.01 54.699C211.39 54.209 208.82 53.399 206.44 52.189C204.32 51.109 202.36 49.729 200.62 48.099C205.02 57.599 210.24 68.449 211.61 69.539L249.39 45.019H244.32Z" fill="var(--sapContent_Illustrative_Color22)"/>
17
+ <path d="M157.93 120.359C157.93 120.359 162.02 122.159 161.08 126.839L185.01 128.089L186.03 133.589H155.19L157.93 120.359Z" fill="var(--sapContent_Illustrative_Color26)"/>
18
+ <path d="M159.31 130.159L160.19 124.409C160.33 122.049 158.6 120.029 156.31 119.909L129.34 118.439C127.05 118.319 125.14 120.139 125.07 122.499L123.95 128.239L116.68 127.839C113.41 127.659 110.71 130.239 110.65 133.579L104.13 185.049C104.09 188.069 106.56 190.639 109.65 190.809L186.39 194.989C189.47 195.159 191.56 193.289 192.5 189.869L203.35 138.639C203.69 135.319 201.31 132.459 198.04 132.279L159.32 130.169L159.31 130.159Z" fill="var(--sapContent_Illustrative_Color17)"/>
19
+ <path d="M165.565 178.066L139.715 176.656C138.795 176.606 138.165 175.826 138.305 174.926C138.445 174.026 139.315 173.326 140.235 173.376L166.085 174.786C167.005 174.836 167.635 175.616 167.495 176.516C167.355 177.416 166.485 178.116 165.565 178.066ZM153.955 169.166C153.035 169.116 152.405 168.336 152.545 167.436L155.315 150.076L149.935 154.396C149.185 154.996 148.125 154.936 147.575 154.266C147.035 153.596 147.195 152.546 147.945 151.946L156.605 144.996C156.965 144.706 157.455 144.546 157.875 144.566C158.355 144.596 158.725 144.796 158.985 145.126L165.315 152.916C165.855 153.586 165.695 154.636 164.945 155.236C164.195 155.836 163.135 155.776 162.585 155.106L158.665 150.286L155.895 167.646C155.755 168.546 154.885 169.246 153.965 169.196L153.945 169.176L153.955 169.166Z" fill="var(--sapContent_Illustrative_Color27)"/>
20
+ </svg>`;
@@ -0,0 +1,91 @@
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-EmptyCalendar">
2
+ <mask id="mask0_396_5153" 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_5153)">
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="-15.4889" y="6.48901" width="56" height="70.9333" rx="6.22222" fill="var(--sapContent_Illustrative_Color19)"/>
8
+ <rect x="-13.6222" y="4.45312" width="56" height="70.9333" rx="6.22222" fill="var(--sapContent_Illustrative_Color18)"/>
9
+ <rect x="-9.88889" y="8.18652" width="48.5333" height="63.4667" rx="3.73333" fill="var(--sapContent_Illustrative_Color7)"/>
10
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M36.1555 71.4407V8.39893C37.6052 8.91129 38.6439 10.2935 38.6444 11.9185V67.9212C38.6439 69.5461 37.6052 70.9284 36.1555 71.4407Z" fill="var(--sapContent_Illustrative_Color19)"/>
11
+ <path d="M19.6293 21.7803C20.6373 22.6515 20.2142 24.8292 18.7084 26.6586C17.8124 27.7537 16.7173 28.463 15.784 28.687C15.9208 29.4461 16.0453 30.2426 16.1324 31.0888C16.6302 35.7555 16.8044 41.1315 13.2577 41.1563C9.13862 41.1937 8.75284 37.3857 8.32973 33.1048C8.2924 32.7563 8.25506 32.4203 8.21773 32.0719C7.71995 27.3928 7.96884 23.4728 11.2915 23.0995C12.6231 22.9501 13.6062 23.535 14.3404 24.6052C14.552 24.2319 14.8008 23.871 15.0871 23.5101C16.5928 21.6808 18.6213 20.9092 19.6293 21.7803Z" fill="var(--sapContent_Illustrative_Color18)"/>
12
+ <path d="M23.1138 35.8177C23.1138 38.5057 21.8818 40.6586 20.3512 40.6711C16.6303 40.7084 17.3769 38.5182 17.5885 35.8177C17.8001 33.1049 18.8205 30.9893 20.3512 30.9644C23.1512 30.9022 23.1138 33.1297 23.1138 35.8177Z" fill="var(--sapContent_Illustrative_Color18)"/>
13
+ <path d="M25.1546 43.7197H4.67107C4.43463 43.7197 4.23552 43.9188 4.23552 44.1677V58.3295C4.23552 58.5784 4.43463 58.7775 4.67107 58.7775H25.1546C25.3911 58.7775 25.5902 58.5784 25.5902 58.3295V44.1677C25.5902 43.9188 25.3911 43.7197 25.1546 43.7197Z" fill="var(--sapContent_Illustrative_Color18)"/>
14
+ <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)"/>
15
+ <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)"/>
16
+ <rect x="24.6438" y="147.313" width="52.0431" height="65.9213" rx="5.78257" fill="var(--sapContent_Illustrative_Color19)"/>
17
+ <rect x="26.3571" y="145.965" width="52.0431" height="65.9213" rx="5.78257" fill="var(--sapContent_Illustrative_Color18)"/>
18
+ <rect x="29.8266" y="149.434" width="45.104" height="58.9822" rx="3.46954" fill="var(--sapContent_Illustrative_Color7)"/>
19
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M72.6176 208.219V149.632C73.9652 150.108 74.9306 151.393 74.9306 152.904V204.947C74.9306 206.458 73.9652 207.743 72.6176 208.219Z" fill="var(--sapContent_Illustrative_Color19)"/>
20
+ <mask id="mask1_396_5153" class="sapIllus_MaskTypeAlpha" maskUnits="userSpaceOnUse" x="29" y="149" width="46" height="60">
21
+ <rect x="29.8266" y="149.435" width="45.104" height="58.9822" rx="3.46954" fill="var(--sapContent_Illustrative_Color7)"/>
22
+ </mask>
23
+ <g mask="url(#mask1_396_5153)">
24
+ <path d="M57.6678 193.177L41.3208 196.376L39.2464 192.998C37.9668 190.911 37.1583 188.57 36.8771 186.139C36.5958 183.709 36.8486 181.246 37.6177 178.922C38.3869 176.599 39.654 174.47 41.331 172.685C43.008 170.899 45.0546 169.5 47.3286 168.583L52.3174 166.576C58.6502 164.025 65.0999 169.994 63.0182 176.484L57.6678 193.177Z" fill="var(--sapContent_Illustrative_Color19)"/>
25
+ <path d="M54.7535 218.022L49.2095 215.927C48.6271 215.706 48.1046 215.352 47.6835 214.894C47.2624 214.436 46.9546 213.886 46.7845 213.288L42.117 196.959C42.0162 196.608 42.0175 196.236 42.1207 195.885C42.2239 195.535 42.4248 195.221 42.7 194.98C42.9751 194.739 43.3133 194.581 43.675 194.524C44.0367 194.468 44.407 194.515 44.7429 194.66L57.6934 200.254L58.9279 214.881C58.9717 215.4 58.8829 215.922 58.6698 216.397C58.4567 216.873 58.1263 217.287 57.7094 217.601C57.2925 217.914 56.8027 218.118 56.2858 218.191C55.7689 218.265 55.2417 218.207 54.7535 218.022Z" fill="var(--sapContent_Illustrative_Color18)"/>
26
+ <path d="M58.2485 206.845L57.971 203.526C56.867 202.774 55.684 202.145 54.443 201.649C50.9844 200.242 47.8217 199.991 47.3761 201.084C46.9305 202.177 49.3702 204.2 52.8251 205.606C54.9251 206.459 56.9082 206.885 58.2485 206.845Z" fill="var(--sapContent_Illustrative_Color19)"/>
27
+ <path d="M51.4058 178.414L57.2041 178.728C58.1786 178.779 59.1334 179.021 60.014 179.441C60.8945 179.86 61.6835 180.449 62.3357 181.173C62.988 181.897 63.4907 182.743 63.8151 183.661C64.1395 184.579 64.2793 185.552 64.2263 186.524L63.6553 197.011C63.5485 198.972 62.6654 200.81 61.2002 202.122C59.735 203.433 57.8077 204.11 55.8424 204.003L53.3663 203.869C50.5199 203.715 47.8515 202.438 45.9481 200.321C44.0447 198.204 43.0623 195.419 43.217 192.578L43.6075 185.407C43.7141 183.448 44.5951 181.612 46.0572 180.301C47.5192 178.99 49.4428 178.311 51.4058 178.414Z" fill="var(--sapContent_Illustrative_Color18)"/>
28
+ <path d="M59.9468 188.465L58.223 192.973C58.2128 192.999 58.2092 193.028 58.2126 193.056C58.216 193.084 58.2263 193.11 58.2426 193.133C58.2589 193.156 58.2806 193.175 58.3058 193.188C58.3311 193.201 58.3591 193.207 58.3874 193.206H61.247C61.2734 193.206 61.2996 193.201 61.3234 193.189C61.3473 193.178 61.3681 193.161 61.3844 193.14C61.4007 193.119 61.4119 193.095 61.4172 193.069C61.4225 193.043 61.4217 193.017 61.415 192.991L60.2792 188.487C60.27 188.451 60.2497 188.42 60.2213 188.396C60.1929 188.372 60.1578 188.359 60.1209 188.356C60.0841 188.354 60.0474 188.363 60.0162 188.383C59.9849 188.402 59.9606 188.431 59.9468 188.465Z" fill="var(--sapContent_Illustrative_Color19)"/>
29
+ <path d="M37.9147 183.515L40.723 182.711C40.7744 182.692 40.8291 182.685 40.8836 182.689C40.9381 182.692 40.9913 182.707 41.0396 182.733C41.088 182.758 41.1306 182.793 41.1647 182.836C41.1987 182.878 41.2235 182.928 41.2375 182.98L44.102 192.935C44.346 193.783 44.2424 194.693 43.8139 195.465C43.3855 196.236 42.6672 196.807 41.8172 197.05C41.7167 197.079 41.6088 197.067 41.5173 197.016C41.4258 196.966 41.3582 196.881 41.3293 196.781L37.6535 184.007C37.6383 183.958 37.6329 183.906 37.6378 183.854C37.6427 183.803 37.6577 183.753 37.682 183.707C37.7062 183.662 37.7393 183.621 37.7792 183.588C37.8191 183.555 37.8652 183.53 37.9147 183.515Z" fill="var(--sapContent_Illustrative_Color19)"/>
30
+ <path d="M42.756 191.752L40.2579 190.739L47.0509 182.023L46.2256 186.483C45.9054 188.225 45.2128 189.878 44.195 191.33C44.0387 191.552 43.8112 191.716 43.5497 191.792C43.2882 191.869 43.0084 191.855 42.756 191.752Z" fill="var(--sapContent_Illustrative_Color19)"/>
31
+ <path d="M44.2616 194.185C45.1718 193.959 45.5731 192.424 45.1578 190.756C44.7426 189.088 43.668 187.919 42.7578 188.144C41.8475 188.37 41.4462 189.905 41.8615 191.573C42.2767 193.241 43.3513 194.41 44.2616 194.185Z" fill="var(--sapContent_Illustrative_Color18)"/>
32
+ <path d="M56.6357 183.785C64.165 182.752 69.8918 179.18 69.4268 175.806C68.9619 172.433 62.4813 170.536 54.952 171.569C47.4227 172.602 41.6959 176.174 42.1609 179.548C42.6258 182.921 49.1064 184.818 56.6357 183.785Z" fill="var(--sapContent_Illustrative_Color19)"/>
33
+ <path d="M46.9311 181.982L42.2941 180.097L40.1387 185.375L44.7756 187.26L46.9311 181.982Z" fill="var(--sapContent_Illustrative_Color19)"/>
34
+ <path d="M46.6659 173.035C49.8801 169.754 51.7676 166.393 50.8819 165.53C49.9961 164.666 46.6725 166.626 43.4583 169.908C40.2441 173.19 38.3565 176.55 39.2423 177.414C40.128 178.278 43.4517 176.317 46.6659 173.035Z" fill="var(--sapContent_Illustrative_Color19)"/>
35
+ </g>
36
+ <rect x="151" y="5.56445" width="45" height="57" rx="5" fill="var(--sapContent_Illustrative_Color19)"/>
37
+ <rect x="153" y="4" width="45" height="57" rx="5" fill="var(--sapContent_Illustrative_Color18)"/>
38
+ <rect x="156" y="7" width="39" height="51" rx="3" fill="var(--sapContent_Illustrative_Color7)"/>
39
+ <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)"/>
40
+ <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)"/>
41
+ <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)"/>
42
+ <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)"/>
43
+ <rect x="264" y="58" width="45" height="57" rx="5" fill="var(--sapContent_Illustrative_Color19)"/>
44
+ <rect x="266" y="56.4355" width="45" height="57" rx="5" fill="var(--sapContent_Illustrative_Color18)"/>
45
+ <rect x="269" y="59.4355" width="39" height="51" rx="3" fill="var(--sapContent_Illustrative_Color7)"/>
46
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M306 110.265V59.6062C307.165 60.018 308 61.1293 308 62.4355V107.435C308 108.742 307.165 109.853 306 110.265Z" fill="var(--sapContent_Illustrative_Color19)"/>
47
+ <g opacity="0.5">
48
+ <path d="M300.092 85.4989L300.058 85.4546C298.487 82.8114 295.297 81 291.615 81C288.076 81 284.994 82.6686 283.365 85.1445V81.9204C283.365 81.8682 283.344 81.8182 283.307 81.7812C283.27 81.7443 283.22 81.7235 283.168 81.7235L281.031 83.2593H280.908C280.536 83.097 280.133 83.0181 279.727 83.0279C279.353 83.0223 278.983 83.0875 278.634 83.2199H278.58L276.197 81.7433C276.171 81.7433 276.145 81.7483 276.122 81.7582C276.098 81.7681 276.076 81.7827 276.058 81.8009C276.039 81.8192 276.025 81.8409 276.015 81.8648C276.005 81.8887 276 81.9143 276 81.9402V85.9911C276 87.0773 276.432 88.1189 277.2 88.8869C277.968 89.655 279.01 90.0864 280.096 90.0864H299.472C299.497 90.3374 299.511 90.5786 299.511 90.874C299.516 92.0401 299.233 93.1894 298.687 94.2198C298.14 95.2502 297.348 96.1299 296.38 96.7806L296.302 96.8348C296.179 96.9168 296.075 97.0227 295.995 97.1461C295.914 97.2695 295.86 97.4079 295.834 97.553C295.809 97.698 295.813 97.8467 295.846 97.9901C295.88 98.1335 295.942 98.2687 296.029 98.3875C296.116 98.5063 296.226 98.6063 296.352 98.6815C296.479 98.7568 296.619 98.8056 296.765 98.8252C296.911 98.8448 297.06 98.8346 297.202 98.7953C297.344 98.7561 297.476 98.6886 297.591 98.5969L297.651 98.5575C298.9 97.7002 299.921 96.5508 300.626 95.2092C301.33 93.8676 301.696 92.3744 301.692 90.8592C301.681 88.9564 301.126 87.0966 300.092 85.4989ZM282.144 86.8082L283.335 83.8549L283.36 85.1888L282.144 86.8082Z" fill="var(--sapContent_Illustrative_Color19)"/>
49
+ <path d="M282.144 86.7982L283.36 85.1592L283.34 83.8253L282.144 86.7982Z" fill="var(--sapContent_Illustrative_Color19)"/>
50
+ </g>
51
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M112.028 104.574C110.326 104.574 108.965 105.989 109.03 107.689L109.481 119.434H216.113L215.884 107.517C215.853 105.883 214.519 104.574 212.885 104.574H112.028ZM216.113 119.434H109.481L111.972 186.804C111.982 187.126 112.117 187.432 112.348 187.655C112.579 187.879 112.889 188.003 113.21 188H217.155C217.321 188 217.486 187.967 217.639 187.902C217.792 187.837 217.931 187.741 218.046 187.621C218.162 187.501 218.252 187.359 218.312 187.203C218.371 187.048 218.399 186.881 218.393 186.715L216.113 119.434Z" fill="var(--sapContent_Illustrative_Color20)"/>
52
+ <path d="M114.087 113.719H220.719L222.999 180.999C223.005 181.166 222.978 181.332 222.918 181.488C222.859 181.643 222.768 181.786 222.653 181.906C222.537 182.026 222.399 182.121 222.245 182.186C222.092 182.251 221.928 182.285 221.761 182.285H117.817C117.495 182.287 117.186 182.163 116.954 181.94C116.723 181.716 116.588 181.41 116.579 181.088L114.087 113.719Z" fill="var(--sapContent_Illustrative_Color2)"/>
53
+ <path d="M126.746 131.117C126.684 129.418 128.044 128.008 129.744 128.008H205.852C207.466 128.008 208.791 129.285 208.85 130.898L210.342 171.765C210.404 173.463 209.043 174.874 207.344 174.874H131.235C129.621 174.874 128.296 173.597 128.237 171.984L126.746 131.117Z" fill="var(--sapContent_Illustrative_Color8)"/>
54
+ <path d="M128.922 123.27H160.216C160.436 123.272 160.653 123.228 160.856 123.143C161.058 123.057 161.241 122.931 161.394 122.773C161.546 122.614 161.665 122.426 161.742 122.22C161.82 122.014 161.855 121.794 161.846 121.574C161.823 121.116 161.625 120.685 161.293 120.369C160.962 120.053 160.522 119.878 160.064 119.878H128.78C128.56 119.877 128.342 119.92 128.14 120.006C127.937 120.091 127.754 120.217 127.602 120.376C127.449 120.534 127.331 120.722 127.253 120.928C127.175 121.135 127.14 121.354 127.15 121.574C127.173 122.031 127.369 122.461 127.699 122.776C128.028 123.092 128.466 123.269 128.922 123.27Z" fill="var(--sapContent_Illustrative_Color8)"/>
55
+ <path d="M134.488 135.232C134.405 135.231 134.323 135.246 134.247 135.278C134.171 135.31 134.102 135.357 134.044 135.416C133.987 135.475 133.942 135.546 133.912 135.623C133.883 135.701 133.87 135.783 133.874 135.866L133.989 139.329C133.996 139.501 134.068 139.663 134.191 139.782C134.313 139.902 134.477 139.97 134.648 139.972H138.772C138.855 139.973 138.938 139.958 139.014 139.925C139.091 139.893 139.161 139.845 139.219 139.785C139.276 139.725 139.321 139.653 139.35 139.575C139.379 139.496 139.391 139.413 139.386 139.329L139.27 135.866C139.261 135.696 139.188 135.536 139.066 135.418C138.943 135.301 138.781 135.234 138.611 135.232H134.488Z" fill="var(--sapContent_Illustrative_Color6)"/>
56
+ <path d="M145.023 135.25C144.94 135.249 144.858 135.264 144.781 135.296C144.704 135.327 144.635 135.374 144.576 135.433C144.518 135.492 144.473 135.563 144.442 135.64C144.412 135.718 144.397 135.8 144.4 135.884L144.525 139.347C144.531 139.519 144.603 139.681 144.726 139.8C144.849 139.92 145.012 139.988 145.184 139.99H149.307C149.39 139.99 149.472 139.973 149.548 139.941C149.624 139.908 149.693 139.86 149.751 139.8C149.808 139.74 149.853 139.669 149.882 139.591C149.912 139.513 149.925 139.43 149.921 139.347L149.805 135.884C149.794 135.713 149.719 135.553 149.595 135.436C149.471 135.318 149.308 135.252 149.137 135.25H145.023Z" fill="var(--sapContent_Illustrative_Color6)"/>
57
+ <path d="M155.683 135.285C155.6 135.285 155.518 135.302 155.441 135.335C155.365 135.367 155.296 135.415 155.239 135.475C155.181 135.535 155.137 135.606 155.107 135.684C155.078 135.762 155.065 135.845 155.068 135.928L155.184 139.392C155.193 139.562 155.266 139.723 155.388 139.842C155.51 139.962 155.673 140.03 155.843 140.034H159.966C160.05 140.034 160.132 140.018 160.209 139.985C160.286 139.953 160.356 139.905 160.414 139.845C160.472 139.785 160.517 139.714 160.548 139.636C160.578 139.558 160.592 139.475 160.59 139.392L160.465 135.928C160.458 135.757 160.386 135.595 160.264 135.475C160.141 135.355 159.977 135.288 159.806 135.285H155.683Z" fill="var(--sapContent_Illustrative_Color6)"/>
58
+ <path d="M166.218 135.303C166.135 135.303 166.052 135.32 165.975 135.352C165.899 135.385 165.829 135.433 165.771 135.493C165.713 135.552 165.667 135.623 165.637 135.701C165.607 135.779 165.592 135.862 165.595 135.946L165.719 139.409C165.726 139.581 165.798 139.743 165.921 139.863C166.044 139.982 166.207 140.05 166.378 140.052H170.502C170.585 140.052 170.667 140.036 170.743 140.003C170.819 139.97 170.888 139.923 170.946 139.862C171.003 139.802 171.048 139.731 171.077 139.653C171.106 139.576 171.12 139.493 171.116 139.409L171 135.946C170.991 135.775 170.919 135.614 170.796 135.495C170.674 135.376 170.512 135.307 170.341 135.303H166.218Z" fill="var(--sapContent_Illustrative_Color6)"/>
59
+ <path d="M176.976 135.419C176.893 135.419 176.811 135.436 176.734 135.468C176.658 135.501 176.589 135.549 176.532 135.609C176.474 135.669 176.429 135.74 176.4 135.818C176.371 135.896 176.358 135.979 176.361 136.062L176.477 139.525C176.488 139.696 176.563 139.856 176.687 139.974C176.811 140.091 176.975 140.157 177.145 140.159H181.268C181.351 140.159 181.432 140.143 181.508 140.111C181.583 140.079 181.652 140.032 181.709 139.973C181.767 139.913 181.811 139.843 181.841 139.767C181.871 139.69 181.885 139.608 181.883 139.525L181.758 136.062C181.751 135.891 181.679 135.728 181.557 135.609C181.434 135.489 181.27 135.421 181.099 135.419H176.976Z" fill="var(--sapContent_Illustrative_Color6)"/>
60
+ <path d="M191.795 140.177C191.877 140.178 191.959 140.163 192.035 140.131C192.112 140.1 192.181 140.053 192.238 139.993C192.296 139.934 192.341 139.863 192.37 139.786C192.399 139.709 192.413 139.626 192.409 139.543L192.293 136.08C192.286 135.908 192.214 135.746 192.092 135.627C191.969 135.507 191.805 135.439 191.634 135.437H187.511C187.428 135.436 187.345 135.452 187.268 135.484C187.191 135.516 187.121 135.564 187.064 135.624C187.006 135.684 186.961 135.756 186.933 135.834C186.904 135.913 186.892 135.996 186.896 136.08L187.012 139.543C187.021 139.713 187.094 139.873 187.217 139.991C187.339 140.109 187.502 140.175 187.671 140.177H191.795Z" fill="var(--sapContent_Illustrative_Color6)"/>
61
+ <path d="M202.027 136.062C202.02 135.891 201.948 135.728 201.825 135.609C201.703 135.489 201.539 135.421 201.368 135.419H197.245C197.161 135.418 197.078 135.434 197.002 135.466C196.925 135.498 196.855 135.546 196.798 135.606C196.74 135.667 196.695 135.738 196.666 135.817C196.638 135.895 196.625 135.979 196.63 136.062L196.746 139.526C196.755 139.696 196.828 139.857 196.95 139.976C197.072 140.095 197.235 140.164 197.405 140.168H201.528C201.611 140.168 201.693 140.152 201.77 140.119C201.846 140.086 201.915 140.039 201.972 139.979C202.03 139.918 202.074 139.847 202.104 139.769C202.133 139.692 202.146 139.609 202.143 139.526L202.027 136.062Z" fill="var(--sapContent_Illustrative_Color6)"/>
62
+ <path d="M139.199 149.354C139.282 149.353 139.363 149.335 139.439 149.302C139.515 149.269 139.583 149.221 139.64 149.162C139.698 149.102 139.742 149.031 139.772 148.954C139.802 148.876 139.816 148.794 139.813 148.711L139.689 145.248C139.682 145.076 139.61 144.914 139.487 144.795C139.365 144.675 139.201 144.607 139.03 144.605H134.906C134.824 144.606 134.742 144.624 134.667 144.657C134.591 144.69 134.522 144.738 134.465 144.797C134.408 144.857 134.363 144.928 134.333 145.005C134.304 145.082 134.29 145.165 134.292 145.248L134.408 148.711C134.417 148.883 134.491 149.046 134.615 149.165C134.739 149.284 134.904 149.352 135.076 149.354H139.199Z" fill="var(--sapContent_Illustrative_Color6)"/>
63
+ <path d="M149.725 149.372C149.808 149.372 149.89 149.355 149.967 149.322C150.043 149.29 150.112 149.242 150.169 149.182C150.227 149.122 150.272 149.051 150.301 148.973C150.33 148.895 150.343 148.812 150.34 148.729L150.224 145.266C150.217 145.094 150.145 144.932 150.022 144.812C149.9 144.693 149.736 144.625 149.565 144.623H145.442C145.359 144.623 145.277 144.639 145.2 144.672C145.124 144.705 145.055 144.753 144.997 144.813C144.94 144.873 144.895 144.944 144.866 145.022C144.837 145.099 144.824 145.182 144.827 145.266L144.943 148.729C144.952 148.9 145.025 149.061 145.147 149.18C145.269 149.299 145.432 149.368 145.602 149.372H149.725Z" fill="var(--sapContent_Illustrative_Color6)"/>
64
+ <path d="M160.394 149.416C160.477 149.415 160.558 149.398 160.634 149.365C160.71 149.332 160.778 149.284 160.835 149.224C160.893 149.164 160.937 149.094 160.967 149.016C160.997 148.939 161.011 148.857 161.009 148.774L160.884 145.31C160.877 145.139 160.805 144.977 160.682 144.857C160.56 144.737 160.396 144.67 160.225 144.667H156.102C156.019 144.667 155.936 144.684 155.86 144.717C155.784 144.749 155.715 144.797 155.657 144.857C155.6 144.917 155.555 144.988 155.526 145.066C155.497 145.144 155.483 145.227 155.487 145.31L155.612 148.774C155.619 148.945 155.691 149.107 155.813 149.227C155.936 149.346 156.1 149.414 156.271 149.416H160.394Z" fill="var(--sapContent_Illustrative_Color6)"/>
65
+ <path d="M170.92 149.434C171.003 149.434 171.086 149.418 171.163 149.385C171.24 149.353 171.309 149.305 171.367 149.245C171.425 149.185 171.471 149.114 171.501 149.036C171.531 148.958 171.546 148.875 171.543 148.792L171.419 145.328C171.412 145.157 171.34 144.995 171.217 144.875C171.095 144.755 170.931 144.688 170.76 144.685H166.636C166.553 144.684 166.47 144.7 166.393 144.732C166.316 144.764 166.247 144.812 166.189 144.872C166.132 144.933 166.087 145.004 166.058 145.083C166.029 145.161 166.017 145.245 166.022 145.328L166.138 148.792C166.147 148.962 166.219 149.123 166.342 149.242C166.464 149.362 166.626 149.43 166.797 149.434H170.92Z" fill="var(--sapContent_Illustrative_Color6)"/>
66
+ <path d="M181.687 149.541C181.769 149.541 181.85 149.525 181.926 149.493C182.002 149.461 182.07 149.414 182.128 149.355C182.185 149.296 182.23 149.226 182.26 149.149C182.29 149.072 182.304 148.99 182.301 148.908L182.177 145.444C182.172 145.272 182.101 145.108 181.977 144.988C181.854 144.868 181.689 144.801 181.518 144.801H177.394C177.311 144.801 177.229 144.818 177.153 144.851C177.077 144.883 177.008 144.931 176.95 144.991C176.893 145.051 176.848 145.122 176.819 145.2C176.79 145.278 176.776 145.361 176.78 145.444L176.905 148.908C176.911 149.078 176.984 149.239 177.107 149.357C177.23 149.476 177.393 149.541 177.564 149.541H181.687Z" fill="var(--sapContent_Illustrative_Color6)"/>
67
+ <path d="M187.921 144.819C187.838 144.819 187.756 144.836 187.679 144.869C187.603 144.901 187.534 144.949 187.477 145.009C187.419 145.069 187.374 145.14 187.345 145.218C187.316 145.296 187.303 145.379 187.306 145.462L187.422 148.926C187.433 149.096 187.508 149.256 187.632 149.374C187.756 149.491 187.919 149.558 188.09 149.559H192.204C192.287 149.561 192.37 149.545 192.446 149.513C192.523 149.482 192.593 149.435 192.651 149.376C192.709 149.317 192.755 149.246 192.785 149.169C192.816 149.092 192.83 149.009 192.828 148.926L192.703 145.462C192.696 145.291 192.624 145.129 192.501 145.009C192.379 144.889 192.215 144.821 192.044 144.819H187.921Z" fill="var(--sapContent_Illustrative_Color6)"/>
68
+ <path d="M202.446 145.444C202.439 145.273 202.367 145.11 202.244 144.991C202.121 144.871 201.958 144.803 201.786 144.801H197.663C197.58 144.801 197.498 144.818 197.422 144.851C197.345 144.883 197.276 144.931 197.219 144.991C197.162 145.051 197.117 145.122 197.088 145.2C197.058 145.278 197.045 145.361 197.049 145.444L197.165 148.908C197.176 149.078 197.251 149.238 197.375 149.356C197.498 149.473 197.662 149.539 197.832 149.541H201.956C202.038 149.541 202.119 149.525 202.195 149.493C202.271 149.461 202.339 149.414 202.397 149.355C202.454 149.296 202.499 149.226 202.529 149.149C202.558 149.072 202.573 148.99 202.57 148.908L202.446 145.444Z" fill="var(--sapContent_Illustrative_Color6)"/>
69
+ <path d="M140.125 154.291C140.118 154.119 140.046 153.957 139.924 153.838C139.801 153.718 139.637 153.65 139.466 153.648H135.379C135.296 153.648 135.213 153.665 135.137 153.697C135.061 153.73 134.992 153.778 134.934 153.838C134.877 153.898 134.832 153.969 134.803 154.047C134.774 154.125 134.761 154.208 134.764 154.291L134.88 157.754C134.889 157.926 134.963 158.089 135.087 158.208C135.211 158.327 135.376 158.395 135.548 158.397H139.671C139.754 158.396 139.835 158.378 139.911 158.345C139.987 158.312 140.055 158.264 140.112 158.204C140.17 158.145 140.214 158.074 140.244 157.997C140.274 157.919 140.288 157.837 140.285 157.754L140.125 154.291Z" fill="var(--sapContent_Illustrative_Color6)"/>
70
+ <path d="M150.66 154.308C150.651 154.138 150.578 153.977 150.456 153.858C150.334 153.739 150.172 153.67 150.001 153.666H145.878C145.795 153.666 145.713 153.682 145.636 153.715C145.56 153.748 145.491 153.795 145.434 153.856C145.376 153.916 145.332 153.987 145.302 154.065C145.273 154.142 145.26 154.225 145.263 154.308L145.379 157.772C145.388 157.943 145.461 158.104 145.583 158.223C145.705 158.342 145.868 158.41 146.038 158.415H150.161C150.244 158.415 150.327 158.398 150.403 158.365C150.479 158.333 150.548 158.285 150.606 158.225C150.663 158.165 150.708 158.094 150.737 158.016C150.766 157.938 150.78 157.855 150.776 157.772L150.66 154.308Z" fill="var(--sapContent_Illustrative_Color6)"/>
71
+ <path d="M161.32 154.353C161.313 154.182 161.241 154.02 161.118 153.9C160.996 153.78 160.832 153.713 160.661 153.71H156.538C156.455 153.71 156.373 153.727 156.296 153.76C156.22 153.792 156.151 153.84 156.094 153.9C156.036 153.96 155.991 154.031 155.962 154.109C155.933 154.187 155.92 154.27 155.923 154.353L156.048 157.817C156.055 157.987 156.127 158.148 156.25 158.267C156.373 158.385 156.537 158.451 156.707 158.451H160.83C160.912 158.451 160.994 158.434 161.07 158.402C161.145 158.37 161.214 158.323 161.271 158.264C161.328 158.205 161.373 158.135 161.403 158.058C161.433 157.981 161.447 157.899 161.445 157.817L161.32 154.353Z" fill="var(--sapContent_Illustrative_Color6)"/>
72
+ <path d="M171.891 154.371C171.884 154.2 171.812 154.038 171.689 153.918C171.567 153.798 171.403 153.731 171.232 153.728H167.109C167.025 153.727 166.943 153.743 166.866 153.775C166.789 153.807 166.719 153.855 166.661 153.915C166.604 153.976 166.559 154.047 166.53 154.126C166.502 154.204 166.489 154.288 166.494 154.371L166.61 157.835C166.619 158.004 166.692 158.164 166.814 158.282C166.937 158.4 167.099 158.466 167.269 158.468H171.392C171.475 158.47 171.557 158.454 171.633 158.422C171.709 158.391 171.778 158.344 171.836 158.284C171.894 158.225 171.938 158.155 171.968 158.077C171.997 158 172.01 157.917 172.007 157.835L171.891 154.371Z" fill="var(--sapContent_Illustrative_Color6)"/>
73
+ <path d="M182.577 154.478C182.571 154.307 182.498 154.146 182.375 154.028C182.252 153.91 182.089 153.844 181.918 153.844H177.795C177.713 153.844 177.632 153.86 177.556 153.893C177.48 153.925 177.412 153.972 177.354 154.031C177.297 154.09 177.252 154.16 177.222 154.237C177.193 154.313 177.178 154.395 177.181 154.478L177.305 157.95C177.312 158.121 177.385 158.282 177.508 158.4C177.631 158.518 177.794 158.584 177.964 158.584H182.088C182.17 158.584 182.251 158.568 182.327 158.536C182.403 158.503 182.471 158.456 182.529 158.397C182.586 158.338 182.631 158.268 182.661 158.191C182.69 158.115 182.704 158.033 182.702 157.95L182.577 154.478Z" fill="var(--sapContent_Illustrative_Color6)"/>
74
+ <path d="M192.65 158.602C192.733 158.603 192.815 158.588 192.892 158.556C192.968 158.525 193.038 158.478 193.096 158.419C193.155 158.359 193.2 158.289 193.231 158.211C193.261 158.134 193.275 158.051 193.273 157.968L193.148 154.496C193.139 154.326 193.066 154.166 192.944 154.048C192.821 153.931 192.659 153.864 192.489 153.862H188.366C188.283 153.861 188.201 153.876 188.125 153.908C188.049 153.939 187.98 153.986 187.922 154.046C187.865 154.105 187.82 154.176 187.791 154.253C187.761 154.33 187.748 154.413 187.752 154.496L187.867 157.968C187.876 158.138 187.949 158.298 188.072 158.416C188.194 158.533 188.357 158.6 188.526 158.602H192.65Z" fill="var(--sapContent_Illustrative_Color6)"/>
75
+ <path d="M198.1 153.844C198.017 153.844 197.934 153.861 197.858 153.893C197.782 153.926 197.713 153.974 197.655 154.034C197.598 154.094 197.553 154.165 197.524 154.243C197.495 154.321 197.481 154.404 197.485 154.487L197.601 157.95C197.612 158.121 197.687 158.281 197.811 158.398C197.935 158.516 198.098 158.582 198.269 158.584H202.392C202.474 158.584 202.556 158.568 202.631 158.536C202.707 158.503 202.776 158.456 202.833 158.397C202.89 158.338 202.935 158.268 202.965 158.191C202.995 158.115 203.009 158.033 203.006 157.95L202.882 154.487C202.875 154.315 202.803 154.153 202.68 154.034C202.558 153.914 202.394 153.846 202.223 153.844H198.1Z" fill="var(--sapContent_Illustrative_Color6)"/>
76
+ <path d="M140.535 163.36C140.528 163.189 140.456 163.026 140.333 162.907C140.211 162.787 140.047 162.719 139.876 162.717H135.753C135.67 162.717 135.587 162.734 135.511 162.767C135.435 162.799 135.366 162.847 135.308 162.907C135.251 162.967 135.206 163.038 135.177 163.116C135.148 163.194 135.134 163.277 135.138 163.36L135.254 166.824C135.265 166.994 135.34 167.154 135.464 167.272C135.588 167.389 135.751 167.455 135.922 167.457H140.045C140.127 167.457 140.209 167.441 140.284 167.409C140.36 167.377 140.429 167.33 140.486 167.271C140.543 167.212 140.588 167.142 140.618 167.065C140.648 166.988 140.662 166.906 140.659 166.824L140.535 163.36Z" fill="var(--sapContent_Illustrative_Color6)"/>
77
+ <path d="M151.07 163.378C151.063 163.207 150.991 163.044 150.868 162.925C150.746 162.805 150.582 162.737 150.411 162.735H146.288C146.204 162.734 146.122 162.75 146.045 162.782C145.968 162.814 145.898 162.862 145.841 162.922C145.783 162.982 145.738 163.054 145.709 163.133C145.681 163.211 145.668 163.294 145.673 163.378L145.789 166.841C145.798 167.011 145.871 167.171 145.993 167.289C146.116 167.407 146.278 167.473 146.448 167.475H150.571C150.654 167.477 150.736 167.461 150.812 167.429C150.888 167.398 150.957 167.351 151.015 167.291C151.073 167.232 151.117 167.161 151.147 167.084C151.176 167.007 151.189 166.924 151.186 166.841L151.07 163.378Z" fill="var(--sapContent_Illustrative_Color6)"/>
78
+ <path d="M161.73 163.423C161.723 163.251 161.651 163.089 161.528 162.969C161.405 162.85 161.242 162.782 161.071 162.78H156.947C156.864 162.78 156.782 162.796 156.706 162.829C156.63 162.862 156.561 162.909 156.503 162.97C156.446 163.03 156.401 163.101 156.372 163.179C156.343 163.256 156.329 163.339 156.333 163.423L156.449 166.886C156.46 167.057 156.535 167.217 156.659 167.334C156.783 167.452 156.946 167.518 157.117 167.52H161.204C161.286 167.52 161.368 167.503 161.444 167.471C161.519 167.439 161.588 167.392 161.645 167.333C161.702 167.274 161.747 167.204 161.777 167.127C161.807 167.05 161.821 166.968 161.819 166.886L161.73 163.423Z" fill="var(--sapContent_Illustrative_Color6)"/>
79
+ <path d="M172.265 163.44C172.258 163.269 172.186 163.107 172.063 162.987C171.941 162.868 171.777 162.8 171.606 162.798H167.483C167.399 162.796 167.317 162.812 167.24 162.844C167.163 162.877 167.093 162.924 167.035 162.985C166.978 163.045 166.933 163.117 166.904 163.195C166.876 163.273 166.863 163.357 166.868 163.44L166.984 166.904C166.993 167.074 167.066 167.234 167.189 167.351C167.311 167.469 167.473 167.536 167.643 167.538H171.766C171.849 167.539 171.931 167.523 172.007 167.492C172.083 167.46 172.152 167.413 172.21 167.354C172.267 167.294 172.312 167.224 172.342 167.147C172.371 167.069 172.384 166.987 172.381 166.904L172.265 163.44Z" fill="var(--sapContent_Illustrative_Color6)"/>
80
+ <path d="M183.023 163.565C183.016 163.395 182.943 163.234 182.821 163.116C182.698 162.997 182.534 162.932 182.364 162.932H178.24C178.158 162.932 178.077 162.948 178.001 162.98C177.925 163.012 177.857 163.059 177.8 163.118C177.742 163.177 177.697 163.247 177.668 163.324C177.638 163.401 177.624 163.483 177.626 163.565L177.751 167.029C177.755 167.201 177.827 167.365 177.95 167.485C178.073 167.605 178.238 167.672 178.41 167.672H182.577C182.66 167.672 182.743 167.655 182.819 167.622C182.895 167.59 182.964 167.542 183.022 167.482C183.079 167.422 183.124 167.351 183.153 167.273C183.182 167.195 183.195 167.112 183.192 167.029L183.023 163.565Z" fill="var(--sapContent_Illustrative_Color6)"/>
81
+ <path d="M113.637 101.974C113.571 100.273 114.932 98.8589 116.634 98.8589H217.491C219.125 98.8589 220.459 100.167 220.49 101.801L220.719 113.719H114.087L113.637 101.974Z" fill="var(--sapContent_Illustrative_Color3)"/>
82
+ <path d="M136.848 107.247H136.75C136.313 107.245 135.894 107.074 135.581 106.77C135.267 106.465 135.083 106.051 135.067 105.614L135.004 103.882C134.686 104.147 134.433 104.482 134.266 104.862C134.1 105.241 134.023 105.655 134.042 106.069C134.065 106.808 134.369 107.511 134.893 108.032C135.416 108.553 136.119 108.854 136.857 108.872C137.214 108.866 137.567 108.789 137.895 108.644C138.222 108.499 138.517 108.289 138.762 108.028C139.007 107.766 139.197 107.458 139.321 107.122C139.445 106.785 139.5 106.427 139.484 106.069C139.467 105.644 139.357 105.229 139.164 104.851C138.97 104.473 138.696 104.143 138.362 103.882L138.424 105.614C138.432 105.826 138.398 106.038 138.322 106.236C138.247 106.435 138.132 106.616 137.984 106.768C137.837 106.921 137.66 107.042 137.465 107.125C137.27 107.207 137.06 107.249 136.848 107.247Z" fill="var(--sapContent_Illustrative_Color4)"/>
83
+ <path d="M195.936 107.167H195.838C195.404 107.16 194.988 106.989 194.676 106.687C194.363 106.386 194.177 105.976 194.154 105.542L194.101 103.917C193.79 104.181 193.543 104.513 193.379 104.888C193.215 105.262 193.139 105.669 193.157 106.077C193.177 106.817 193.481 107.521 194.005 108.043C194.529 108.565 195.233 108.865 195.971 108.88C196.333 108.881 196.691 108.808 197.023 108.665C197.356 108.523 197.656 108.314 197.906 108.052C198.156 107.79 198.35 107.48 198.476 107.141C198.603 106.801 198.66 106.439 198.643 106.077C198.624 105.649 198.513 105.23 198.316 104.849C198.119 104.468 197.842 104.135 197.503 103.873L197.556 105.542C197.565 105.758 197.529 105.973 197.451 106.174C197.372 106.375 197.253 106.558 197.101 106.71C196.949 106.863 196.767 106.982 196.566 107.061C196.365 107.139 196.151 107.175 195.936 107.167Z" fill="var(--sapContent_Illustrative_Color4)"/>
84
+ <path d="M135.067 105.613C135.083 106.051 135.267 106.465 135.581 106.769C135.894 107.074 136.313 107.245 136.75 107.247H136.848C137.06 107.248 137.27 107.207 137.465 107.124C137.661 107.042 137.837 106.921 137.985 106.768C138.132 106.615 138.247 106.434 138.322 106.236C138.398 106.037 138.433 105.826 138.424 105.613L138.362 103.882L138.184 98.8291L138.006 93.7052C137.989 93.2678 137.805 92.8536 137.492 92.5491C137.178 92.2447 136.759 92.0736 136.322 92.0716H136.269C136.057 92.0702 135.847 92.1119 135.652 92.1942C135.456 92.2765 135.28 92.3977 135.132 92.5504C134.985 92.7031 134.87 92.8841 134.794 93.0826C134.719 93.2811 134.684 93.4929 134.693 93.7052L134.871 98.8291L135.049 103.882L135.067 105.613Z" fill="var(--sapContent_Illustrative_Color6)"/>
85
+ <path d="M194.154 105.542C194.173 105.981 194.358 106.396 194.673 106.702C194.988 107.008 195.408 107.18 195.846 107.185H195.944C196.157 107.186 196.367 107.144 196.563 107.061C196.758 106.978 196.935 106.856 197.082 106.702C197.228 106.548 197.342 106.366 197.416 106.167C197.49 105.967 197.523 105.755 197.512 105.542L197.458 103.873L197.28 98.847L197.102 93.6339C197.084 93.1957 196.898 92.7815 196.583 92.4772C196.268 92.173 195.848 92.0022 195.41 92.0003H195.312C195.101 91.9988 194.891 92.0406 194.696 92.123C194.501 92.2054 194.325 92.3267 194.178 92.4795C194.032 92.6324 193.918 92.8135 193.843 93.012C193.769 93.2104 193.735 93.422 193.745 93.6339L193.923 98.847L194.101 103.917L194.154 105.542Z" fill="var(--sapContent_Illustrative_Color6)"/>
86
+ <path d="M261.275 101.326C260.979 100.972 260.593 100.704 260.158 100.551C259.723 100.397 259.255 100.364 258.802 100.455L247.987 102.325C246.198 102.634 245.491 104.278 245.734 105.68C245.812 106.258 246.075 106.794 246.484 107.209C246.894 107.624 247.426 107.894 248.003 107.98C248.283 108.014 248.566 108.005 248.843 107.953L259.658 106.082C260.134 106.01 260.582 105.81 260.954 105.504C261.326 105.199 261.608 104.798 261.771 104.344C261.952 103.841 262.002 103.299 261.915 102.771C261.828 102.242 261.608 101.745 261.275 101.326Z" fill="var(--sapContent_Illustrative_Color5)"/>
87
+ <path d="M220.166 58.1267C219.853 58.0203 219.522 57.9802 219.193 58.0091C218.864 58.0379 218.545 58.135 218.256 58.2941C217.967 58.4532 217.714 58.6709 217.513 58.9333C217.313 59.1956 217.17 59.4969 217.092 59.8178L214.112 70.0853C214.006 70.4549 213.975 70.8418 214.02 71.2235C214.065 71.6053 214.186 71.9741 214.376 72.3086C214.565 72.6431 214.819 72.9365 215.124 73.1717C215.428 73.4069 215.776 73.5792 216.147 73.6784C216.299 73.7236 216.454 73.7563 216.612 73.7761C217.192 73.8575 217.782 73.7186 218.265 73.3868C218.748 73.055 219.089 72.5543 219.221 71.9834L222.197 61.7198C222.304 61.3505 222.335 60.9637 222.291 60.582C222.246 60.2003 222.125 59.8313 221.936 59.4967C221.747 59.1622 221.493 58.8687 221.189 58.6334C220.885 58.3982 220.537 58.2259 220.166 58.1267Z" fill="var(--sapContent_Illustrative_Color5)"/>
88
+ <path d="M246.741 72.0302C246.381 72.0069 246.02 72.0572 245.681 72.178C245.341 72.2989 245.029 72.4878 244.765 72.7332L232.797 83.6218C232.263 84.1131 231.94 84.7918 231.895 85.5161C231.85 86.2403 232.086 86.9539 232.555 87.5077C232.992 88.0196 233.606 88.3486 234.274 88.4294C234.659 88.4754 235.05 88.4378 235.419 88.3192C235.788 88.2006 236.128 88.0037 236.414 87.7421L248.382 76.8535C248.919 76.3599 249.244 75.6771 249.289 74.9488C249.333 74.2205 249.093 73.5033 248.62 72.948C248.385 72.6764 248.097 72.4551 247.774 72.2974C247.451 72.1397 247.1 72.0488 246.741 72.0302Z" fill="var(--sapContent_Illustrative_Color5)"/>
89
+ </g>
90
+ </svg>
91
+ `;