@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,25 @@
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-ReceiveAppreciation">
2
+ <rect y="67" width="320" height="138" rx="24" fill="var(--sapContent_Illustrative_Color20)"/>
3
+ <path d="M102.665 98.3529L102.724 98.4283C102.977 98.8969 103.517 99.7586 104.451 100.653L106.007 102.659C106.624 104.012 107.21 105.349 107.692 106.463C108.422 108.15 108.766 111.85 109.9 114.835C109.917 114.881 109.94 114.933 109.962 114.989C110.044 115.169 110.159 115.398 110.3 115.667C110.343 115.746 110.385 115.828 110.431 115.913C111.699 118.275 114.517 123.194 114.029 127.637L113.773 128.659L110.169 143.139C108.789 142.615 107.259 143.335 106.778 144.725L86 204.941H118.397C123.312 187.708 129.469 165.315 131.775 156.898C131.831 156.698 131.884 156.508 131.933 156.324C131.936 156.311 131.939 156.298 131.943 156.285C132.447 154.447 131.713 152.49 130.121 151.448C129.937 151.327 129.744 151.206 129.544 151.085C128.636 150.541 128.122 149.528 128.21 148.473C128.21 148.44 128.217 148.408 128.22 148.375C128.499 145.154 133.024 144.643 133.99 147.726C134 147.756 134.007 147.782 134.017 147.811C134.046 147.903 134.072 147.992 134.099 148.08C134.151 148.257 134.207 148.434 134.256 148.608C134.797 150.465 135.157 152.117 135.383 153.336C134.829 153.614 134.551 154.25 134.724 154.846L135.291 156.796C135.94 159.034 135.904 161.367 135.743 163.69C135.743 163.726 135.743 163.759 135.743 163.792C135.835 164.549 136.546 166.718 137.67 169.818C137.693 169.877 137.713 169.936 137.736 169.998C137.88 170.391 138.031 170.801 138.185 171.223C138.208 171.282 138.23 171.345 138.25 171.404C138.348 171.669 138.45 171.944 138.555 172.219C138.578 172.278 138.601 172.341 138.624 172.4C139.05 173.537 139.512 174.759 140.006 176.047C140.029 176.106 140.052 176.168 140.075 176.23C140.2 176.558 140.328 176.892 140.459 177.23C143.578 185.329 147.762 195.762 151.488 204.944H183.55C175.598 188.144 165.017 166.072 160.089 155.567C160.04 155.459 159.991 155.354 159.942 155.249C159.912 155.184 159.88 155.115 159.85 155.053C159.696 154.725 159.549 154.411 159.408 154.106C159.382 154.05 159.355 153.998 159.332 153.942C159.29 153.847 159.244 153.755 159.201 153.664C159.172 153.598 159.142 153.536 159.113 153.473C159.074 153.388 159.034 153.303 158.995 153.221C158.972 153.169 158.949 153.12 158.926 153.07C158.883 152.979 158.844 152.89 158.802 152.805C158.779 152.756 158.756 152.707 158.736 152.661C158.7 152.579 158.664 152.504 158.628 152.425C158.605 152.376 158.582 152.327 158.559 152.277C158.52 152.196 158.484 152.114 158.448 152.035C158.431 151.999 158.412 151.96 158.395 151.924C158.343 151.809 158.294 151.701 158.245 151.593C158.245 151.593 158.245 151.593 158.245 151.589C158.195 151.485 158.15 151.38 158.104 151.281C158.091 151.252 158.077 151.226 158.064 151.196C158.032 151.124 158.002 151.055 157.969 150.99C157.956 150.964 157.946 150.937 157.933 150.908C157.904 150.846 157.878 150.783 157.851 150.724C157.838 150.698 157.828 150.672 157.815 150.646C157.789 150.587 157.763 150.531 157.74 150.475C157.73 150.456 157.72 150.433 157.714 150.413C157.687 150.357 157.665 150.302 157.642 150.249C157.635 150.233 157.629 150.22 157.622 150.203C157.596 150.144 157.573 150.092 157.55 150.039C157.55 150.033 157.543 150.026 157.543 150.023C157.517 149.964 157.497 149.912 157.475 149.863C157.019 150.095 156.462 149.915 156.229 149.46L153.293 143.748C153.077 143.329 152.546 143.185 152.147 143.444L152.133 143.453L146.406 128.997C145.134 123.826 148.464 117.237 148.827 115.677C149.561 112.544 149.42 108.829 149.925 107.046C150.259 105.866 150.666 104.451 151.098 103.016L153.847 98.2284C154.211 97.596 154.09 96.7998 153.631 96.3247C153.628 96.3214 153.624 96.3181 153.621 96.3116C153.585 96.2755 153.546 96.2395 153.506 96.2067C153.497 96.2002 153.49 96.1936 153.48 96.187C153.444 96.1576 153.402 96.1313 153.362 96.1084C153.349 96.1019 153.339 96.0953 153.329 96.0855C153.277 96.056 153.225 96.0298 153.169 96.0068C152.481 95.7381 151.56 95.5972 150.43 95.9216C150.318 95.9544 150.2 95.9904 150.086 96.033C149.902 96.0986 149.712 96.1805 149.515 96.2722C149.093 96.4721 148.647 96.7343 148.182 97.0783C148.175 97.0816 148.172 97.0881 148.165 97.0914C148.047 97.1799 147.933 97.2684 147.821 97.3634C147.782 97.3994 147.743 97.4355 147.7 97.4715C147.625 97.5403 147.546 97.6059 147.474 97.6747C147.428 97.7173 147.386 97.7631 147.343 97.8057C147.277 97.8713 147.209 97.9401 147.143 98.0089C147.097 98.058 147.055 98.1072 147.012 98.1563C146.95 98.2251 146.891 98.294 146.829 98.3628C146.786 98.4152 146.743 98.4676 146.704 98.5201C146.645 98.5921 146.589 98.6642 146.534 98.7363C146.491 98.792 146.452 98.8477 146.412 98.9034C146.357 98.9788 146.304 99.0542 146.252 99.1295C146.213 99.1852 146.176 99.2442 146.137 99.2999C146.085 99.3785 146.032 99.4572 145.983 99.5358C145.947 99.5948 145.911 99.6538 145.875 99.7095C145.826 99.7914 145.777 99.8701 145.728 99.9552C145.695 100.014 145.662 100.073 145.629 100.132C145.583 100.217 145.534 100.299 145.492 100.384C145.459 100.443 145.429 100.502 145.4 100.561C145.354 100.647 145.311 100.735 145.269 100.82C145.239 100.879 145.213 100.938 145.184 100.997C145.141 101.086 145.098 101.174 145.059 101.263C145.033 101.322 145.007 101.381 144.98 101.44C144.941 101.528 144.902 101.62 144.863 101.708C144.836 101.767 144.813 101.826 144.79 101.882C144.751 101.974 144.715 102.062 144.679 102.154C144.656 102.21 146.986 87.5169 146.504 85.2265C146.091 83.2572 144.64 82.8083 143.768 83.2343C143.699 83.267 143.634 83.3064 143.571 83.3522C143.571 83.3522 143.565 83.3555 143.562 83.3588C143.499 83.4047 143.44 83.4538 143.391 83.5128C143.368 83.539 143.342 83.5751 143.313 83.6209C143.313 83.6275 143.306 83.6308 143.303 83.634C143.277 83.6766 143.247 83.7291 143.218 83.788C143.211 83.7979 143.208 83.8077 143.201 83.8175C143.172 83.8765 143.139 83.9453 143.106 84.0174C143.1 84.0305 143.093 84.0469 143.087 84.06C143.054 84.1354 143.018 84.2173 142.982 84.3058C142.975 84.3221 142.969 84.3385 142.962 84.3549C142.926 84.4467 142.887 84.545 142.844 84.6498C142.838 84.6629 142.834 84.676 142.828 84.6891C142.788 84.7973 142.746 84.9087 142.7 85.0299C142.7 85.0365 142.693 85.043 142.693 85.0496C142.647 85.1708 142.602 85.3019 142.556 85.4362C142.549 85.4559 142.543 85.4755 142.536 85.4952C142.49 85.6263 142.444 85.7606 142.395 85.9015C142.385 85.9277 142.376 85.9539 142.369 85.9834C142.323 86.1243 142.274 86.2685 142.225 86.4159C142.215 86.4454 142.205 86.4749 142.195 86.5077C142.146 86.6584 142.094 86.8157 142.045 86.973C142.035 87.0025 142.025 87.0287 142.018 87.0582C141.966 87.222 141.91 87.3924 141.858 87.5628C141.851 87.5824 141.845 87.6054 141.838 87.625C141.782 87.7987 141.727 87.9757 141.671 88.1591C141.668 88.1723 141.661 88.1854 141.658 88.1985C141.599 88.3852 141.54 88.5753 141.481 88.7686C141.471 88.7948 141.465 88.8243 141.455 88.8505C141.399 89.0373 141.34 89.2241 141.284 89.4141C141.271 89.4534 141.261 89.4928 141.248 89.5321C141.193 89.7221 141.134 89.9122 141.075 90.1055C141.065 90.1415 141.052 90.1776 141.042 90.2136C140.983 90.4135 140.924 90.6134 140.862 90.8198C140.855 90.846 140.845 90.8755 140.839 90.9017C140.776 91.1147 140.714 91.3277 140.649 91.544C140.645 91.5571 140.642 91.5702 140.639 91.5833C140.573 91.8028 140.511 92.0256 140.446 92.2485C140.446 92.2583 140.439 92.2681 140.436 92.2812C140.37 92.504 140.308 92.7269 140.242 92.9497C140.236 92.9759 140.229 92.9988 140.219 93.025C140.157 93.2446 140.092 93.4641 140.029 93.6869C140.023 93.7131 140.016 93.7394 140.006 93.7623C139.944 93.9851 139.879 94.2079 139.816 94.4307C139.81 94.4504 139.803 94.4733 139.8 94.493C139.734 94.7224 139.669 94.9517 139.607 95.1811C139.607 95.1877 139.603 95.1942 139.6 95.2008C139.243 96.4623 138.899 97.7009 138.584 98.8412C138.443 99.3523 137.739 99.3851 137.546 98.8936L137.539 98.8772C137.7 97.6878 137.913 96.3083 138.188 94.7453C138.709 91.8094 139.459 88.2181 140.547 83.9683C141.016 82.1366 141.442 80.2853 141.733 78.4077C141.759 78.2471 141.782 78.0833 141.809 77.9162C141.825 77.8081 141.841 77.6967 141.858 77.5853C141.868 77.5296 141.874 77.4706 141.881 77.4149C141.9 77.2772 141.917 77.1364 141.936 76.9987C141.936 76.9758 141.943 76.9561 141.943 76.9332C142.084 75.7896 142.146 74.6002 141.93 73.532C141.773 72.7587 141.379 72.0083 140.744 71.6381C140.318 71.389 139.823 71.33 139.341 71.2776H139.335C139.177 71.2612 139.014 71.2416 138.86 71.2875C138.817 71.3006 138.778 71.3137 138.742 71.3333C138.738 71.3333 138.735 71.3399 138.729 71.3399C138.62 71.3956 138.522 71.4808 138.44 71.5824C138.378 71.6544 138.326 71.7364 138.273 71.8183C138.273 71.8183 137.326 73.2993 137.034 74.6035C136.69 75.5537 137.031 74.266 137.362 72.3622C137.382 72.2442 137.401 72.1197 137.421 71.9985C137.428 71.9592 137.434 71.9199 137.438 71.8805C137.451 71.7953 137.464 71.7069 137.474 71.6184C137.48 71.5692 137.487 71.5201 137.493 71.4709C137.506 71.3563 137.519 71.2416 137.533 71.1236C137.539 71.0515 137.546 70.9762 137.552 70.9008C137.555 70.8517 137.559 70.7992 137.562 70.7501C137.569 70.6649 137.572 70.5764 137.578 70.4912C137.578 70.465 137.578 70.4388 137.578 70.4126C137.588 70.1177 137.595 69.8228 137.572 69.5311V69.4787C137.519 68.7152 137.359 67.9845 137.015 67.3816C136.707 66.841 136.258 66.4019 135.606 66.1398C135.337 66.0316 135.049 65.9694 134.767 66.0153C133.892 66.1627 133.217 67.1949 132.706 68.2958C132.555 68.558 132.411 68.866 132.316 69.2133C132.136 69.672 131.985 70.1013 131.861 70.4421C131.857 70.4519 131.851 70.465 131.847 70.4781C131.716 70.832 131.589 71.1924 131.467 71.5496C131.363 71.851 131.264 72.1525 131.166 72.454C131.166 72.454 131.166 72.4572 131.166 72.4605C131.186 72.3557 131.205 72.2541 131.222 72.1492C131.228 72.1033 131.238 72.0575 131.245 72.0149C131.261 71.9231 131.274 71.8314 131.284 71.7429C131.29 71.6905 131.297 71.6413 131.304 71.5889C131.313 71.5037 131.323 71.4218 131.33 71.3399C131.333 71.2875 131.336 71.2383 131.34 71.1892C131.346 71.1105 131.349 71.0351 131.353 70.9598C131.353 70.9106 131.353 70.8648 131.353 70.8156C131.353 70.6944 131.353 70.5764 131.34 70.465C131.336 70.4093 131.333 70.3503 131.326 70.2979C131.32 70.2455 131.31 70.193 131.304 70.1439C131.294 70.0915 131.284 70.039 131.274 69.9866C131.264 69.9407 131.251 69.8949 131.238 69.849C131.222 69.7966 131.205 69.7474 131.189 69.7015C131.172 69.6622 131.159 69.6229 131.143 69.5836C131.117 69.5279 131.091 69.4754 131.061 69.4263C131.045 69.4001 131.032 69.3706 131.015 69.3476C130.969 69.2756 130.914 69.21 130.855 69.1478C130.835 69.1281 130.812 69.1085 130.789 69.0888C130.747 69.0462 130.701 69.0069 130.652 68.9708C130.625 68.9512 130.593 68.9315 130.566 68.9151C130.517 68.8824 130.465 68.8529 130.409 68.8267C130.376 68.8103 130.343 68.7939 130.311 68.7808C130.248 68.7546 130.183 68.7316 130.114 68.712C130.081 68.7021 130.052 68.6923 130.019 68.6825C129.914 68.6563 129.806 68.6333 129.688 68.6202C129.639 68.6137 129.59 68.6137 129.541 68.6104C127.378 68.4597 126.136 70.9827 125.288 73.3354C125.134 73.2469 124.976 73.1716 124.816 73.1093C124.812 73.1093 124.806 73.1093 124.803 73.106C124.708 73.07 124.613 73.0438 124.514 73.0208C124.498 73.0175 124.485 73.0143 124.468 73.011C124.377 72.9913 124.285 72.9749 124.19 72.9651C124.177 72.9651 124.164 72.9618 124.151 72.9618C123.934 72.9422 123.708 72.952 123.479 72.9979C123.397 73.0143 123.315 73.0307 123.23 73.0569C121.591 73.532 121.549 74.9672 122.27 77.0938C122.034 76.6022 121.788 76.1173 121.539 75.6356C121.539 75.6356 121.539 75.6356 121.539 75.6323C121.473 75.5046 121.408 75.38 121.342 75.2523C121.342 75.249 121.339 75.2424 121.336 75.2391C120.667 73.9874 119.386 71.2973 117.866 71.2842C117.581 71.2842 117.302 71.389 117.05 71.5398C114.877 72.8242 115.471 75.901 116.126 77.9817C117.047 80.9111 116.247 79.0991 115.313 77.7982C115.1 77.5001 114.841 77.1921 114.501 77.1527C114.343 77.1331 114.183 77.1757 114.029 77.2183C113.557 77.3461 113.072 77.4837 112.682 77.7982C112.102 78.2668 111.811 79.0729 111.755 79.8626C111.643 81.4386 112.145 83.1687 112.584 84.6564C113.118 86.4684 113.78 88.2312 114.481 89.9712C115.933 93.5657 117.053 96.6818 117.915 99.3163C117.981 99.5227 118.046 99.7193 118.108 99.9192L118.102 99.9421C117.918 100.732 116.834 100.83 116.509 100.086C114.425 95.3056 112.22 90.4594 111.617 89.9646C110.936 89.4043 109.589 89.65 109.015 91.0197C108.976 91.1147 108.94 91.2163 108.911 91.3179C108.901 91.3506 108.894 91.3834 108.884 91.4162C108.861 91.4981 108.842 91.58 108.825 91.6652C108.819 91.7013 108.812 91.734 108.806 91.7701C108.786 91.8913 108.77 92.0158 108.76 92.1469C108.76 92.1829 108.757 92.2222 108.76 92.2681C108.76 92.3173 108.763 92.3697 108.77 92.4287C108.776 92.5171 108.789 92.6155 108.806 92.7269C108.819 92.8153 108.835 92.9071 108.855 93.0054C108.917 93.3265 109.009 93.7066 109.127 94.1358C109.143 94.1948 109.16 94.2538 109.176 94.3128C109.297 94.742 109.438 95.2171 109.599 95.7283C109.625 95.8102 109.651 95.8921 109.677 95.9773C109.802 96.3705 109.936 96.7834 110.08 97.2094C110.113 97.3044 110.146 97.4027 110.179 97.501C110.254 97.7238 110.333 97.9532 110.411 98.1826C109.736 97.4289 108.979 96.7801 108.128 96.3345C105.755 95.0894 104.084 95.4596 103.052 96.0593C102.977 96.1019 102.908 96.1543 102.845 96.21C102.786 96.2624 102.731 96.3148 102.682 96.3738C102.613 96.4557 102.554 96.5475 102.508 96.6425C102.485 96.6917 102.462 96.7408 102.442 96.79C102.308 97.1438 102.298 97.5469 102.426 97.9171C102.482 98.0744 102.56 98.2251 102.665 98.3628V98.3529ZM133.306 98.7953C133.322 98.8379 133.342 98.8772 133.358 98.9198C133.361 98.9296 133.368 98.9427 133.371 98.9526C133.348 98.9001 133.325 98.8477 133.302 98.7953H133.306Z" fill="var(--sapContent_Illustrative_Color21)"/>
4
+ <path d="M131.698 126.692C131.698 126.692 165.475 137.38 164.887 140.239C163.68 146.101 130.446 141.307 131.698 126.692Z" fill="var(--sapContent_Illustrative_Color22)"/>
5
+ <path d="M191.626 130.502C191.626 130.502 183.026 110.776 183.019 110.762C181.381 107.001 183.423 101.658 184.675 97.9839C186.213 93.4613 186.31 88.7612 187.681 84.3569C188.123 82.941 188.662 81.2363 189.233 79.5073L192.872 73.7496C193.487 72.7755 193.056 71.464 191.971 71.0813C190.516 70.5664 188.262 70.4412 185.368 72.372C180.055 75.9205 178.74 85.3032 178.74 85.3032C178.74 85.3032 177.964 86.1625 175.776 83.595C173.609 81.0484 172.579 77.5069 171.261 74.4941C169.525 70.5247 168.081 66.4613 166.435 62.4535C164.518 57.7952 163.148 55.6731 160.611 51.3279C159.036 48.6282 156.489 42.38 152.342 43.469C147.068 44.8536 154.266 53.0813 158.211 63.4659C160.326 69.0322 164.059 76.9503 164.059 76.9503C163.235 77.2529 161.262 71.8501 161.053 71.3526C159.265 67.1049 157.585 62.8153 155.786 58.571C153.995 54.3372 152.165 50.065 149.83 46.0956C148.943 44.5892 147.249 41.3538 145.235 41.3398C144.855 41.3398 144.49 41.4686 144.156 41.646C141.279 43.1906 142.065 46.8888 142.932 49.3936C144.153 52.9178 146.463 55.9444 147.708 59.4477C148.515 61.716 149.406 63.9634 150.296 66.2038C151.323 68.7887 152.286 71.4292 153.49 73.9375C154.53 76.1083 156.016 81.0311 155.779 80.7249C155.543 80.4188 155.605 80.0709 153.424 74.2576C151.364 68.7678 149.152 63.3198 146.71 57.99C145.325 54.9703 143.933 51.7871 141.86 49.1675C141.578 48.8091 141.234 48.4404 140.782 48.3917C140.573 48.3708 140.364 48.4195 140.159 48.4717C139.536 48.6282 138.892 48.7917 138.374 49.1709C137.605 49.7345 137.219 50.7017 137.146 51.6514C137 53.5474 137.661 55.6278 138.242 57.4195C138.948 59.5973 139.825 61.7195 140.754 63.8138C145.805 75.1725 147.823 82.5966 148.553 85.8355C148.613 86.0964 148.244 86.2216 148.133 85.9781C145.683 80.6588 138.305 64.8053 136.965 63.8068C135.852 62.9754 133.417 63.6155 133.18 66.4369C132.943 69.2548 142.197 90.0902 142.197 90.0902C142.197 90.0902 146.863 109.002 156.924 117.831C166.985 126.661 168.874 142.674 168.874 142.674L191.623 130.502H191.626Z" fill="var(--sapContent_Illustrative_Color28)"/>
6
+ <path d="M155.779 80.7245C155.543 80.4218 155.605 80.0704 153.424 74.2571C152.909 72.883 152.384 71.5088 151.848 70.1381C152.363 71.4218 152.899 72.6916 153.49 73.9336C154.53 76.1045 156.016 81.0271 155.779 80.721V80.7245ZM161.053 71.3522C159.265 67.1044 157.581 62.8149 155.786 58.5706C155.209 57.2103 154.628 55.8431 154.029 54.4863C155.421 57.1721 156.976 60.2127 158.211 63.4655C160.326 69.0318 164.059 76.9498 164.059 76.9498C163.235 77.2525 161.262 71.8462 161.053 71.3522Z" fill="var(--sapContent_Illustrative_Color30)"/>
7
+ <path d="M154.318 77.9802C154.509 78.1055 154.708 78.2168 154.906 78.3246C154.586 77.4062 154.12 76.112 153.424 74.2578C153.09 73.3637 152.742 72.4765 152.401 71.5859C152.196 72.7514 152.133 73.9655 152.401 75.1136C152.673 76.286 153.306 77.3123 154.322 77.9767L154.318 77.9802Z" fill="var(--sapContent_Illustrative_Color30)"/>
8
+ <path d="M191.967 71.0807C190.513 70.5659 188.259 70.4406 185.364 72.3714C180.194 75.8225 178.81 84.7982 178.74 85.2783C178.688 85.3096 178.639 85.3479 178.594 85.3896C178.284 85.5149 177.439 85.5497 175.773 83.591C173.605 81.0444 172.576 77.5029 171.257 74.4901C169.521 70.5206 168.077 66.4572 166.432 62.4495C164.515 57.7912 163.144 55.6691 160.608 51.3239C160.545 51.216 160.479 51.0977 160.413 50.9794C160.396 50.9481 160.378 50.9133 160.358 50.882C160.302 50.7811 160.243 50.6733 160.184 50.5655C160.17 50.5411 160.159 50.5202 160.145 50.4959C160.086 50.3845 160.024 50.2732 159.964 50.1549C159.627 49.5218 159.251 48.8155 158.834 48.1024C158.823 48.0884 158.816 48.0711 158.806 48.0571C158.719 47.911 158.632 47.7649 158.542 47.6153C158.531 47.5979 158.524 47.584 158.514 47.5666C157.066 45.1975 155.163 42.9605 152.662 43.3954C153.156 44.3242 148.828 81.4167 149.778 82.4708C145.857 82.2447 142.194 90.0862 142.194 90.0862C142.194 90.0862 146.859 108.998 156.92 117.827C166.981 126.657 168.87 142.67 168.87 142.67L177.703 137.942C176.482 136.871 175.348 135.702 174.325 134.46C172.123 131.785 170.318 128.695 169.462 125.317C169.076 123.79 168.881 122.197 168.964 120.617C169.037 119.229 169.389 117.869 169.921 116.582C171.048 113.865 172.624 111.36 173.943 108.737C173.95 108.723 173.957 108.705 173.967 108.692C174.475 107.679 173.313 106.632 172.367 107.258C172.026 107.484 171.671 107.686 171.299 107.857C169.117 108.869 166.463 108.563 164.63 106.959C164.15 106.542 163.819 106.048 163.593 105.508C164.076 105.387 164.539 105.251 164.884 105.084C165.513 104.785 166.105 104.367 166.689 103.988C167.406 103.522 168.116 103.042 168.825 102.565C169.49 102.123 170.154 101.685 170.836 101.267C170.756 100.906 170.683 100.54 170.634 100.168C170.6 99.9177 170.77 99.695 170.989 99.5732C170.986 98.8183 171.069 98.0634 171.215 97.3502C171.654 95.2246 172.687 93.3007 174.016 91.603C174.896 90.4793 175.689 88.1345 175.968 86.235C176.729 86.5168 175.48 88.552 176.702 88.9103C177.29 89.0843 177.902 88.7224 178.107 88.1484C178.914 85.8836 180.702 81.2323 180.946 80.3939C183.59 71.2234 191.431 71.6583 192.726 71.6061C192.531 71.3695 192.273 71.1782 191.957 71.0668L191.967 71.0807Z" fill="var(--sapContent_Illustrative_Color30)"/>
9
+ <path d="M134.471 129.899L140.162 109.13C140.942 102.732 135.441 95.5206 134.693 93.7325C133.191 90.1422 132.738 85.6926 131.771 83.6644C131.131 82.325 130.352 80.7143 129.541 79.0896L125.116 73.9095C124.368 73.0328 124.608 71.676 125.627 71.1402C126.995 70.4236 129.207 69.9748 132.345 71.4742C138.11 74.226 140.754 83.3235 140.754 83.3235C140.754 83.3235 141.644 84.0645 143.443 81.2083C145.224 78.3799 145.736 74.7235 146.609 71.5542C147.76 67.376 148.606 63.1491 149.66 58.95C150.888 54.0656 151.945 51.7695 153.831 47.1042C155.003 44.2063 156.632 37.6589 160.89 38.1425C166.307 38.7583 160.361 47.9287 157.943 58.7726C156.646 64.5859 154.085 72.9562 154.085 72.9562C154.944 73.1371 156.124 67.5082 156.259 66.9864C157.421 62.5264 158.472 58.0385 159.641 53.582C160.81 49.1255 162.007 44.6446 163.75 40.3829C164.411 38.7652 165.628 35.3211 167.618 35.0184C167.99 34.9627 168.373 35.0393 168.731 35.168C171.8 36.2847 171.549 40.0594 171.052 42.6616C170.349 46.325 168.495 49.6508 167.764 53.2967C167.291 55.6555 166.731 58.0072 166.171 60.3555C165.524 63.0587 164.95 65.814 164.118 68.4684C163.402 70.7645 162.633 75.8507 162.824 75.5132C163.015 75.1793 162.904 74.8418 164.23 68.778C165.482 63.0517 166.891 57.3428 168.547 51.7173C169.486 48.5306 170.408 45.1804 172.082 42.2929C172.311 41.8997 172.596 41.4823 173.038 41.3709C173.244 41.3188 173.456 41.3396 173.668 41.3605C174.308 41.4266 174.966 41.4962 175.533 41.7954C176.375 42.2407 176.893 43.1452 177.102 44.0741C177.519 45.9284 177.161 48.0818 176.841 49.9396C176.455 52.1974 175.891 54.4239 175.268 56.6261C171.894 68.5902 170.961 76.2264 170.7 79.5384C170.68 79.8063 171.062 79.8758 171.139 79.6184C172.802 74.0034 177.836 57.2593 179.019 56.0764C180 55.0954 182.504 55.3806 183.141 58.136C183.778 60.8913 177.603 82.8364 177.603 82.8364C177.603 82.8364 175.693 102.221 166.999 112.4C158.305 122.58 158.729 138.698 158.729 138.698L134.474 129.906L134.471 129.899Z" fill="var(--sapContent_Illustrative_Color31)"/>
10
+ <path d="M134.471 129.896L140.757 133.309C140.649 127.673 144.542 121.864 146.675 116.652C146.706 116.576 146.741 116.499 146.776 116.416C148.018 113.719 148.327 110.644 147.625 107.76C146.571 103.453 142.712 100.11 141.029 95.9768C138.694 90.2504 137.115 85.0877 133.236 80.1511C132.69 79.4553 126.187 70.8449 125.627 71.1372C124.608 71.6729 124.368 73.0332 125.116 73.9064C126.657 75.7085 128.184 77.4166 129.485 79.4101C132.331 83.7657 132.724 89.0189 134.697 93.7294C135.445 95.5176 140.942 102.729 140.166 109.127L134.474 129.896H134.471Z" fill="var(--sapContent_Illustrative_Color3)"/>
11
+ <path d="M167.761 53.2867C168.491 49.6407 170.346 46.3149 171.048 42.6516C171.407 40.7834 171.629 38.3098 170.593 36.6504C170.297 39.4335 169.58 42.168 168.717 44.8224C167.5 48.5762 161.29 76.0981 162.02 76.2059C162.754 76.3172 163.162 75.3918 163.308 74.6647C164.268 69.9021 165.367 65.1359 166.167 60.342C166.727 57.9972 167.288 55.6454 167.761 53.2832V53.2867Z" fill="var(--sapContent_Illustrative_Color3)"/>
12
+ <path d="M173.372 57.6839C172.52 60.5227 172.04 63.4381 171.539 66.3534C170.794 70.6882 170.161 75.0508 169.803 79.4377C169.758 79.9735 170.488 80.1822 170.735 79.7056C170.739 79.6986 170.742 79.6917 170.746 79.6847C170.714 79.6464 170.697 79.5943 170.7 79.5316C170.958 76.2197 171.894 68.5834 175.268 56.6194C175.891 54.4172 176.455 52.1907 176.841 49.9328C177.095 48.4473 177.37 46.7705 177.258 45.2119C176.928 46.7531 176.496 48.2769 176.013 49.7798C175.16 52.4272 174.172 55.026 173.372 57.6909V57.6839Z" fill="var(--sapContent_Illustrative_Color3)"/>
13
+ <path d="M162.421 41.7884C162.33 42.1015 162.215 42.4077 162.121 42.7278C161.94 43.3227 161.78 43.9315 161.596 44.5264C161.199 45.8066 160.796 47.0834 160.399 48.3602C159.575 51.0181 158.747 53.6725 157.926 56.3304C157.105 58.9883 156.235 61.8097 155.407 64.5511C154.781 66.6211 154.155 68.6911 153.584 70.775C153.424 71.3594 153.25 71.9508 153.142 72.5492C153.045 73.0954 153.768 73.4155 154.082 72.9597C154.082 72.9563 154.089 72.9493 154.092 72.9458C154.228 72.744 156.92 63.3718 157.95 58.7622C158.709 55.3667 159.811 52.1348 160.803 49.2751C160.403 50.705 163.137 41.9554 162.848 42.7556C163.443 40.0142 163.106 38.2886 160.702 38.1182C161.773 38.8348 162.678 39.4819 162.591 40.9048C162.574 41.2109 162.508 41.4997 162.424 41.7815L162.421 41.7884Z" fill="var(--sapContent_Illustrative_Color3)"/>
14
+ <path d="M178.709 66.0337C178.688 66.0337 178.688 65.998 178.709 65.998C178.731 65.998 178.731 66.0337 178.709 66.0337Z" fill="var(--sapContent_Illustrative_Color3)"/>
15
+ <path d="M156.527 41.9099C156.395 42.3726 156.597 42.8666 157.018 43.0962C158.221 43.7433 160.723 44.6861 161.436 41.8229C162.201 38.7649 159.829 38.5701 158.858 38.6118C158.608 38.6223 158.374 38.7301 158.207 38.918C157.78 39.4016 156.924 40.4974 156.524 41.9099H156.527Z" fill="var(--sapContent_Illustrative_Color23)"/>
16
+ <path d="M164.216 39.711C164.167 40.4521 164.602 41.1339 165.284 41.4331C166.432 41.9341 168.286 42.282 168.926 39.718C169.587 37.074 167.903 36.5696 166.807 36.5069C166.268 36.4756 165.743 36.6878 165.388 37.0914C164.911 37.6341 164.292 38.5491 164.216 39.711Z" fill="var(--sapContent_Illustrative_Color23)"/>
17
+ <path d="M170.607 45.3678C170.488 45.8583 170.742 46.3593 171.201 46.575C172.429 47.149 174.882 47.897 175.317 45.006C175.881 41.2522 172.256 42.0002 172.256 42.0002C172.256 42.0002 170.989 43.7988 170.607 45.3713V45.3678Z" fill="var(--sapContent_Illustrative_Color23)"/>
18
+ <path d="M178.396 58.6267C178.285 59.6878 179.12 60.6653 180.184 60.5992C180.803 60.561 181.391 60.1713 181.558 58.9224C181.864 56.6263 180.038 56.4906 179.356 56.5184C179.196 56.5254 179.053 56.6124 178.98 56.7515C178.803 57.0785 178.486 57.7639 178.399 58.6267H178.396Z" fill="var(--sapContent_Illustrative_Color23)"/>
19
+ <path d="M128.021 77.1208C128.021 77.1208 131.395 75.5309 128.41 73.2488C125.526 71.0396 124.956 73.5653 124.956 73.5653C124.956 73.5653 125.777 75.3813 128.021 77.1208Z" fill="var(--sapContent_Illustrative_Color23)"/>
20
+ <path d="M172.923 158.66L199.033 140.702L191.598 127.565C191.598 127.565 177.752 135.831 167.155 140.632L172.92 158.66H172.923Z" fill="var(--sapContent_Illustrative_Color8)"/>
21
+ <path d="M233.673 204.941C220.206 179.054 199.739 140.371 197.676 135.866C197.676 135.866 168.474 149.351 168.905 152.624C169.361 156.082 181.666 184.053 191.014 204.944H233.673V204.941Z" fill="var(--sapContent_Illustrative_Color13)"/>
22
+ <path d="M195.029 204.94C190.777 196.236 187.347 187.006 185.914 177.394C185.197 172.582 184.957 167.681 185.524 162.838C185.764 160.789 186.046 158.667 186.794 156.729C187.413 155.129 188.304 153.681 189.41 152.373C192.694 148.484 197.436 146.167 201.172 142.796C199.349 139.268 198.104 136.812 197.669 135.862C197.669 135.862 168.467 149.347 168.898 152.62C169.354 156.078 181.659 184.049 191.007 204.94H195.025H195.029Z" fill="var(--sapContent_Illustrative_Color22)"/>
23
+ <path d="M145.054 204.941C153.316 178.755 164.887 140.239 164.887 140.239L131.698 126.692L101.978 204.941H145.054Z" fill="var(--sapContent_Illustrative_Color13)"/>
24
+ <path d="M110.637 204.941C111.273 202.213 112.018 199.51 112.832 196.831C114.178 192.406 115.723 188.043 117.382 183.726C119.056 179.37 120.854 175.064 122.719 170.784C124.441 166.836 126.226 162.915 128.038 159.005C128.125 158.817 128.233 158.57 128.362 158.271C134.405 144.063 149.889 136.374 164.842 140.229L164.887 140.239L131.698 126.692L101.978 204.941H110.637Z" fill="var(--sapContent_Illustrative_Color22)"/>
25
+ </svg>`;
@@ -0,0 +1,63 @@
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-ReloadScreen">
2
+ <mask id="mask0_396_5713" 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_5713)">
6
+ <path d="M305.547 20H14.4533C12.5559 19.9983 10.6768 20.3705 8.92329 21.0954C7.16981 21.8203 5.57638 22.8836 4.23409 24.2247C2.8918 25.5657 1.82697 27.1582 1.10045 28.911C0.373942 30.6638 -8.08861e-07 32.5426 0 34.44V205.547C0 209.38 1.52275 213.056 4.23328 215.767C6.9438 218.477 10.6201 220 14.4533 220H305.547C309.38 220 313.056 218.477 315.767 215.767C318.477 213.056 320 209.38 320 205.547V34.44C320 32.5426 319.626 30.6638 318.9 28.911C318.173 27.1582 317.108 25.5657 315.766 24.2247C314.424 22.8836 312.83 21.8203 311.077 21.0954C309.323 20.3705 307.444 19.9983 305.547 20Z" fill="var(--sapContent_Illustrative_Color7)"/>
7
+ <rect x="32" y="207" width="86.6463" height="13" rx="4" fill="var(--sapContent_Illustrative_Color19)"/>
8
+ <rect x="111.272" y="207" width="191.728" height="13" rx="4" fill="var(--sapContent_Illustrative_Color18)"/>
9
+ <rect x="-15.4889" y="6.48901" width="56" height="70.9333" rx="6.22222" fill="var(--sapContent_Illustrative_Color19)"/>
10
+ <rect x="-13.6222" y="4.45312" width="56" height="70.9333" rx="6.22222" fill="var(--sapContent_Illustrative_Color18)"/>
11
+ <rect x="-9.88889" y="8.18652" width="48.5333" height="63.4667" rx="3.73333" fill="var(--sapContent_Illustrative_Color7)"/>
12
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M36.1555 71.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)"/>
13
+ <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)"/>
14
+ <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)"/>
15
+ <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)"/>
16
+ <path d="M25.1422 41.1936H4.69599C4.45955 41.1936 4.26044 41.3927 4.26044 41.6416V46.7314C4.26044 46.9803 4.45955 47.1794 4.69599 47.1794H25.1422C25.3787 47.1794 25.5778 46.9803 25.5778 46.7314V41.6416C25.5778 41.3927 25.3787 41.1936 25.1422 41.1936Z" fill="var(--sapContent_Illustrative_Color19)"/>
17
+ <path d="M26.3867 39.24H3.61334C3.37689 39.24 3.17778 39.4391 3.17778 39.688V45.2631C3.17778 45.512 3.37689 45.7111 3.61334 45.7111H26.3867C26.6231 45.7111 26.8222 45.512 26.8222 45.2631V39.688C26.8222 39.4391 26.6231 39.24 26.3867 39.24Z" fill="var(--sapContent_Illustrative_Color18)"/>
18
+ <rect x="73" y="100" width="45" height="57" rx="5" fill="var(--sapContent_Illustrative_Color19)"/>
19
+ <rect x="75" y="98.4355" width="45" height="57" rx="5" fill="var(--sapContent_Illustrative_Color18)"/>
20
+ <rect x="78" y="101.436" width="39" height="51" rx="3" fill="var(--sapContent_Illustrative_Color7)"/>
21
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M115 152.265V101.606C116.165 102.018 117 103.129 117 104.435V149.435C117 150.742 116.165 151.853 115 152.265Z" fill="var(--sapContent_Illustrative_Color19)"/>
22
+ <mask id="mask1_396_5713" class="sapIllus_MaskTypeAlpha" maskUnits="userSpaceOnUse" x="78" y="101" width="39" height="52">
23
+ <rect x="78" y="101.436" width="39" height="51" rx="3" fill="var(--sapContent_Illustrative_Color7)"/>
24
+ </mask>
25
+ <g mask="url(#mask1_396_5713)">
26
+ <path d="M102.073 139.258L87.9387 142.024L86.145 139.104C85.0386 137.299 84.3395 135.275 84.0963 133.173C83.8531 131.071 84.0717 128.942 84.7367 126.933C85.4018 124.923 86.4975 123.083 87.9475 121.539C89.3976 119.995 91.1672 118.785 93.1334 117.993L97.4471 116.257C102.923 114.051 108.5 119.212 106.7 124.824L102.073 139.258Z" fill="var(--sapContent_Illustrative_Color19)"/>
27
+ <path d="M99.5534 160.741L94.7598 158.929C94.2562 158.738 93.8043 158.432 93.4403 158.036C93.0762 157.64 92.81 157.165 92.6629 156.648L88.6271 142.529C88.54 142.225 88.5411 141.903 88.6303 141.6C88.7195 141.297 88.8932 141.025 89.1312 140.817C89.3691 140.609 89.6615 140.472 89.9742 140.423C90.287 140.374 90.6072 140.415 90.8977 140.54L102.096 145.377L103.163 158.025C103.201 158.473 103.124 158.925 102.94 159.336C102.756 159.747 102.47 160.105 102.109 160.376C101.749 160.648 101.325 160.823 100.878 160.887C100.431 160.951 99.9756 160.9 99.5534 160.741Z" fill="var(--sapContent_Illustrative_Color18)"/>
28
+ <path d="M102.576 151.077L102.336 148.206C101.381 147.556 100.358 147.012 99.285 146.584C96.2945 145.367 93.5597 145.15 93.1745 146.095C92.7892 147.04 94.8987 148.789 97.8861 150.005C99.7018 150.743 101.417 151.111 102.576 151.077Z" fill="var(--sapContent_Illustrative_Color19)"/>
29
+ <path d="M96.6588 126.493L101.672 126.764C102.515 126.809 103.341 127.018 104.102 127.381C104.863 127.743 105.546 128.252 106.11 128.879C106.674 129.505 107.108 130.236 107.389 131.03C107.669 131.824 107.79 132.665 107.744 133.506L107.251 142.573C107.158 144.269 106.395 145.858 105.128 146.992C103.861 148.126 102.194 148.711 100.495 148.619L98.354 148.503C95.8928 148.369 93.5855 147.266 91.9397 145.435C90.294 143.604 89.4445 141.196 89.5782 138.74L89.9159 132.539C90.0081 130.846 90.7699 129.258 92.034 128.124C93.2982 126.991 94.9615 126.404 96.6588 126.493Z" fill="var(--sapContent_Illustrative_Color18)"/>
30
+ <path d="M104.044 135.184L102.553 139.082C102.545 139.104 102.542 139.129 102.544 139.153C102.547 139.177 102.556 139.2 102.57 139.22C102.584 139.24 102.603 139.257 102.625 139.268C102.647 139.278 102.671 139.284 102.696 139.283H105.168C105.191 139.284 105.214 139.279 105.234 139.269C105.255 139.259 105.273 139.244 105.287 139.226C105.301 139.208 105.311 139.187 105.315 139.165C105.32 139.143 105.319 139.119 105.313 139.097L104.331 135.203C104.323 135.172 104.306 135.145 104.281 135.124C104.257 135.104 104.226 135.092 104.195 135.09C104.163 135.088 104.131 135.096 104.104 135.113C104.077 135.129 104.056 135.154 104.044 135.184Z" fill="var(--sapContent_Illustrative_Color19)"/>
31
+ <path d="M84.9935 130.904L87.4217 130.208C87.4662 130.192 87.5135 130.186 87.5606 130.189C87.6078 130.192 87.6537 130.205 87.6955 130.227C87.7374 130.249 87.7742 130.28 87.8036 130.316C87.8331 130.353 87.8546 130.396 87.8667 130.441L90.3434 139.048C90.5545 139.782 90.4649 140.569 90.0944 141.236C89.7239 141.903 89.1029 142.397 88.3679 142.607C88.281 142.632 88.1877 142.622 88.1086 142.578C88.0294 142.534 87.971 142.461 87.946 142.374L84.7677 131.329C84.7545 131.286 84.7499 131.242 84.7541 131.197C84.7583 131.153 84.7713 131.109 84.7923 131.07C84.8133 131.03 84.8418 130.995 84.8764 130.967C84.9109 130.938 84.9507 130.917 84.9935 130.904Z" fill="var(--sapContent_Illustrative_Color19)"/>
32
+ <path d="M89.1796 138.026L87.0196 137.15L92.8933 129.613L92.1796 133.47C91.9028 134.976 91.304 136.406 90.4238 137.661C90.2888 137.853 90.092 137.994 89.8659 138.061C89.6398 138.127 89.3978 138.115 89.1796 138.026Z" fill="var(--sapContent_Illustrative_Color19)"/>
33
+ <path d="M90.4814 140.129C91.2685 139.934 91.6155 138.607 91.2564 137.165C90.8973 135.722 89.9682 134.711 89.1811 134.906C88.3941 135.101 88.0471 136.429 88.4062 137.871C88.7652 139.313 89.6944 140.324 90.4814 140.129Z" fill="var(--sapContent_Illustrative_Color18)"/>
34
+ <path d="M101.181 131.137C107.691 130.244 112.643 127.155 112.241 124.238C111.839 121.321 106.235 119.681 99.7251 120.574C93.2148 121.467 88.263 124.556 88.665 127.473C89.067 130.39 94.6706 132.031 101.181 131.137Z" fill="var(--sapContent_Illustrative_Color19)"/>
35
+ <path d="M92.7897 129.578L88.7803 127.948L86.9165 132.512L90.9259 134.142L92.7897 129.578Z" fill="var(--sapContent_Illustrative_Color19)"/>
36
+ <path d="M92.5604 121.842C95.3396 119.005 96.9717 116.099 96.2058 115.352C95.44 114.605 92.5661 116.3 89.7869 119.138C87.0077 121.976 85.3756 124.881 86.1415 125.628C86.9073 126.375 89.7812 124.68 92.5604 121.842Z" fill="var(--sapContent_Illustrative_Color19)"/>
37
+ </g>
38
+ <rect x="151" y="5.56445" width="45" height="57" rx="5" fill="var(--sapContent_Illustrative_Color19)"/>
39
+ <rect x="153" y="4" width="45" height="57" rx="5" fill="var(--sapContent_Illustrative_Color18)"/>
40
+ <rect x="156" y="7" width="39" height="51" rx="3" fill="var(--sapContent_Illustrative_Color7)"/>
41
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M193 57.8292V7.17065C194.165 7.58249 195 8.69373 195 9.99995V55C195 56.3062 194.165 57.4174 193 57.8292Z" fill="var(--sapContent_Illustrative_Color19)"/>
42
+ <path d="M156 34C156 34 166 34 172.5 43C179 52 183 58 183 58H159C157.34 58 156 56.66 156 55V34Z" fill="var(--sapContent_Illustrative_Color19)"/>
43
+ <path d="M180.76 48.1601C179.09 47.7201 177.46 48.2601 175.69 49.2901C174.35 50.1201 173.05 51.0301 171.8 52.0101C169.58 53.6801 167.63 55.7001 166 58.0001H189C184.39 53.4701 184.3 49.0901 180.76 48.1601Z" fill="var(--sapContent_Illustrative_Color20)"/>
44
+ <path d="M183.28 33.19C186.2 33.19 188.56 30.91 188.56 28.09C188.56 25.27 186.19 22.99 183.28 22.99C180.37 22.99 178 25.27 178 28.09C178 30.91 180.37 33.19 183.28 33.19Z" fill="var(--sapContent_Illustrative_Color18)"/>
45
+ <rect x="248" y="53" width="45" height="57" rx="5" fill="var(--sapContent_Illustrative_Color19)"/>
46
+ <rect x="250" y="51.4355" width="45" height="57" rx="5" fill="var(--sapContent_Illustrative_Color18)"/>
47
+ <rect x="253" y="54.4355" width="39" height="51" rx="3" fill="var(--sapContent_Illustrative_Color7)"/>
48
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M290 105.265V54.6062C291.165 55.018 292 56.1293 292 57.4355V102.435C292 103.742 291.165 104.853 290 105.265Z" fill="var(--sapContent_Illustrative_Color19)"/>
49
+ <g opacity="0.5">
50
+ <path d="M284.092 80.4989L284.058 80.4546C282.487 77.8114 279.297 76 275.615 76C272.076 76 268.994 77.6686 267.365 80.1445V76.9204C267.365 76.8682 267.344 76.8182 267.307 76.7812C267.27 76.7443 267.22 76.7235 267.168 76.7235L265.031 78.2593H264.908C264.536 78.097 264.133 78.0181 263.727 78.0279C263.353 78.0223 262.983 78.0875 262.634 78.2199H262.58L260.197 76.7433C260.171 76.7433 260.145 76.7483 260.122 76.7582C260.098 76.7681 260.076 76.7827 260.058 76.8009C260.039 76.8192 260.025 76.8409 260.015 76.8648C260.005 76.8887 260 76.9143 260 76.9402V80.9911C260 82.0773 260.432 83.1189 261.2 83.8869C261.968 84.655 263.01 85.0864 264.096 85.0864H283.472C283.497 85.3374 283.511 85.5786 283.511 85.874C283.516 87.0401 283.233 88.1894 282.687 89.2198C282.14 90.2502 281.348 91.1299 280.38 91.7806L280.302 91.8348C280.179 91.9168 280.075 92.0227 279.995 92.1461C279.914 92.2695 279.86 92.4079 279.834 92.553C279.809 92.698 279.813 92.8467 279.846 92.9901C279.88 93.1335 279.942 93.2687 280.029 93.3875C280.116 93.5063 280.226 93.6063 280.352 93.6815C280.479 93.7568 280.619 93.8056 280.765 93.8252C280.911 93.8448 281.06 93.8346 281.202 93.7953C281.344 93.7561 281.476 93.6886 281.591 93.5969L281.651 93.5575C282.9 92.7002 283.921 91.5508 284.626 90.2092C285.33 88.8676 285.696 87.3744 285.692 85.8592C285.681 83.9564 285.126 82.0966 284.092 80.4989ZM266.144 81.8082L267.335 78.8549L267.36 80.1888L266.144 81.8082Z" fill="var(--sapContent_Illustrative_Color19)"/>
51
+ <path d="M266.144 81.7982L267.36 80.1592L267.34 78.8253L266.144 81.7982Z" fill="var(--sapContent_Illustrative_Color19)"/>
52
+ </g>
53
+ <rect width="44.25" height="6.75" rx="3" transform="matrix(-1 0 0 1 163.75 200.25)" fill="var(--sapContent_Illustrative_Color14)"/>
54
+ <path d="M152.477 205.114L149.5 200.25H256V204.615C256 204.93 255.946 205.241 255.841 205.531C255.736 205.821 255.582 206.085 255.388 206.306C255.194 206.528 254.964 206.703 254.711 206.822C254.458 206.941 254.187 207.002 253.914 207H155.642C155.021 207.001 154.41 206.831 153.859 206.502C153.308 206.174 152.834 205.698 152.477 205.114Z" fill="var(--sapContent_Illustrative_Color13)"/>
55
+ <path d="M210.439 132.001H108.411C108.051 131.991 107.693 132.063 107.366 132.212C107.038 132.362 106.749 132.584 106.523 132.861C106.296 133.138 106.136 133.464 106.057 133.812C105.978 134.161 105.981 134.522 106.066 134.869L119.646 198.368C119.761 198.9 120.057 199.376 120.484 199.719C120.91 200.061 121.442 200.248 121.992 200.249H222.847C223.204 200.258 223.558 200.186 223.882 200.039C224.206 199.892 224.492 199.673 224.719 199.4C224.945 199.127 225.105 198.806 225.187 198.462C225.269 198.118 225.271 197.76 225.192 197.416L212.785 133.929C212.69 133.383 212.401 132.889 211.971 132.536C211.541 132.183 210.998 131.993 210.439 132.001Z" fill="var(--sapContent_Illustrative_Color2)"/>
56
+ <path d="M205.793 142.015C205.439 140.122 203.787 138.75 201.861 138.75H175.017C172.616 138.75 170.756 140.85 171.046 143.234L174.641 172.734C174.885 174.741 176.589 176.25 178.611 176.25H207.377C209.88 176.25 211.769 173.976 211.309 171.515L205.793 142.015Z" fill="var(--sapContent_Illustrative_Color13)"/>
57
+ <path d="M120.854 146.286L171.746 146.462L190.741 146.532C191.3 146.524 191.843 146.716 192.272 147.072C192.702 147.429 192.99 147.927 193.085 148.478L198.347 176.064L201.159 190.842C201.235 191.189 201.232 191.548 201.149 191.894C201.066 192.239 200.906 192.561 200.68 192.836C200.454 193.11 200.169 193.329 199.846 193.477C199.523 193.625 199.17 193.698 198.815 193.689H128.694C128.136 193.683 127.597 193.483 127.17 193.124C126.743 192.765 126.453 192.269 126.35 191.721L118.511 149.122C118.447 148.777 118.46 148.423 118.548 148.083C118.637 147.744 118.798 147.428 119.022 147.158C119.245 146.888 119.525 146.67 119.841 146.519C120.158 146.368 120.504 146.289 120.854 146.286Z" fill="var(--sapContent_Illustrative_Color8)"/>
58
+ <path d="M158.731 149.85C156.263 149.812 153.815 150.294 151.544 151.264C149.277 152.234 147.238 153.67 145.561 155.481C143.895 157.322 142.632 159.492 141.854 161.851C141.081 164.209 140.812 166.704 141.064 169.173C142.005 179.779 151.412 188.435 162.01 188.435C164.478 188.473 166.927 187.992 169.197 187.022C171.464 186.05 173.502 184.614 175.18 182.804C176.848 180.965 178.111 178.795 178.887 176.434C179.662 174.076 179.932 171.581 179.677 169.112C178.751 158.482 169.352 149.85 158.731 149.85ZM174.465 182.126C172.884 183.835 170.961 185.192 168.821 186.107C166.679 187.026 164.368 187.484 162.038 187.45C151.906 187.45 142.946 179.214 142.057 169.074C141.817 166.739 142.071 164.379 142.8 162.148C143.53 159.917 144.719 157.864 146.29 156.122C147.874 154.415 149.797 153.059 151.935 152.14C154.078 151.226 156.388 150.77 158.717 150.802C168.849 150.802 177.814 159.033 178.699 169.178C178.94 171.512 178.688 173.87 177.96 176.1C177.231 178.331 176.042 180.384 174.47 182.126H174.465Z" fill="var(--sapContent_Illustrative_Color3)"/>
59
+ <path d="M172.266 180.773C178.036 174.735 177.382 164.727 170.805 158.42C164.227 152.113 154.218 151.894 148.448 157.932C142.678 163.97 143.332 173.978 149.909 180.285C156.487 186.592 166.496 186.811 172.266 180.773Z" fill="var(--sapContent_Illustrative_Color14)"/>
60
+ <path d="M161.751 166.875C161.769 167.192 161.91 167.49 162.143 167.706C162.377 167.921 162.685 168.037 163.002 168.029H168.256C168.406 168.039 168.555 168.015 168.694 167.959C168.833 167.902 168.957 167.816 169.058 167.705C169.159 167.594 169.233 167.462 169.276 167.318C169.319 167.174 169.329 167.023 169.305 166.875L168.835 161.541C168.817 161.224 168.676 160.926 168.442 160.71C168.209 160.495 167.901 160.379 167.584 160.387C167.434 160.377 167.284 160.401 167.145 160.458C167.007 160.514 166.882 160.6 166.781 160.711C166.68 160.822 166.605 160.954 166.561 161.098C166.518 161.241 166.507 161.393 166.53 161.541L166.699 163.464C165.776 162.508 164.673 161.744 163.454 161.216C162.235 160.688 160.924 160.406 159.597 160.387C158.427 160.367 157.266 160.597 156.191 161.062C155.116 161.526 154.152 162.213 153.363 163.079C152.574 163.945 151.978 164.969 151.614 166.083C151.25 167.197 151.127 168.376 151.252 169.542C151.509 172.021 152.662 174.321 154.495 176.007C156.327 177.694 158.713 178.65 161.201 178.697C163.22 178.726 165.18 178.016 166.714 176.7C168.248 175.384 169.249 173.552 169.531 171.549C169.56 171.222 169.462 170.896 169.258 170.64C169.073 170.389 168.798 170.22 168.491 170.168C168.338 170.137 168.18 170.137 168.027 170.17C167.874 170.202 167.73 170.266 167.602 170.357C167.487 170.441 167.391 170.549 167.321 170.673C167.252 170.797 167.209 170.936 167.198 171.078C167.007 172.575 166.266 173.948 165.12 174.929C163.974 175.91 162.505 176.428 160.998 176.383C159.138 176.348 157.355 175.633 155.985 174.372C154.615 173.111 153.753 171.391 153.562 169.537C153.466 168.665 153.556 167.783 153.826 166.949C154.096 166.115 154.541 165.348 155.13 164.699C155.719 164.05 156.439 163.534 157.242 163.185C158.046 162.837 158.914 162.663 159.79 162.677C160.941 162.69 162.074 162.97 163.1 163.495C164.125 164.02 165.016 164.775 165.702 165.702H162.72C162.575 165.701 162.431 165.733 162.299 165.794C162.167 165.856 162.051 165.946 161.958 166.059C161.866 166.171 161.799 166.302 161.763 166.443C161.727 166.585 161.723 166.732 161.751 166.875Z" fill="var(--sapContent_Illustrative_Color8)"/>
61
+ </g>
62
+ </svg>
63
+ `;
@@ -0,0 +1,53 @@
1
+ export default `<svg width="320" height="202" viewBox="0 0 320 202" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-ResizeColumn">
2
+ <path d="M305.547 6.15619e-06H14.4533C12.5559 -0.00174584 10.6768 0.37047 8.92329 1.09536C7.16981 1.82026 5.57638 2.88362 4.23409 4.22468C2.8918 5.56573 1.82697 7.15816 1.10045 8.91098C0.373942 10.6638 -8.08861e-07 12.5426 0 14.44V185.547C0 189.38 1.52275 193.056 4.23328 195.767C6.9438 198.477 10.6201 200 14.4533 200H305.547C309.38 200 313.056 198.477 315.767 195.767C318.477 193.056 320 189.38 320 185.547V14.44C320 12.5426 319.626 10.6638 318.9 8.91098C318.173 7.15816 317.108 5.56573 315.766 4.22468C314.424 2.88362 312.83 1.82026 311.077 1.09536C309.323 0.37047 307.444 -0.00174584 305.547 6.15619e-06V6.15619e-06Z" fill="var(--sapContent_Illustrative_Color7)"/>
3
+ <path d="M307.616 95.7767L250.515 76.1718C248.094 75.3406 245.459 76.6337 244.629 79.0601L216.168 162.325C215.339 164.751 216.629 167.392 219.05 168.223L276.152 187.828C278.573 188.66 281.208 187.366 282.037 184.94L310.498 101.675C311.328 99.2487 310.037 96.6079 307.616 95.7767Z" fill="var(--sapContent_Illustrative_Color18)"/>
4
+ <path d="M273.369 97.2048C271.484 96.4507 269.418 96.2737 267.432 96.6963C265.447 97.1189 263.631 98.122 262.214 99.5789C260.797 101.036 259.843 102.881 259.473 104.881C259.102 106.881 259.332 108.947 260.133 110.816C260.933 112.685 262.269 114.275 263.971 115.384C265.673 116.492 267.665 117.07 269.694 117.045C271.724 117.019 273.7 116.391 275.374 115.239C277.047 114.088 278.342 112.465 279.096 110.576L269.557 106.764L273.369 97.2048Z" fill="var(--sapContent_Illustrative_Color7)"/>
5
+ <path d="M276.42 95.7939L272.617 105.345L282.147 109.156C282.647 107.902 282.895 106.561 282.878 105.211C282.861 103.86 282.579 102.527 282.047 101.286C281.515 100.045 280.744 98.9209 279.779 97.9786C278.813 97.0363 277.672 96.2939 276.42 95.7939V95.7939Z" fill="var(--sapContent_Illustrative_Color19)"/>
6
+ <path d="M284.329 129.956L244.538 116.295C243.218 115.842 241.781 116.547 241.329 117.87C240.876 119.193 241.58 120.633 242.9 121.086L282.691 134.747C284.011 135.201 285.448 134.496 285.9 133.173C286.352 131.849 285.649 130.41 284.329 129.956Z" fill="var(--sapContent_Illustrative_Color7)"/>
7
+ <path d="M280.888 138.059L241.097 124.397C239.777 123.944 238.34 124.649 237.888 125.972C237.435 127.295 238.139 128.735 239.459 129.189L279.25 142.85C280.57 143.303 282.007 142.598 282.459 141.275C282.911 139.952 282.208 138.512 280.888 138.059Z" fill="var(--sapContent_Illustrative_Color7)"/>
8
+ <path d="M259.033 139.634L237.835 132.356C236.515 131.902 235.078 132.607 234.626 133.931C234.174 135.254 234.877 136.693 236.197 137.147L257.396 144.425C258.716 144.878 260.152 144.173 260.605 142.85C261.057 141.527 260.353 140.087 259.033 139.634Z" fill="var(--sapContent_Illustrative_Color7)"/>
9
+ <path d="M36.2031 116H152.846C154.644 116 156.101 117.452 156.101 119.244V194.526C156.101 196.318 154.644 197.77 152.846 197.77H36.2031C34.4054 197.77 32.9481 196.318 32.9481 194.526V119.244C32.9481 117.452 34.4054 116 36.2031 116Z" fill="var(--sapContent_Illustrative_Color18)"/>
10
+ <path d="M38.9036 120.406H150.307C151.976 120.406 153.328 121.754 153.328 123.417V191.225C153.328 192.888 151.976 194.236 150.307 194.236H38.9036C37.2351 194.236 35.8826 192.888 35.8826 191.225V123.417C35.8826 121.754 37.2351 120.406 38.9036 120.406Z" fill="var(--sapContent_Illustrative_Color7)"/>
11
+ <path d="M15.9999 199.266H169.333L165.484 200.824C165.241 200.92 164.982 200.972 164.721 200.974L19.939 201.333C19.5573 201.335 19.1828 201.229 18.8588 201.028L16.0035 199.256L15.9999 199.266Z" fill="var(--sapContent_Illustrative_Color19)"/>
12
+ <path d="M15.9999 198.707C16.0009 198.437 16.109 198.179 16.3007 197.988C16.4924 197.798 16.7519 197.691 17.0225 197.691H168.311C168.581 197.691 168.841 197.798 169.032 197.988C169.224 198.179 169.332 198.437 169.333 198.707V199.266H15.9999V198.707Z" fill="var(--sapContent_Illustrative_Color18)"/>
13
+ <path d="M101.587 197.659H83.9043V198.018C83.9043 198.398 84.0561 198.764 84.3262 199.033C84.5963 199.302 84.9626 199.453 85.3446 199.453H100.158C100.54 199.453 100.906 199.302 101.176 199.033C101.446 198.764 101.598 198.398 101.598 198.018V197.659H101.587Z" fill="var(--sapContent_Illustrative_Color20)"/>
14
+ <path d="M94.2996 118.881C93.8641 118.881 93.5111 118.53 93.5111 118.096C93.5111 117.662 93.8641 117.31 94.2996 117.31C94.7351 117.31 95.0881 117.662 95.0881 118.096C95.0881 118.53 94.7351 118.881 94.2996 118.881Z" fill="var(--sapContent_Illustrative_Color19)"/>
15
+ <path d="M196.848 26.6667H91.5525C85.1722 26.6667 80 31.839 80 38.2193V168.448C80 174.828 85.1722 180 91.5525 180H196.848C203.228 180 208.4 174.828 208.4 168.448V38.2193C208.4 31.839 203.228 26.6667 196.848 26.6667Z" fill="var(--sapContent_Illustrative_Color8)"/>
16
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M91.8372 39.081C91.8372 38.5559 91.9614 38.135 92.1098 38.135H179.547C179.7 38.135 179.82 38.5359 179.82 39.081V167.59C179.82 168.115 179.7 168.536 179.547 168.536H92.1098C91.9614 168.536 91.8372 168.135 91.8372 167.59V39.081Z" fill="var(--sapContent_Illustrative_Color8)"/>
17
+ <path d="M179.82 50.4373H91.8372V61.0879H179.82V50.4373Z" fill="var(--sapContent_Illustrative_Color18)"/>
18
+ <path d="M128.166 41.9189H99.2929C97.9203 41.9189 96.8076 43.0316 96.8076 44.4042C96.8076 45.7768 97.9203 46.8895 99.2929 46.8895H128.166C129.539 46.8895 130.651 45.7768 130.651 44.4042C130.651 43.0316 129.539 41.9189 128.166 41.9189Z" fill="var(--sapContent_Illustrative_Color14)"/>
19
+ <path d="M122.133 54.4617H98.2266C97.4429 54.4617 96.8076 55.097 96.8076 55.8807C96.8076 56.6644 97.4429 57.2997 98.2266 57.2997H122.133C122.917 57.2997 123.552 56.6644 123.552 55.8807C123.552 55.097 122.917 54.4617 122.133 54.4617Z" fill="var(--sapContent_Illustrative_Color14)"/>
20
+ <path d="M117.636 64.8757H98.2266C97.4429 64.8757 96.8076 65.511 96.8076 66.2947C96.8076 67.0784 97.4429 67.7138 98.2266 67.7138H117.636C118.42 67.7138 119.055 67.0784 119.055 66.2947C119.055 65.511 118.42 64.8757 117.636 64.8757Z" fill="var(--sapContent_Illustrative_Color14)"/>
21
+ <path d="M120.71 75.7629H98.2266C97.4429 75.7629 96.8076 76.3982 96.8076 77.1819C96.8076 77.9656 97.4429 78.601 98.2266 78.601H120.71C121.494 78.601 122.129 77.9656 122.129 77.1819C122.129 76.3982 121.494 75.7629 120.71 75.7629Z" fill="var(--sapContent_Illustrative_Color14)"/>
22
+ <path d="M108.404 86.1731H98.2266C97.4429 86.1731 96.8076 86.8084 96.8076 87.5921C96.8076 88.3758 97.4429 89.0111 98.2266 89.0111H108.404C109.188 89.0111 109.823 88.3758 109.823 87.5921C109.823 86.8084 109.188 86.1731 108.404 86.1731Z" fill="var(--sapContent_Illustrative_Color14)"/>
23
+ <path d="M108.404 96.8237H98.2266C97.4429 96.8237 96.8076 97.459 96.8076 98.2427C96.8076 99.0264 97.4429 99.6618 98.2266 99.6618H108.404C109.188 99.6618 109.823 99.0264 109.823 98.2427C109.823 97.459 109.188 96.8237 108.404 96.8237Z" fill="var(--sapContent_Illustrative_Color14)"/>
24
+ <path d="M108.404 118.125H98.2266C97.4429 118.125 96.8076 118.76 96.8076 119.544C96.8076 120.327 97.4429 120.963 98.2266 120.963H108.404C109.188 120.963 109.823 120.327 109.823 119.544C109.823 118.76 109.188 118.125 108.404 118.125Z" fill="var(--sapContent_Illustrative_Color14)"/>
25
+ <path d="M108.404 107.474H98.2266C97.4429 107.474 96.8076 108.109 96.8076 108.893C96.8076 109.677 97.4429 110.312 98.2266 110.312H108.404C109.188 110.312 109.823 109.677 109.823 108.893C109.823 108.109 109.188 107.474 108.404 107.474Z" fill="var(--sapContent_Illustrative_Color14)"/>
26
+ <path d="M108.404 128.775H98.2266C97.4429 128.775 96.8076 129.411 96.8076 130.194C96.8076 130.978 97.4429 131.613 98.2266 131.613H108.404C109.188 131.613 109.823 130.978 109.823 130.194C109.823 129.411 109.188 128.775 108.404 128.775Z" fill="var(--sapContent_Illustrative_Color14)"/>
27
+ <path d="M108.356 139.47H98.1785C97.3948 139.47 96.7595 140.106 96.7595 140.889C96.7595 141.673 97.3948 142.308 98.1785 142.308H108.356C109.14 142.308 109.775 141.673 109.775 140.889C109.775 140.106 109.14 139.47 108.356 139.47Z" fill="var(--sapContent_Illustrative_Color14)"/>
28
+ <path d="M171.855 54.1931H147.948C147.165 54.1931 146.529 54.8284 146.529 55.6121C146.529 56.3958 147.165 57.0311 147.948 57.0311H171.855C172.639 57.0311 173.274 56.3958 173.274 55.6121C173.274 54.8284 172.639 54.1931 171.855 54.1931Z" fill="var(--sapContent_Illustrative_Color14)"/>
29
+ <path d="M167.357 64.6072H147.948C147.165 64.6072 146.529 65.2425 146.529 66.0262C146.529 66.8099 147.165 67.4452 147.948 67.4452H167.357C168.141 67.4452 168.777 66.8099 168.777 66.0262C168.777 65.2425 168.141 64.6072 167.357 64.6072Z" fill="var(--sapContent_Illustrative_Color14)"/>
30
+ <path d="M170.432 75.4902H147.948C147.165 75.4902 146.529 76.1255 146.529 76.9092C146.529 77.6929 147.165 78.3283 147.948 78.3283H170.432C171.216 78.3283 171.851 77.6929 171.851 76.9092C171.851 76.1255 171.216 75.4902 170.432 75.4902Z" fill="var(--sapContent_Illustrative_Color14)"/>
31
+ <path d="M158.126 85.9043H147.948C147.165 85.9043 146.529 86.5396 146.529 87.3233C146.529 88.107 147.165 88.7423 147.948 88.7423H158.126C158.91 88.7423 159.545 88.107 159.545 87.3233C159.545 86.5396 158.91 85.9043 158.126 85.9043Z" fill="var(--sapContent_Illustrative_Color14)"/>
32
+ <path d="M158.126 96.5552H147.948C147.165 96.5552 146.529 97.1905 146.529 97.9742C146.529 98.7579 147.165 99.3932 147.948 99.3932H158.126C158.91 99.3932 159.545 98.7579 159.545 97.9742C159.545 97.1905 158.91 96.5552 158.126 96.5552Z" fill="var(--sapContent_Illustrative_Color14)"/>
33
+ <path d="M158.126 117.856H147.948C147.165 117.856 146.529 118.492 146.529 119.275C146.529 120.059 147.165 120.694 147.948 120.694H158.126C158.91 120.694 159.545 120.059 159.545 119.275C159.545 118.492 158.91 117.856 158.126 117.856Z" fill="var(--sapContent_Illustrative_Color14)"/>
34
+ <path d="M158.126 107.206H147.948C147.165 107.206 146.529 107.841 146.529 108.625C146.529 109.408 147.165 110.044 147.948 110.044H158.126C158.91 110.044 159.545 109.408 159.545 108.625C159.545 107.841 158.91 107.206 158.126 107.206Z" fill="var(--sapContent_Illustrative_Color14)"/>
35
+ <path d="M158.126 128.507H147.948C147.165 128.507 146.529 129.142 146.529 129.926C146.529 130.71 147.165 131.345 147.948 131.345H158.126C158.91 131.345 159.545 130.71 159.545 129.926C159.545 129.142 158.91 128.507 158.126 128.507Z" fill="var(--sapContent_Illustrative_Color14)"/>
36
+ <path d="M158.126 139.157H147.948C147.165 139.157 146.529 139.793 146.529 140.576C146.529 141.36 147.165 141.995 147.948 141.995H158.126C158.91 141.995 159.545 141.36 159.545 140.576C159.545 139.793 158.91 139.157 158.126 139.157Z" fill="var(--sapContent_Illustrative_Color14)"/>
37
+ <path d="M249.007 29.0501C249.007 27.8612 245.556 26.9096 240.945 26.6935C240.681 22.0883 239.666 18.6641 238.477 18.6667C237.288 18.6694 236.299 22.12 236.046 26.7488C231.422 27.0652 227.984 28.0985 228 29.29C228.016 30.4815 231.451 31.4331 236.062 31.6466C236.339 36.2517 237.341 39.6759 238.527 39.6733C239.713 39.6707 240.707 36.2201 240.96 31.5912C245.585 31.2749 249.02 30.2416 249.007 29.0501Z" fill="var(--sapContent_Illustrative_Color3)"/>
38
+ <path d="M263.011 43.564C263.011 42.7979 260.787 42.1846 257.815 42.0453C257.646 39.0776 256.991 36.8709 256.225 36.8726C255.459 36.8743 254.822 39.098 254.659 42.081C251.679 42.2849 249.463 42.9508 249.473 43.7186C249.484 44.4865 251.697 45.0997 254.669 45.2373C254.847 48.2051 255.493 50.4118 256.257 50.4101C257.022 50.4084 257.663 48.1847 257.826 45.2017C260.806 44.9978 263.019 44.3319 263.011 43.564Z" fill="var(--sapContent_Illustrative_Color3)"/>
39
+ <path d="M186.667 50.6667H241.196C241.233 50.6667 241.268 50.678 241.293 50.6982C241.319 50.7183 241.333 50.7456 241.333 50.774V158.559C241.333 158.588 241.319 158.615 241.293 158.635C241.268 158.655 241.233 158.667 241.196 158.667H186.804C186.767 158.667 186.733 158.655 186.707 158.635C186.681 158.615 186.667 158.588 186.667 158.559V50.6667Z" fill="var(--sapContent_Illustrative_Color6)"/>
40
+ <path d="M249.952 48H189.952V156H249.952V48Z" fill="var(--sapContent_Illustrative_Color8)"/>
41
+ <path d="M189.952 48H249.821C249.856 48 249.889 48.0101 249.914 48.0281C249.938 48.0462 249.952 48.0706 249.952 48.0961V61.3333H189.952V48Z" fill="var(--sapContent_Illustrative_Color18)"/>
42
+ <path d="M222.229 52.4929H194.388C193.475 52.4929 192.735 53.2328 192.735 54.1454C192.735 55.0581 193.475 55.7979 194.388 55.7979H222.229C223.141 55.7979 223.881 55.0581 223.881 54.1454C223.881 53.2328 223.141 52.4929 222.229 52.4929Z" fill="var(--sapContent_Illustrative_Color14)"/>
43
+ <path d="M216.874 66.6667H194.271C193.359 66.6667 192.619 67.4066 192.619 68.3193C192.619 69.2319 193.359 69.9718 194.271 69.9718H216.874C217.787 69.9718 218.527 69.2319 218.527 68.3193C218.527 67.4066 217.787 66.6667 216.874 66.6667Z" fill="var(--sapContent_Illustrative_Color14)"/>
44
+ <path d="M220.455 79.345H194.271C193.359 79.345 192.619 80.0848 192.619 80.9975C192.619 81.9101 193.359 82.65 194.271 82.65H220.455C221.367 82.65 222.107 81.9101 222.107 80.9975C222.107 80.0848 221.367 79.345 220.455 79.345Z" fill="var(--sapContent_Illustrative_Color14)"/>
45
+ <path d="M206.124 91.4727H194.271C193.359 91.4727 192.619 92.2125 192.619 93.1252C192.619 94.0378 193.359 94.7777 194.271 94.7777H206.124C207.036 94.7777 207.776 94.0378 207.776 93.1252C207.776 92.2125 207.036 91.4727 206.124 91.4727Z" fill="var(--sapContent_Illustrative_Color14)"/>
46
+ <path d="M206.124 103.876H194.271C193.359 103.876 192.619 104.616 192.619 105.528C192.619 106.441 193.359 107.181 194.271 107.181H206.124C207.036 107.181 207.776 106.441 207.776 105.528C207.776 104.616 207.036 103.876 206.124 103.876Z" fill="var(--sapContent_Illustrative_Color14)"/>
47
+ <path d="M206.124 128.682H194.271C193.359 128.682 192.619 129.422 192.619 130.335C192.619 131.248 193.359 131.987 194.271 131.987H206.124C207.036 131.987 207.776 131.248 207.776 130.335C207.776 129.422 207.036 128.682 206.124 128.682Z" fill="var(--sapContent_Illustrative_Color14)"/>
48
+ <path d="M206.124 116.279H194.271C193.359 116.279 192.619 117.019 192.619 117.932C192.619 118.844 193.359 119.584 194.271 119.584H206.124C207.036 119.584 207.776 118.844 207.776 117.932C207.776 117.019 207.036 116.279 206.124 116.279Z" fill="var(--sapContent_Illustrative_Color14)"/>
49
+ <path d="M206.124 141.081H194.271C193.359 141.081 192.619 141.821 192.619 142.733C192.619 143.646 193.359 144.386 194.271 144.386H206.124C207.036 144.386 207.776 143.646 207.776 142.733C207.776 141.821 207.036 141.081 206.124 141.081Z" fill="var(--sapContent_Illustrative_Color14)"/>
50
+ <path d="M40.0001 81.0501C40.0001 79.8612 43.4511 78.9096 48.062 78.6935C48.3257 74.0883 49.3407 70.6641 50.5297 70.6667C51.7187 70.6694 52.7073 74.12 52.9604 78.7488C57.5845 79.0652 61.0224 80.0985 61.0065 81.29C60.9907 82.4815 57.5555 83.4331 52.9446 83.6466C52.6677 88.2517 51.6659 91.6759 50.4796 91.6733C49.2932 91.6707 48.2993 88.2201 48.0462 83.5912C43.4221 83.2749 39.9869 82.2416 40.0001 81.0501Z" fill="var(--sapContent_Illustrative_Color18)"/>
51
+ <path d="M18.6667 22.6915C18.6667 21.9253 20.8907 21.3121 23.8622 21.1728C24.0321 18.205 24.6862 15.9983 25.4524 16C26.2187 16.0017 26.8558 18.2254 27.0189 21.2085C29.9989 21.4123 32.2144 22.0782 32.2042 22.8461C32.194 23.6139 29.9802 24.2272 27.0087 24.3648C26.8303 27.3325 26.1847 29.5393 25.4201 29.5376C24.6556 29.5359 24.0151 27.3122 23.852 24.3291C20.872 24.1253 18.6582 23.4593 18.6667 22.6915Z" fill="var(--sapContent_Illustrative_Color18)"/>
52
+ </svg>
53
+ `;
@@ -0,0 +1,57 @@
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-ResizingColumns">
2
+ <rect y="59" width="320" height="138" rx="24" fill="var(--sapContent_Illustrative_Color20)"/>
3
+ <path d="M54.6781 64.9034L75.5763 140.826C76.0236 142.458 77.6139 143.51 79.2871 143.295L222.145 125.999C227.38 124.674 228.871 120.45 228.167 118.412L145.991 53.7627C145.485 52.3214 144.086 51.3937 142.57 51.4931L58.803 53.9532C56.6494 54.0857 52.3339 57.1836 54.6781 64.9034Z" fill="var(--sapContent_Illustrative_Color14)"/>
4
+ <path d="M55.7717 58.2271L77.697 137.877C78.1443 139.509 79.7347 140.561 81.4079 140.346L225.384 122.91C227.521 122.636 228.872 120.458 228.159 118.42L200.477 47.2768C199.972 45.8356 198.572 44.9079 197.056 45.0073L58.8365 53.9282C56.6829 54.0607 55.2002 56.1397 55.7717 58.2188V58.2271Z" fill="var(--sapContent_Illustrative_Color2)"/>
5
+ <path d="M91.7195 73.892L73.2894 75.3696C72.5907 75.4258 72.141 75.9237 72.3016 76.4858L73.2412 79.8266C73.4018 80.3887 74.1005 80.7983 74.7991 80.734L93.2855 79.1761C93.9681 79.1199 94.3937 78.622 94.2251 78.0679L93.2453 74.7834C93.0847 74.2373 92.3941 73.8358 91.7115 73.892H91.7195Z" fill="var(--sapContent_Illustrative_Color8)"/>
6
+ <path d="M94.514 83.3187L75.9875 84.9408C75.2808 85.0051 74.8392 85.511 74.9998 86.0812L75.9474 89.4701C76.108 90.0402 76.8147 90.4498 77.5214 90.3856L96.1041 88.6831C96.7947 88.6188 97.2123 88.1129 97.0437 87.5508L96.0559 84.2181C95.8873 83.664 95.1966 83.2544 94.514 83.3187Z" fill="var(--sapContent_Illustrative_Color8)"/>
7
+ <path d="M97.3568 92.8916L78.7339 94.6583C78.0272 94.7226 77.5775 95.2446 77.7381 95.8228L78.7018 99.2599C78.8624 99.8381 79.5771 100.248 80.2838 100.183L98.9629 98.3283C99.6535 98.256 100.079 97.7421 99.9105 97.1719L98.9067 93.791C98.738 93.2289 98.0474 92.8193 97.3568 92.8836V92.8916Z" fill="var(--sapContent_Illustrative_Color8)"/>
8
+ <path d="M100.232 102.6L81.5044 104.519C80.7897 104.592 80.34 105.122 80.5086 105.708L81.4883 109.201C81.657 109.787 82.3717 110.205 83.0864 110.125L101.87 108.117C102.569 108.045 102.986 107.515 102.817 106.937L101.798 103.508C101.629 102.937 100.93 102.528 100.232 102.6Z" fill="var(--sapContent_Illustrative_Color8)"/>
9
+ <path d="M103.155 112.462L84.3237 114.542C83.609 114.623 83.1593 115.169 83.3279 115.763L84.3237 119.313C84.4924 119.907 85.2151 120.324 85.9298 120.244L104.818 118.076C105.516 117.996 105.942 117.457 105.765 116.871L104.729 113.386C104.553 112.8 103.854 112.39 103.155 112.471V112.462Z" fill="var(--sapContent_Illustrative_Color8)"/>
10
+ <path d="M106.118 122.475L87.1896 124.716C86.4669 124.804 86.0172 125.358 86.1858 125.96L87.1977 129.566C87.3663 130.168 88.0971 130.594 88.8198 130.506L107.804 128.177C108.511 128.089 108.928 127.534 108.752 126.94L107.7 123.407C107.523 122.812 106.816 122.403 106.11 122.483L106.118 122.475Z" fill="var(--sapContent_Illustrative_Color8)"/>
11
+ <path d="M130.49 70.7849L113.136 72.1742C112.478 72.2304 112.076 72.7042 112.245 73.2502L113.257 76.4785C113.426 77.0246 114.1 77.4181 114.767 77.3619L132.169 75.8923C132.811 75.8361 133.197 75.3623 133.02 74.8242L131.976 71.6441C131.799 71.1141 131.141 70.7206 130.499 70.7768L130.49 70.7849Z" fill="var(--sapContent_Illustrative_Color8)"/>
12
+ <path d="M133.486 79.9057L116.052 81.4315C115.385 81.4878 114.984 81.9776 115.16 82.5317L116.188 85.8082C116.357 86.3623 117.039 86.7558 117.706 86.6996L135.189 85.0935C135.839 85.0373 136.216 84.5474 136.04 84.0013L134.98 80.7811C134.803 80.243 134.137 79.8495 133.486 79.9057Z" fill="var(--sapContent_Illustrative_Color8)"/>
13
+ <path d="M136.514 89.1661L118.991 90.8284C118.325 90.8926 117.923 91.3905 118.1 91.9527L119.136 95.2773C119.312 95.8395 119.995 96.241 120.67 96.1687L138.24 94.4261C138.891 94.3618 139.268 93.8639 139.092 93.3098L138.016 90.0414C137.839 89.4953 137.164 89.1018 136.514 89.1661Z" fill="var(--sapContent_Illustrative_Color8)"/>
14
+ <path d="M139.589 98.5625L121.978 100.369C121.304 100.442 120.902 100.948 121.079 101.518L122.131 104.891C122.307 105.461 122.998 105.862 123.673 105.79L141.332 103.903C141.982 103.831 142.368 103.325 142.183 102.763L141.091 99.4459C140.906 98.8918 140.232 98.4983 139.581 98.5625H139.589Z" fill="var(--sapContent_Illustrative_Color8)"/>
15
+ <path d="M142.714 108.093L125.014 110.045C124.34 110.117 123.938 110.647 124.115 111.217L125.183 114.646C125.36 115.225 126.058 115.626 126.733 115.554L144.48 113.514C145.139 113.442 145.516 112.92 145.332 112.35L144.223 108.985C144.039 108.423 143.356 108.021 142.706 108.093H142.714Z" fill="var(--sapContent_Illustrative_Color8)"/>
16
+ <path d="M145.877 117.771L128.09 119.875C127.415 119.955 127.006 120.493 127.19 121.072L128.274 124.549C128.459 125.135 129.158 125.545 129.84 125.456L147.676 123.264C148.335 123.184 148.72 122.654 148.528 122.075L147.403 118.662C147.219 118.092 146.528 117.691 145.869 117.771H145.877Z" fill="var(--sapContent_Illustrative_Color8)"/>
17
+ <path d="M170.21 76.6953L153.763 78.1328C153.137 78.189 152.776 78.6628 152.96 79.1928L154.045 82.3649C154.229 82.8949 154.888 83.2884 155.514 83.2241L172.001 81.7144C172.611 81.6582 172.957 81.1844 172.764 80.6624L171.648 77.5385C171.463 77.0165 170.812 76.6391 170.21 76.6872V76.6953Z" fill="var(--sapContent_Illustrative_Color8)"/>
18
+ <path d="M173.406 85.6642L156.887 87.2302C156.261 87.2864 155.899 87.7763 156.084 88.3143L157.184 91.5346C157.369 92.0726 158.035 92.4661 158.662 92.4019L175.221 90.7556C175.831 90.6914 176.176 90.2095 175.984 89.6795L174.851 86.5155C174.659 85.9854 174.016 85.6 173.398 85.6642H173.406Z" fill="var(--sapContent_Illustrative_Color8)"/>
19
+ <path d="M176.658 94.756L160.067 96.4585C159.432 96.5227 159.071 97.0206 159.264 97.5667L160.38 100.835C160.565 101.381 161.239 101.775 161.866 101.71L178.497 99.9277C179.115 99.8635 179.453 99.3736 179.26 98.8275L178.112 95.6153C177.919 95.0772 177.268 94.6918 176.65 94.756H176.658Z" fill="var(--sapContent_Illustrative_Color8)"/>
20
+ <path d="M179.951 103.982L163.288 105.821C162.653 105.893 162.292 106.399 162.484 106.953L163.617 110.27C163.81 110.824 164.476 111.217 165.119 111.145L181.83 109.226C182.448 109.154 182.794 108.656 182.593 108.102L181.429 104.841C181.236 104.295 180.577 103.91 179.959 103.982H179.951Z" fill="var(--sapContent_Illustrative_Color8)"/>
21
+ <path d="M183.292 113.338L166.548 115.322C165.914 115.394 165.552 115.916 165.745 116.478L166.894 119.843C167.086 120.405 167.761 120.807 168.403 120.726L185.187 118.662C185.806 118.582 186.151 118.076 185.95 117.514L184.77 114.213C184.569 113.659 183.91 113.274 183.292 113.346V113.338Z" fill="var(--sapContent_Illustrative_Color8)"/>
22
+ <path d="M201.577 65.0742L186.11 66.319C185.524 66.3671 185.195 66.8169 185.388 67.3228L186.512 70.3583C186.705 70.8723 187.331 71.2417 187.925 71.1935L203.432 69.8845C204.011 69.8363 204.316 69.3866 204.123 68.8887L202.975 65.9014C202.782 65.4035 202.164 65.0341 201.585 65.0822L201.577 65.0742Z" fill="var(--sapContent_Illustrative_Color8)"/>
23
+ <path d="M204.886 73.6587L189.355 75.0159C188.761 75.0641 188.44 75.5299 188.633 76.0438L189.773 79.1195C189.966 79.6335 190.6 80.0109 191.194 79.9547L206.766 78.5253C207.344 78.4691 207.649 78.0193 207.456 77.5054L206.292 74.4779C206.099 73.9719 205.473 73.6025 204.894 73.6507L204.886 73.6587Z" fill="var(--sapContent_Illustrative_Color8)"/>
24
+ <path d="M208.227 82.3564L192.631 83.8421C192.037 83.8983 191.716 84.3641 191.908 84.8861L193.065 88.0019C193.258 88.5239 193.9 88.9014 194.494 88.8451L210.13 87.2952C210.708 87.239 211.013 86.7733 210.82 86.2593L209.64 83.1916C209.439 82.6777 208.813 82.3083 208.235 82.3645L208.227 82.3564Z" fill="var(--sapContent_Illustrative_Color8)"/>
25
+ <path d="M211.623 91.1738L195.964 92.7799C195.37 92.8442 195.04 93.318 195.241 93.848L196.414 97.0121C196.614 97.5421 197.257 97.9275 197.851 97.8633L213.551 96.1849C214.129 96.1207 214.442 95.6469 214.241 95.1249L213.045 92.017C212.844 91.4951 212.21 91.1256 211.631 91.1819L211.623 91.1738Z" fill="var(--sapContent_Illustrative_Color8)"/>
26
+ <path d="M215.061 100.104L199.337 101.839C198.734 101.903 198.413 102.393 198.614 102.931L199.802 106.135C200.003 106.673 200.654 107.058 201.256 106.986L217.02 105.179C217.606 105.115 217.911 104.625 217.703 104.095L216.482 100.939C216.281 100.409 215.639 100.04 215.061 100.104Z" fill="var(--sapContent_Illustrative_Color8)"/>
27
+ <path d="M218.553 109.169L202.765 111.04C202.163 111.112 201.842 111.61 202.043 112.156L203.247 115.409C203.448 115.955 204.107 116.34 204.709 116.268L220.537 114.324C221.123 114.252 221.428 113.754 221.22 113.216L219.983 110.02C219.774 109.482 219.132 109.105 218.553 109.177V109.169Z" fill="var(--sapContent_Illustrative_Color8)"/>
28
+ <path d="M200.477 47.2768C199.972 45.8356 198.572 44.9079 197.056 45.0073L58.8365 53.9282C56.6829 54.0607 55.2002 56.1397 55.7717 58.2188L58.8447 69.3761L204.329 57.1834L200.469 47.2686L200.477 47.2768Z" fill="var(--sapContent_Illustrative_Color22)"/>
29
+ <path d="M185.308 182.942L108.734 158.441C108.734 158.441 107.95 158.196 107.91 157.791C107.87 157.386 108.616 157.173 108.616 157.173L129.615 151.322C129.615 151.322 130.428 151.038 130.974 151.038C131.52 151.038 132.402 151.322 132.402 151.322L201.09 173.991L185.308 182.942Z" fill="var(--sapContent_Illustrative_Color21)"/>
30
+ <path d="M171.964 76.7157L175.598 76.6348L224.735 73.4058L253.598 136.457C254.579 138.58 253.706 141.099 251.629 142.169L251.026 142.484L198.525 150.813C195.62 151.271 192.786 149.616 191.779 146.855L169.284 85.7013C167.881 81.8966 169.383 77.903 171.982 76.7157H171.964Z" fill="var(--sapContent_Illustrative_Color14)"/>
31
+ <path d="M172.98 76.4458L224.87 71.7506C226.201 71.6337 227.451 72.3893 227.955 73.6215L253.733 136.79C254.471 138.598 253.328 140.622 251.403 140.927L199.838 149.104C197.544 149.463 195.332 148.159 194.522 145.991L170.417 80.5113C169.733 78.6404 171.001 76.6257 172.989 76.4458H172.98Z" fill="var(--sapContent_Illustrative_Color8)"/>
32
+ <path d="M218.105 85.6154L192.903 87.936C192.417 87.9809 192.147 88.3677 192.318 88.8084L193.271 91.4258C193.433 91.8666 193.955 92.1904 194.441 92.1364L219.778 89.6449C220.228 89.6 220.453 89.2222 220.282 88.7994L219.239 86.29C219.068 85.8762 218.555 85.5704 218.114 85.6064L218.105 85.6154Z" fill="var(--sapContent_Illustrative_Color2)"/>
33
+ <path d="M221.092 92.8379L195.655 95.4643C195.17 95.5183 194.9 95.914 195.062 96.3727L196.042 99.0621C196.204 99.5208 196.735 99.8446 197.229 99.7907L222.801 96.9844C223.26 96.9304 223.484 96.5436 223.305 96.1119L222.234 93.5395C222.054 93.1167 221.551 92.8019 221.092 92.8469V92.8379Z" fill="var(--sapContent_Illustrative_Color2)"/>
34
+ <path d="M198.47 103.2C197.976 103.254 197.706 103.676 197.877 104.135L198.884 106.905C199.055 107.373 199.595 107.697 200.089 107.643L225.904 104.513C226.362 104.459 226.578 104.054 226.398 103.604L225.301 100.96C225.121 100.519 224.599 100.204 224.141 100.249L198.461 103.2H198.47Z" fill="var(--sapContent_Illustrative_Color2)"/>
35
+ <path d="M227.298 107.868L201.375 111.142C200.872 111.205 200.611 111.646 200.791 112.113L201.825 114.956C201.996 115.432 202.554 115.774 203.048 115.711L229.106 112.23C229.564 112.167 229.789 111.745 229.6 111.286L228.476 108.569C228.287 108.12 227.765 107.796 227.307 107.859L227.298 107.868Z" fill="var(--sapContent_Illustrative_Color2)"/>
36
+ <path d="M230.536 115.702L204.371 119.336C203.867 119.399 203.597 119.857 203.777 120.343L204.838 123.275C205.018 123.77 205.576 124.112 206.08 124.031L232.38 120.19C232.847 120.127 233.063 119.686 232.874 119.219L231.723 116.421C231.534 115.954 230.994 115.63 230.527 115.693L230.536 115.702Z" fill="var(--sapContent_Illustrative_Color2)"/>
37
+ <path d="M233.855 123.752L207.438 127.755C206.934 127.835 206.665 128.303 206.853 128.798L207.951 131.82C208.131 132.324 208.697 132.684 209.21 132.594L235.771 128.366C236.239 128.285 236.463 127.835 236.265 127.359L235.078 124.49C234.88 124.013 234.341 123.68 233.873 123.752H233.864H233.855Z" fill="var(--sapContent_Illustrative_Color2)"/>
38
+ <path d="M166.378 61.798C165.54 58.2237 161.561 55.5246 157.457 55.8188C153.309 56.1203 150.713 59.3563 151.684 62.9894C151.956 64.0043 152.478 64.931 153.177 65.7326C152.971 65.3575 155.942 65.5414 155.81 65.1369C154.736 61.7686 155.847 60.305 157.641 59.5696C160.458 58.4149 164.076 60.0329 164.554 63.3939C164.856 65.5193 163.664 67.711 161.701 68.6009C165.084 67.8581 167.128 65.0045 166.378 61.7906V61.798Z" fill="var(--sapContent_Illustrative_Color1)"/>
39
+ <path d="M185.287 182.934L186.949 183.052C187.265 183.074 187.581 183.052 187.89 183L188.699 182.846L143.771 54.0029L142.101 54.0985C141.653 54.128 141.167 54.2824 140.491 54.9222C140.219 55.1796 139.682 55.8489 139.682 55.8489C139.432 56.3269 139.542 56.8859 139.719 57.3933L184.625 182.441C184.728 182.728 184.985 182.919 185.287 182.941V182.934Z" fill="var(--sapContent_Illustrative_Color1)"/>
40
+ <path d="M166.327 52.7959L142.094 54.0976C141.447 54.1344 141.013 54.7816 141.233 55.392L187.074 182.249C187.25 182.727 187.743 183.014 188.243 182.926L212.042 178.697C212.417 178.631 212.645 178.241 212.513 177.873L167.29 53.4357C167.143 53.0386 166.753 52.7738 166.327 52.8033V52.7959ZM161.973 65.5044C159.259 65.7471 156.516 64.0114 155.861 61.5918C155.199 59.1281 156.957 56.9365 159.774 56.7379C162.554 56.5393 165.253 58.3706 165.819 60.7902C166.378 63.173 164.665 65.2691 161.98 65.5118L161.973 65.5044Z" fill="var(--sapContent_Illustrative_Color24)"/>
41
+ <path d="M160.826 76.0805L160.142 74.1684C160.105 74.0654 160.179 73.9551 160.282 73.9477L171.409 73.0063C171.482 73.0063 171.549 73.0431 171.578 73.1167L172.262 75.0068C172.299 75.1097 172.233 75.22 172.122 75.2274L161.002 76.1908C160.929 76.1908 160.855 76.1541 160.833 76.0805H160.826Z" fill="var(--sapContent_Illustrative_Color1)"/>
42
+ <path d="M172.049 107.367L171.357 105.44C171.321 105.337 171.387 105.234 171.497 105.219L182.551 103.991C182.624 103.984 182.698 104.028 182.72 104.101L183.404 106.006C183.441 106.109 183.375 106.212 183.264 106.227L172.218 107.477C172.144 107.484 172.071 107.44 172.041 107.367H172.049Z" fill="var(--sapContent_Illustrative_Color1)"/>
43
+ <path d="M167.555 81.4578C167.481 81.4578 167.408 81.421 167.386 81.3474L167.025 80.3546L173.821 79.7368C173.894 79.7368 173.968 79.7736 173.99 79.8471L174.343 80.8326L167.548 81.4504L167.555 81.4578Z" fill="var(--sapContent_Illustrative_Color1)"/>
44
+ <path d="M169.791 87.6859C169.718 87.6859 169.644 87.6491 169.622 87.5756L169.262 86.5827L176.05 85.9355C176.123 85.9355 176.197 85.9723 176.219 86.0459L176.572 87.0314L169.784 87.6859H169.791Z" fill="var(--sapContent_Illustrative_Color1)"/>
45
+ <path d="M171.858 93.8134L171.571 93.0191C171.534 92.9161 171.6 92.8131 171.71 92.7984L178.278 92.1365C178.352 92.1292 178.425 92.1733 178.447 92.2469L178.8 93.2324L172.019 93.9237C171.946 93.931 171.872 93.8869 171.85 93.8134H171.858Z" fill="var(--sapContent_Illustrative_Color1)"/>
46
+ <path d="M174.101 100.05L173.814 99.2482C173.777 99.1453 173.843 99.0423 173.954 99.0276L180.514 98.3289C180.587 98.3216 180.661 98.3657 180.683 98.4392L180.97 99.2335C181.007 99.3365 180.94 99.4394 180.83 99.4542L174.27 100.16C174.196 100.168 174.123 100.123 174.101 100.05Z" fill="var(--sapContent_Illustrative_Color1)"/>
47
+ <path d="M183.389 138.992L182.69 137.05C182.654 136.954 182.72 136.844 182.823 136.829L193.803 135.307C193.877 135.3 193.957 135.344 193.98 135.417L194.671 137.337C194.708 137.432 194.641 137.543 194.538 137.557L183.558 139.102C183.485 139.109 183.404 139.065 183.382 138.992H183.389Z" fill="var(--sapContent_Illustrative_Color1)"/>
48
+ <path d="M178.646 112.706L178.359 111.905C178.322 111.802 178.388 111.699 178.491 111.684L185.037 110.919C185.11 110.912 185.184 110.956 185.213 111.03L185.5 111.824C185.537 111.927 185.471 112.03 185.368 112.044L178.822 112.817C178.749 112.824 178.675 112.78 178.646 112.706Z" fill="var(--sapContent_Illustrative_Color1)"/>
49
+ <path d="M180.896 118.972L180.609 118.17C180.573 118.074 180.639 117.964 180.742 117.949L187.28 117.148C187.353 117.14 187.427 117.185 187.456 117.258L187.743 118.052C187.78 118.148 187.714 118.258 187.611 118.273L181.073 119.082C180.999 119.089 180.926 119.045 180.896 118.972Z" fill="var(--sapContent_Illustrative_Color1)"/>
50
+ <path d="M183.147 125.238L182.86 124.429C182.823 124.333 182.889 124.223 182.992 124.208L189.523 123.37C189.597 123.363 189.67 123.407 189.7 123.48L189.986 124.282C190.023 124.377 189.957 124.488 189.854 124.503L183.323 125.348C183.25 125.356 183.176 125.312 183.147 125.238Z" fill="var(--sapContent_Illustrative_Color1)"/>
51
+ <path d="M185.398 131.518L185.111 130.709C185.074 130.614 185.14 130.503 185.243 130.489L191.767 129.614C191.84 129.606 191.914 129.65 191.943 129.724L192.23 130.526C192.267 130.621 192.201 130.731 192.098 130.746L185.582 131.621C185.508 131.629 185.434 131.585 185.405 131.511L185.398 131.518Z" fill="var(--sapContent_Illustrative_Color1)"/>
52
+ <path d="M194.796 170.806L194.098 168.85C194.061 168.754 194.127 168.652 194.223 168.629L205.137 166.806C205.218 166.791 205.291 166.835 205.321 166.909L206.019 168.843C206.056 168.938 205.99 169.041 205.894 169.063L194.988 170.909C194.907 170.924 194.833 170.88 194.804 170.806H194.796Z" fill="var(--sapContent_Illustrative_Color1)"/>
53
+ <path d="M189.971 144.25L189.677 143.441C189.64 143.346 189.707 143.235 189.81 143.221L196.311 142.279C196.392 142.265 196.465 142.316 196.487 142.39L196.774 143.191C196.811 143.287 196.745 143.397 196.642 143.412L190.141 144.361C190.06 144.375 189.986 144.324 189.964 144.25H189.971Z" fill="var(--sapContent_Illustrative_Color1)"/>
54
+ <path d="M192.229 150.553L191.935 149.744C191.898 149.648 191.964 149.538 192.067 149.523L198.561 148.545C198.642 148.531 198.716 148.575 198.738 148.656L199.025 149.465C199.062 149.56 198.995 149.671 198.892 149.685L192.398 150.671C192.318 150.685 192.244 150.641 192.222 150.56L192.229 150.553Z" fill="var(--sapContent_Illustrative_Color1)"/>
55
+ <path d="M194.494 156.855L194.2 156.039C194.163 155.943 194.23 155.84 194.333 155.818L200.819 154.803C200.9 154.788 200.974 154.833 200.996 154.913L201.29 155.722C201.327 155.818 201.26 155.921 201.158 155.943L194.671 156.965C194.59 156.98 194.516 156.936 194.494 156.855Z" fill="var(--sapContent_Illustrative_Color1)"/>
56
+ <path d="M196.767 163.172L196.473 162.355C196.436 162.26 196.502 162.157 196.598 162.135L203.077 161.083C203.158 161.068 203.231 161.112 203.261 161.186L203.555 161.995C203.592 162.09 203.526 162.193 203.43 162.215L196.951 163.267C196.87 163.282 196.796 163.238 196.767 163.157V163.172Z" fill="var(--sapContent_Illustrative_Color1)"/>
57
+ </svg>`;
@@ -0,0 +1,31 @@
1
+ export default `<svg width="314" height="242" viewBox="0 0 314 242" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-SearchEarth">
2
+ <path d="M295.841 47.5547H14.5969C12.7636 47.5547 10.9482 47.9166 9.25457 48.6197C7.56092 49.3228 6.02213 50.3533 4.72611 51.6523C2.10754 54.2766 0.636362 57.8353 0.636009 61.5459V227.151C0.636569 230.86 2.10781 234.417 4.72611 237.04C7.34385 239.663 10.8944 241.137 14.5969 241.137H295.841C299.543 241.136 303.094 239.662 305.712 237.04C308.33 234.417 309.801 230.86 309.802 227.151V61.5414C309.799 57.8325 308.329 54.2761 305.712 51.6523C303.094 49.0296 299.543 47.5557 295.841 47.5547V47.5547Z" fill="var(--sapContent_Illustrative_Color7)"/>
3
+ <path d="M193.239 49.6855L191.739 50.9148L191.662 50.9512L191.553 50.8601C191.174 51.0587 190.786 51.2381 190.389 51.3974C188.331 51.8937 186.054 51.534 184.431 52.8042C169.339 38.8039 150.32 31.1003 130.806 31.1003C87.2689 31.1003 51.8577 66.9594 51.8577 110.618C51.8577 154.276 87.2689 189.839 130.819 189.839C146.348 189.839 160.913 185.896 173.215 178.803C194.575 167.634 209.572 147.711 210.894 121.754C212.385 122.209 212.144 120.794 212.712 120.448C213.817 122.678 215.221 122.05 216.239 121.017C218.184 121.891 217.92 117.866 218.447 117.866H219.325L219.493 117.028C226.528 81.7747 206.032 60.1117 193.239 49.6855Z" fill="var(--sapContent_Illustrative_Color20)"/>
4
+ <path d="M138.795 203.384H123.343V219.839H138.795V203.384Z" fill="var(--sapContent_Illustrative_Color19)"/>
5
+ <path d="M166.044 239.617C159.014 225.625 145.425 216.938 130.596 216.938C115.768 216.938 102.161 225.625 95.1489 239.617L94.3809 241.137H166.844L166.044 239.617Z" fill="var(--sapContent_Illustrative_Color18)"/>
6
+ <path d="M145.585 198.713C140.781 199.168 135.805 199.368 131.074 199.368C126.343 199.368 121.58 199.164 116.881 198.74L114.641 198.549L115.5 200.156C117.42 203.677 120.508 206.415 124.23 207.896C126.397 208.768 128.711 209.214 131.047 209.207C133.382 209.214 135.697 208.768 137.864 207.896C141.585 206.416 144.672 203.678 146.589 200.156L147.453 198.549L145.585 198.713Z" fill="var(--sapContent_Illustrative_Color18)"/>
7
+ <path d="M207.3 125.929C207.031 125.433 205.782 123.229 203.768 123.052C202.182 122.911 200.86 123.935 199.101 126.157C194.407 132.076 194.225 133.56 195.52 137.43C195.717 138.064 196.122 138.613 196.67 138.987C197.227 139.342 197.878 139.521 198.538 139.502C200.937 139.565 203.455 137.853 204.05 137.435C204.454 137.157 204.829 136.841 205.173 136.492C208.508 133.082 207.595 127.468 207.3 125.929Z" fill="var(--sapContent_Illustrative_Color17)"/>
8
+ <path d="M125.711 99.8545C123.854 99.8898 122.001 100.042 120.162 100.31C119.301 100.451 118.431 100.541 117.558 100.578C116.441 100.468 115.344 100.201 114.3 99.7862C112.963 99.2573 111.553 98.9394 110.119 98.8437C108.628 98.8437 106.724 99.4538 106.111 102.554C105.933 103.163 105.899 103.806 106.011 104.43C106.123 105.055 106.378 105.646 106.756 106.156C107.601 107.18 109.096 107.676 111.187 107.676C112.369 107.65 113.548 107.553 114.718 107.385C115.266 107.303 115.816 107.248 116.368 107.221C117.049 107.221 117.381 107.508 118.095 108.2C119.111 109.307 120.394 110.133 121.821 110.599L122.276 110.754C124.641 111.656 127.127 112.201 129.651 112.371H129.683C130.437 112.429 131.193 112.321 131.901 112.056C132.609 111.796 133.25 111.38 133.778 110.841C134.28 110.165 134.631 109.388 134.805 108.564C134.974 107.736 134.959 106.881 134.76 106.06C134.16 101.917 131.124 99.8545 125.711 99.8545Z" fill="var(--sapContent_Illustrative_Color17)"/>
9
+ <path d="M172.17 133.728C169.288 133.742 166.428 134.224 163.699 135.154C162.761 135.504 161.779 135.722 160.782 135.8C160.128 135.795 159.493 135.587 158.964 135.204C157.914 134.33 157.127 133.181 156.691 131.885C155.71 129.699 154.492 126.972 150.329 126.972H149.42C147.674 126.977 145.944 126.635 144.33 125.966C142.721 125.296 141.261 124.312 140.036 123.07C139.437 122.434 138.712 121.93 137.909 121.59C137.104 121.252 136.237 121.086 135.364 121.103C134.005 121.159 132.659 121.393 131.36 121.8C130.398 122.101 129.403 122.286 128.397 122.351C126.969 122.283 125.579 121.862 124.352 121.126C123.128 120.393 122.101 119.37 121.362 118.148C121.067 117.543 120.267 115.963 118.772 115.963C117.586 115.963 116.499 116.896 114.945 119.186C114.709 119.582 114.491 119.924 114.291 120.229C113.976 120.779 113.606 121.294 113.186 121.768C112.294 121.024 111.518 120.151 110.882 119.177C110.369 118.49 109.878 117.834 109.424 117.197C106.615 113.463 104.634 110.704 102.448 109.662C101.749 109.324 101.028 109.036 100.289 108.801C98.8392 108.346 97.7758 107.959 97.1578 106.72C96.9535 106.188 96.8443 105.624 96.8351 105.054C96.6397 102.595 96.0034 100.392 90.4727 100.392C88.6185 100.392 87.3961 100.005 87.0461 99.3491C86.5917 98.4385 87.2325 96.6173 89.0366 93.9265C90.4318 91.7092 92.0088 90.6712 93.5812 90.6712C94.8855 90.6712 96.3079 91.427 97.8258 92.9477C100.13 95.2469 102.416 96.4124 104.615 96.4124C105.573 96.3901 106.517 96.1716 107.388 95.7705C108.251 95.3709 109.024 94.7992 109.66 94.0904C112.109 91.6865 113.341 89.2097 114.541 84.4018C115.79 79.3935 118.013 73.5566 124.084 72.514C125.448 72.2863 126.811 72.1088 128.079 71.9312C133.437 71.1936 137.682 70.5972 139.767 67.4739C142.749 63.0074 144.208 55.7637 138.486 50.0497C135.442 46.8285 131.262 44.9267 126.838 44.7501C124.774 44.7866 122.744 45.2876 120.899 46.2161C119.056 47.1432 117.447 48.4755 116.19 50.1135C113.127 53.7877 110.737 56.2326 108.955 56.2326C107.866 56.0865 106.877 55.5175 106.201 54.6482C105.698 54.0437 105.334 53.3346 105.138 52.5721C104.944 51.8078 104.923 51.0095 105.079 50.2364C105.212 49.3239 105.566 48.4579 106.111 47.714C106.656 46.9673 107.375 46.3656 108.206 45.9612C109.758 45.3557 111.424 45.0963 113.086 45.2008C116.327 45.128 120.008 45.0551 122.466 40.962C123.73 38.8631 124.03 36.9782 123.375 35.3528C122.988 34.5644 122.438 33.8675 121.762 33.3085C121.087 32.7452 120.3 32.3324 119.453 32.0974H119.04C105.964 33.9202 93.5636 39.0347 82.9969 46.9628C72.4417 54.8705 64.0698 65.3403 58.6699 77.3857C58.5154 77.6998 54.7707 85.2759 56.0023 90.1886C56.7048 92.6864 58.1895 94.8921 60.2378 96.4807C62.2881 98.0735 64.7927 98.9684 67.3864 99.035C71.7355 99.035 74.6849 100.078 76.7709 105.282C79.0886 111.068 84.7011 114.72 88.873 116.104C89.4456 116.291 90.0183 116.45 90.5818 116.605C93.3403 117.374 95.7171 118.03 97.4531 122.383C97.988 124.026 99.0567 125.443 100.489 126.407C101.931 127.364 103.649 127.814 105.374 127.687H107.937C108.951 127.737 110.337 127.823 110.732 128.538C110.96 128.966 111.241 130.359 109.051 134.17C104.215 142.62 105.415 146.422 107.856 151.248C109.255 154.09 111.304 156.561 113.836 158.46C116.383 160.36 119.342 161.629 122.471 162.166C123.139 162.221 123.784 162.44 124.348 162.804C124.917 163.164 125.386 163.662 125.711 164.251C126.993 166.778 125.711 171.204 124.034 174.509C123.24 176.062 122.296 177.534 121.217 178.903C120.144 180.351 119.299 181.466 119.299 183.069C119.407 185.005 119.821 186.913 120.526 188.719L120.758 189.288L121.371 189.366C124.307 189.705 127.26 189.873 130.215 189.866C131.578 189.866 132.892 189.835 134.205 189.825L137.886 189.634L134.632 187.859C134.559 187.822 132.946 186.898 132.946 183.119C132.946 181.944 135.323 180.688 141.985 180.688H144.653C145.835 180.598 146.936 180.049 147.72 179.158L148.261 178.489C150.679 175.461 156.501 168.363 159.023 166.687C160.14 165.973 161.369 165.453 162.658 165.148C164.838 164.666 166.831 163.559 168.394 161.961C169.166 161.219 169.784 160.331 170.211 159.348C170.639 158.362 170.865 157.3 170.875 156.225C170.878 154.944 171.24 153.689 171.92 152.605C172.824 151.407 173.976 150.419 175.297 149.709C177.028 148.671 179.114 147.346 180.155 144.505C181.596 140.667 181.764 138.25 180.478 136.419C179.192 134.589 176.61 133.728 172.17 133.728Z" fill="var(--sapContent_Illustrative_Color17)"/>
10
+ <path d="M133.755 41.0076C135.272 41.4751 136.855 41.6874 138.441 41.6359C139.44 41.6359 140.058 41.6359 140.313 41.8999C140.672 42.3963 140.935 42.9552 141.09 43.5481C141.617 45.0096 142.267 46.8126 144.076 47.6822C145.551 48.2854 147.137 48.5724 148.729 48.5245C150.166 48.5245 153.729 48.3196 155.746 46.3755C159.868 42.4053 153.633 35.1525 153.374 34.852L153.183 34.6289L152.888 34.5378C145.429 32.2013 137.653 31.0416 129.838 31.1003H128.165L128.365 32.275C128.502 33.0353 129.783 39.7327 133.755 41.0076Z" fill="var(--sapContent_Illustrative_Color17)"/>
11
+ <path d="M200.965 93.1981C203.35 88.6451 203.051 83.7006 200.128 78.9382C194.625 70.0053 181.459 64.0091 172.607 64.0091C167.085 64.0091 163.354 66.2264 162.09 70.2193C161.005 73.4604 160.736 76.9202 161.309 80.2904C161.881 83.6654 163.277 86.8465 165.372 89.5511C170.371 96.2713 179.16 100.788 187.263 100.788C193.566 100.788 198.42 98.0925 200.965 93.1981Z" fill="var(--sapContent_Illustrative_Color17)"/>
12
+ <path d="M193.384 176.289C194.024 176.286 194.637 176.029 195.088 175.575C195.313 175.351 195.491 175.085 195.612 174.792C195.733 174.499 195.794 174.184 195.793 173.867C195.794 173.55 195.732 173.235 195.611 172.941C195.49 172.647 195.313 172.38 195.088 172.155C194.635 171.705 194.023 171.451 193.384 171.45C192.746 171.451 192.135 171.703 191.68 172.151C191.228 172.602 190.971 173.214 190.967 173.854C190.966 174.166 191.026 174.475 191.144 174.764C191.264 175.06 191.442 175.329 191.666 175.556C191.89 175.781 192.155 175.959 192.448 176.08C192.743 176.213 193.061 176.285 193.384 176.289V176.289Z" fill="var(--sapContent_Illustrative_Color3)"/>
13
+ <path d="M68.2636 50.4732C69.8678 50.4732 71.1676 49.3895 71.1676 48.051C71.1676 46.7124 69.8678 45.6334 68.2636 45.6334C66.6593 45.6334 65.3687 46.717 65.3687 48.051C65.3687 49.385 66.6684 50.4732 68.2636 50.4732Z" fill="var(--sapContent_Illustrative_Color3)"/>
14
+ <path d="M137.418 205.897C135.439 206.874 133.262 207.38 131.055 207.377C128.849 207.379 126.672 206.873 124.693 205.897L123.33 205.333V209.107L123.98 209.371C126.832 210.555 129.895 211.142 132.982 211.097V211.129C134.64 211.125 136.295 210.991 137.931 210.728L138.79 210.591V205.328L137.418 205.897Z" fill="var(--sapContent_Illustrative_Color20)"/>
15
+ <path d="M300.036 70.7748H268.374C267.098 70.7701 265.834 71.016 264.652 71.4987C263.464 71.9783 262.383 72.6885 261.471 73.5885C260.563 74.4872 259.84 75.5562 259.344 76.7346C258.849 77.9122 258.591 79.1764 258.585 80.4544C258.59 81.7338 258.848 82.9996 259.344 84.1787C259.841 85.3564 260.564 86.4253 261.471 87.3248C262.383 88.2248 263.464 88.935 264.652 89.4146C265.833 89.898 267.098 90.1425 268.374 90.134H300.036C302.612 90.148 305.088 89.1377 306.921 87.3248C308.755 85.5086 309.794 83.0376 309.811 80.4544C309.802 79.1764 309.542 77.9126 309.048 76.7346C308.553 75.5567 307.832 74.4878 306.925 73.5885C306.013 72.687 304.932 71.9752 303.744 71.4942C302.567 71.0151 301.307 70.7708 300.036 70.7748V70.7748Z" fill="var(--sapContent_Illustrative_Color18)"/>
16
+ <path d="M285.72 58.2132H254.654C253.391 58.2172 252.141 58.4711 250.976 58.9602C249.811 59.4493 248.753 60.164 247.864 61.0633C246.974 61.962 246.268 63.0277 245.789 64.1995C245.309 65.3713 245.065 66.6263 245.07 67.8927C245.065 69.1592 245.309 70.4143 245.789 71.5861C246.268 72.758 246.974 73.8236 247.864 74.7222C248.753 75.6215 249.811 76.3362 250.976 76.8253C252.141 77.3144 253.391 77.5683 254.654 77.5723H285.72C286.985 77.5692 288.236 77.3154 289.402 76.8256C290.568 76.3371 291.625 75.6222 292.515 74.7222C293.405 73.8243 294.11 72.76 294.591 71.5897C295.069 70.4177 295.313 69.1633 295.309 67.8973C295.313 66.6298 295.069 65.3738 294.591 64.2003C294.11 63.03 293.405 61.9657 292.515 61.0679C291.625 60.1678 290.568 59.453 289.402 58.9644C288.236 58.4731 286.985 58.2177 285.72 58.2132V58.2132Z" fill="var(--sapContent_Illustrative_Color18)"/>
17
+ <path d="M228.805 199.514H204.327C202.3 199.537 200.365 200.366 198.947 201.818C198.244 202.536 197.69 203.386 197.315 204.318C196.941 205.251 196.754 206.249 196.765 207.254C196.751 208.264 196.937 209.267 197.311 210.204C197.685 211.142 198.241 211.996 198.947 212.718C200.365 214.17 202.3 214.998 204.327 215.021H228.805C230.833 214.998 232.77 214.169 234.19 212.718C234.895 211.996 235.451 211.142 235.826 210.204C236.2 209.267 236.385 208.264 236.371 207.254C236.382 206.249 236.195 205.251 235.821 204.318C235.447 203.386 234.892 202.536 234.19 201.818C232.77 200.366 230.833 199.538 228.805 199.514V199.514Z" fill="var(--sapContent_Illustrative_Color18)"/>
18
+ <path d="M75.0804 67.8836H44.0183C42.7541 67.8858 41.5028 68.1396 40.3372 68.6303C39.1709 69.1188 38.1117 69.8319 37.2197 70.7292C36.3316 71.6297 35.6277 72.6953 35.1474 73.8662C34.6697 75.0383 34.4258 76.2927 34.4293 77.5587C34.4253 78.8262 34.6693 80.0822 35.1474 81.2557C35.6266 82.4258 36.3307 83.4901 37.2197 84.3881C38.1103 85.2882 39.1698 86.0031 40.3372 86.4916C41.5036 86.9796 42.7543 87.2333 44.0183 87.2383H75.0804C76.343 87.2333 77.5922 86.9796 78.757 86.4916C79.9332 86.007 81.0008 85.2919 81.8973 84.3881C82.7881 83.4916 83.4924 82.4269 83.9696 81.2557C84.4519 80.0834 84.696 78.8266 84.6876 77.5587C84.6956 76.2923 84.4514 75.037 83.9696 73.8662C83.4909 72.6945 82.7868 71.6285 81.8973 70.7292C81.006 69.831 79.9466 69.1177 78.7797 68.6303C77.6156 68.1402 76.3659 67.8864 75.1031 67.8836H75.0804Z" fill="var(--sapContent_Illustrative_Color18)"/>
19
+ <path d="M207.213 160.304C207.157 160.245 207.089 160.199 207.013 160.167C206.937 160.135 206.855 160.118 206.773 160.117C206.69 160.117 206.608 160.134 206.532 160.167C206.455 160.198 206.385 160.244 206.327 160.304L195.938 171.154C195.492 170.785 194.949 170.553 194.375 170.484C193.8 170.416 193.216 170.512 192.694 170.762C192.169 171.009 191.727 171.403 191.421 171.896C191.118 172.39 190.96 172.96 190.967 173.54C190.967 174.238 191.208 174.915 191.648 175.456C174.826 191.197 152.562 199.782 129.547 199.4C106.528 199.016 84.5567 189.694 68.2637 173.398C51.9888 157.117 42.6745 135.132 42.2915 112.093C41.9129 89.0553 50.4954 66.7738 66.2232 49.9632C66.7686 50.4206 67.4569 50.672 68.1682 50.6735C68.7516 50.6819 69.3253 50.524 69.8224 50.2182C70.3191 49.9057 70.714 49.4547 70.9586 48.9206C71.2079 48.3869 71.2948 47.7915 71.2085 47.2087C71.1301 46.627 70.8837 46.081 70.4996 45.6379L81.1884 35.0933C81.2445 35.0318 81.2919 34.9628 81.3292 34.8884C81.3593 34.8129 81.3762 34.7328 81.3792 34.6516C81.3784 34.5687 81.3614 34.4867 81.3292 34.4103C81.2996 34.3324 81.2548 34.2613 81.1975 34.2009C81.1403 34.1407 81.0704 34.0941 80.993 34.0643C80.917 34.0311 80.835 34.0141 80.7521 34.0142C80.6696 34.0135 80.5878 34.029 80.5112 34.0597C80.4354 34.088 80.367 34.1331 80.3113 34.1918L69.4952 44.8548C69.0821 44.6515 68.6285 44.5441 68.1682 44.5407C67.5998 44.5369 67.0419 44.6947 66.5595 44.9959L56.2251 34.6926C56.1652 34.6324 56.0942 34.5845 56.0161 34.5515C55.938 34.5207 55.8546 34.5052 55.7707 34.5059C55.6852 34.5052 55.6004 34.5206 55.5207 34.5515C55.4439 34.5845 55.3744 34.6325 55.3162 34.6926C55.2537 34.7505 55.2055 34.8222 55.1753 34.902C55.142 34.9796 55.1265 35.0636 55.1299 35.1479C55.1268 35.2322 55.1423 35.3162 55.1753 35.3938C55.2066 35.473 55.2547 35.5444 55.3162 35.6032L65.6142 45.8792C65.3012 46.3345 65.1175 46.8664 65.0825 47.4181C65.0447 47.9707 65.1578 48.5232 65.4097 49.0162C49.4922 66.0724 40.8161 88.6598 41.2145 112.006C41.622 135.355 51.0738 157.631 67.5729 174.127C84.0788 190.637 106.335 200.088 129.656 200.488C152.979 200.894 175.549 192.219 192.616 176.29C193.054 176.516 193.537 176.637 194.03 176.645C194.65 176.644 195.256 176.453 195.766 176.098L204.732 185.095C204.79 185.156 204.86 185.206 204.937 185.241C205.015 185.27 205.098 185.285 205.182 185.286C205.264 185.285 205.346 185.269 205.423 185.241C205.5 185.206 205.569 185.156 205.627 185.095C205.686 185.038 205.732 184.97 205.764 184.895C205.799 184.819 205.818 184.737 205.818 184.653C205.817 184.57 205.798 184.488 205.764 184.412C205.732 184.335 205.686 184.266 205.627 184.207L196.629 175.179C196.929 174.695 197.087 174.136 197.084 173.567C197.081 173.077 196.959 172.596 196.729 172.165L207.182 161.201C207.242 161.142 207.288 161.071 207.318 160.992C207.351 160.914 207.366 160.83 207.363 160.746C207.369 160.666 207.359 160.586 207.333 160.51C207.307 160.434 207.266 160.364 207.213 160.304V160.304ZM66.5549 46.8035C66.7461 46.4207 67.0689 46.1199 67.4638 45.9566C67.6766 45.8614 67.9079 45.8147 68.1409 45.82C68.4183 45.8203 68.6919 45.8842 68.9408 46.0067C69.19 46.1263 69.4056 46.3063 69.5679 46.5303C69.7749 46.7933 69.9054 47.1084 69.9451 47.4409C69.9715 47.776 69.9088 48.1122 69.7634 48.4152C69.615 48.7244 69.3837 48.9861 69.0953 49.171C68.8116 49.3577 68.4804 49.4588 68.1409 49.4624C67.727 49.4533 67.3277 49.3076 67.0048 49.0481C66.6823 48.7866 66.4567 48.4243 66.364 48.0191C66.355 47.8933 66.355 47.767 66.364 47.6412C66.3584 47.3505 66.424 47.0629 66.5549 46.8035V46.8035ZM195.697 174.241C195.534 174.643 195.233 174.974 194.848 175.174C194.594 175.302 194.314 175.37 194.03 175.37C193.894 175.388 193.756 175.388 193.621 175.37C193.2 175.258 192.83 175.004 192.575 174.65C192.36 174.344 192.244 173.978 192.244 173.603C192.242 173.31 192.317 173.021 192.462 172.766C192.658 172.387 192.979 172.088 193.371 171.919C193.587 171.831 193.819 171.787 194.052 171.791C194.428 171.789 194.794 171.907 195.098 172.128C195.452 172.383 195.707 172.753 195.82 173.175C195.829 173.307 195.829 173.44 195.82 173.571C195.823 173.8 195.781 174.028 195.697 174.241Z" fill="var(--sapContent_Illustrative_Color4)"/>
20
+ <path d="M131.192 201.445C113.529 201.468 96.2417 196.335 81.4428 186.675C66.649 177.009 54.9916 163.228 47.8995 147.023C40.8112 130.822 38.5998 112.899 41.5371 95.4563C44.4637 78.0106 52.4135 61.8014 64.4098 48.8204C64.2953 48.4474 64.2386 48.0589 64.2417 47.6685C64.2399 47.1374 64.3434 46.6113 64.5462 46.1205L54.8163 36.4045C54.5846 36.1698 54.4266 35.8723 54.3618 35.5486C54.2974 35.2245 54.3306 34.8885 54.4573 34.5833C54.5806 34.2762 54.7947 34.0141 55.0708 33.8321C55.3395 33.6506 55.6556 33.5524 55.9797 33.5498C56.1976 33.5497 56.4136 33.5914 56.6159 33.6728C56.8181 33.7557 57.0019 33.8779 57.1567 34.0324L66.9412 43.8031C67.3867 43.6337 67.8598 43.5488 68.3363 43.5527C68.6897 43.5535 69.0414 43.6025 69.3816 43.6984L79.6932 33.518C79.8513 33.3633 80.0381 33.2411 80.2431 33.1583C80.4452 33.0765 80.6613 33.0347 80.8793 33.0353C81.0982 33.0352 81.3147 33.0801 81.5155 33.1674C81.7201 33.2525 81.9056 33.3779 82.0609 33.5362C82.2132 33.6919 82.3336 33.8759 82.4154 34.078C82.4981 34.2819 82.5412 34.4998 82.5426 34.7199C82.5403 34.9409 82.494 35.1592 82.4063 35.3619C82.3201 35.5638 82.1968 35.7476 82.0427 35.9037L71.9765 45.8292C72.2718 46.3908 72.4277 47.0155 72.431 47.6503C72.4161 48.7384 71.9774 49.7775 71.2085 50.546C70.4404 51.3116 69.406 51.749 68.3227 51.7662C67.7117 51.768 67.1085 51.6294 66.5594 51.361C51.2897 67.9947 43.032 89.8998 43.514 112.494C43.9938 135.087 53.1726 156.621 69.1316 172.593C85.0926 188.578 106.597 197.772 129.161 198.258C151.723 198.739 173.599 190.474 190.226 175.188C189.969 174.646 189.838 174.053 189.844 173.453C189.842 172.911 189.947 172.374 190.153 171.873C190.365 171.372 190.674 170.919 191.062 170.539C191.836 169.767 192.883 169.333 193.975 169.333C194.577 169.333 195.17 169.47 195.711 169.733L205.495 159.512C205.651 159.347 205.838 159.215 206.045 159.125C206.25 159.034 206.471 158.988 206.695 158.988C207.132 158.979 207.555 159.142 207.872 159.444C208.187 159.752 208.37 160.172 208.381 160.614C208.382 160.833 208.344 161.05 208.268 161.256C208.183 161.46 208.059 161.645 207.904 161.802L197.906 172.274C198.02 172.65 198.08 173.041 198.083 173.435C198.076 173.913 197.991 174.386 197.833 174.837L206.282 183.324C206.559 183.643 206.704 184.057 206.686 184.48C206.672 184.903 206.496 185.304 206.195 185.6C205.901 185.903 205.5 186.08 205.077 186.092C204.654 186.111 204.238 185.97 203.914 185.696L195.561 177.25C195.072 177.449 194.549 177.553 194.02 177.555C193.617 177.551 193.217 177.491 192.83 177.378C176.05 192.902 154.033 201.499 131.192 201.445ZM193.993 172.674C193.897 172.656 193.798 172.656 193.702 172.674C193.535 172.743 193.398 172.869 193.316 173.03C193.253 173.137 193.22 173.26 193.221 173.385C193.219 173.548 193.27 173.708 193.366 173.84C193.473 173.995 193.636 174.103 193.821 174.141C193.878 174.15 193.936 174.15 193.993 174.141C194.11 174.141 194.226 174.113 194.33 174.059C194.494 173.97 194.626 173.831 194.707 173.662C194.716 173.569 194.716 173.474 194.707 173.38C194.711 173.324 194.711 173.268 194.707 173.212C194.664 173.027 194.554 172.864 194.398 172.756C194.28 172.673 194.138 172.63 193.993 172.633V172.674ZM68.3454 46.8536C68.2505 46.8399 68.1541 46.8399 68.0591 46.8536C67.8915 46.9255 67.7546 47.0545 67.6728 47.2178C67.6097 47.3221 67.5767 47.4419 67.5774 47.5638C67.5728 47.6199 67.5728 47.6762 67.5774 47.7323C67.6193 47.9165 67.7277 48.0787 67.8819 48.1876C68.0117 48.2889 68.1718 48.3434 68.3363 48.3424C68.4809 48.3419 68.622 48.2975 68.7408 48.2149C68.8581 48.1371 68.9535 48.0305 69.018 47.9053C69.0728 47.8017 69.0994 47.6855 69.0953 47.5684C69.095 47.4037 69.0407 47.2438 68.9408 47.1131C68.8294 46.9641 68.668 46.8606 68.4863 46.8217L68.3454 46.8536Z" fill="var(--sapContent_Illustrative_Color4)"/>
21
+ <path opacity="0.5" d="M198.801 123.034C219.034 123.034 235.426 106.311 235.426 85.6356C235.426 64.9607 219.034 48.2468 198.801 48.2468C178.569 48.2468 162.168 64.9698 162.168 85.6356C162.168 106.302 178.569 123.034 198.801 123.034Z" fill="var(--sapContent_Illustrative_Color7)"/>
22
+ <path opacity="0.7" d="M213.271 52.5994L199.601 48.2468L176.647 116.587L190.344 120.935L213.271 52.5994Z" fill="var(--sapContent_Illustrative_Color8)"/>
23
+ <path opacity="0.7" d="M195.675 123.034L219.038 54.5708L214.785 53.2049L191.421 121.668L195.675 123.034Z" fill="var(--sapContent_Illustrative_Color8)"/>
24
+ <path d="M217.07 118.968L207.072 123.034L213.476 138.923L223.474 134.867L217.07 118.968Z" fill="var(--sapContent_Illustrative_Color6)"/>
25
+ <path d="M213.312 137.858C213.123 137.936 212.95 138.05 212.805 138.194C212.66 138.339 212.545 138.511 212.467 138.7C212.31 139.084 212.31 139.514 212.467 139.898L227.632 177.287C227.942 178.027 228.393 178.699 228.959 179.267C229.526 179.833 230.199 180.28 230.94 180.583C231.681 180.892 232.475 181.051 233.276 181.051C234.078 181.051 234.872 180.892 235.612 180.583L236.794 180.1C238.284 179.472 239.467 178.279 240.084 176.781C240.698 175.283 240.698 173.603 240.084 172.105L224.919 134.771C224.841 134.579 224.727 134.405 224.583 134.257C224.437 134.11 224.264 133.994 224.074 133.915C223.884 133.834 223.68 133.792 223.474 133.792C223.267 133.792 223.061 133.833 222.869 133.911L213.312 137.858Z" fill="var(--sapContent_Illustrative_Color3)"/>
26
+ <path d="M206.654 122.187L207.704 124.7C207.704 124.7 212.958 127.022 218.434 122.146L216.761 118.139L212.162 120.416L206.654 122.187Z" fill="var(--sapContent_Illustrative_Color4)"/>
27
+ <path d="M199.056 124.327C190.15 124.333 181.519 121.243 174.633 115.585C167.747 109.929 163.031 102.056 161.291 93.3073C159.551 84.5593 160.894 75.4778 165.09 67.6105C169.281 59.7377 176.071 53.5675 184.3 50.1544C192.526 46.7347 201.682 46.2824 210.204 48.8751C218.728 51.4611 226.092 56.9329 231.036 64.3551C235.978 71.7719 238.2 80.6768 237.321 89.5512C236.453 98.4313 232.533 106.734 226.232 113.04C222.666 116.625 218.426 119.468 213.757 121.404C209.097 123.338 204.101 124.331 199.056 124.327V124.327ZM199.056 50.4185C190.877 50.4025 182.946 53.2298 176.615 58.4181C170.285 63.6034 165.949 70.8287 164.345 78.8608C162.729 86.8935 163.947 95.2389 167.789 102.472C171.634 109.704 177.865 115.374 185.418 118.517C192.968 121.659 201.373 122.081 209.199 119.71C217.03 117.342 223.796 112.322 228.341 105.509C232.89 98.7001 234.941 90.5212 234.144 82.3666C233.345 74.2134 229.749 66.5899 223.969 60.7947C217.364 54.1677 208.404 50.4361 199.056 50.4185V50.4185Z" fill="var(--sapContent_Illustrative_Color4)"/>
28
+ <path d="M210.349 19.2809C210.376 17.1592 216.516 15.4518 224.755 15.0648C225.251 6.81943 227.027 0.691159 229.163 0.695712C231.299 0.700265 233.054 6.87407 233.508 15.1604C241.77 15.7296 247.91 17.5826 247.887 19.7134C247.864 21.8442 241.72 23.547 233.481 23.9294C232.985 32.1748 231.208 38.3077 229.073 38.3031C226.937 38.2986 225.178 32.1202 224.728 23.8338C216.466 23.2693 210.331 21.4162 210.349 19.2809Z" fill="var(--sapContent_Illustrative_Color3)"/>
29
+ <path d="M247.619 45.4649C247.955 39.924 249.155 35.8035 250.582 35.8081C252.009 35.8126 253.2 39.9604 253.504 45.5286C259.058 45.9111 263.184 47.154 263.166 48.5882C263.148 50.0224 259.021 51.1652 253.486 51.4247C253.15 56.9657 251.95 61.0861 250.523 61.0815C249.096 61.077 247.905 56.9292 247.605 51.361C242.047 50.9785 237.926 49.731 237.939 48.3014C237.953 46.8718 242.084 45.7335 247.619 45.4649Z" fill="var(--sapContent_Illustrative_Color3)"/>
30
+ </svg>
31
+ `;
@@ -0,0 +1,45 @@
1
+ export default `<svg width="320" height="245" viewBox="0 0 320 245" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-SearchFolder">
2
+ <mask id="mask0_396_4278" class="sapIllus_MaskTypeAlpha" maskUnits="userSpaceOnUse" x="0" y="0" width="320" height="200">
3
+ <path d="M305.547 6.15619e-06H14.4533C12.5559 -0.00174584 10.6768 0.37047 8.92329 1.09536C7.16981 1.82026 5.57638 2.88362 4.23409 4.22468C2.8918 5.56573 1.82697 7.15817 1.10045 8.91098C0.373942 10.6638 -8.08861e-07 12.5426 0 14.44V185.547C0 189.38 1.52275 193.056 4.23328 195.767C6.9438 198.477 10.6201 200 14.4533 200H305.547C309.38 200 313.056 198.477 315.767 195.767C318.477 193.056 320 189.38 320 185.547V14.44C320 12.5426 319.626 10.6638 318.9 8.91098C318.173 7.15817 317.108 5.56573 315.766 4.22468C314.424 2.88362 312.83 1.82026 311.077 1.09536C309.323 0.37047 307.444 -0.00174584 305.547 6.15619e-06Z" fill="var(--sapContent_Illustrative_Color7)"/>
4
+ </mask>
5
+ <g mask="url(#mask0_396_4278)">
6
+ <path d="M305.547 6.15619e-06H14.4533C12.5559 -0.00174584 10.6768 0.37047 8.92329 1.09536C7.16981 1.82026 5.57638 2.88362 4.23409 4.22468C2.8918 5.56573 1.82697 7.15817 1.10045 8.91098C0.373942 10.6638 -8.08861e-07 12.5426 0 14.44V185.547C0 189.38 1.52275 193.056 4.23328 195.767C6.9438 198.477 10.6201 200 14.4533 200H305.547C309.38 200 313.056 198.477 315.767 195.767C318.477 193.056 320 189.38 320 185.547V14.44C320 12.5426 319.626 10.6638 318.9 8.91098C318.173 7.15817 317.108 5.56573 315.766 4.22468C314.424 2.88362 312.83 1.82026 311.077 1.09536C309.323 0.37047 307.444 -0.00174584 305.547 6.15619e-06Z" fill="var(--sapContent_Illustrative_Color7)"/>
7
+ <path d="M-1.67725 180.836L77.3457 154.219C80.7165 153.075 82.4973 149.449 81.3843 146.11L42.652 31.1217C41.5072 27.7509 37.882 25.9701 34.543 27.0831L-44.48 53.7315C-47.8508 54.8763 -49.6316 58.5015 -48.5186 61.8405L-9.78625 176.829C-8.64145 180.2 -5.01625 181.981 -1.67725 180.868V180.836Z" fill="var(--sapContent_Illustrative_Color19)"/>
8
+ <path d="M-5.08009 178.801L73.6249 151.835C76.9639 150.69 78.7447 147.065 77.5999 143.726L38.3587 29.2139C37.2139 25.8749 33.5887 24.0941 30.2497 25.2389L-48.4553 52.2053C-51.7943 53.3501 -53.5751 56.9753 -52.4303 60.3143L-13.2209 174.826C-12.0761 178.165 -8.45089 179.946 -5.11189 178.801H-5.08009Z" fill="var(--sapContent_Illustrative_Color18)"/>
9
+ <path d="M24.3666 54.2083L-21.966 70.0765L-16.3056 86.5807L30.027 70.7125L24.3666 54.2083Z" fill="var(--sapContent_Illustrative_Color7)"/>
10
+ <path d="M363.766 42.6729L286.89 16.3389C283.625 15.2301 280.083 16.9549 278.974 20.2197L240.659 132.054C239.55 135.319 241.275 138.861 244.54 139.97L321.416 166.304C324.681 167.413 328.223 165.688 329.332 162.423L367.647 50.5885C368.756 47.3237 367.031 43.7817 363.766 42.6729Z" fill="var(--sapContent_Illustrative_Color18)"/>
11
+ <path d="M317.659 44.5821C315.133 43.5657 312.33 43.3193 309.681 43.9045C307.002 44.4589 304.569 45.8141 302.659 47.7853C300.749 49.7565 299.456 52.2205 298.963 54.9001C298.47 57.5797 298.778 60.3517 299.856 62.8773C300.934 65.4029 302.721 67.5281 305.031 69.0065C307.31 70.4849 309.989 71.2857 312.731 71.2241C315.472 71.1933 318.121 70.3309 320.369 68.7909C322.617 67.2509 324.373 65.0641 325.389 62.5385L312.546 57.4257L317.689 44.5821H317.659Z" fill="var(--sapContent_Illustrative_Color7)"/>
12
+ <path d="M321.755 42.7034L316.642 55.5162L329.455 60.629C330.133 58.935 330.472 57.1486 330.441 55.3314C330.441 53.5142 330.04 51.7278 329.332 50.0646C328.624 48.4014 327.576 46.8922 326.283 45.6294C324.989 44.3666 323.449 43.381 321.755 42.7034Z" fill="var(--sapContent_Illustrative_Color19)"/>
13
+ <path d="M332.412 88.5651L278.851 70.2083C277.064 69.5923 275.155 70.5471 274.539 72.3335C273.923 74.1199 274.877 76.0295 276.664 76.6455L330.225 95.0023C332.011 95.6183 333.921 94.6635 334.537 92.8771C335.153 91.0907 334.198 89.1811 332.412 88.5651Z" fill="var(--sapContent_Illustrative_Color7)"/>
14
+ <path d="M327.792 99.4684L274.231 81.1116C272.444 80.4956 270.535 81.4504 269.919 83.2368C269.303 85.0232 270.257 86.9328 272.044 87.5488L325.605 105.906C327.391 106.522 329.332 105.567 329.917 103.78C330.533 101.994 329.578 100.084 327.792 99.4684Z" fill="var(--sapContent_Illustrative_Color7)"/>
15
+ <path d="M298.347 101.563L269.826 91.7991C268.04 91.1831 266.1 92.1379 265.514 93.9243C264.898 95.7107 265.853 97.6203 267.64 98.2363L296.191 108C297.978 108.616 299.887 107.661 300.503 105.875C301.119 104.088 300.164 102.179 298.378 101.563H298.347Z" fill="var(--sapContent_Illustrative_Color7)"/>
16
+ <path d="M189.791 166.858L180.747 168.997L227.751 158.062L212.588 161.562L189.791 166.858Z" fill="var(--sapContent_Illustrative_Color20)"/>
17
+ <path d="M111.08 173.724L110.705 165.048L92.317 93.6319C92.2432 93.3518 92.2264 93.0599 92.2675 92.7733C92.3086 92.4866 92.4068 92.2112 92.5564 91.963C92.706 91.7149 92.9039 91.4991 93.1384 91.3285C93.3729 91.1578 93.6393 91.0356 93.9218 90.9693L97.3265 90.1614L95.0018 81.1858C94.9301 80.9039 94.9153 80.6105 94.9581 80.3228C95.0009 80.0351 95.1006 79.7587 95.2512 79.5097C95.4019 79.2606 95.6006 79.0439 95.8358 78.872C96.071 78.7001 96.338 78.5763 96.6215 78.5081L101.511 77.3562L99.3063 67.2736C99.2642 66.9639 99.2841 66.6491 99.3648 66.3472C99.4456 66.0453 99.5855 65.7623 99.7766 65.5147C99.9677 65.2671 100.206 65.0597 100.478 64.9046C100.75 64.7495 101.05 64.6497 101.361 64.611L171.088 50.9679L175.167 44.9842L84.278 66.5107C83.7189 66.6443 83.1927 66.8892 82.7307 67.2305C82.2686 67.5718 81.8804 68.0025 81.5891 68.4969C81.2979 68.9913 81.1096 69.5392 81.0356 70.1079C80.9616 70.6765 81.0033 71.2541 81.1583 71.8063L109.895 174.367C110.635 177 112.302 179.278 114.589 180.785C113.536 179.923 112.679 178.848 112.074 177.631C111.469 176.413 111.13 175.082 111.08 173.724Z" fill="var(--sapContent_Illustrative_Color20)"/>
18
+ <path d="M93.9219 90.9543C93.6393 91.0207 93.373 91.1429 93.1385 91.3135C92.904 91.4842 92.706 91.6999 92.5564 91.9481C92.4069 92.1963 92.3086 92.4717 92.2675 92.7583C92.2264 93.045 92.2433 93.3369 92.3171 93.617L110.72 165.033L109.52 137.433L97.3415 90.1465L93.9219 90.9543Z" fill="var(--sapContent_Illustrative_Color7)"/>
19
+ <path d="M101.511 77.2965L96.6215 78.4484C96.338 78.5167 96.071 78.6402 95.8358 78.8122C95.6005 78.9841 95.4018 79.2008 95.2512 79.4498C95.1005 79.6989 95.0009 79.9753 94.9581 80.263C94.9152 80.5507 94.9301 80.844 95.0017 81.126L97.3264 90.1016L109.505 137.388L108.23 107.963L101.511 77.2965Z" fill="var(--sapContent_Illustrative_Color18)"/>
20
+ <path d="M99.3063 67.2136L101.511 77.2962L108.23 108.007L107.135 82.4121C107.031 80.1195 107.732 77.8625 109.118 76.0302C110.503 74.1978 112.486 72.905 114.724 72.3745L162.629 61.0205C163.817 60.7497 164.857 60.0383 165.538 59.0308L171.088 50.908L101.361 64.5209C101.047 64.5594 100.744 64.66 100.47 64.8171C100.196 64.9741 99.9561 65.1843 99.7647 65.4352C99.5732 65.6861 99.434 65.9727 99.3553 66.2781C99.2766 66.5835 99.2599 66.9017 99.3063 67.2136Z" fill="var(--sapContent_Illustrative_Color7)"/>
21
+ <path d="M255.145 15.7751L183.347 32.7201C182.148 33.009 181.099 33.7286 180.403 34.7402L174.332 43.7855L170.204 49.8158L164.589 58.0019C163.899 59.0173 162.847 59.7341 161.645 60.0069L113.172 71.4494C110.907 71.984 108.901 73.2869 107.499 75.1335C106.097 76.9801 105.388 79.2547 105.493 81.5651L106.601 107.359L107.891 137.013L109.105 164.828L109.485 173.572C109.551 175.002 109.934 176.4 110.606 177.667C111.278 178.934 112.223 180.039 113.373 180.902C114.524 181.766 115.851 182.367 117.262 182.663C118.672 182.96 120.131 182.944 121.535 182.617L179.962 168.838L189.068 166.667L212.136 161.33L227.464 157.802L269.957 147.988C270.932 147.77 271.795 147.208 272.386 146.408C272.977 145.607 273.257 144.621 273.174 143.631L263.704 22.0165C263.635 21.0146 263.347 20.0398 262.859 19.16C262.372 18.2802 261.698 17.5166 260.883 16.9224C260.068 16.3282 259.132 15.9177 258.141 15.7196C257.15 15.5214 256.128 15.5404 255.145 15.7751Z" fill="var(--sapContent_Illustrative_Color20)"/>
22
+ <path d="M91.4879 22.759C91.1267 23.0458 90.8495 23.4248 90.6854 23.8559C90.5214 24.2871 90.4766 24.7545 90.5558 25.2089L92.1569 36.0674C92.4209 37.8634 94.047 38.611 95.4546 38.4038C96.0338 38.34 96.5766 38.0899 97.0015 37.6912C97.4264 37.2924 97.7103 36.7665 97.8107 36.1924C97.8509 35.9137 97.8488 35.6304 97.8043 35.3523L96.2031 24.4938C96.1427 24.016 95.9542 23.5634 95.6576 23.1839C95.361 22.8044 94.9673 22.5122 94.5183 22.3382C94.0191 22.1445 93.4788 22.0814 92.9484 22.1551C92.4181 22.2287 91.9154 22.4366 91.4879 22.759Z" fill="var(--sapContent_Illustrative_Color5)"/>
23
+ <path d="M47.28 62.7807C47.1659 63.0905 47.1176 63.4207 47.1382 63.7501C47.1589 64.0796 47.248 64.4012 47.3999 64.6944C47.5517 64.9875 47.7631 65.2457 48.0204 65.4525C48.2777 65.6594 48.5752 65.8103 48.8941 65.8957L59.0844 69.1303C59.4512 69.2454 59.8372 69.2862 60.22 69.2504C60.6027 69.2146 60.9745 69.1029 61.3136 68.9219C61.6527 68.7408 61.9523 68.494 62.195 68.1958C62.4377 67.8977 62.6185 67.5542 62.727 67.1854C62.7759 67.0345 62.8124 66.8799 62.8361 66.7231C62.932 66.1451 62.8078 65.552 62.4881 65.061C62.1684 64.5699 61.6764 64.2164 61.109 64.0703L50.9225 60.8397C50.556 60.724 50.1701 60.6826 49.7874 60.7179C49.4047 60.7532 49.0329 60.8644 48.6937 61.0452C48.3545 61.2259 48.0548 61.4725 47.812 61.7705C47.5693 62.0685 47.3884 62.412 47.28 62.7807Z" fill="var(--sapContent_Illustrative_Color5)"/>
24
+ <path d="M61.8403 36.5595C61.808 36.9187 61.8493 37.2808 61.9617 37.6235C62.0741 37.9662 62.2552 38.2824 62.4939 38.5527L73.0814 50.7873C73.5593 51.3333 74.2298 51.6735 74.9527 51.7366C75.6756 51.7997 76.3949 51.581 76.9602 51.126C77.4828 50.7019 77.8269 50.0969 77.9243 49.4309C77.9799 49.047 77.952 48.6556 77.8426 48.2834C77.7332 47.9112 77.5449 47.5669 77.2904 47.2741L66.7029 35.0395C66.2228 34.4901 65.5483 34.1481 64.8213 34.0856C64.0944 34.0231 63.3715 34.2448 62.8045 34.7042C62.5272 34.9326 62.2988 35.2146 62.1331 35.5334C61.9674 35.8522 61.8678 36.2012 61.8403 36.5595Z" fill="var(--sapContent_Illustrative_Color5)"/>
25
+ <path d="M17.8165 192.223C18.0324 192.051 18.2113 191.837 18.3424 191.594C18.4736 191.352 18.5543 191.085 18.5798 190.81C18.6061 190.503 18.5701 190.194 18.4742 189.901C18.3783 189.609 18.2243 189.339 18.0215 189.107C17.6368 188.639 17.0862 188.337 16.4846 188.265C15.883 188.192 15.2767 188.355 14.7918 188.718C14.6316 188.848 14.4911 189 14.3748 189.17C14.1782 189.458 14.0589 189.791 14.0286 190.139C14.0015 190.445 14.037 190.755 14.133 191.047C14.2289 191.34 14.3833 191.61 14.5868 191.842C14.9726 192.309 15.5236 192.609 16.1252 192.68C16.7268 192.751 17.3326 192.587 17.8165 192.223Z" fill="var(--sapContent_Illustrative_Color19)"/>
26
+ <path d="M34.7848 177.518L-15.689 118.338C-16.8692 116.925 -18.7703 116.593 -19.9293 117.526L-22.1555 119.313L-50.9401 142.413C-52.1062 143.346 -52.2263 145.063 -51.0461 146.448L-0.565182 205.628C-0.0217133 206.28 0.724915 206.73 1.55497 206.907L1.15214 206.716C1.60045 206.938 2.10079 207.032 2.59904 206.99C3.09731 206.948 3.57452 206.77 3.97901 206.476L7.02496 204.031L34.8272 181.723C35.9862 180.818 35.9862 178.903 34.7848 177.518ZM-47.0673 147.607L-15.2155 122.048L29.23 174.155L-2.62176 199.714L-47.0673 147.607ZM-29.3004 130.4L-35.9789 135.757C-36.1979 135.933 -36.5795 135.855 -36.9258 135.594C-36.8086 135.597 -36.6939 135.559 -36.6008 135.488L-29.4558 129.757C-29.3638 129.683 -29.3032 129.577 -29.2862 129.46C-29.0813 129.849 -29.0813 130.231 -29.3004 130.414V130.4ZM14.3536 188.153C14.9809 187.678 15.7671 187.463 16.5488 187.553C17.3306 187.642 18.0478 188.029 18.5515 188.634C18.8125 188.937 19.0096 189.29 19.131 189.671C19.2524 190.052 19.2957 190.454 19.2583 190.852C19.2163 191.315 19.0583 191.76 18.7989 192.146C18.6428 192.376 18.4521 192.581 18.2335 192.753C17.608 193.229 16.8225 193.445 16.0414 193.356C15.2604 193.266 14.5442 192.878 14.0427 192.273C13.7799 191.971 13.5817 191.618 13.4602 191.236C13.3387 190.855 13.2964 190.452 13.336 190.054C13.3701 189.687 13.4779 189.331 13.6527 189.007C13.8276 188.683 14.066 188.397 14.3536 188.167V188.153Z" fill="var(--sapContent_Illustrative_Color19)"/>
27
+ <path d="M18.2477 192.767C18.4663 192.595 18.6569 192.39 18.813 192.16C19.0725 191.774 19.2304 191.329 19.2724 190.867C19.3099 190.468 19.2666 190.066 19.1452 189.685C19.0237 189.304 18.8266 188.951 18.5657 188.648C18.0619 188.043 17.3447 187.656 16.563 187.567C15.7812 187.477 14.9951 187.692 14.3678 188.167C14.0785 188.399 13.8392 188.687 13.6642 189.014C13.4893 189.34 13.3824 189.699 13.3501 190.068C13.3105 190.467 13.3528 190.869 13.4744 191.25C13.5959 191.632 13.7941 191.985 14.0568 192.287C14.5583 192.892 15.2745 193.28 16.0556 193.37C16.8366 193.46 17.6221 193.244 18.2477 192.767ZM14.3748 189.164C14.4911 188.993 14.6316 188.841 14.7918 188.711C15.2767 188.348 15.883 188.186 16.4846 188.258C17.0862 188.33 17.6368 188.632 18.0215 189.1C18.2243 189.332 18.3783 189.602 18.4742 189.895C18.5701 190.187 18.6061 190.496 18.5798 190.803C18.5543 191.078 18.4736 191.345 18.3424 191.588C18.2113 191.83 18.0324 192.044 17.8165 192.216C17.3317 192.58 16.7253 192.742 16.1237 192.67C15.5221 192.597 14.9716 192.296 14.5868 191.828C14.3833 191.596 14.229 191.326 14.133 191.033C14.037 190.741 14.0015 190.432 14.0286 190.125C14.0601 189.78 14.1793 189.449 14.3748 189.164Z" fill="var(--sapContent_Illustrative_Color20)"/>
28
+ <path d="M-15.2154 122.062L-47.0672 147.621L-2.62172 199.728L29.23 174.162L-15.2154 122.062Z" fill="var(--sapContent_Illustrative_Color7)"/>
29
+ </g>
30
+ <g clip-path="url(#clip0_396_4278)">
31
+ <path opacity="0.5" d="M233.761 161.309C259.695 156.332 276.613 130.896 271.538 104.452C266.464 78.008 241.329 60.6282 215.395 65.6051C189.461 70.5819 172.542 96.0182 177.619 122.476C182.697 148.933 207.827 166.286 233.761 161.309Z" fill="var(--sapContent_Illustrative_Color7)"/>
32
+ <path d="M235.016 67.6228L216.397 65.4126L203.752 158.497L222.384 160.705L235.016 67.6228Z" fill="var(--sapContent_Illustrative_Color8)"/>
33
+ <path d="M229.748 162.079L242.924 68.7262L237.133 68.0345L223.944 161.39L229.748 162.079Z" fill="var(--sapContent_Illustrative_Color8)"/>
34
+ <path d="M256.144 151.633L244.287 159.289L256.401 178.045L268.245 170.391L256.144 151.633Z" fill="var(--sapContent_Illustrative_Color6)"/>
35
+ <path d="M256.558 176.336C255.957 176.731 255.536 177.348 255.388 178.052C255.24 178.756 255.376 179.49 255.768 180.093L284.011 223.643C285.176 225.402 286.991 226.628 289.058 227.053C291.125 227.477 293.276 227.066 295.04 225.909L296.445 224.987C297.335 224.418 298.102 223.676 298.702 222.806C299.302 221.936 299.722 220.955 299.938 219.921C300.359 217.85 299.945 215.696 298.788 213.928L270.555 170.432C270.36 170.13 270.106 169.869 269.81 169.665C269.514 169.461 269.18 169.318 268.828 169.244C268.476 169.169 268.112 169.165 267.759 169.232C267.405 169.299 267.068 169.436 266.768 169.634L256.558 176.336Z" fill="var(--sapContent_Illustrative_Color3)"/>
36
+ <path d="M243.626 158.306L245.577 161.246C245.577 161.246 252.837 162.946 258.703 155.357L255.58 150.645L250.231 154.639L243.626 158.306Z" fill="var(--sapContent_Illustrative_Color4)"/>
37
+ <path d="M234.4 162.906C222.985 165.126 211.154 163.317 200.924 157.788C190.694 152.259 182.699 143.352 178.301 132.587C173.903 121.822 173.375 109.864 176.808 98.7534C180.24 87.6427 187.42 78.0669 197.124 71.6588C206.827 65.2507 218.453 62.4072 230.019 63.6132C241.584 64.8192 252.373 69.9999 260.547 78.272C268.72 86.5441 273.771 97.3953 274.838 108.975C275.906 120.555 272.923 132.147 266.4 141.773C258.954 152.779 247.445 160.38 234.4 162.906ZM216.249 68.3256C205.763 70.3189 196.292 75.8879 189.451 84.0831C182.611 92.2784 178.825 102.592 178.738 113.267C178.651 123.942 182.268 134.317 188.974 142.623C195.68 150.929 205.059 156.652 215.511 158.817C225.964 160.982 236.844 159.454 246.296 154.494C255.749 149.534 263.188 141.449 267.347 131.618C271.506 121.786 272.126 110.816 269.102 100.578C266.078 90.34 259.597 81.4676 250.764 75.4733C245.764 72.0701 240.142 69.687 234.219 68.4604C228.296 67.2339 222.19 67.1881 216.249 68.3256Z" fill="var(--sapContent_Illustrative_Color4)"/>
38
+ </g>
39
+ <defs>
40
+ <clipPath id="clip0_396_4278">
41
+ <rect width="104.585" height="174.392" fill="var(--sapContent_Illustrative_Color8)" transform="translate(166 73.7107) rotate(-10.8633)"/>
42
+ </clipPath>
43
+ </defs>
44
+ </svg>
45
+ `;
@@ -0,0 +1,21 @@
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-SignOut">
2
+ <rect y="68.6001" width="320" height="138" rx="24" fill="var(--sapContent_Illustrative_Color20)"/>
3
+ <g clip-path="url(#clip0_6848_476324)">
4
+ <path d="M69.6001 155.997L173.014 157.15L211.022 186.932L142.33 185.283L69.6001 155.997Z" fill="var(--sapContent_Illustrative_Color21)"/>
5
+ <path d="M204.052 186.932L206.287 54.4541H147.317V183.556L196.762 202.791H250.787L204.052 186.932Z" fill="var(--sapContent_Illustrative_Color27)"/>
6
+ <path d="M142.181 47.9028H209.599V186.932H204.052V52.3985H146.074V185.282H142.33L142.181 47.9028Z" fill="var(--sapContent_Illustrative_Color15)"/>
7
+ <path d="M146.074 52.3984L146.108 52.4454L146.074 185.282L148.339 183.081V55.8044H204.052V52.3984H146.074Z" fill="var(--sapContent_Illustrative_Color28)"/>
8
+ <path d="M211.022 47.9028H209.599V186.932H211.022V47.9028Z" fill="var(--sapContent_Illustrative_Color28)"/>
9
+ <path d="M146.074 52.3984V185.282L148.339 183.081L147.317 54.454L146.074 52.3984Z" fill="var(--sapContent_Illustrative_Color30)"/>
10
+ <path d="M147.317 51.544V184.248L181.971 197.116V37.5996L147.317 51.544Z" fill="var(--sapContent_Illustrative_Color15)"/>
11
+ <path d="M147.51 66.937H146.377C145.974 66.937 145.646 67.2642 145.646 67.6678V71.531C145.646 71.9346 145.974 72.2618 146.377 72.2618H147.51C147.913 72.2618 148.24 71.9346 148.24 71.531V67.6678C148.24 67.2642 147.913 66.937 147.51 66.937Z" fill="var(--sapContent_Illustrative_Color26)"/>
12
+ <path d="M147.51 164.761H146.377C145.974 164.761 145.646 165.088 145.646 165.492V169.355C145.646 169.759 145.974 170.086 146.377 170.086H147.51C147.913 170.086 148.24 169.759 148.24 169.355V165.492C148.24 165.088 147.913 164.761 147.51 164.761Z" fill="var(--sapContent_Illustrative_Color26)"/>
13
+ <path d="M184.266 37.5996H181.971V197.116L184.266 196.599V37.5996Z" fill="var(--sapContent_Illustrative_Color30)"/>
14
+ <path d="M178.959 107.6C178.055 107.6 177.317 108.389 177.317 109.355V112.478C177.038 112.379 176.739 112.324 176.424 112.324C174.865 112.324 173.6 113.676 173.6 115.342C173.6 117.009 174.865 118.361 176.424 118.361C176.734 118.361 177.033 118.306 177.317 118.207V125.845C177.317 126.81 178.055 127.6 178.959 127.6C179.862 127.6 180.6 126.81 180.6 125.845V109.355C180.6 108.389 179.862 107.6 178.959 107.6Z" fill="var(--sapContent_Illustrative_Color26)"/>
15
+ </g>
16
+ <defs>
17
+ <clipPath id="clip0_6848_476324">
18
+ <rect width="181" height="165" fill="var(--sapContent_Illustrative_Color8)" transform="translate(70 38)"/>
19
+ </clipPath>
20
+ </defs>
21
+ </svg>`;
@@ -0,0 +1,21 @@
1
+ export default `<svg width="320" height="213" viewBox="0 0 320 213" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-SimpleBalloon">
2
+ <path d="M130.82 126.704H34.0242C26.4388 126.704 19.1642 129.717 13.8006 135.081C8.4369 140.444 5.42358 147.719 5.42358 155.304C5.42358 162.89 8.4369 170.164 13.8006 175.528C19.1642 180.892 26.4388 183.905 34.0242 183.905H130.82C134.576 183.905 138.295 183.165 141.765 181.728C145.235 180.29 148.388 178.184 151.044 175.528C153.7 172.872 155.806 169.719 157.244 166.249C158.681 162.779 159.421 159.06 159.421 155.304C159.421 151.548 158.681 147.829 157.244 144.359C155.806 140.889 153.7 137.736 151.044 135.081C148.388 132.425 145.235 130.318 141.765 128.881C138.295 127.443 134.576 126.704 130.82 126.704V126.704Z" fill="var(--sapContent_Illustrative_Color7)"/>
3
+ <path d="M166.06 155.091H69.2639C65.508 155.091 61.7889 155.83 58.319 157.268C54.849 158.705 51.696 160.812 49.0402 163.468C46.3844 166.123 44.2778 169.276 42.8405 172.746C41.4031 176.216 40.6633 179.935 40.6633 183.691C40.6633 187.447 41.4031 191.166 42.8405 194.636C44.2778 198.106 46.3844 201.259 49.0402 203.915C51.696 206.571 54.849 208.677 58.319 210.115C61.7889 211.552 65.508 212.292 69.2639 212.292H166.06C169.816 212.292 173.535 211.552 177.005 210.115C180.475 208.677 183.628 206.571 186.284 203.915C188.939 201.259 191.046 198.106 192.483 194.636C193.921 191.166 194.66 187.447 194.66 183.691C194.66 179.935 193.921 176.216 192.483 172.746C191.046 169.276 188.939 166.123 186.284 163.468C183.628 160.812 180.475 158.705 177.005 157.268C173.535 155.83 169.816 155.091 166.06 155.091V155.091Z" fill="var(--sapContent_Illustrative_Color7)"/>
4
+ <path d="M292.004 75.9812H195.208C187.728 76.1429 180.609 79.2278 175.376 84.5751C170.143 89.9224 167.213 97.1067 167.213 104.589C167.213 112.07 170.143 119.255 175.376 124.602C180.609 129.949 187.728 133.034 195.208 133.196H292.004C299.484 133.034 306.604 129.949 311.837 124.602C317.07 119.255 320 112.07 320 104.589C320 97.1067 317.07 89.9224 311.837 84.5751C306.604 79.2278 299.484 76.1429 292.004 75.9812V75.9812Z" fill="var(--sapContent_Illustrative_Color7)"/>
5
+ <path d="M219.868 23.7762H37.8982C27.8469 23.7762 18.2074 27.769 11.1001 34.8763C3.99284 41.9836 2.35452e-06 51.6231 2.35452e-06 61.6743C-0.00175231 66.6523 0.977232 71.5819 2.88101 76.1814C4.78478 80.781 7.57605 84.9604 11.0954 88.481C14.6147 92.0016 18.7932 94.7943 23.3921 96.6997C27.991 98.6051 32.9202 99.5858 37.8982 99.5858H219.868C224.849 99.5929 229.783 98.6178 234.387 96.7164C238.992 94.8149 243.176 92.0245 246.701 88.5046C250.225 84.9848 253.022 80.8045 254.93 76.203C256.838 71.6015 257.82 66.669 257.82 61.6877C257.821 56.7052 256.841 51.7713 254.934 47.1682C253.027 42.5652 250.23 38.3834 246.705 34.8621C243.18 31.3408 238.996 28.5492 234.391 26.6469C229.786 24.7447 224.851 23.7691 219.868 23.7762V23.7762Z" fill="var(--sapContent_Illustrative_Color7)"/>
6
+ <path d="M178.483 206.454C178.129 206.454 177.789 206.313 177.539 206.063C177.288 205.812 177.147 205.472 177.147 205.118C177.147 203.903 176.853 203.048 176.439 202.78C176.239 202.66 175.985 202.687 175.384 202.78C174.894 202.91 174.383 202.942 173.881 202.873C173.379 202.804 172.895 202.637 172.458 202.38C172.033 202.069 171.681 201.668 171.428 201.207C171.174 200.745 171.024 200.234 170.989 199.708C170.844 198.898 170.602 198.109 170.268 197.357C170.014 196.761 169.652 196.217 169.199 195.754C168.701 195.256 168.29 194.678 167.983 194.044C167.315 192.589 167.012 190.993 167.102 189.395C165.484 188.362 164.151 186.937 163.228 185.254C161.758 182.409 161.892 178.895 162.119 175.489V174.594C162.283 173.21 162.202 171.808 161.879 170.453C161.541 169.216 160.994 168.046 160.262 166.993C157.136 162.384 156.949 152.445 157.083 145.352V145.152C157.195 136.943 156.883 128.735 156.148 120.559C156.131 120.383 156.15 120.206 156.202 120.038C156.254 119.869 156.339 119.713 156.452 119.577C156.565 119.442 156.704 119.33 156.86 119.249C157.017 119.167 157.188 119.118 157.363 119.103C157.716 119.073 158.065 119.184 158.336 119.412C158.606 119.64 158.775 119.966 158.806 120.318C159.553 128.592 159.869 136.899 159.755 145.205V145.406C159.581 155.798 160.476 162.531 162.426 165.443C163.353 166.771 164.045 168.249 164.47 169.812C164.877 171.444 164.986 173.137 164.791 174.808V175.663C164.63 178.855 164.47 181.874 165.606 184.079C166.129 185.029 166.832 185.868 167.676 186.55C168.138 185.172 169.051 183.991 170.268 183.197C172.058 182.075 174.836 181.861 176.212 183.357C176.562 183.8 176.809 184.315 176.936 184.864C177.063 185.414 177.067 185.985 176.947 186.536C176.832 187.326 176.555 188.083 176.131 188.759C175.708 189.435 175.149 190.016 174.489 190.464C173.806 190.818 173.058 191.029 172.291 191.085C171.524 191.14 170.754 191.038 170.027 190.785H169.8C169.864 191.544 170.063 192.286 170.388 192.975C170.573 193.376 170.831 193.738 171.149 194.044C171.805 194.717 172.33 195.505 172.699 196.368C173.12 197.303 173.425 198.285 173.607 199.294C173.754 200.029 173.808 200.202 173.928 200.282C174.048 200.363 174.355 200.376 174.943 200.282C175.926 200.023 176.97 200.157 177.855 200.656C179.098 201.431 179.766 202.954 179.819 205.185C179.819 205.539 179.678 205.879 179.428 206.13C179.177 206.38 178.837 206.521 178.483 206.521V206.454ZM170.027 187.939L170.749 188.18C171.507 188.484 172.354 188.484 173.113 188.18C173.437 187.935 173.709 187.628 173.913 187.277C174.117 186.926 174.249 186.538 174.302 186.136C174.403 185.802 174.369 185.443 174.208 185.134C173.789 184.984 173.339 184.937 172.897 184.998C172.455 185.058 172.034 185.224 171.67 185.481C170.826 186.082 170.239 186.978 170.027 187.993V187.939Z" fill="var(--sapContent_Illustrative_Color4)"/>
7
+ <path d="M200.298 49.6382C200.298 74.4851 165.218 106.946 159.113 111.809C158.59 112.066 158.019 112.209 157.436 112.23C156.854 112.25 156.274 112.148 155.734 111.929C138.194 96.2194 115.03 76.7427 114.068 49.8252C113.106 22.9078 132.77 2.13525 157.283 2.13525C181.796 2.13525 200.298 22.6139 200.298 49.6382Z" fill="var(--sapContent_Illustrative_Color3)"/>
8
+ <path d="M155.747 111.889L152.287 119.25C152.215 119.394 152.181 119.554 152.19 119.715C152.199 119.876 152.249 120.032 152.337 120.167C152.425 120.302 152.547 120.412 152.691 120.486C152.834 120.559 152.995 120.593 153.156 120.585L162.106 120.452C162.258 120.442 162.405 120.394 162.534 120.313C162.663 120.233 162.77 120.121 162.846 119.989C162.921 119.856 162.962 119.707 162.966 119.555C162.97 119.403 162.936 119.252 162.867 119.116L159.087 111.822" fill="var(--sapContent_Illustrative_Color3)"/>
9
+ <path d="M123.299 29.7208C123.12 29.7205 122.943 29.6841 122.778 29.6139C122.615 29.5455 122.467 29.4454 122.343 29.3194C122.219 29.1934 122.122 29.0441 122.056 28.8801C121.99 28.7161 121.957 28.5407 121.96 28.3639C121.962 28.1872 122 28.0127 122.07 27.8506C124.424 22.8604 127.764 18.3982 131.888 14.7325C132.145 14.4881 132.489 14.3557 132.843 14.3644C133.198 14.3732 133.534 14.5224 133.779 14.7793C134.023 15.0361 134.156 15.3796 134.147 15.7341C134.138 16.0886 133.989 16.4251 133.732 16.6695C129.871 20.0924 126.741 24.2587 124.528 28.9193C124.424 29.1582 124.252 29.3615 124.033 29.5039C123.815 29.6463 123.56 29.7217 123.299 29.7208Z" fill="var(--sapContent_Illustrative_Color15)"/>
10
+ <path d="M119.319 38.9382C119.178 38.9421 119.037 38.9195 118.904 38.8714C118.568 38.7613 118.289 38.5223 118.129 38.2067C117.968 37.8911 117.94 37.5248 118.049 37.1882C118.497 35.8152 119.041 34.4759 119.679 33.1806C119.758 33.0211 119.869 32.879 120.003 32.7627C120.138 32.6464 120.295 32.5582 120.464 32.5033C120.634 32.4484 120.812 32.4279 120.99 32.4431C121.167 32.4582 121.34 32.5087 121.497 32.5915C121.655 32.6744 121.794 32.7879 121.908 32.9254C122.021 33.0629 122.105 33.2216 122.156 33.3922C122.207 33.5629 122.223 33.742 122.204 33.919C122.185 34.096 122.13 34.2673 122.044 34.423C121.481 35.5835 120.995 36.7794 120.588 38.0031C120.503 38.2734 120.334 38.5097 120.106 38.6778C119.878 38.8459 119.602 38.9371 119.319 38.9382Z" fill="var(--sapContent_Illustrative_Color15)"/>
11
+ <path d="M209.048 59.5103C207.712 63.0369 206.456 66.5636 205.174 70.0902C205.085 70.3188 205.091 70.5731 205.19 70.7973C205.289 71.0215 205.473 71.1973 205.701 71.2858C205.93 71.3744 206.184 71.3686 206.408 71.2696C206.632 71.1707 206.808 70.9867 206.897 70.7582C208.233 67.2315 209.488 63.7049 210.771 60.1782C210.859 59.9497 210.854 59.6954 210.755 59.4711C210.656 59.2469 210.472 59.0712 210.243 58.9826C210.015 58.8941 209.76 58.8999 209.536 58.9988C209.312 59.0978 209.136 59.2818 209.048 59.5103V59.5103Z" fill="var(--sapContent_Illustrative_Color1)"/>
12
+ <path d="M206.082 72.3612C205.848 72.3688 205.615 72.3231 205.401 72.2277C205.166 72.1456 204.95 72.0174 204.765 71.8508C204.58 71.6842 204.431 71.4824 204.325 71.2572C204.219 71.0321 204.16 70.7881 204.149 70.5395C204.139 70.291 204.178 70.0429 204.265 69.8098L208.139 59.2164C208.216 58.9849 208.34 58.7716 208.503 58.5896C208.665 58.4076 208.863 58.2609 209.085 58.1583C209.306 58.0557 209.546 57.9994 209.79 57.993C210.034 57.9866 210.277 58.0302 210.504 58.121C210.74 58.203 210.958 58.3316 211.143 58.4992C211.329 58.6668 211.479 58.8699 211.585 59.0966C211.691 59.3233 211.751 59.569 211.76 59.819C211.769 60.0691 211.728 60.3184 211.639 60.5523L207.778 71.1456C207.66 71.5013 207.432 71.8105 207.128 72.0288C206.823 72.2472 206.457 72.3635 206.082 72.3612V72.3612ZM209.048 59.5103L209.943 59.8309L209.048 59.5103Z" fill="var(--sapContent_Illustrative_Color1)"/>
13
+ <path d="M110.689 4.25929L118.33 12.8488C119.158 13.7706 120.547 12.4614 119.746 11.513C117.181 8.65424 114.656 5.78216 112.105 2.93679C111.29 2.06849 109.874 3.40434 110.689 4.25929Z" fill="var(--sapContent_Illustrative_Color9)"/>
14
+ <path d="M118.998 14.0911C118.743 14.0825 118.493 14.021 118.263 13.9106C118.033 13.8003 117.828 13.6434 117.662 13.4499L110.021 4.87372C109.694 4.49259 109.531 3.99729 109.569 3.49645C109.607 2.9956 109.841 2.53009 110.222 2.20202C110.402 2.02746 110.616 1.89181 110.851 1.80348C111.085 1.71515 111.336 1.67604 111.586 1.68856C111.837 1.70109 112.082 1.76499 112.307 1.8763C112.532 1.98761 112.731 2.14395 112.893 2.3356L120.534 10.9251C120.772 11.207 120.924 11.5504 120.974 11.9154C121.025 12.2804 120.97 12.6522 120.818 12.9877C120.666 13.3232 120.421 13.6086 120.114 13.811C119.806 14.0134 119.447 14.1244 119.078 14.1312L118.998 14.0911ZM111.397 3.61802L119.011 12.1541L111.384 3.67146L111.397 3.61802Z" fill="var(--sapContent_Illustrative_Color9)"/>
15
+ <path d="M116.219 84.5307C115.496 84.5436 114.775 84.4445 114.082 84.2368C113.448 84.0566 112.889 83.6775 112.488 83.1556C112.086 82.6337 111.863 81.9965 111.851 81.338C111.851 80.9506 111.931 80.5499 111.971 80.1758C112.091 79.2942 112.198 78.4793 111.877 78.0919C111.397 77.7381 110.799 77.5848 110.208 77.6644C109.887 77.6644 109.553 77.6644 109.192 77.6644C107.629 77.6644 105.866 77.8114 105.105 76.7293C104.87 76.3232 104.747 75.8625 104.747 75.3935C104.747 74.9245 104.87 74.4638 105.105 74.0576C105.371 73.5868 105.524 73.0605 105.552 72.5203C105.58 71.9801 105.481 71.4408 105.265 70.9451C105.045 70.7298 104.774 70.574 104.477 70.4922C104.18 70.4104 103.868 70.4054 103.568 70.4775C102.557 70.6526 101.593 71.0347 100.736 71.5997C100.594 71.6781 100.427 71.6983 100.27 71.656C100.113 71.6136 99.9784 71.512 99.8948 71.3726C99.854 71.3043 99.8271 71.2286 99.8157 71.1498C99.8044 71.0711 99.8087 70.9908 99.8286 70.9138C99.8485 70.8368 99.8835 70.7644 99.9315 70.701C99.9796 70.6376 100.04 70.5843 100.109 70.5443C101.103 69.8634 102.233 69.4075 103.421 69.2085C103.934 69.0912 104.47 69.1191 104.967 69.289C105.465 69.4588 105.906 69.764 106.24 70.1703C106.604 70.8264 106.795 71.5642 106.795 72.3143C106.795 73.0645 106.604 73.8023 106.24 74.4584C105.933 75.1931 105.879 75.7942 106.066 76.008C106.44 76.5423 107.977 76.4889 109.099 76.4354H110.154C110.635 76.3729 111.124 76.4171 111.585 76.5649C112.047 76.7126 112.471 76.9603 112.826 77.2904C113.105 77.7408 113.284 78.2457 113.35 78.7712C113.417 79.2966 113.37 79.8303 113.213 80.3361C113.213 80.6968 113.12 81.0575 113.093 81.4048C113.117 81.7881 113.259 82.1548 113.497 82.4556C113.736 82.7564 114.061 82.9771 114.429 83.088C115.645 83.3766 116.913 83.3766 118.129 83.088C118.276 83.0787 118.422 83.1226 118.539 83.2116C118.657 83.3006 118.738 83.4289 118.769 83.573C118.8 83.7171 118.778 83.8675 118.707 83.9967C118.636 84.1259 118.521 84.2253 118.383 84.2769C117.668 84.4095 116.945 84.4943 116.219 84.5307V84.5307Z" fill="var(--sapContent_Illustrative_Color1)"/>
16
+ <path d="M116.219 85.4924C115.4 85.5062 114.584 85.3889 113.801 85.1451C112.962 84.9035 112.225 84.3943 111.701 83.695C111.178 82.9957 110.898 82.1446 110.903 81.2712C110.903 80.8437 110.983 80.4429 111.036 80.0555C111.109 79.6142 111.141 79.1669 111.13 78.7197C110.832 78.6238 110.52 78.5831 110.208 78.5995C109.981 78.5855 109.753 78.5855 109.527 78.5995H109.246C107.523 78.6796 105.386 78.7598 104.317 77.2636C103.989 76.7191 103.81 76.098 103.798 75.4625C103.787 74.827 103.942 74.1996 104.25 73.6434C104.622 72.9866 104.728 72.2117 104.544 71.4793C104.544 71.4793 104.29 71.319 103.689 71.3858C102.813 71.5593 101.979 71.8995 101.231 72.3877C100.963 72.541 100.655 72.6107 100.348 72.588C100.04 72.5653 99.7459 72.4512 99.5033 72.2603C99.2608 72.0694 99.0808 71.8105 98.9864 71.5167C98.892 71.2228 98.8875 70.9075 98.9734 70.611C99.0247 70.4111 99.1178 70.2242 99.2468 70.063C99.3758 69.9018 99.5376 69.7699 99.7215 69.6759C100.838 68.9768 102.09 68.5216 103.395 68.3401C104.071 68.2039 104.771 68.2565 105.42 68.4921C106.068 68.7278 106.638 69.1374 107.069 69.6759C107.532 70.4674 107.785 71.3648 107.801 72.282C107.817 73.1991 107.597 74.105 107.162 74.9125C107.055 75.193 107.002 75.3934 106.962 75.5003C107.673 75.5672 108.388 75.5672 109.099 75.5003H110.208C110.813 75.4412 111.423 75.5159 111.995 75.7191C112.568 75.9222 113.089 76.2489 113.521 76.6758C113.901 77.2242 114.155 77.8503 114.263 78.5087C114.372 79.1672 114.333 79.8415 114.149 80.483C114.149 80.817 114.055 81.1509 114.042 81.4849C114.028 81.8189 114.362 82.0326 114.79 82.1795C115.835 82.4268 116.924 82.4268 117.969 82.1795C118.373 82.092 118.795 82.168 119.143 82.3908C119.491 82.6136 119.737 82.9651 119.826 83.3684C119.869 83.5693 119.872 83.7767 119.835 83.9788C119.798 84.1809 119.722 84.3737 119.61 84.5461C119.498 84.7186 119.354 84.8674 119.184 84.9839C119.015 85.1004 118.825 85.1825 118.624 85.2253C117.833 85.3955 117.028 85.485 116.219 85.4924V85.4924Z" fill="var(--sapContent_Illustrative_Color1)"/>
17
+ <path d="M197.453 44.2681C195.448 43.9089 193.51 43.242 191.709 42.291C191.606 42.2425 191.515 42.1741 191.439 42.0899C191.364 42.0056 191.305 41.9072 191.268 41.8004C191.231 41.6935 191.215 41.5803 191.222 41.4673C191.229 41.3543 191.258 41.2438 191.308 41.1422C191.421 40.9366 191.61 40.7828 191.834 40.7131C192.058 40.6434 192.3 40.6631 192.51 40.7682C194.289 41.7162 196.219 42.3489 198.214 42.6384C199.084 42.7503 199.967 42.6708 200.802 42.4055C201.637 42.1401 202.405 41.6953 203.05 41.1021C204.386 39.6728 204.506 37.5755 204.64 35.358C204.615 33.4678 204.969 31.5919 205.682 29.8409C207.378 26.4211 212.027 24.591 216.262 25.6864C216.375 25.7115 216.481 25.7589 216.576 25.8259C216.67 25.8928 216.75 25.978 216.811 26.0763C216.872 26.1746 216.913 26.2841 216.931 26.3984C216.949 26.5126 216.944 26.6294 216.916 26.7417C216.851 26.9639 216.701 27.1516 216.498 27.2641C216.296 27.3766 216.057 27.4049 215.834 27.3428C212.374 26.4478 208.647 27.8772 207.311 30.589C206.686 32.1365 206.386 33.7962 206.43 35.4648C206.296 37.8827 206.176 40.3941 204.399 42.2777C203.563 43.0704 202.561 43.6684 201.467 44.0287C200.372 44.3889 199.211 44.5026 198.067 44.3616L197.453 44.2681Z" fill="var(--sapContent_Illustrative_Color9)"/>
18
+ <path d="M198.895 45.337H198C197.773 45.337 197.546 45.337 197.319 45.2568C195.221 44.8834 193.194 44.1895 191.307 43.1996C191.084 43.0968 190.884 42.9488 190.721 42.7648C190.558 42.5809 190.435 42.365 190.359 42.1309C190.252 41.7853 190.249 41.4159 190.351 41.0686C190.452 40.7214 190.654 40.4117 190.93 40.1781C191.206 39.9445 191.545 39.7974 191.904 39.7551C192.264 39.7128 192.628 39.7771 192.951 39.9401C194.61 40.8493 196.42 41.4512 198.294 41.7168C199.011 41.8065 199.739 41.7434 200.429 41.5316C201.12 41.3197 201.758 40.964 202.302 40.4878C203.424 39.2989 203.517 37.4688 203.637 35.3314C203.605 33.3091 203.997 31.3025 204.786 29.4403C206.656 25.6331 211.799 23.5893 216.475 24.7915C216.714 24.8505 216.938 24.958 217.133 25.1074C217.329 25.2568 217.491 25.4449 217.61 25.6598C217.731 25.8579 217.81 26.0786 217.842 26.3084C217.875 26.5382 217.859 26.7721 217.797 26.9957C217.672 27.4671 217.366 27.8707 216.947 28.1203C216.528 28.3698 216.028 28.4457 215.553 28.3316C212.534 27.5434 209.261 28.7457 208.126 31.0033C207.57 32.4377 207.303 33.9673 207.338 35.5051C207.218 37.9898 207.071 40.7684 205.027 42.9191C203.379 44.4984 201.177 45.3668 198.895 45.337V45.337Z" fill="var(--sapContent_Illustrative_Color9)"/>
19
+ <path d="M193.178 14.2782C192.988 14.278 192.8 14.2374 192.628 14.1591C192.455 14.0808 192.301 13.9666 192.176 13.8241C187.994 9.03538 182.845 5.18806 177.067 2.5361C176.909 2.45916 176.768 2.35176 176.651 2.22006C176.535 2.08837 176.445 1.93497 176.388 1.76866C176.331 1.60236 176.308 1.42642 176.319 1.25094C176.33 1.07545 176.375 0.90388 176.453 0.746055C176.608 0.430191 176.882 0.188447 177.215 0.0733788C177.547 -0.0416894 177.912 -0.0207806 178.229 0.131561C184.336 2.93085 189.774 7.00259 194.179 12.0741C194.413 12.34 194.532 12.6876 194.509 13.0407C194.486 13.3939 194.325 13.7236 194.059 13.9576C193.814 14.1676 193.501 14.2815 193.178 14.2782V14.2782Z" fill="var(--sapContent_Illustrative_Color4)"/>
20
+ </svg>
21
+ `;